Tagged Questions
0
votes
1answer
71 views
Detect disabled attribute changed with jQuery [duplicate]
I have a html control, and need to detect when it's disabled state changes.
I tried:
cb.on("change", function() {
if(cb.is(":disabled")) {
// the control is disabled
} else {
...
0
votes
1answer
33 views
Better to have event for each state or one event with state property in EventArgs?
I'm always using events in C# in types that have states. But I'm always confused what is the better approach, to have event for each state, or one event with state property in EventArgs? Here's a ...
1
vote
2answers
215 views
C# State pattern and events
In C#, events can only be fired by the owning class through protected virtual methods such as OnClick, OnExit, etc... What I'm trying to do is implementing GOF State Pattern for some of my complex ...
0
votes
0answers
45 views
How to listen Motion events and return their value to the thread
I want to know how can I return state of events from onTouch the button to my thread. In code I use:
gameview.java (here I "listen" for specific actions from buttons):
public boolean onTouch(View v, ...
0
votes
0answers
26 views
Determine active caller without monitoring state change events
I have an application that needs to determine the phone number of an ongoing call.
I have seen examples of using the ACTION_PHONE_STATE_CHANGED broadcast intent to get the calling phone number at the ...
2
votes
2answers
386 views
UML State Machine: Class diagram of a state with Transitions, Triggers and Events
TL;DR: How should I represent a UML Transition (see next line) in a UML Object Diagram?
event(event_parameters) [guard_condition] / doStuff()
In my BSc thesis project, I am working with UML ...
3
votes
2answers
148 views
Switching between various screens of the same state type?
I've been having an issue with the basic structure of a program that I'm working on. I'm a very inexperienced programmer trying to teach myself the basics of programs that use multiple states.
Right ...
0
votes
0answers
97 views
Flex Component Lifecycle and Event Mechanism Using States
I have a custom component -ChildComp.mxml- that has one custom object and other Flex GUI components checkbox, textinput etc. These components' values binded to my custom object's fields.
In my ...
0
votes
1answer
457 views
How do I change a states click event dynamically in actionScript
<s:Button id="btnNext" label="Next" width="80"
click.Title="changeState('Info');"
click.Info="changeState('Organ');"
/>
How do I dynamically change the "click.Title" event in actionScript?
...
0
votes
1answer
181 views
Android - track events of other applicaiton
I am developing an application where I pdf files in the assets folder to applicaitons internal storage and display them on screen. Onclick of each document I launch Adobe reader to display the ...
2
votes
3answers
5k views
Flex 4 States: includeIn and component creationComplete
I have a component that, once it's all ready, I need to set the state based on a variable I'm reading in from XML. I tried doing it with creationComplete, but it's apparently not ready, as the state ...
0
votes
1answer
431 views
Flex: set another state in the currentStateChange handler?
I have a currentStateChange handler. In that handler. I want to set another state based on a variable. The currentStateChange handler fires but in the handler function it won't change it to the next ...