quote0txt=The+scenery+never+changes+if+you're+not+the+lead+dog
quote1txt=Every+dog+has+it's+day
quote2txt=Commitment+is+the+igniter+of+momentum
quote3txt=Don't+miss+the+magic+of+the+moment+by+focusing+on+what's+to+come
quote4txt=Enthusiasm+generates+success+and+breeds+excellence
Paste the above text in our special Flash Variables Translator and convert it from 'English to Flash'. What appears in the bottom is what flash understands and reads. Copy this text junk to your quotes text file and save it as 'quotes.txt'. What you hav done now is set up an external file that Flash loads when it is run. So if you upload new quotes every now and then great, at least you don't have to redesign your Flash movie.
Somewhere in your movies load up you need to add the folowing action in the action panel... loadVariablesNum ("quotes.txt", 0); This loads the variables you've just created and saved. The next step is to create a dynamic text box (I'm assuming you now what that is - if not refer to the Dreamweaver help). Name your text box like I have as 'myquote'. Now wherever you want your quote to appear you need to insert the following actionscript:
newquote = random(numQuotes);
_root.myquote = eval("quote" +newquote+ "txt");
Explanation: You're creating
a variable called 'newquote' which random chooses a number between 0 and
'numQuotes'. then going to 'myquote' text box fill in the randomly chosen
quote. To see an example of this visit the Home
page. Although there I have used a mouseover effect that displays a different
quote every time. The options are unlimited.
| » Level Intermediate |
|
Added: 2001-04-23 Rating: 6 Votes: 72 |
| » Author |
| I design web sites for a little pocket money and for the learning experience. I like to share what I've learnt with others... |
| » Download |
| Download the files used in this tutorial. |
| Download (0 kb) |
| » Forums |
| More help? Search our boards for quick answers! |
-
You must have javascript enabled in order to post comments.


Comments
There are no comments yet. Be the first to comment!