Started 3 weeks, 5 days ago (2009-11-08 20:27:00)
by gparis
Read this:
http://help.adobe.com/en_US/AS2LCR/F...=00000786.h tml
That's where you use
smoothing, setting that param to true:
public draw(source: Object, [matrix: Matrix], [colorTransform: ColorTransform], [blendMode: Object], [clipRect: Rectangle], [smooth: Boolean] ) : Void
gparis
Started 4 weeks ago (2009-11-06 08:36:00)
by a_modified_dog
for clickable links, make use of asfunction -
PHP Code:
// assuming the results can be fed into an
array
// that defines the name and the link (see below)
arr = [
{ nme : "bob" , link : "bob.htm" },
{ nme : "ben" , link : "ben.htm" },
{ nme : "tom" , link : "tom.htm" }];
resultsTxt . html = true ; // instance name of ...
Started 3 weeks, 2 days ago (2009-11-11 15:46:00)
by Plat0r
alright, found a solution after reading what i posted
i changed this line
rand = ((Math.
ceil(Math.random()*100)%(HIGH-LOW+1))+LOW);
to have a variable of 297 in place of 100, so it now reads
rand = ((Math.ceil(Math.random()*297)%(HIGH-LOW+1))+LOW);
and it works
yay!
Started 3 weeks, 3 days ago (2009-11-10 13:17:00)
by nunomira
hi,
Here's an example:
PHP Code:
import mx . controls .
ComboBox ;
var comboboxA : ComboBox ;
var comboboxB : ComboBox ;
var myDataProviderA :Array = new Array();
myDataProviderA = [{ label : "Nothing" }, { label : "Numbers" }, { label : "Letters" }];
comboboxA . dataProvider = myDataProviderA ;
var ...
Started 3 weeks, 3 days ago (2009-11-10 12:39:00)
by a_modified_dog
edit your html file to -
PHP Code:
< body onLoad = "window.document.${application}.focus();" >
Started 3 weeks, 3 days ago (2009-11-10 21:19:00)
by lisabee
Nevermind. Found a workaround. I don't know
how to delete the post
Lisa
Started 3 weeks, 4 days ago (2009-11-09 08:33:00)
by nunomira
hi,
The only thing wrong I can see is that you're using = (assignment) instead of == (comparison).
Using int() isn't required:
PHP Code:
if ( daysleft < 30 )
{
gotoAndStop ( "enjoy" ); //frame name
}
else if ( daysleft == 30 )
{
gotoAndStop ( "enjoy" ); //frame name
}
else
{
gotoAndStop ( "expire" ); ...
Started 3 weeks, 2 days ago (2009-11-11 08:11:00)
by nunomira
hi,
Here's an example:
PHP Code:
animation_btn . stop (); // stop the animation animation_btn . on
rollover = function() // when you rollover { this . play (); // start the animation this . onEnterFrame = function() // start evaluating { if ( this . _currentframe == this . _totalframes ) // if you've ...