0
votes
1answer
33 views
while loop ignore the event listener
so when i run this code to try to change the background the GUI crashes and gets stuck in a infinite while loop ignoring the event listeners. here is the code:
`private Panel getPanel1() {
if …
0
votes
4answers
227 views
onmouseover doesn’t work when using javascript to add img tag on IE
I need some javascript code that dynamically adds an img tag to a div, and the img tag needs onmouseover and onmouseout handlers.
I have it working on Firefox. But it doesn't quite work on IE. On …
1
vote
4answers
72 views
AS3: Faster to use EventListeners or ArrayLoops?
I am writing a game in AS3 and have, as an example, around 40 objects on screen. Let's say they are clouds. I'm wondering which of the two paths would be less a strain on system resources:
a) Put an …
0
votes
3answers
82 views
MSIE and addEventListener Problem in Javascript?
document.getElementById('container').addEventListener('copy',beforecopy,false );
In Chrome / Safari, the above will run the "beforecopy" function when the content on the page is being copied. MSIE …
0
votes
1answer
1k views
AS2: How do I use addEventListener on an SWF/MovieClip loaded via MovieClipLoader
I'm trying to load a local SWF then catch a few events that are fired but I can't see why this isn't working.
Here's the code
Parent.swf
_mcl = new MovieClipLoader();
_mcl.addListener(this);
…
0
votes
1answer
199 views
addEventListener() attached to multiple buttons, but only fires once
I am writing a Facebook app in PHP/FBJS. I have some code where I attach an addEventListener() to two buttons. When I run the app, the first button I click on fires the addEventListener() and the …
0
votes
1answer
124 views
Dispatch Event When Listener Is Added - ActionScript3
Is it possible to dispatch an event from an object when an event listener is added to that same object, without overriding the addEventListener method of that class?
I am working on a modularized …
0
votes
2answers
89 views
addEventListener() question/weird behavior
I'm developing a game for Facebook. I'm using PHP and FBJS. I'm using addEventListener() to attach events to two buttons. Each button has it's own event handler which is a js function. The first event …
1
vote
4answers
176 views
Best Practices for Suspending Buttons in Actionscript 3
Ok, so my first question here was so well answered I figure I'd try my luck at this little query.
Is there a better way to set up a flash project with lots of navigation than having to do this?:
…
3
votes
7answers
417 views
Passing parameters to event listeners / handlers
How do you pass parameters / variables through event listeners? I've overcome this problem fairly effectively using anonymous functions; which is an incredibly simple solution, but at the end of the …
2
votes
1answer
102 views
XUL attaching events to anchors added with javascript
I'm writing a firefox extension that adds event listeners to all the anchor tags on a page. Essentially I have:
window.addEventListener("load", function() { myExtension.init(); }, false);
var …
1
vote
2answers
38 views
addEventListener only works on last object.
In the following code, it seems I only get the 'otherboxclick' call for the last box added (b1). If I change the order the boxes are added, it's always just the last one that works.
How can I get it …
0
votes
3answers
315 views
Form is still submitted even though listener function returns false
I'm trying to figure out why this JavaScript doesn't stop the form from being submitted:
<form action="http://www.example.com" id="form">
<input type="text" />
<input …
0
votes
2answers
2k views
Flex3: Custom Item Renderer does not listen to events dispatched by parent
I have a List with a custom ItemRenderer. The ItemRenderer contains a Checkbox and a Label.
The component with the List has a 'select all' checkbox.
When the 'select all' checkbox is checked, it …
0
votes
3answers
94 views
How Do I addEventListener for Elements Coming from the Server?
Hi.
How do I add a click event using addEventListener (window.onload)
when the tags in question are being generated from
the server (via an xmphttp request, no less)?
Thanks!
