| View previous topic :: View next topic |
| Author |
Message |
kagami
Joined: 26 Jan 2006 Posts: 1
|
Posted: Fri Jan 27, 2006 6:50 pm Post subject: Template(psd) to a flash animation |
|
|
Is there a possible way to use templates i make wth photoshop and work with them in flash....
heres what i want to do:
--- make the buttons animate (with mouseover features)
--- instead of breaking up the image with tables, i want to keep it together
--- find someone that can show me how to do this, without giving links to tutorials. |
|
| Back to top |
|
 |
|
|
webmaster Site Admin

Joined: 17 Aug 2004 Posts: 3640 Location: Sweden
|
Posted: Fri Jan 27, 2006 8:53 pm Post subject: Re: Template(psd) to a flash animation |
|
|
| You can just save the photoshop layout as .jpg and then import in in Flash. Then you can make your own onHover -buttons in flash, maybe use imported .jpg -files ever here. |
|
| Back to top |
|
 |
Samuel Rounce 100+ Club

Joined: 30 Oct 2005 Posts: 116 Location: London, UK
|
Posted: Mon Jan 30, 2006 7:51 am Post subject: Re: Template(psd) to a flash animation |
|
|
Umm onHover? Never heard of that class before?!?!
Kagami:
1. Make a new MC and put the button images and button of the size you want inside the MC then set up the animations of the buttons (ie. roll over effect, roll off effect). Name the frames "over" and "out" and apply stop(); actions to the frames before them. Next click the button and then put the in the code:
| Code: |
onRollover(){
gotoAndPlay("over");
}
onRollout(){
gotoAndPlay("out");
}
onRelease(){
_root.gotoAndPlay(Frame X);
} |
2. You don't use tables in flash and if you means slicing the layout image no you don't HAVE to do that but you may will find some problems later when actually making your site or whatever.
It seems like you don't actually know the basics of flash. Look on flashkit.com and do some beginner tutorials on how to use flash itself then try moving onto actionscript and actually making stuff in it. |
|
| Back to top |
|
 |
Samuel Rounce 100+ Club

Joined: 30 Oct 2005 Posts: 116 Location: London, UK
|
Posted: Tue Feb 07, 2006 9:28 pm Post subject: Re: Template(psd) to a flash animation |
|
|
| o.0 didn't mean to sound so abbrasive there =/ |
|
| Back to top |
|
 |
|