Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
5k views

Flash toggle button

I need a button in Flash/AS3 that toggles between on and off. So I was glad to see that the Button class has the toggle property that lets me have that behavior. I was less happy to see that what I ...
0
votes
0answers
43 views

Create a custom hitTestState on a SimpleButton using Graphic and Path in Flex(Flash Builder) 4.5.1

I am trying to create a custom hitTestState area around a Class that is extending SimpleButton. I used the sample code in the docs as a basis, with one small change. I want to use a Graphic as the ...
0
votes
1answer
126 views

Trigger SimpleButton state with KeyDown Listener in AS3

I am looking for a way to trigger the downState of my SimpleButton using my KEY_DOWN event. I am hoping there is a way to do this without having to switch this to a MovieClip custom button. Here is ...
0
votes
1answer
41 views

How get all buttons in AIR/Flash

I'm using following code to register a function for click event of all SimpleButtons inside my swf file. The SimpleButtons that their name begins with 'b' must be register. But it not works for all ...
0
votes
1answer
95 views

Button removed with removeChild() gets re-added in it's over state

I have a SimpleButton on the stage, and in the click event for it, I remove it using removeChild(). When re-adding the button, it gets re-added in it's "over" state, not the "up" state as expected. ...
0
votes
1answer
262 views

intermittent bug - DevExpress XtraEditors SimpleButton's text only appears 1st time when mouse is on top of it

pretty weird issue, essentially not replicable with certainty. Several offending buttons are located on top of a tab control's header (not as a tab page child, they are child to the same surface that ...
0
votes
3answers
309 views

When the mouse button is held down, why do SimpleButtons stop detecting over state?

I was hoping to gain some insight as to why Flash acts in a particular way. Here is the scenario: if you... 1) add a SimpleButton to the stage and view the SWF 2) then press and hold the mouse ...
0
votes
3answers
376 views

AS3: Making a SimpleButton from library sprites: Possible?

I'm working on a small project in AS3, and I need to make some interface buttons. I had them as separate classes at first, but then realized that it was probably overkill, and on top of that, figured ...
0
votes
1answer
385 views

Flash Actionscript 3 SimpleButton doesn't have focusEnabled property?

This is driving me insane. I am working in Flash (not Flex) with Actionscript 3. I have an instance of the class SimpleButton. I have a TextField that I don't want to lose focus when the user ...
0
votes
2answers
444 views

Changing SimpleButton.y does not appear to move the hitArea of the button [closed]

UPDATE: This is not an actual issue. It transpires that there was another Sprite being create and set to alpha=0 which just happend to be at the same Y position as the height of the SimpleButton. This ...
0
votes
1answer
823 views

Why is my AS3 SimpleButton not showing?

I'm very new to flash. I'm trying to show a simple button for my simple flash app (with adobe flex builder 3). The main project file, Client2.as: package { import flash.display.Sprite; ...