Bluepearl Blog Blog of the Bluepearl Network and Sean James

23Oct/090

New Antec twelve hundred case

Today i spent most of the day transferring my computer hardware from my Thermaltake JR case to my new Antec twelve hundred case.

This new case is awesome and gives me alot more space, i had to change cases because my graphics card i am getting in december/january is very long and would be hitting the HDD bays in the old case. Plus the air flow in this case has dropped my idle computer temperature by 6-7 degrees. Have not tested the temperature on full load yet.

Another great feature on this case is the fan controls on the side and back of the case, but when all set to high it is like having an aeroplane in my loungeroom!!

The power supply is also located at the bottom of the case which made cable management so much easier.

Unfortunately i was unable to add the side fan to the case door as the CPU cooler was in the way... :(

New: updated 30 October 2009

I have finally finished my new system update.

I Currently have my i7 CPU overclocked to 3.8ghz which is a 40% Overclock. The i7 920 stock speed is 2.67Ghz.

overclock

I tried getting to 4.0Ghz but my computer would not even post, and i did not feel comfortable changing the vcore any higher, i think i would need liquidcooling to overclock anymore.

Current temperatures are 36-38 idle and 65-70 on 100% high load, using photoshop, flash and some other applications at the same time i get average of 55 degrees.

oc2

Currently running one ATI radeon 5870, in january i will purchase another one to run them in crosfire, but it may be tad bit overkill atm.. :(

finished1
finished2
finished3
finished4
finished5
finished6

Thermaltake jr and Antec 1200

Thermaltake jr and Antec 1200


The Antec 1200 empty

The Antec 1200 empty


Motherboard inside the Antec 1200 and thermal paste removed

Motherboard inside the Antec 1200 and thermal paste removed


I love the dust covers on the HDD sections

I love the dust covers on the HDD sections


Great feature of this board is running the cables behind the motherboard

Great feature of this board is running the cables behind the motherboard


Noctua NH-U12P fan cooler inside the Antec 1200

Noctua NH-U12P fan cooler inside the Antec 1200


fans added to the NH-U12P alot more space than in the old case

fans added to the NH-U12P alot more space than in the old case


Antec 1200 first run

Antec 1200 first run


Antec 1200 nice and blue, i have another fan which is added inside the case which blows the cold air inside the CPU fan and out the back exhaust fan.

Antec 1200 nice and blue, i have another fan which is added inside the case which blows the cold air inside the CPU fan and out the back exhaust fan


The internal fan does a great job of pushing the air from the first fan on the front of the case

The internal fan does a great job of pushing the air from the first fan on the front of the case


HDD fans are also great

HDD fans are also great


Antec 1200 powered up

Antec 1200 powered up


case13
case15
case16
radeon1
Love this new card

Love this new card

21Oct/095

My new NH-U12P CPU cooler photos

Today i decided to wait until early next year to put liquid cooling in my computer. Instead i bought a new NH-U12P cooling fan to replace the stock CPU fan to keep my overclocked temperatures as low as possible.

Standard CPU cooler which comes with the Intel i7 920

Standard CPU cooler which comes with the Intel i7 920


Stock CPU fan

CPU fan removed exposing the CPU

CPU fan removed exposing the CPU


Stock fan and Noctua  NH-U12P side by side

Stock fan and Noctua NH-U12P side by side


Noctua NH-U12P without the fans

Noctua NH-U12P without the fans


Noctua fan angled to make sure the hot air is pushed out the back

Noctua fan angled to make sure the hot air is pushed out the back


Noctua NH-U12P

Noctua NH-U12P


Noctua NH-U12P with the 2 fans attached

Noctua NH-U12P with the 2 fans attached


Noctua NH-U12P the first fan sucks in the air, the one at the back pushes the air out to the exhaust fan

Noctua NH-U12P the first fan sucks in the air, the one at the back pushes the air out to the exhaust fan


Noctua NH-U12P with the sidebar fan attached

Noctua NH-U12P with the sidebar fan attached


Noctua NH-U12P in the case, overclocked to 3.2mhz, idle 41 degrees and high load 65 degrees.

Noctua NH-U12P in the case, overclocked to 3.2mhz, idle 41 degrees and high load 65 degrees.

Filed under: Computers 5 Comments
11Oct/092

No custom work for a few months

Today i decided that after i finish these 2 projects i am working on, i will not be doing any custom work for a few months.

I want to spend the next few months finishing and launching 2 of my own sites that i am working on. I also would love to be able to finish Bluepearl Design before christmas lol

I will post more details about my new projects once i have them ready for online use and testing.

4Oct/092

Actionscript 3.0 for a button in Flash CS3 and CS4

I have recently been using Adobe Flash CS4 and i must say i am really liking it!! Especially the new tweening and animation, makes life alot easier.

I had to create a button in Actionscript 3.0 today and had some problems getting the button to work.. the actionscript for a button since actionscript 2.0 has changed. For starters you need to give the button an instance name by right clicking the button on the stage and then going to the the properties window you can enter the instance name like in the image below.

button instance for flash CS4

button instance for flash CS4

So to create a button in Flash CS3 and CS4 with actionscript 3.0 please follow these steps.

  1. Create a button, for example create a box using the rectangle tool then right click the box and select covert to symbol then select type as Button, then press OK.
    Simple button in flash CS4

    Simple button in flash CS4

  2. Select the button and then goto the properties window on the right side of the screen. Give the button an instance name of My_Button.
    The button instance name

    The button instance name

  3. Create a new layer above your button layer in the timeline called actions. Select the first frame in the actions layer and bring up your actions panel by either going to window -> actions or by pressing F9 on your keyboard.
    Create these layers in your timelime

    Create these layers in your timelime

    The action panel (F9)

    The action panel (F9)

    This is what the action panel looks like
  4. In the actions panel enter the Actionscript 3.0 below.

[cc lang="actionscript"]
My_Button.addEventListener(MouseEvent.MOUSE_DOWN, mouseClick);

function mouseClick(event:MouseEvent):void {
navigateToURL(new URLRequest("http://www.bluepearl-design.com/"));
}
[/cc]
The Actionscript above will open a new window to www.bluepearl-design.com when clicked, if you prefer the link to open in the same window use this code below:
[cc lang="actionscript"]
My_Button.addEventListener(MouseEvent.MOUSE_DOWN, mouseClick);

function mouseClick(event:MouseEvent):void {
navigateToURL(new URLRequest("http://www.bluepearl-design.com/"), "_self");
}
[/cc]

You can also have the button use a timeline control.

[cc lang="actionscript"]
My_Button.addEventListener(MouseEvent.MOUSE_DOWN, mouseClick);

function mouseClick(event:MouseEvent):void {
gotoAndPlay(2);
}
[/cc]

And that is about it on how to create a simple clickable button in Actionscript 3.0, test the demo out below.

Get Adobe Flash player