[Flashcoders] Loading Text files into swfs then loading swfs into other swfs...

2006-06-01 Thread Craig Stanford
Hi everyone, I have 2 swfs, and I want to load them both into one holder movie. Im loading them in as follows: tickerHolder.loadMovie(ticker.swf); clockHolder.loadMovie(clock.swf); The ticker.swf uses a text file. The file works fine by itself, but as soon as I load it into the holder movie,

[Flashcoders] Fwd: Loading Text files into swfs then loading swfs into other swfs...

2006-06-01 Thread Craig Stanford
still need some help with this please. I am depserate! Cheers Craig. Hi everyone, I have 2 swfs, and I want to load them both into one holder movie. Im loading them in as follows: tickerHolder.loadMovie(ticker.swf);

Re: [Flashcoders] Fwd: Loading Text files into swfs then loading swfs into other swfs...

2006-06-01 Thread Craig Stanford
be found, it should give a path in the trace statement - make sure this is where the file actually is. The load call will be from the location of the holder movie, not the ticker.swf. Regards, Grant Cox Craig Stanford wrote: still need some help with this please. I am depserate! Cheers Craig

Re: [Flashcoders] Fwd: Loading Text files into swfs then loading swfs into other swfs...

2006-06-01 Thread Craig Stanford
to load data from that domain - That your local flash security settings (from http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.html#117502 ) have Always Allow ticked, and you add c:\ to your trusted locations. Hope that helps. Regards, Grant Cox Craig Stanford

Re: [Flashcoders] HELP STILL NEEDED, PLEASE!

2006-05-24 Thread Craig Stanford
HI Loren, You can do it the cheap and nasty way, which I like to employ as often as possible :) Simpy put a stop(); frame on the frame on the main timeline where the swf is loaded, and at the end of your loaded swf put the action _parent.play(); This means that the main timeline is stopped,

[Flashcoders] Issue with movieClip.onRelease

2006-05-22 Thread Craig Stanford
Hello Everyone, I am experiencing a strange issue when I am trying to do an onRelease in the following code. All it does is cycle through the items in an XML file, then assign the data to labels, buttons etc. Everything works fine until I try to assign the URL. Even when I try to trace it out

Re: [Flashcoders] Issue with movieClip.onRelease

2006-05-22 Thread Craig Stanford
/732422 You'll need to save the i on the button itself so it can remember (look at part 2) http://pastebin.com/732422 On 5/23/06, Craig Stanford [EMAIL PROTECTED] wrote: Hello Everyone, I am experiencing a strange issue when I am trying to do an onRelease in the following code. All it does is cycle

Re: [Flashcoders] Issue with movieClip.onRelease

2006-05-22 Thread Craig Stanford
Actually its all good, some security issue in the browser itself. Thankyou very much! Craig. On 5/23/06, Craig Stanford [EMAIL PROTECTED] wrote: Hi guys, Thanks for your fast responses. Ramon, your solution worked and I can see the values of the URL inside the onRelease function when i