Flex :: Listen For Events On The Pop Up Manager Class?

Jan 27, 2012

I'm trying to detect when pop ups are visible (including tool tips if possible). The reason is that I need to hide or freeze (capture a snapshot) the Stage* components (StageWebView, StageVideo, StageText etc) when pop ups appear.

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Listen For Custom Events In Class Body?

Sep 5, 2011

I came to some misunderstanding how to use events. LOL. I thought I understand it but as I see I dont.

I've got a Engine document class where Hero is added, and Cannon object too. In body of Hero I need to dispatch event when Hero reaches some point or particularly a pitfall, so I've got static const string to handle it:

[Code]...

but this way I would end up with dozens of handlers in the Engine body class, and I am trying to minimize this class as it is big enough without those handlers. I am stunned and suprised, and I am noob again. Maybe someone will clear out how to get custom events working/... and why only instance of object that dispatches an Event can hear it (my case).

View 2 Replies

Actionscript 3 :: Create A Separate Class For Each MC Inside Of The Container To Listen For And To Dispatch Events?

May 25, 2011

Imagine you have a MC used as a container for several other MC's used as buttons.Now, should I use the class of the container to listen for and to dispatch events. OrShould I create a seperate class for each MC inside of the container to listen for and to dispatch events.

In summary: One class for all, or several smaller classes dedicated to their respective MC.How far should one go with abstraction?.

View 2 Replies

Flex :: Listen For Dispatched Events From Container Children?

Oct 5, 2010

I'm using an accordion container that has it's creation policy set to auto. One of the accordion's children is a spark border container that has a data grid within it. Currently, I'm using the data grid's creationComplete property to call a function; similarly, I'm using the dragComplete property to call another function.

How can I add listeners for events (creationComplete & dragComplete) via actionscript? The obvious problem is that the accordion does not create all its children on creation (nor do I want it to), so I can't simply use something like: datagrid.addEventListener(...)

View 1 Replies

Flex :: Listen To Operating System Events When Not In Focus

May 5, 2011

Is there a way that a flex based application (in the browser or AIR) can listen to windows events (or any other OS) when it is not in focus?Lets say that my AIR application is minimized and I want her to be notified when ever new data was copied to the clipboard?

View 1 Replies

Flex :: Listen To Mouse Events On The Background Of A Group?

Aug 2, 2011

Is this the most efficient way to listen to mouse events on the background of a group?

<s:Group width="200" height="100" rollOver="group1_rollOverHandler(event)" rollOut="group1_rollOutHandler(event)">
<s:Rect width="100%" height="100%">
<s:fill>
<s:SolidColor alpha="0"/>
</s:fill>
</s:Rect>
</s:Group>

seems pretty minimal, but alpha = 0 is not the most efficient thing out there.

View 1 Replies

Flex :: Listen For FocusIn And FocusOut Events For A Spark TextArea?

Feb 16, 2011

I am writing a flex application and I have two Spark TextAreas. I want to create an EventListener so that when the user clicks on a text area, the text inside the TextArea is cleared:

