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
sorry the links work but the website is down at the moment, try it later
Which kind of preloader are you looking for?
1) preloads all the swf, jpeg, and txt files at once at the beginning of the movie
2) preloads each peice of content only when it is requested by the user
The absolute easiest way to add a preloader to your jpegs and txt files would be to use the MX2004 load bar component:
A great tutorial here:
http://webwasp.co.uk/tutorials/b30-load-images_MX04/index.php
But if you dont have flash mx2004 (or you are trying to cut down your file size, as...
hey
ok i tried out your code and i see what you mean
heres the fix:
1)double click to enter your mcMain movie clip
2)you should see a little + somewhere, which tells your where the movie clip origin is for its axis
3)make sure the center of your wheel graphic is aligned with the center of...
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.