Car Stereo

This is a discussion on "Car Stereo" within the Flash & Multimedia Forum section. This forum, and the thread "Car Stereo are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Flash & Multimedia Forum

Notices


Closed Thread
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jul 2nd, 2007, 05:07
New Member
Join Date: Jul 2007
Location: TeXaS
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Car Stereo

ok so i decided to make a car stereo in PhotoShop



then i decided to add an eqaulizer



then i had a wonderful idea of making it pop up from the stereo via flash...but i have no clue what im doing ive gone to tons of tut sites and i just cant get it, so on the stereo there is a button that says Advanced Screen well when that is pressed and it will scroll up and play the equalizer...i hope somebody can help me w/ this

  #2 (permalink)  
Old Jul 2nd, 2007, 14:20
Multimedia Specialist
Join Date: Apr 2007
Location: Arizona
Age: 25
Posts: 666
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Sgaspar11
Re: Car Stereo

Sure. Here is one way to do it. :-)

On Frame 1 in the flash, just have the actual player. with a stop(); comment on the layer so it stops at frame 1.

On Frame 2 Have the graphic if the Player and the Equalizer on top of it. Put a stop(); on this as well.

On Frame 1, turn "Advanced Screen" into a button and put some action script on the button that says:

Code: Select all
 
on (release) {
gotoAndPlay(2);
}
That should take care of what you are looking to do. Very basic, but it works.

OR if you want it to show one and not the other.....

Let's say the player is 300x200 pixels for demonstration purposes.

Add your player graphic onto the flash stage so it fills up the entire white space.

Above that player graphic place the Equalizer so it is above the (visible)stage.

Select both graphics and press F8, make it a movie clip.

Create another keyframe on say...frame 5, and drag the newly created movie clip down to only show the EQ.

Add a Motion Tween to the middle keyframes to make it animate.

On Frame 1 the Adv Player button, Add the following code:

Code: Select all
 
on (release) {
gotoAndPlay(5);
}
And so on...hopefully this sparks some ideas, I couldn't really tell which of the two you were wanting...but it is early.
Last Blog Entry: Yay!? (Oct 8th, 2007)

Last edited by Sgaspar11; Jul 2nd, 2007 at 14:33.
  #3 (permalink)  
Old Jul 2nd, 2007, 17:24
New Member
Join Date: Jul 2007
Location: TeXaS
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Car Stereo

but both things animate...the stereo also animates too...would the first one still work
  #4 (permalink)  
Old Jul 2nd, 2007, 17:31
Multimedia Specialist
Join Date: Apr 2007
Location: Arizona
Age: 25
Posts: 666
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Sgaspar11
Re: Car Stereo

What do you mean? Animate? You mean the animated .gif's you've created? When you actually publish it to a web site, if you do the 2nd option you won't see the stuff that is outside of the canvas.
Last Blog Entry: Yay!? (Oct 8th, 2007)
  #5 (permalink)  
Old Jul 2nd, 2007, 17:33
New Member
Join Date: Jul 2007
Location: TeXaS
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Car Stereo

ok sorry im like really stupid in flash...i want it just the stereo to play...until i press the advanced button and the eqaulizer will come up, would the way you told me do this?
  #6 (permalink)  
Old Jul 2nd, 2007, 17:37
Multimedia Specialist
Join Date: Apr 2007
Location: Arizona
Age: 25
Posts: 666
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Sgaspar11
Re: Car Stereo

Yeah, use the first one. That'd be what you want to do.

Let me know if you into any issues, we'll help you through them.

Cheers,

Scott
Last Blog Entry: Yay!? (Oct 8th, 2007)
  #7 (permalink)  
Old Jul 2nd, 2007, 17:50
New Member
Join Date: Jul 2007
Location: TeXaS
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Car Stereo

it says that theres an error in the code

on (release) {
gotoAndPlay(2);
}
  #8 (permalink)  
Old Jul 2nd, 2007, 20:45
Multimedia Specialist
Join Date: Apr 2007
Location: Arizona
Age: 25
Posts: 666
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Sgaspar11
Re: Car Stereo

This is the correct code, it HAS to be on a button(symbol) for it to work.

You need to make the Advanced Player button a seperate graphic, select it, press F8 and convert it to a button, and place the ActionScript on that button.
Last Blog Entry: Yay!? (Oct 8th, 2007)
  #9 (permalink)  
Old Jul 2nd, 2007, 20:57
New Member
Join Date: Jul 2007
Location: TeXaS
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Car Stereo

ty very much...i now realize i have to edit my eqaulizers animation in imageready...to go up and play, since that will be easier then making flash raise it b/c i dont know how to make it do that
Closed Thread

Tags
flash

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 16:46.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43