Ask a Question related to Macromedia Flash Actionscript, Design and Development.
-
Burak #1
button problem
hi,
please see that simple example :
http://www.delizade.com/files/sil.htm
I have lots of scene like that and I have a lot of buttons on my scene. I
attach mc over of all. and buttons is active always. How can I prevent
buttons when an mc cover it?
thanks.
Burak Guest
-
problem: button
hello! I work on Flash2004 Professional. and I got the problem with standard button action. My button is inside the MC, ant this MC is marked... -
Flash Button URL Problem
Hello, I am having problems with flash buttons that I've made. They're really flash movies that I have tried to convert to a button. Anyway, I... -
Option Button Problem.
Hi. First time post here so thanks for looking. I am a home user of Publisher 2000 SR3 and I am trying to create an option button form. There are 6... -
button problem
I have buttons inside a movie clip that ir the roll over of another button. My first button has a hit area that asign a movie clip in the roll... -
button problem, please help!
Hi, I am creating a website with flash mx and have a problem with the buttons. They work fine and load each new movie, but I want them to be... -
PierreAlain #2
Re: button problem
button1._visible = false;
--
Pierre Alain
com
"Burak Delice" <com> a écrit dans le message de
news:c28k1a$4nd$macromedia.com...
PierreAlain Guest
-
Burak #3
Re: button problem
thanks Pierre but scene is always changing, because of this i cant know how
many buttons in scene when mc covered the scene. so I have to prevent
buttons different way...it shold be any more useful and right way
.. "PierreAlain" <org> wrote in message
news:c28kge$53q$macromedia.com... [/ref]
I
>
>[/ref]
Burak Guest
-
PierreAlain #4
Re: button problem
if you name your button regarding the scene/level
i.e. on a specific scene/level button1_1, button1_2, button1_3
(and on another scene/level button2_1....)
you can do
for ( var i =1; i<MaxButton; i++){
setProperty( "button_1_" + i , _visible, false );
}
or if you don't know the number of button :
for ( var i =1; i<MaxButton; i++){
var A = eval ( "button_1_" + i );
if ( A.length < 3 ){
break;
}
else
{
setProperty( "button_1_" + i , _visible, false );
}
}
--
Pierre Alain
com
"Burak Delice" <com> a écrit dans le message de
news:c28p0b$9p8$macromedia.com...
how [/ref][/ref]
scene.
> >
> >[/ref]
>
>[/ref]
PierreAlain Guest
-
shiftlock #5
Re: button problem
This is a simple but interesting problem Burak Delice,
Why not remove the button from the second fram ie:
Say frame 2, layer 1 has the button which you press to gotoAndStop at say
frame 5
frame 5, layer 2 has the gray square that comes in from the right.
The point here is frame 5, layer 1 should be empty, do not insert a keyframe
there or else the button will appear underneath the gray square.
I hope this helps, if not write again.
Shiftlock
shiftlock Guest



Reply With Quote

