> Watch for PHPObject from ghostwire.com
> It's a good way to deal with PHP from Flash.
>
>
> "ian27" <webforumsuser@macromedia.com> ha scritto nel messaggio
> news:dd51cb$nm9$1@forums.macromedia.com...
>> Hey guys,
>>
>> This is probably a straightforward question which I am struggling to find
>> the
>> answer to. I have started creating a flash video player to the top of
>> this page
>> <
http://www.360scenes.tv/redesign_html/>. You can probably see the player
>> at
>> the top of the page and the first buttoned to the right of it is
>> currently
>> called "snail" - this information is feeding from the database. But the
>> problem
>> occurs when I click the button and want the movie (.flv format) to load
>> into
>> the movie container, nothing happens. I've currently attached this
>> actionscript
>> to the button:
>>
>> on(release) {
>> var myLV:LoadVars = new LoadVars();
>> myLV.onLoad = function(success) {
>> if (success) {
>> myNS.play($file0);
>> }
>> }
>> myLV.load("videoTRT.txt");
>> initializeSound ();
>> }
>>
>> When I define the actual filename of the .flv such as:
>>
>> on(release) {
>> var myLV:LoadVars = new LoadVars();
>> myLV.onLoad = function(success) {
>> if (success) {
>> myNS.play("my_video_file.flv");
>> }
>> }
>> myLV.load("videoTRT.txt");
>> initializeSound ();
>> }
>>
>> This works fine...
>>
>> The problem is occurring when I'm trying to play the $file0 php variable
>> (this
>> refers to a video filename which has been uploaded)... Any suggestions?
>>
>> I hope this makes some sense to somebody. Please feel free to ask me to
>> send
>> any further information if I've not given enough here.
>>
>> Thank you in advance.
>>
>> Ian
>>
>
>