Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Create navigation upon roll-over

Status
Not open for further replies.

wilcoHead

Programmer
Feb 2, 2005
85
I am trying to create a navigation for an entry page to our site. I want to be able to mouse over the "HEINE Worldwide" and have the languages come up and then mouse over the languages (have them change color when mouse over) and then click to the appropriate link. I have tried this but as soon as I add a mouse-over action to the Language, it goes whacky. Can anyone take a look at this? The file can be downloaded here:


Thanks,


Thanks for your input;
WilcoHEAD
 
I am still trying to create a navigation for an entry page to our site. I want to be able to mouse over the "HEINE Worldwide" and have the languages come up and then mouse over the languages (have them change color when mouse over) and then click to the appropriate link. I have tried this but as soon as I add a mouse-over action to the Language, it goes whacky. Can anyone take a look at this? The file can be downloaded here:




Thanks for your input;
WilcoHEAD
 
I am new with action scripting, how would I do that?

Thanks for your input;
WilcoHEAD
 
For a quick example, this will cause "englishBtn" appear when rollover to "worldWideBtn":

[tt]//
worldWideBtn.onRollOver = function():Void {
var EnglishBtn:MovieClip = this._parent.attachMovie("englishBtn", "englishBtn", 1, {_x:200, _y:350});
};
//[/tt]

But you'll need a good programming skill to achieve what you want, so if you're new to ActionScript, may be better to look for a pre-written "menu". Google "flash menu tutorials" perhaps???

Kenneth Kawamoto
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top