Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
19k views

“element.dispatchEvent is not a function” js error caught in firebug of FF3.0

i am getting the following error while loading my index page in FF3.0. Sorry, i am unable to paste the script here as it is 2030 lines of code. element.dispatchEvent is not a function On ...
3
votes
1answer
673 views

How to fire mouse wheel event in Firefox with JavaScript?

I'm trying to do automated testing with WebDriver, but it currently has no ability to simulate mouse wheel events. As a workaround I'm trying to fire these events with JavaScript instead. I'm doing ...
2
votes
1answer
66 views

Can an Orbeon event in an XBL be dispatched from Javascript?

Orbeon version: Orbeon Forms 3.8.0.201005270113 I have the following code in a Javascript file. This code is executed, but it seems like the model in the XBL is not found. ...
2
votes
1answer
150 views

Redirecting Swing mouse events

I am trying to make it possible to display and interact with Java Swing components on top of a Java3D canvas. I am displaying the components by painting a transparent JPanel to a buffered image, and ...
2
votes
2answers
1k views

Dispatch MouseEvent

Is there a way to dispatch MouseEvent, same as dispatchKeyEvent using the KeyboardFocusManager.getCurrentKeyboardFocusManager().addKeyEventDispatcher(listener); that happens before the event ...
2
votes
3answers
6k views

How to call a function in a Class from another Class?

Update: Modified title to better reflect my question Hi everybody :) My question today revolves around a CustomEvent I'm trying to send from one sub Class to another. I've used my CustomEvent class ...
1
vote
1answer
538 views

Is it possible to dispatchEvent() a mouse click to a <input type=text> element?

Basically I'm trying to dispatch a custom made mouse click event to a text input element using the following code (see this jsFiddle): function simulateClick(id) { var evt = ...
1
vote
2answers
285 views

Flash dispatchEvent fired twice

I have two frames with as3 code: // frame1: gotoAndPlay("show controls"); // frame2 - have movieclip with name slide0 // create menu items click listeners for (var i:int = 0; i < ...
1
vote
3answers
317 views

Is looping events in JavaScript using document.dispatchEvent possible?

I'd like to create an event loop mechanism in JavaScript/DOM using only dispatchEvent calls. For example: document.addEventListener("LoopingEvent", loop, true); var loop = function() { ...
1
vote
2answers
2k views

java.awt.Component.dispatchEvent()'s purpose and behavior

Most of the tutorials and documentation that I've been reading seem to indicate that most component communication takes place by subscription using listeners. The Java docs indicate that ...
0
votes
1answer
54 views

Adobe Air - Dispatch event with parameter

