Random Flash Movie PHP
- Started
- Last post
- 8 Responses
- VIVA
anyone know where i can view a tutorial or script for a random flash movie in php or javascript? I cant seem to find any...much gracias
- ********0
http://www.pncgrowupgreat.com see this site? The text area at the bottom is controlled with such a script. Do you want this fla?
- UndoUndo0
pull all possible movies into an array in flash then use random(); to select one
- ********0
http://www.machnewmedia.com/grow…
should be in there somewhere. lot of XML and good AS.
- ********0
pull all possible movies into an array in flash then use random(); to select one
UndoUndo
(Nov 18 05, 08:16)and/or populate the array with a PHP script that reads through your directory...
- VIVA0
I see...i kinda of want to control it with sometime of php source. Would it be better to do it that way or just have it load randomly in the flash file? Fla yes...
- ********0
ranQuote = new LoadVars();
ranQuote.onLoad = function(success) {
if (success) {
RanNum = Math.ceil(Math.random()*12);
ran = this["quote"+RanNum];
quote_txt.text = ran;
}
else {
quote_txt.text = "The text failed to load due to an error";
}
}
ranQuote.load("Quotes.txt");
stop();then load in your txt
- VIVA0
MUCHO GRACIAS!!! YOU GUYS RULE!
- VIVA0
MUCHO GRACIAS!!! YOU GUYS RULE!