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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to make an autohide menu bar

Status
Not open for further replies.

Phutie

Programmer
Jul 31, 2000
29
PH
Hi,

Im a newbie with Director 8 and I want to create a program with autohiding menu bars? Tell me how do I do it...

Thanks,

Phutie
 
on mouseenter
sprite(the currentsprite).locV = sprite(the currentsprite).locV + 10
end

on mouseleave
sprite(the currentsprite).locv = sprite(the currentsprite).locV - 10
end

attach this script to the object you need to have move in and out. NOTE: this wont move all your buttons with it, add lines of sprite(X).locv..... for every button to the mouseenter and leave scripts.

play with it for a while, if you cant work it out reply and ill give you some more pointers
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top