Some help in first site ;)

Click Here :wink: to view the site
iā€™m working in new site (itā€™s my real work with flash :smirk: ) and i need some help to finish the site.

there is a demo for Application links in the bottom of the siteā€¦ i want to do something in it which is when you click in any photo the others disapper ( by moving to the last photo and fade to 0, while the clicble phot apper itā€™s links (like: benfite - how to downloadā€¦), is it possible by actionscriptā€¦ :-\ .

i hope anyone help me to finish my first site :slight_smile: .

Do you have an example to work with?

*Originally posted by FlashSwimmer *
**there is a demo for Application links in the bottom of the siteā€¦ **

Sorry, I couldnā€™t find that, but did you had a look at the Photogallery tut?

scotty:h:

scottyā€¦ thanks for your replay but is this tutorial contain anything can help meā€¦ (i doubt) :puzzled: .

iā€™m thinking to do it in frames but i want to learn how can i think in do somethin like this in AS ā€¦ is it difficult :h: .

It will be me, but I still donā€™t have an exact idea of you want to achieve, so can you give an example or explain again?

scotty:?)

iā€™ll do it now for just tow samples :slight_smile:

there is a bug in my menuā€¦ i donā€™t know why :frowning: .
here is my code:
[AS]onClipEvent(enterFrame){
_root.mc_buttons.mc_button1.onRollOver = function() {
_root.mc_buttons.mc_button1.gotoAndPlay(ā€œfirst1ā€);
};
_root.mc_buttons.mc_button1.onRollOut = function() {
_root.mc_buttons.mc_button1.Play();
};
_root.mc_buttons.mc_button2.onRollOver = function() {
_root.mc_buttons.mc_button2.gotoAndPlay(ā€œfirst2ā€);
};
_root.mc_buttons.mc_button2.onRollOut = function() {
_root.mc_buttons.mc_button2.Play();
};
_root.mc_buttons.mc_button3.onRollOver = function() {
_root.mc_buttons.mc_button3.gotoAndPlay(ā€œfirst3ā€);
};
_root.mc_buttons.mc_button3.onRollOut = function() {
_root.mc_buttons.mc_button3.Play();
};
_root.mc_buttons.mc_button4.onRollOver = function() {
_root.mc_buttons.mc_button4.gotoAndPlay(ā€œfirst4ā€);
};
_root.mc_buttons.mc_button4.onRollOut = function() {
_root.mc_buttons.mc_button4.Play();
};
}[/AS]
it seems unprofessional but if anyone can tell me to make a function or decrease itā€¦ itā€™ll be great. :pleased:

i forgot to ask for another thing which is why the precentage didnā€™t appear from 0% and appears in almost 40 %.

youā€™re telling it to just play on rollout. It may be in the middle of some animation (i.e. the go to first playing) during this play call and it might not even register. With that you get a stuck button because it wasnt at its end on rollout. Instead of using play, make a new label for the start of the return animation and tell it to gotoAndPlay there, much like you did for the rollOver. :slight_smile:

*Originally posted by FlashSwimmer *
**i forgot to ask for another thing which is why the precentage didnā€™t appear from 0% and appears in almost 40 %. **

that one you should search for. THE most common preloader question EVER!

i think the reason is using compmentsā€¦
iā€™ll search senocular :h: .