FW: Need flash whiz

View: New views
4 Messages — Rating Filter:   Alert me  

FW: Need flash whiz

by gabriel l smallman :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

> I have a flash piece that rotates through a set of images. I need it todo
> so on a timed basis. E.g.
>
> http://losangeles.angels.mlb.com/NASApp/mlb/index.jsp?c_id=ana
>
> I have everything done, design, loading the content through an xml file.
> but cannot figure how to make images rotate every ten seconds.
>
> If you can do this quick and easy I will make it worth your time
>
> Email me @ gabe@...
>
> Thanks
>
> gabe


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:30:114
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/30
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:30
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Parent Message unknown Re: FW: Need flash whiz

by Michael Greenberg :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

All you need to do is do a setInterval every 10 seconds on it....something like this:

displayImage = 10;
countDown = function () {
        displayImage--;
        if (displayImage == 0) {
                clearInterval(timer);
                //do stuff here
        }
};
timer = setInterval(countDown, 1000);


Thanks,
Michael


-----Original Message-----
From: gabriel l smallman <gabe@...>
Sent: Oct 13, 2005 10:08 AM
To: CF-Flash <cf-flash@...>
Subject: FW: Need flash whiz

> I have a flash piece that rotates through a set of images. I need it todo
> so on a timed basis. E.g.
>
> http://losangeles.angels.mlb.com/NASApp/mlb/index.jsp?c_id=ana
>
> I have everything done, design, loading the content through an xml file.
> but cannot figure how to make images rotate every ten seconds.
>
> If you can do this quick and easy I will make it worth your time
>
> Email me @ gabe@...
>
> Thanks
>
> gabe




~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Purchase Flash MX Pro from House of Fusion, a Macromedia Authorized Affiliate and support the CF community.
http://www.houseoffusion.com/banners/view.cfm?bannerid=57

Message: http://www.houseoffusion.com/lists.cfm/link=i:30:115
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/30
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:30
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Re: Need flash whiz

by Ant Cooper :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

gabe,

Just working on something similar... take a look at 'setInterval'

http://www.macromedia.com/support/flash/action_scripts/ 
actionscript_dictionary/actionscript_dictionary646.html

This may just help. That's my free advice ;-)

Ant


On 13 Oct 2005, at 15:08, gabriel l smallman wrote:

>> I have a flash piece that rotates through a set of images. I need  
>> it todo
>> so on a timed basis. E.g.
>>
>> http://losangeles.angels.mlb.com/NASApp/mlb/index.jsp?c_id=ana
>>
>> I have everything done, design, loading the content through an xml  
>> file.
>> but cannot figure how to make images rotate every ten seconds.
>>
>> If you can do this quick and easy I will make it worth your time
>>
>> Email me @ gabe@...
>>
>> Thanks
>>
>> gabe
>>
>
>
>

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Find out how CFTicket can increase your company's customer support
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:30:116
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/30
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:30
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

RE: Need flash whiz

by gabriel l smallman :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thanks man, I will give a go.

-----Original Message-----
From: Anthony Cooper [mailto:ant@...]
Sent: Thursday, October 13, 2005 10:29 AM
To: CF-Flash
Subject: Re: Need flash whiz

gabe,

Just working on something similar... take a look at 'setInterval'

http://www.macromedia.com/support/flash/action_scripts/
actionscript_dictionary/actionscript_dictionary646.html

This may just help. That's my free advice ;-)

Ant


On 13 Oct 2005, at 15:08, gabriel l smallman wrote:

>> I have a flash piece that rotates through a set of images. I need it
>> todo so on a timed basis. E.g.
>>
>> http://losangeles.angels.mlb.com/NASApp/mlb/index.jsp?c_id=ana
>>
>> I have everything done, design, loading the content through an xml
>> file.
>> but cannot figure how to make images rotate every ten seconds.
>>
>> If you can do this quick and easy I will make it worth your time
>>
>> Email me @ gabe@...
>>
>> Thanks
>>
>> gabe
>>
>
>
>



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Find out how CFTicket can increase your company's customer support
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:30:117
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/30
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:30
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.30
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54