Posts: 991
Location: In a flying house
|
Looks like you're going to have to do this with code. To me, it seems like what you're requesting is putting an image from the ticker factory into your flash file so it'll update automatically. Am I right?
Assuming I am - you'll want to be accessing the image off of their server, not yours. That way, the image can update the way it's supposed to do.
Now, make a flash file and paste the following code into the first frame's action panel:
Code:
onEnterFrame = function() {
loadMovie("http://tickers.tickerfactory.com/ezt/d/2;36;450/st/20090519/n/Some+kid/dt/-1/k/872e/age.png", 1);
}
Of course, you're going to need to replace the existing URL with the URL of your ticker.
Tell me if it works!
- Steve
__________________
if($stevej == "helpful") { $talkupation += $user_power; }
|