this.addEventListener(FocusEvent.FOCUS_IN, onFocusIn);
private function onFocusIn(ev:FocusEvent):void {
if (this._showsCaption) {

[Code]....

Currently I can implement this with a Spark TextInput, but when I click on the TextArea, the focusIn event never fires and the onFocusIn() handler is never called.

View 1 Replies

Actionscript 3 :: Send Events Between Objects On Same Level (Global Event Manager)?

Sep 8, 2011

I came to the point where I need to communicate between 2 objects (let's say Tank and the Cannon). It is tile game, and when the Tank approach specific tile I need my Cannon to shot the Tank. When Tank gets that specific tile I want to dispatch some custom event and have listener in Cannon class body to make the shot happen. Other way I would have to check in ENTER_FRAME loop (inside Cannon body class) if the Tank touched tile that runs the Cannon shooting - but this is not elegant and efficient. The issue is complicated by the fact that the Cannon and Tank are added to the Engine (document class) and can't simply hear for each other, because they seat on the same level in display list.

Initially I could addEventListener to the Engine, but this way my document class would enlarge to the XXL size (all listeners functionality, all methods for game etc). What I would accomplish is to have event listener in every Cannon object (defined in body class) listening for Tank's dispatching the event. I saw some 'Centralized Event Manager' article in the net, but can't download full classes [url]...

View 1 Replies

ActionScript 3.0 :: Listen To For All Events From An Object?

Oct 26, 2008

Does anyone know if it's possible to listen for all events fired from an object without having to specifically listen for each one?

View 5 Replies

ActionScript 3.0 :: Listen To SWF Button Events?

Aug 6, 2011

I have an SWF that has been provided to me that I need to load. Inside that SWF are two buttons ("cancelButton" and "proceedButton"). Is there any way that I can add event listeners to these buttons from within my action script after I have loaded the SWF or do I need to get the SWF creator to create event listeners on the buttons that can bubble to me?

View 5 Replies

ActionScript 3.0 :: Listen For Events Bubbling From Loaded Swf

Sep 13, 2010

A swf (my game framework) loads another swf (a game). The game is loaded into a child domain which seems to be the default domain for loaded swfs.

The framework listens for custom events bubbling up from the game. However, the framework only receives events dispatched directly from the games document class but not from any of the games children.

Bubbling is set to true on everything, but it's not working? Is it only possible to dispatch events from the document class of the loaded swf.

swf(Framework -> listen) -> swf(game document root -> child) = no go!

View 1 Replies

ActionScript 3.0 :: Listen To Events In Child Classes?

Aug 2, 2010

I just started to use classes in AS3. I stuck to event handling between classes. That's what I want to do, but don't know how to do it:

1) set up event listener in a child class

2) when this event in the child class is triggered, the child class, the parent class and several other child classes respond to the event.

View 0 Replies

Actionscript 3 :: Make A BorderContainer To Listen For Scroll Events?

Aug 19, 2010

There is my scenario:

I have a BorderContainer that is contained by a Scroller.

Question :

How can i make my BorderContainer to listen for Scroler events?

e.g. When i scroll down or up, or right or left, i want to change my BorderContainer's cordinates(x, y).

View 1 Replies

ActionScript 3.0 :: Way To Listen For Events Sent From Main.swf Inside Preloader.swf?

Sep 16, 2009

I'm trying to listen for events sent from my main movie swf from inside a preloader shell swf.Inside Preloader.swf, I load my Main.swf in the traditional way, with a loader object and I listen for progress events on that. These progress events make my preloader bar scaleX increase, like normal. But, I have an XML file and an image that load inside of my Main.swf as soon as it is loaded. I would like for these unloaded bytes to be shown in my Preloader.swf before the Main.swf gets added to the stage.right now, I am sending the totalBytes from the XML file and the image to my Main.swf document class, which, in turn, dispatches a custom "PreloaderEvent" that holds the total number of bytes.

In Preloader.swf, I add an event listener to the loader ( which holds main.swf ), listening for that PreloaderEvent.Can events be heard in this manner and is this the best way to be preloading this type of file ( one where main.swf loads in the first frame, then starts loading of external images after the swf is running ).I'm just not sure how to get all of those extraneous bytes into one location for my preloader to see at the same time.

View 1 Replies

ActionScript 3.0 :: Listen For Multiple Mouse Events Then Load MC

Nov 13, 2009

Are there suggestions for code that will essentially listen for (or test) for mouse clicks on 3 separate buttons. Once all the correct 3 buttons have been released, I want a to trigger a final event(load a 4th movie clip). I can't stop thinking in terms of IF (all event 1 + event 2 + event 3) THEN load movie. But I know that isn't AS3 way to do it, any better understand way to do it with event listeners (but not too complicated!)

View 1 Replies

ActionScript 2.0 :: AttachMovie RemoveMovie - Listen To Timed Events?

May 22, 2007

I just basicly need a small example of script of attachMovie Do something then removeMovie I am trying to understand advanced Fuse [URL] and can make things do stuff now, but not sure how to make the code listen to timed events.

[Code]...

View 3 Replies

ActionScript 3.0 :: Listen Movie Clips Itself For Keyboard Events Instead Of Stage.addEventListener?

Dec 3, 2009

Is there a way to listen movie clips itself for keyboard events instead of stage.addEventListener ??I work on a project a kind of game and ı need mymovie clips on stage rotate with keyboard events such as KEY_DOWN key.code LEFT or RIGHT.I tried to add event listener my MC but it didn't work.If I listen to stage every Movie Clip in my stage start rotation same as the others.What should I do? Here is my codes

[Code].....

View 12 Replies

ActionScript 3.0 :: Listen For Events Coming From Concrete Objects Made By A Factory?

Jul 29, 2009

How do I listen to an event dispatched from non-display-list concrete objects which are created by a singleton factory class?

An example would be where I want to create tweens for objects using a TweenFactoryClass. In my Main.as class I have this:

ActionScript Code:
TweenFactoryClass.instance.tweenMe( myClip, 200, 200 );

then, in my TweenFactoryClass.as, I have:

ActionScript Code:
public function tweenMe( clip:DisplayObject, xLocation, yLocation ):MyTween
{
var tween:MyTween = new MyTween();

[Code].....

I don't know where I should add the listener to be able to hear that event that was dispatched from the MyTween class.

View 9 Replies

ActionScript 3.0 :: Listen For A Timer Event In Document Class From Another Class?

May 7, 2010

How do I listen for a timer event in my document class from another class? im thinking...... HTML Code:

[Code]...

HTML Code: 1119: Access of possibly undefined property gameTimer through a reference with static type Class.

View 3 Replies

ActionScript 3.0 :: FLVPlayer - Manager Class For Playback?

Jun 18, 2010

So I've got a video player that works great. You hit 'play', it calls the public playVideo() function in the FLVPlayer class to begin playback, and then other things happen accordingly (the PlayerControls class updates to show playbar progress, etc). Currently, it's easy: there's only one type of 'playback', and it talks directly with the FLVplayer class (and PlayerControls, etc).

However, we're adding different types of 'playback' now, where a poster image could optionally show for xxx seconds ahead of the video (and still needs to update the playbar to show progress). We're also doing the same for a video bumper, which plays between the poster image and the video as well (and also needs to update the playbar class).

In all these cases, there is a common "playback" that needs to be able to be paused (in some cases automatically, like when you click on a menu button in the menu to open a separate section) or restarted. Rather than do a check to see isVideoPlaying || isPosterPlaying || isBumperPlaying, it seems to make better sense to lump all these things into a common playback manager interface.

View 1 Replies

AS3 :: Listen From The Main Class To A Sub Class For A Variable Change?

Apr 25, 2011

How do I listen from the main class to a sub class for a variable change?

package {
import flash.events.*
public class DataBase extends MovieClip {

[Code].....

This is what I have so far for the sub class but I can't seem to figure out how to listen to this variable change from Main() or even if I am dispatching the event properly.

View 2 Replies

Flex :: Dispatching Events From A Class?

Dec 15, 2009

package com.services
{
import com.asfusion.mate.events.ResponseEvent;
import com.events.navigation.DesgManagementEvent
import flash.events.EventDispatcher;
import mx.controls.Alert;

[Code]...

I am able to get the result, but not able to dispatch the event from the custom actionScript class. I googled and got the riposte that you need to add it to display list.

View 2 Replies

Flex :: Dispatching Events From External Class?

Dec 21, 2011

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 do the following:

protected function btnLoginClick(event:MouseEvent):void
{
try
{

[code]....

As you can see, when the user is successfully logged in, I want to dispatch a custom event; if not, I show an alert box. However, this event doesn't dispatch (or at least, I don't know how to listen for it).

I would like to listen for it in my main application where I can then change my viewstate to the logged-in state. However, the event never seems to get there. I listen for it by having loggedIn="loggedInHandler(event)" on my loginComponent.

View 2 Replies

Flex :: Dispatch Custom Events From A Created Class?

Jan 2, 2010

I have an <mx:Application> which contains a <mx:Module>. This module has several child modules. It also has some an instance of a class I have created. I am trying to have a method of this class dispatch an event that can be "heard" by the module and handled. This isn't happening.To be more clear, I am using 'dispatchEvent' to from inside a class method.There is an instance of this class in: mx.core.Application.myapplication.mymodule.myclassIt is the 'myclass.somefunction' that dispatches the event. I have a listener registered in 'mymodule'. Nothing happens when the function/method runs, however.

View 1 Replies

Flex :: Actionscript :: Create A Class To Handle Events

Apr 7, 2010

in Adobe tutorials, they suggest to create a class to handle the events (see below the copy/pasted code, and link to page).I was wondering if I have to handle all events with the function handleAllEvents, using if statements to check if the target is the one I want, and the event is the one I want.i.e. if (event.type=="click") && (event.currentTarget == "myId")Should I have a list of ifs (for each target and each event type ?)[code]

View 1 Replies

Flex :: Difference Between Complete And UploadCompleteData Events For Class Filereference?

Jun 9, 2009

When I upload a file using a Flex application,what is the difference between complete and uploadcompletedata events? In which cases one of them will be dispatched and the other one won't?

View 1 Replies

ActionScript 3.0 :: Listen For An Event In Another Class

Aug 28, 2011

I am trying to wait for and Event.COMPLETE in another class but my code just jumps through the event listener and executes the following code without waiting for the event to complete so my variable is not being set.[code]

View 2 Replies

ActionScript 3.0 :: Listen The Event Triggered By Another Class?

Oct 15, 2011

I've got 3 classes: The class that recognizes the change in URL (using SWFAddress by Asual):

[Code]...
 
And the "Hello World" never appeared in the output window - so I'm not sure if is it possible that my MenuPanel has a chance to receive a info about completing the validation triggered by some other class?

View 2 Replies

Actionscript 3 :: Listen The Event Triggered By Another Class?

Oct 15, 2011

I've got 3 classes: The class that recognizes the change in URL (using SWFAddress by Asual):

[code]...

And the "Hello World" never appeared in the output window - so I'm not sure if it's possible that my MenuPanel has a chance to receive an info about completing the validation triggered by some other class?

View 1 Replies

Global Security Manager In Flex?

May 31, 2010

I made a swf that interacts with other site on the internet (which has a crossdomainfile for me).in the main.mxml there is a definition of webservice (mx:WebService)(which is not in my domain). Therefore when loading the swf, there is a first call to crossdomainfile.xml.I put this swf on my server so that my clients can get it.

When i connect to my server to download the swf, i expect to be asked if i want to allow the swf connect to foreign webservice domain.Do i always need to define exception in Global Security Settings panel?I don't want my client do define special things..Is there a best practice for that? Why when i surfing the net other swf can do this? I read about the FlashPlayerTrust, can i define there a website i trust my swf will connect to?

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved