Flasher Archive

[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]


Subject: RE: FLASH: Radio Combo buttons
From: WebMaster
Date: Thu, 31 Aug 2000 15:23:33 +0100

I am not sure if anyone has answered this yet, but I can tell you what I do
anyway.

the action for my radio buttons look something like this.

on (release)
set variable "../:this" = _name
set variable "../:action" = "radioClick" <- this is for if there is more
then one action possible in the timeline holding the mc
tell target ("../")
Call ("action")
end tell target

in the frame "action" it goes soemthing like this

if action eq "radioClick"
Set Variable: "Counter" = 0
Loop While (Counter<1)
if this ne "radio"&counter

Begin Tell Target ("radio"&counter)
Go to and Stop ("radio stop")
End Tell Target
end if
Set Variable: "Counter" = counter+1
End Loop
end if

basically it tells the action to look to see if the radioButton it is
currently changing is in fact the one that was clicked...

i think this may answer your Q?

-Echo

-----Original Message-----
From: owneratchinwag [dot] com [owneratchinwag [dot] com]On">mailto:owneratchinwag [dot] com]On Behalf Of maxx
Sent: Thursday, August 31, 2000 8:55 AM
To: flasheratchinwag [dot] com
Subject: FLASH: Radio Combo buttons


Hey,

Got a dilemma with radio buttons.

Thirteen buttons in a row and only one needs to be selected at a time.
Buttons is stored in mc (actually just one duplicated 12 times) and mc is
labeled appropriately with "up" and "down" frame stops.

I'm working with a looping action, but I believe this recipe doesn't
necessarily work properly with my condition:

On (Press)
Set Variable: "Counter" = 0
Loop While (Counter<1)
Begin Tell Target ("radio"&counter)
Go to and Stop ("radio stop")
End Tell Target
Set Variable: "Counter" = counter+1
End Loop
End On

It's better than when I was just telling targets...but none can be selected
for more than the duration of the mouse press.

Any ideas for something simpler. I'm having a major brain fart this morning
and can't wrap my mind around this.



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
NudeGuru.com is proud to sponsor the Flasher list
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
IT'S THE ART OF MONEY, HONEY!
Tips and Advice from some of the most popular Flash
artists + industry power-brokers on how to hold onto
your rights, negotiate contracts and get full value
for your work.http://www.nudeguru.com from Franke James
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpatchinwag [dot] com


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
NudeGuru.com is proud to sponsor the Flasher list
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
IT'S THE ART OF MONEY, HONEY!
Tips and Advice from some of the most popular Flash
artists + industry power-brokers on how to hold onto
your rights, negotiate contracts and get full value
for your work.http://www.nudeguru.com from Franke James
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpatchinwag [dot] com


Replies
  RE: FLASH: Radio Combo buttons, EchoDotCom

Replies
  FLASH: Radio Combo buttons, maxx

[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]