Flex :: Use TweenLite To Implement Effect Of Flex's PopUpManager?

Apr 21, 2011

How can I use TweenLite to implement effect of Flex's PopUpManager?

View 1 Replies


Similar Posts:


Flex :: Use Tweenlite Effect To Be Invoked In The ShowEffect/hideEffect Of A Canvas?

Aug 27, 2011

How can I use Tweenlite effect to be invoked in the showEffect/hideEffect of a Canvas?

View 1 Replies

Flex :: Implement A Drilldown Effect In A DataGrid?

Dec 30, 2009

I want the Flex DataGrid to implement a drilldown effect. The data to the DataGrid is obtained from an XML file.

View 1 Replies

Flex :: Pop-Up Blocker And Flex's PopUpManager

Sep 29, 2010

If a user has a pop-up blocker on, will it effect pop-ups within a Flex application. If I use the PopUpManager class in my app, is there the possibility that it would be blocked.(I'm writing about pop-ups within the app, not advertising pop-ups and pop-unders.

View 1 Replies

Actionscript 3 :: Using PopUpManager In A Flex 4.5 Mobile App?

Oct 2, 2011

I'm working on a mobile app using the Flex 4.5 SDK and I'm trying to figure out the best way to handle notification windows. In most cases these windows will be alerting the user to when something goes wrong. Ex: bad login, no data, cannot resolve server.

I'm using a singleton design pattern, I have a Requests class that handles server calls. Most popups will be originating from this class (IOErrorEvents from my loader being used to access the API). Since this class is a singleton and is used from all Views inside the app it is not aware of applications current view. I'm also not sure having this class keep track of the current view and having it push popups on top of it would be best practice.

I'm hoping that I can use PopUpManager to keep track of where to add popups and what popups are currently on the stage. Though all examples I've seen online about this show static Components being used in a views Declarations tag.

View 2 Replies

Actionscript :: Implicit Coercion When Using Popupmanager In Flex?

Mar 11, 2010

I had to reformat my question because I realized I was using incorrect flex method. But still a similar issue occurs:

private function passForm():void {
PopUpManager.addPopUp(passTitleWindow, this, true);
PopUpManager.centerPopUp(passTitleWindow);

[code]....

I click and popup does not display.

View 1 Replies

Flex :: Know When A Dialog Created Through PopUpManager Closes?

May 1, 2010

Is there a easy way to figure out consistently when a Dialog closes that has been created through PopUpManager. I would have suspected some type of message or callback mechanism, but there does not seem to be. In one case I use the WindowTitle component and event that only fires the CLOSE if someone presses the close and give no message when the dialog actually closes.

View 2 Replies

Flex :: Using PopUpManager To Instantiate An Mxml Component?

Oct 22, 2010

Basically I am poping up the following component:

PopUpManager.centerPopUp(PopUpManager.createPopUp(this,RegionExperienceDetailPopUp,false));

I need to call RegionExperienceDetailPopUp.generateData(passIntArray);

What is the syntax to do this?

View 1 Replies

Flex :: Count Number Of Windows Up Through PopUpManager?

Apr 20, 2011

I'm using the PopUpManager to bring a bunch of event windows up.I want to make it so that only one window can be open at a time, but I don't see anywhere in the code that tracks open windows to set up a conditional. I guess it just creates the windows and then sets them free?Thinking about a windowCount variable that increments when I add a window and decrements when I remove one, but since the PopupManager is called in different classes I'd have to start throwing events all over the place. I can do that, but I'm wondering if there's a more straightforward method?

View 2 Replies

Flex :: Alert Gives PopUpManager Error When Used With SWFLoader

Jul 13, 2011

I am using SWFLoader to load a swf file. The code is below:[code]

View 2 Replies

Flex :: Adding A RichTextEditor To PopUpManager Seems To Be Very Slow?

Jul 13, 2011

As the topic states, using a Rich Text Editor with a PopUpManager makes typing slow. If you try it in Firefox/Mac, it is painful. Chrome/Mac is a little slower as well. Are there any known issues with the PopUpManager and performance that can be addressed easily?

View 1 Replies

Flex :: How Does One Implement The Google Maps 3D API (or Similar) For Flex With A Local Map Cache

Aug 17, 2010

I am writing a Flex application for use on a private intranet with no external Internet access. I want to use Google's 3D Maps Flex API, but it must be connected to the internet to download map tiles on demand.

Is there a way to locally cache the 3D map tiles and data so that I can run this app without an internet connection? And if not, is there a 3D GIS that supports Flex integration and allows for a local map cache?

View 1 Replies

Flex :: PopupManager: TitleWindow: How To Make The Background Transparent

May 12, 2010

I'm using PopupManager to display (not modal) popups in Flex.How can I make the background of my TitleWindow popup completely transparent?Now it is semi-transparent.. see picture with semi-transparent background (i.e. I just want the label inside visible):

[URL]

Maybe, instead of making it transparent I could try to reduce the padding, in order to make only the children visible ?

View 2 Replies

Flex :: Can A Custom Component Call PopUpManager.addPopUp On Itself

Jun 29, 2010

I'm trying to organise my code better and figured it would be good to place the pop-up logic within the component that's being popped-up. However, I can't seem to do this without causing one error or another. I also need to make the pop-up modal.I'm doing something along these lines (psuedo code):

<mx:TitleWindow >
<mx:Label id="messageLabel" />
<mx:Script>
<![CDATA[

[code]....

View 1 Replies

Actionscript 3 :: Make A DisplayObject Popup Like Flex PopUpManager?

Apr 20, 2011

How can I make a DisplayObject popup like Flex PopUpManager in AS3?

View 1 Replies

Flex :: Dispatch Event To Popupmanager Without Reference To Instance?

Apr 25, 2011

I'm fairly experienced with Flex 4, but I still haven't needed frameworks yet (I like to do everything myself) and don't want to use them either, I know it's advantages and have learned how to use one of them, but still, no.

How can I dispatch an event in the main application and have a component inside a popupmanager to react to that event? All this dispatching the event within the main app and NOT aiming it to the popupmanager or the component instance, I want to be able to fire the event and not care about who gets it or if anyone reacts to it at all so if that is possible then I wouldn't care about keeping track of said popups.

I already dispatch an event from the component and receive it in the main application by bubbling the event and therefore being agnostic of each other, now I want it backwards.

View 3 Replies

Flex :: Get Mouse And Keyboard Events, Masked By PopUpManager

Jul 29, 2011

I am implementing an application timeout feature (flex4). What I am finding is that mouse and keyboard events, which I have listened to with :

FlexGlobals.topLevelApplication.addEventListener(MouseEvent.MOUSE_MOVE, resetLastActivity);
FlexGlobals.topLevelApplication.addEventListener(KeyboardEvent.KEY_DOWN, resetLastActivity);

are being masked by the existence of any popup windows. The code is in a component, in the constructor. The component is added to the main application in the block.

How can I get these system generated events to not get stopped by PopUpManager display objects?

View 1 Replies

Flex :: Determine If A PopUpManager Window Is Open (or When It Has Closed)?

Sep 6, 2011

In Flex (Flash Builder 4) I am opening a new window via PopUpManager.addPopUp. I have timer code that runs in my component and I need to stop my timer when that window opens and start the timer again when the window closes.

I figure it's easy enough to stop the timer in the function that opens the window, but how can I start the timer again when the window closes?

Is there a way to tell if there is a pop-up window in front of my component, or if a specific pop-up window is still open via PopUpManager?

View 2 Replies

Flash :: Flex PopUpManager: Detect The Existence Of A Modal Popup?

Sep 17, 2009

My Flex 3 application has some modal dialogs displayed via the PopUpManager, but there are times when I'd like other view components to know there is popup displayed. The PopUpManager doesn't have any method for actually checking the existence of popups. Is there any other way to detect this in flash/flex without writing my own global manager?

(also systemManager.popUpChildren.numChildren == 0 even when there's a modal popup)

View 2 Replies

Flex :: Events Generated When You Open A TitleWindow Using PopUpManager.addPopUp?

Feb 24, 2010

I'm trying to open/close a TitleWindow using PopUpManager.addPopUp() and PopUpManager.removePopUp() while reusing the same TitleWindow instance. I noticed that the creationComplete() is only called once for TitleWindow even if I open it several times and was wondering what events I should listen to for the succeeding popup loads.

View 1 Replies

Flex :: Popup - Modal Transparency Blur Only On Certain Components When Using PopUpManager?

Aug 2, 2011

When using the PopUpManager in Flex with modal = true, the background application is blurred. Is it possible to keep this blur for most of the background application but set certain components to not be blurred?

View 1 Replies

Flex :: Change Background Bluriness When Calling Alert Or PopupManager?

Aug 22, 2011

In Flex 4.5 is there please a way to control how blurred is background when displaying an Alert or PopupManager.addPopUp()?I have playing cards displayed on the background of my game, when displaying a modal popup window with possible bids to the user and can't blur the cards too much (because the player should see them before deciding what to bid).

View 1 Replies

Actionscript 3 :: Flex 3 PopUpManager Does Not Correctly Enable Accessibility Features

Jan 3, 2012

I have an application written with Flex 3.6 and when I create a modal popup dialog, the buttons and text on that popup do not work correctly with the Accessibility properties that I have defined. The app is compiled with the accessibility flag. I build a simple app to test demonstrate the problem.

[Code]...

View 1 Replies

Flash :: Flex PopupManager Share And Center Popups For A Whole HTML Page?

Feb 28, 2011

I have to put multiple Flash movies on a page and I'd like them to share modal popups, so that access to the entire page is denied while a popup is active. I can do this via Javascript and create HTML popups via the ExternalInterface class, but I would love to be able to do this entirely in Flex using the PopupManager class.

Note: This is not for any evil purpose. I just need to make sure none of the other movies' buttons are clicked before the user responds to the first thing they clicked. Also, some of the movies are quite small and can't contain some of the popups they require.

View 1 Replies

Flex - Implement Screen In Flex When App Is Busy?

Mar 16, 2010

I have a function that restores all of the default settings of my application. This process can take a bit of time, so I would like to implement a "Please wait..." modal popup to let the user know that everything is alright and the program hasn't frozen. Once the function completes its task, I'd like for it to remove the message, and resume normal behavior.

View 4 Replies

Actionscript 3 :: Flex 4: Window System Development - Can't Use The PopUpManager To Handle Custom Components

Aug 24, 2010

My application will need some windows but I can't use the popUpManager to handle custom components so I'm thinking to implement a new window system. But I still don't know how to merge it with my custom components.

[Code]....

View 1 Replies

Flex :: Make PopUpManager Correctly Show Custom Component Based On Spark TitleWindow?

Jan 28, 2011

I use this code to create and show a MessageWindow:

var newTitleWindow:MessageWindow = PopUpManager.createPopUp(contextView,MessageWindow, true) as MessageWindow;
newTitleWindow.text = message;
PopUpManager.centerPopUp(newTitleWindow);

[Code]....

There is no nested components displayed when I run my app.

The debugger shows they are created and visible.

To my "amusement" the components are shown when I replace s:TitleWindow with mx:TitleWindow.

I really want to use spark TitleWindow.

View 1 Replies

Flex :: Remove Object From Tweenlite?

Sep 13, 2011

how can i remove object from Tweenlite

private var planeCards:Plane;
protected function animate():void
{

[code].....

View 1 Replies

ActionScript 3.0 :: TweenLite.to() In Flex Builder?

Oct 26, 2009

I've become a fan of TweenLite lately and do most of my development in Flex Builder 3. It's always annoyed me that the TweenLite.to() method doesn't show in code hinting and can't be immediately jumped to. The word "to" highlights as if it were a reserved keyword but I can't figure out what it's used for. This doesn't prevent my applications from running but just confuses and annoys me. Can anyone explain this to me?

View 1 Replies

Actionscript 3 :: Card Flip Effect With Five3D And TweenMax / TweenLite

Nov 21, 2011

I want to create a card flip effect where I have a card front image, and a card back image. Is there a way to do it so that I have two images in 3d space, one in front of the other, and just rotate their container? If not, how can I achieve this? Also, while i'm using Five3D, i can probably figure out how to convert it if anyone has an example in another library such as papervision3D.

View 2 Replies







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