Wednesday, January 30, 2008

double click hunt

red

http://www.actionscript.org/resources/articles/566/1/Doubleclick-Event-for-MovieClip/Page1.html

red

http://greenethumb.com/article/24/double-click-event-in-as2

http://www.awestyproductions.com/tutorials/flash-tutorials/attaching-blood-through-actionscript/

http://www.actionscript.org/resources/articles/197/1/DoubleClick-event-for-movie-clips-and-buttons/Page1.html

Labels: ,

Friday, January 25, 2008

flash links

http://www.gotoandlearn.com/

http://www.quietlyscheming.com/blog/

http://www.levitated.net/daily/levTextSphere.html

http://2souldesign.wordpress.com/


overlap
http://www.kirupa.com/forum/showthread.php?t=276961&highlight=overlapping+buttons

Labels: ,

Wednesday, January 23, 2008

fade

onClipEvent(load) {
this._alpha = 0;
this.dir = -1;
this.speed = 10; // the value used to modify the speed of the fade
}
onClipEvent(enterFrame) {
if (this._alpha <= 0) {
this._alpha = 0; // if the alpha value had gone negative, reset it to zero
this.dir *= -1;
}
if (this._alpha >= 100) {
this._alpha = 100; // similarly if it had exceeded 100 reset it to 100
this.dir *= 0;
}
this._alpha += this.speed * this.dir;
}

Labels: , , ,

Monday, January 21, 2008

flash buttons issue

disableder..

_root.myButton.enabled = false;


embedding flash
http://blog.deconcept.com/swfobject/

infinate menu
http://www.kirupa.com/developer/mx/infinite.htm

Labels: , , ,

Friday, January 18, 2008

flash drag code

snow
amount = 300;
mWidth = Stage.width;
mHeight = Stage.height;
for (var i = 0; ithisFlake = this.attachMovie("flake", "flake"+i, i);
with (thisFlake) {
_x = Math.random()*mWidth;
_y = Math.random()*mHeight;
_xscale = _yscale=_alpha=40+Math.random()*60;
}
thisFlake.yspeed = Math.random()*5+.5;
thisFlake.increment = -0.035+Math.random()*0.07;
thisFlake.radian = 0; //declare for actionscript 2.0
thisFlake.onEnterFrame = function() {
this.radians += this.increment;
//trace(this.radians);
this._x += Math.sin(this.radians);
this._y += this.yspeed;
if (this._y>=mHeight) {
this._y = -10;
this._x = -10+Math.random()*mWidth;
}
if (this._x>=mWidth || this._x<=0) {
this._y = -10;
this._x = -10+Math.random()*mWidth;
}
};
}


begin drag drop

dragMovie = new Object();
dragMovie.onMouseDown = function() {
if(movie.hitTest(_root._xmouse, _root._ymouse)) {
movie.startDrag();
}
};
Mouse.addListener(dragMovie);
dropMovie = new Object();
dropMovie.onMouseUp = function() {
movie.stopDrag();
};
Mouse.addListener(dropMovie);

drag droppy advanced

http://flash-forum.flashdevils.com/showthread.php?threadid=188583/MovieClip.dropOnTargets()%20prototype.html

effects
http://www.kirupa.com/forum/forumdisplay.php?f=51

Labels: , , ,

Thursday, January 17, 2008

tips

screen cap snipping...

windows key plus number equals app in mini bar

flash8
Compatibility" tab in the Properties dialog of the application. (Right click on Application's-Name.exe and click Properties.) And selecting "Disable desktop composition." This will force Windows to run in an "Aero basic" mode without all the fancy bells and whistles while this application is running. When you close the application, Windows automatically reverts to the normal Aero. (Drop shadows, fades, etc.) Cheers!

Wednesday, January 16, 2008

PC LINKS

http://www.cad-forums.com/showthread.php?t=51172

SKYPE... online phone,video.

tv USB for PCs.

3d links

http://www.zoozle.net/xxx/3D%20Models%203Ds%20Medical%20Skeletal-Anatomy,torrent,en,0.html

http://www.edharriss.com/tutorials/tutorials_all.html

http://www.the3darchive.com/archive_FOOTBONE.shtml

Tuesday, January 15, 2008

laps...

asus g15 - 899 =15''
2.2Ghz 4MB,2ram,160HD (7200rpm),256MB (mouse & bag)

dell m1530 -849 =15''
2.0Ghz 2MB,2ram,250HD (5400RPM),256MB

dell m1330 -849-----13''
2.2Ghz,2ram,250HD (5400RPM),128MB

Monday, January 14, 2008

laptops

DELL M1530 (£849)
2.2, 2RAM,160hd,256

DELL M1330 £699
2Ghz,2ram,160HD,128MB (6cell)

pcsepc laptop £563
2Ghz,2ram,160HD,256MB

acer as7520 £459
1.9Ghz,2ram,160HD,256MB (6cell)

asus f8 £639
1.6,3ram,250HD,256MB

Sony VAIO CR240EB £731
2ghz,2ram,200HD

Acer Aspire 5920G, £779
2ghz,2ram,200HD 256

Acer Aspire 7720 £699.97
2ghz,2ram,160HD 256

Asus X51RL- 439.97
1.6,2ram,120HD,

Thursday, January 03, 2008

pdf compress

can flattern psd files easily by de-selecting layers then convert to pdf for file size compress

Labels: , , ,