all groups > flash actionscript > october 2005 >
You're in the

flash actionscript

group:

Swapping Swfs OR Rgb to hex


Swapping Swfs OR Rgb to hex Yakyak
10/4/2005 11:42:49 PM
flash actionscript:
Problem 1:
Is it possible to have a link on a page that swaps a certain swf?

Problem 2:
Is there an easy to change a value (0-255) into hex (0xFF0000) format?

Please state what problem you are addressing, links to other site are
appriciated. Thanks!
Re: Swapping Swfs OR Rgb to hex Jeckyl
10/5/2005 12:00:00 AM
[quoted text, click to view]

what do you mean by swapping a swf?

[quoted text, click to view]

http://www.macromedia.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary604.html
--
Jeckyl

Re: Swapping Swfs OR Rgb to hex NSurveyor
10/5/2005 12:02:57 AM
Problem 1: Can you explain better, I don't quite understand.

Problem 2: Easy:

var x = 255;
var y = '0x'+x.toString(16);
while(y.length<8){
y+='0';
}
trace(x);
AddThis Social Bookmark Button