Here's the code I have in my HTML document to embed my flash movie:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="550" height="400" id="flashMovie" align="middle">
<param...
hmm about this line:
_root.time1.timeText02 = (mins+":"+secs);
do you have a textbox with the instance name "timeText02" or is this a var assigned to a textbox?
if its a var then try removing the parenthesis
_root.time1.timeText02 = mins+":"+secs;
if its a an instance name then add the...
in flash go to File > Publish Settings
make sure the Flash and HTML boxes are checked and then click Publish
rename the html file to index.html and upload to your site
flashoid,
guess and actual are variables.
//.text refers to the text in the texbox
guess = _root.quantityOrdered.text;
actual = _root.actualQuantityOrdered.text;
name the instance name of your input boxes like this:
enter quantity ordered_____ (input field) = quantityOrdered
enter...
some characters (like %, +, and &) are used within computers for certain functions. When you try to use such characters in a text document, and the document gets parsed, these characters tend to either create an error or get skipped
instead, you have to use "escaped" characters. each...
you could try this formula
guess = _root.quantityOrdered.text;
actual = _root.actualQuantityOrdered.text;
percent = Math.abs(guess-actual)/(actual)*100;
if ((percent>=0) && (percent<=3)) {
_root.penalty.text = "1%";
} else if (percent<=4) {
_root.penalty.text = "2%";
} else if (percent<=6) {...
I dont know if you know this but...
m3u (winamp) and asx (windows media player) are not actually songs ... just playlist files. They are nothing but textfiles with urls to songs online and maybe some syntax so your music player knows how to read them
Open them up yourself with notepad...
alright if you would like you can upload your fla and ill add one for you
just create a preloader mc and ill add code to make it appear when something needs preloading
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.