|
| Author | Message |
|---|
raveblue

Number of posts: 34 Age: 42 Location: Germany, Bonn Registration date: 2006-11-16
 | Subject: Flash gurus around? Fri Nov 17, 2006 10:30 am | |
| Hi there, as promised in the other Forum I'm back with my frist question. To be honest my website you find here www.raveblue.de ist a compromise between my demands and my abilities... In my dreams I have a perfect website written and coded in Flash but in reality I'm lacking of know-how especially when it comes to Action Script... To give you an idea what I wanted to develop you might check out this http://www.raveblue.de/ultimate/. There you'll find the beginning in Flash and what I intended to to in HTML. The sliders should move very smooth. So if there is anybody around here who might give me a helping hand I wouldn't refuse it I could provide the one with the original .fla-files and everything that's needed. Thx for your attention  _________________ Raveblue
Out there in the darkness, out there in the night - one soul burns brighter than a thousand suns.
|
|
 | |
Design G Guest
 | Subject: Re: Flash gurus around? Fri Nov 17, 2006 10:48 am | |
| Sorry can't help, we could do with a Flash professional here. |
|
 | |
raveblue

Number of posts: 34 Age: 42 Location: Germany, Bonn Registration date: 2006-11-16
 | |
 | |
Toon Admin

Number of posts: 748 Age: 30 Location: Sheffield Registration date: 2006-11-15
 | Subject: Re: Flash gurus around? Fri Nov 17, 2006 10:54 am | |
| I'll have a scout around for one |
|
 | |
raveblue

Number of posts: 34 Age: 42 Location: Germany, Bonn Registration date: 2006-11-16
 | Subject: Re: Flash gurus around? Fri Nov 17, 2006 10:55 am | |
| Great idea!  _________________ Raveblue
Out there in the darkness, out there in the night - one soul burns brighter than a thousand suns.
|
|
 | |
Toon Admin

Number of posts: 748 Age: 30 Location: Sheffield Registration date: 2006-11-15
 | Subject: Re: Flash gurus around? Mon Nov 20, 2006 11:33 am | |
| Still no 'Flashers' yet?? |
|
 | |
Design G Guest
 | Subject: Re: Flash gurus around? Mon Nov 20, 2006 11:39 am | |
| |
|
 | |
Ron 123 Guest
 | Subject: Re: Flash gurus around? Mon Nov 20, 2006 11:40 am | |
| |
|
 | |
netware

Number of posts: 18 Registration date: 2006-11-20
 | Subject: Re: Flash gurus around? Mon Nov 20, 2006 10:07 pm | |
| u need to do is to create a sprite for each link that will be triggered by a mouse event , each time a user calls for a link, u will need to duplicate the menus to save up space instead of using fx to have it move, if i didn't misunderstood what u want i think you want something like this , rite ?? click here!just mail me if u need anything _________________ NTW designs
" Do not confuse style with fashion, Style is derived from the real needs of a client or society. Fashion is a superficial condition adopted by those anxious to appear elegant or sophisticated"
|
|
 | |
Design G Guest
 | Subject: Re: Flash gurus around? Tue Nov 21, 2006 8:53 am | |
| Yeah we have our Flasher I mean Flash Guru. Yeah for Netware  |
|
 | |
Ron 123 Guest
 | Subject: Re: Flash gurus around? Tue Nov 21, 2006 8:58 am | |
| Very smooth Flashing Netware, raveblue we're looking forward to seeing the site  |
|
 | |
netware

Number of posts: 18 Registration date: 2006-11-20
 | Subject: Re: Flash gurus around? Tue Nov 21, 2006 2:43 pm | |
| hi there!! thx for the welcome . . hope i can be somewhat helpful for the forum.. ill post couple sites im doing shorty once i finish them . . see u all soon !! _________________ NTW designs
" Do not confuse style with fashion, Style is derived from the real needs of a client or society. Fashion is a superficial condition adopted by those anxious to appear elegant or sophisticated"
|
|
 | |
ethan
Number of posts: 2 Registration date: 2006-11-29
 | Subject: Re: Flash gurus around? Wed Nov 29, 2006 10:23 pm | |
| maybe i could be a guru? eh? |
|
 | |
lucy Guest
 | Subject: Re: Flash gurus around? Thu Nov 30, 2006 8:54 am | |
| You have to introduce yourself first?? |
|
 | |
Guest Guest
 | Subject: Re: Flash gurus around? Tue Dec 05, 2006 2:46 pm | |
| as a matter of fact i happen to know a "guru". well at least he's working at one of the worlds biggest flash-bureaus as a actionscripter.. might ask him if he'd like to join up. |
|
 | |
raveblue

Number of posts: 34 Age: 42 Location: Germany, Bonn Registration date: 2006-11-16
 | Subject: Re: Flash gurus around? Tue Dec 05, 2006 2:47 pm | |
| | prewe wrote: | as a matter of fact i happen to know a "guru". well at least he's working at one of the worlds biggest flash-bureaus as a actionscripter.. might ask him if he'd like to join up. |
Great idea! _________________ Raveblue
Out there in the darkness, out there in the night - one soul burns brighter than a thousand suns.
|
|
 | |
lucy Guest
 | |
 | |
Guest Guest
 | Subject: Re: Flash gurus around? Tue Dec 05, 2006 3:15 pm | |
| i'll speak with him tonight when we're both off work  |
|
 | |
MrBungle

Number of posts: 14 Age: 31 Location: US Registration date: 2006-12-09
 | Subject: Re: Flash gurus around? Mon Dec 11, 2006 3:05 am | |
| Hi raveblue, the crudest and easiest way to do this is by manually setting the state of each menu (open or closed) in a variable. Then when one is clicked you could check through them to figure which ones to open and close. something like: menu3_mc.onRelease = function ():Void { if (menu3_status == "closed") { // if its closed open it menu3_mc.gotoAndPlay("open"); menu3_status = "open"; } else { // else close it menu3_mc.gotoAndPlay("closed"); menu3_status = "closed" } // check the menu's in front if (menu2_status == "closed") { menu2_mc.gotoAndPlay("open"); menu2_status = "open"; } if (menu1_status == "closed") { menu1_mc.gotoAndPlay("open"); menu1_status = "open"; } } A even better way would be to write a function to call with similar code. |
|
 | |
|