PDA

View Full Version : how do i make an invisible...


s_marshall
02-16-2004, 03:16 AM
how do i make a button invisible?

neilb1969
02-16-2004, 06:40 AM
You can make an invisible button by only creating the 'hit' area when making your button symbol.

When you drag your button onto the stage you will see a blue box which is your button but when you publish the movie you will not be able to see its location, it is 'invisible'.

Hope this helps.

Ruben
02-16-2004, 11:50 AM
You can create a button, drag ik onto the stage and set it's _alpha to 0% [select 'alpha' in the dropbox on the properties toolbar].

You could also create a button, drag it onto the stage. Giving it an instancename [for example: "somebutton"]. And put a script on the frame looking something like this:

somebutton._visible=false

or something like this:

somebutton._alpha=0


Good luck with it - Ruben