Macromedia Flash 8: Please help!
Forum rules
By using this "Production" sub-forum, you acknowledge that you have read, understood and agreed with our terms of use for this site. Click HERE to read them. If you do not agree to our terms of use, you must exit this site immediately. We do not accept any responsibility for the content, submissions, information or links contained herein. Users posting content here, do so completely at their own risk.
Quick Link to Feedback Forum
By using this "Production" sub-forum, you acknowledge that you have read, understood and agreed with our terms of use for this site. Click HERE to read them. If you do not agree to our terms of use, you must exit this site immediately. We do not accept any responsibility for the content, submissions, information or links contained herein. Users posting content here, do so completely at their own risk.
Quick Link to Feedback Forum
-
skavoovie_blind9
- Posts: 629
- Joined: Fri Jul 21, 2006 8:08 am
- Location: ManCHESTer
Macromedia Flash 8: Please help!
Hi I wasn't sure where to post this but I figured most of the technical heads are on this forum.
I'm doing a website in flash 8 for a uni asignment.
I've made an animated intro to the site with a skip button taking you to a home page with buttons for audio and pictures in one flash aplication.
Then I've started a new project and done my page for pictures in that.
Then I've done another flash document with my audio on the page.
I dont have a clue how I can bring the Intro/homepage, the pictures gallery and the audio page together to navigate through one application.
Dont know if that makes sense but if anyone can help please do.
Cheers
Col
I'm doing a website in flash 8 for a uni asignment.
I've made an animated intro to the site with a skip button taking you to a home page with buttons for audio and pictures in one flash aplication.
Then I've started a new project and done my page for pictures in that.
Then I've done another flash document with my audio on the page.
I dont have a clue how I can bring the Intro/homepage, the pictures gallery and the audio page together to navigate through one application.
Dont know if that makes sense but if anyone can help please do.
Cheers
Col
what you need is a container movie that loads in the other SWF's when the user clicks a button.
this container movie should also house your navigation buttons.
so make a new movie
put a blank MovieClip on the stage somewhere and give it an instance name like: "siteContainer"
so..u want the intro to load into that container movieClip
so let's say your swfs are named:
intro.swf
gallery.swf
audio.swf
in your container movie put this code:
siteContainer.loadMovie("intro.swf");
now when the site container loads it will tell intro to load into that container movieClip.
now for your navigation
you have 2 buttons "gallery" and "audio" give those instance names also
galleryButton and audioButton
put this code on the same keyframe as your other code
galleryButton.onRelease=function()
{
siteContainer.loadMovie("gallery.swf");
}
audioButton.onRelease=function()
{
siteContainer.loadMovie("audio.swf");
}
so when the user clicks on the buttons it will run their methods to load the associated SWF's into that container movieClip
make sense?
this container movie should also house your navigation buttons.
so make a new movie
put a blank MovieClip on the stage somewhere and give it an instance name like: "siteContainer"
so..u want the intro to load into that container movieClip
so let's say your swfs are named:
intro.swf
gallery.swf
audio.swf
in your container movie put this code:
siteContainer.loadMovie("intro.swf");
now when the site container loads it will tell intro to load into that container movieClip.
now for your navigation
you have 2 buttons "gallery" and "audio" give those instance names also
galleryButton and audioButton
put this code on the same keyframe as your other code
galleryButton.onRelease=function()
{
siteContainer.loadMovie("gallery.swf");
}
audioButton.onRelease=function()
{
siteContainer.loadMovie("audio.swf");
}
so when the user clicks on the buttons it will run their methods to load the associated SWF's into that container movieClip
make sense?
-
skavoovie_blind9
- Posts: 629
- Joined: Fri Jul 21, 2006 8:08 am
- Location: ManCHESTer
got bored so i made a template for ya
http://www.alecoliver.com/dubstep_forum/test_flash/
here's the source files:
http://www.alecoliver.com/dubstep_forum ... T_SITE.zip
hope it helps!
http://www.alecoliver.com/dubstep_forum/test_flash/
here's the source files:
http://www.alecoliver.com/dubstep_forum ... T_SITE.zip
hope it helps!
-
skavoovie_blind9
- Posts: 629
- Joined: Fri Jul 21, 2006 8:08 am
- Location: ManCHESTer
Thats wicked mate cheers!
I've got another question though.
I've set up my document that has the intro going to home page, when you click the pictures button it goes to a new page.
On that page I have imported my pictures.swf to the library, draged the movie onto the page, but when I test the movie I click the pictures button it takes me to the page alright, but the navigable pictures just keep flicking through each large image of the pictures really fast?
p.s. I've done 4 thumbnail pictures that you can click on to see larger image, which works fine untill I drag it onto the page.
I've got another question though.
I've set up my document that has the intro going to home page, when you click the pictures button it goes to a new page.
On that page I have imported my pictures.swf to the library, draged the movie onto the page, but when I test the movie I click the pictures button it takes me to the page alright, but the navigable pictures just keep flicking through each large image of the pictures really fast?
p.s. I've done 4 thumbnail pictures that you can click on to see larger image, which works fine untill I drag it onto the page.
Who is online
Users browsing this forum: No registered users and 0 guests