How to pass the addChild(event.target.loader) through a dispatch event from the class to the main timeline? package scraps { ... public class FileScrap extends Scrap { ... ...
0
votes
2answers
34 views

Trouble with dispatching events from external AS class in Flex

I've been trying this for a day now and I can't work it out. I have a main application Planner.mxml. This view has a couple of custom components, one of which is LoginView.mxml. In LoginView.mxml I ...
0
votes
4answers
58 views

Flex Event Handling

Folks, I had a doubt in Flex's event handling and dispatching mechanism. Consider the below diagram, Both Panels i.e Panel1 and Panel2 are under the same application. I want to dispatch an ...
0
votes
1answer
95 views

Magento - submit invoice event and price comparison

all! I'm trying to compare prices, in Order, such as GrandTotal and TotalPaid, after submit invoice. i'm try listen "sales_order_invoice_save_after" event. config.xml ... <events> ...
0
votes
3answers
220 views

send dispatchEvent to child : exemple doesn't work? (flash, as3)

i'd like to send a dispatchEvent to a loaded swf, put into a movieclip. I found a good topic about it : as3 - dispatchEvent from a parent swf to a child swf but my example doesn't work, the "trace" ...
0
votes
1answer
113 views

Add-on SDK calling dispatchEvent does not send event from content script to a page

Hello I have simple firefox extension (based on Add-on SDK) with pageMod. pageMod injects some script to a page, which calls one function function dispatchEvent(name, data){ try { data = ...
0
votes
2answers
100 views

Overriding in Flash IDE

I'm trying to override dispatchEvent(), with no success in the Flash IDE. Reviewing Adobe docs on the method, it should simply be: override function name() As demonstrated by Grant Skinner, this ...
0
votes
0answers
198 views

Anrdoid dispatchKeyEvent problem

I'm trying to capture all key event using dispatchKeyEvent function in my tablet android, but I have faced a strange problem. It does not capture the event injected by some key of touch keyboard, for ...
0
votes
4answers
76 views

Create your own Events in Actionscript3, how it really work?

I'll try to be objective :) I would like to know how and why someone will need to create you own event. I actualy know how to do it but I don't get the really idea of do such a thing. Could you give ...
0
votes
1answer
285 views

Dispatching event doesn't fire :(

package com.fladev.background { //import all classes import caurina.transitions.Tweener; import flash.display.Loader; import flash.display.LoaderInfo; import ...
0
votes
3answers
139 views

FLEX: flash-component not receiving it's own custom event

I made a movieclip in flash that dispatches a custom event: MyEvent.THE_TYPE = "the_type" in flex I have: <local:my_flash_mc the_type="do_something()" however, this is not working. in flash, my ...
0
votes
1answer
278 views

The dispatchEvent only gets picked up by my main class (Engine.as) and not the ships class (Weapons.as)

I am currently trying to make a game, but the problem now is that when I dispatchEvent, only my main class picks it up (the engine). I want my Weapons.as to also pick it up. My main class is Engine.as ...
0
votes
1answer
401 views

AS3 Custom Event not firing on Document Class ( using DispatchEvent actionscript)

Im trying to get my head round what is needed to catch event "Beep2", using dispatchEvent. The function "DoNext" is not firing, even though Im able to produce a trace result of the dispatchEvent ...
0
votes
1answer
159 views

Sending a click event to two completely overlapping layers (with child nodes)

Ok, I have page (html, javascript, css) with two layers that completely cover the browser window. The one in front contains a navigation that should clickable. The one in the back contains a map with ...
0
votes
1answer
290 views

Flex 4, listen an event from parent

I have the following problem: Description: I have a page with a button and a spark list (spark.components.List), when the button is clicked, all the elements in the list should change their label. ...
0
votes
1answer
37 views

How far can one event go and how do I listen for it?

I have code in a flex component that I want to listen for an event, the source of the event is a custom class that's being run by another class that's being run by another class etc etc. I was under ...
0
votes
2answers
265 views

what to addEventListener to when listening for custom events?

I am sending an event when an sql query returns no matches so that I can continue with the addition to the database.. It seems like actionscript is requiring that I attach the listener to something, ...
0
votes
4answers
330 views

How do I dispatch an event from one class and listen for it in another class that isn't a child or parent of the first class?

I am making a game using AS3. I have three classes (Spaceship, UFO, and Scoreboard) which are all children of the class GameEngine. I want to put eventListeners in Scoreboard and then send ...
0
votes
2answers
325 views

How flash dispatchEvent really works?

It is said in the docs, that EventDispatcher's dispatchEvent "...dispatches an event into the event flow". The phrase is nice-looking and doesn't really explain anything. Say, we have two listeners ...
0
votes
1answer
534 views

dispatchEvent doesn't work in secondary class

I have this problem here: I have a SWF called Application.swf that loads another SWF called jeu.swf. My main class (don't know how to call it haha), is called Main.as. Another class is called ...
0
votes
2answers
1k views

AS3: Trigger artificial MouseEvent

I am converting a simple flash 'drumset' application to support TUIO multitouch using the tuio as3 reference implementation from http://www.tuio.org/?flash As a quick and dirty solution, i am trying ...
0
votes
1answer
231 views

AS3 The ways to dispatchEvent

I was wondering the difference between these two dispatchEvent method... //1. eventObj:YouTubeSearchEvent = new YouTubeSearchEvent(YouTubeSearchEvent.CHANGE_VIDEO_READY); ...
0
votes
1answer
408 views

flex 4: swfloader as2 game, can i catch a customevent that was sent using mx.events.EventDispatcher?

Hiya. I'm building a flex 4 container for action script 2 flash applications. I use <mx:SWFLoader> component to load the game. I know that i can catch events or even custom events from an ...
0
votes
2answers
116 views

Updating external Flex components from an action

I'm new to Flex and am having trouble understanding Events. I think Events are what I want to use for my situation. I have 2 components, addUser.mxml and listUsers.mxml. I access these from a ...
0
votes
3answers
9k views

Flash-AS3: Calling a function in a Class from another Class (Part 2) via DispatchEvent

Hey this question is in reply to Joel Hooks's comment on an older question of mine (How to call a function in a Class from another Class?) I was able to fix my own problem using a public static var ...
0
votes
1answer
2k views

AS3 Dispatch Event from Class

I have a class which makes a url request and stores data from that request. When the data is retrieved, parsed, and stored into an array, I'm sending a dispatch event which I listen for in my document ...
0
votes
1answer
495 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
1answer
157 views

Manually Dispatching a DocumentEvent for testing UI element validation code

I'm testing a Swing GUI application using the UISpec4J testing framework. I'm testing validation code on a JTextField, but the framework does not support focus-change events, as it runs the ...
0
votes
2answers
5k views

AS3 - Dispatch Event Issue

I have an Flash AS3 project that loads external SWFs and controls them in different ways. On some of the loaded SWF files, they have a "Next Selection" button that takes you to a new presentation. ...