PDA

View Full Version : Whee! Finally learning some flash!



Vexir
May 26th, 2005, 11:41 PM
Okay so I finally decided to learn Flash (haha for about the 5th time)

but this time I actually made something :P

All on my own too! :)

Check it out, it's my first flash experiment! :cap:

http://graphicslash.com/filehosting/me/myflash/siteexperiment/index.html

:beam:

matthewjumps
May 26th, 2005, 11:47 PM
Try putting some hit states in the buttons...they are irritating to click on without em.

Vexir
May 26th, 2005, 11:49 PM
They are movie clips actually... I didn't want to make them buttons because then that would remove the actionscript on em which makes them bounce and load the movie :-\

What should I do?

BoonDock
May 26th, 2005, 11:53 PM
you still need hit states for the buttons, regardless if they are movie clips ;)
... look up the tutorial other than that, you need some content or somethin before we can really critique...its all kind of bland right now

Boon out~ :sleep:

fasterthanlight™
May 26th, 2005, 11:55 PM
if not hit states, put a 0% alpha rectangle behind the letters within the movieclip so that someone doesnt have to rollover the actual letter.

BoonDock
May 26th, 2005, 11:55 PM
yeah (a "fake" hit state) ;)

Hellion
May 27th, 2005, 12:07 AM
Since you're new I might have two options that could help you out without too much work. Check out how how much time it takes for all the buttons to appear. Add it to your timeline frames and after they all stop jumping, insert a keyframe a put a button for each section. Then you can edit the hit area of the buttons...

The other one is to get inside each movie clip and at the end of the animation put a keyframe and copy or retype the text of the button, convert it to a button symbol and edit the hit area.

Hope this can help you out. And if someone else have other options, just bring 'em on! :)

conceptioN
May 27th, 2005, 12:17 AM
hah...good work for your first 'experiment' , I know how it feels to finally finish something :)

Vexir
May 27th, 2005, 12:47 AM
Fixed it :)

ztev
May 27th, 2005, 11:55 AM
looks better than my first website.. that's for sure..

..and maybe you find this (http://www.macromedia.com/cfusion/exchange/index.cfm#loc=en_us&view=sn106&viewName=Exchange%20Search%20Details&authorid=17904311&page=0&scrollPos=0&subcatid=0&snid=sn106&itemnumber=10&extid=139598&catid=0&avm=1)useful..

BoonDock
May 27th, 2005, 11:59 AM
Make sure that when you have clicked on a button to view a page, that you can't click on that button again to keep reloading the page...just something simple to change ;)

Vexir
May 27th, 2005, 06:21 PM
Okay well I tried this:



if (_root.contents.loadMovie("home.swf")) {
}
else {
on (release) {
_root.contents.loadMovie("home.swf");
}
}


Why won't it work?