var myhe:Number=parseInt(mystring);
Posted on 02 April 2009.
var myhe:Number=parseInt(mystring);
Posted in Flash0 Comments
Posted on 02 April 2009.
this.onEnterFrame = function() {
var amount:Number = this.getBytesLoaded()
/ this.getBytesTotal() *100;
loader.bar._xscale = amount;
loader.loadText.text = 100 – Math.floor(Math.round(amount)/1)+”%”;
if(amount < 85){
loader.alphaTo(0,2,"easeOutSine",0);
}
if(amount == 100) {
gotoAndPlay("fadeout");
delete this.onEnterFrame;
}
}
Posted in Flash0 Comments
Posted on 01 April 2009.
multiple effects
ZigoEngine.doTween(logo, “_alpha,Blur_blur”, [0,50], 0, “linear”,0);
ZigoEngine.doTween(logo, “_alpha,Blur_blur”, [100,0], 4, “linear”, 0.2);
logo= instance name of MC
Posted in Flash0 Comments
Posted on 27 March 2009.
com.mosesSupposes.fuse
Object | +--com.mosesSupposes.fuse.Shortcuts
download pdf
Continue Reading
Posted in Flash, Flash Components0 Comments
Posted on 27 March 2009.
random
Availability
Flash Player 4. This function is deprecated in Flash 5; use of the Math.random method is recommended. Continue Reading
Posted in Flash0 Comments
Posted on 23 March 2009.
btn7._alpha=btn6._alpha=btn5._alpha=btn4._alpha=btn3._alpha=btn2._alpha=btn1._alpha = myEndVal; btn7.Blur_blurX=btn6.Blur_blurX=btn5.Blur_blurX=btn4.Blur_blurX=btn3.Blur_blurX=btn2.Blur_blurX=btn1.Blur_blurX = mystartval; doTween([btn1,btn2,btn3,btn4,btn5,btn6,btn7], 'Blur_blurX', [myEndVal], 2, "easeOutSine"); doTween([btn1,btn2,btn3,btn4,btn5,btn6,btn7], '_alpha', 100, 2, "easeOutSine", 0.5);
Posted in Flash0 Comments
Posted on 23 March 2009.
Introduction
In this section, briefly explain what the tutorial will explain/accomplish. If you want, you can include something “dramatic” that gets readers interested in your topic. Try to enjoy writing tutorials and follow the basic guidelines found below. Before I forget, feel free to modify this document as much as needed.
from http://www.senocular.com/flash/tutorials/listenersasbroadcaster/
Posted in Flash0 Comments
Posted on 23 March 2009.
SWFAddress is a small, but powerful library that provides deep link for Flash. Progression uses deep link function of SWFAddress as enabling brawser synchronous.
| Version | 2.1 |
|---|---|
| License | MIT License |
| Official website | http://www.asual.com/swfaddress/ |
SWFObject is an easy-to-use and standards-friendly method to embed Flash content, which utilizes one small JavaScript file. Progression uses SWFObject to show SWF file after publishing HTML file.
| Version | 2.1 |
|---|---|
| License | MIT License |
| Official website | http://blog.deconcept.com/swfobject/ |
Posted in Flash0 Comments
Posted on 21 January 2009.
color = new Color (my_colors["thumbclip" + i].inside1.inside);
color.setRGB(’0x’+my_photo_sm.firstChild.childNodes[i].attributes.hex);
Posted in Flash0 Comments
Posted on 21 January 2009.
the name of object is “rotation” add acion script in main frame
_root.rotation._rotation=50;
this will be rotate the object 50 degrees
Posted in Flash0 Comments
