On Sunday, Mar 16, 2003, at 03:52 US/Pacific, Mahmut Basaran wrote: > I have 3 page html form that I want to build in flash. So far, I > couldn't figure out how to put all of them into one .swf file. I tried > making 3 different flash forms and calling them with loadMovie() and > it worked fine. Anyway, is there a better way ?
You could use a single movie and do either of the following: 1. Use (key)frames: have three different frame and have each form in a separate frame of the movie. Your ActionScript would then gotoAndStop(n) to navigate between the pages. 2. Use layers: have three different layers for the three different forms and make each one visible / invisible as needed. I've used the first method (because I haven't figured out the second one properly yet!). Sean A Corfield -- http://www.corfield.org/blog/ "If you're not annoying somebody, you're not really alive." -- Margaret Atwood ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

