Flex :: Create Multi-window Web Application?

Oct 20, 2010

I am using flex4, I am seeking the answer to create multi window web application. My application is some sort of complex, currently I only know using PopupManager to create a new window.Should I create each MXML for each window that I want to instantiate? And then load the mxml and put it into the stage? Is there any tutorial describing that? I want the program modular and easy to manager, extend.

The current way I am using is use Group to group up all the controls inside a window, and if user want to open that window, I will display the group and bring it to the front. Is it the right way to do windowing? But I can't support drag.

I want to know if there is any native support for draggable window, or dialog?

Also till now all the controls are put inside a single mxml file, is it possible to put one window(or one group) to be a separate mxml file?

View 4 Replies


Similar Posts:


Flex :: Create New Window In Air Application

Jul 27, 2011

how to create new window(same application duplicate) in Air Project.

View 1 Replies

Actionscript 3 :: Detect Clicks Outside Of A Window For A Multi-window AIR App In Flex?

Mar 13, 2011

So I have this AIR app coded in flex where I have several floating native windows and what I want is to detect when a user clicks outside of a window so that I can close it. (I don't want to use the PopupManager Class and would want to use the native windows).

My question is, is there a way to detect a click outside of a spark window, or alternativley is there some root container/object which is a parent to all the native windows so that a click inside any native window would bubble up to it? (Apparently the stage object of the root windowed application is not that object since each window is not a child of the stage for the root application).

View 1 Replies

Multi Process Architecture For Flex AIR Based Application?

Nov 11, 2010

I developing an AIR application in Flex that would be dealing with playing different SWFs. I am finding some issues as these SWFs that I am playing are heavy. I find that the animation is not smooth and is causing the graph of CPU usage to go high (my be because single thread architecture of Flex). I am therefore planning to have a multi process architecture for my application. Something like Google Chrome. I have one main application as one process and other SWFs would be playing in separate process but should be seen inside the main application window. How to make it possible in Flex?

View 4 Replies

Actionscript 3 :: Resizing Container On Resize Of Application Window In Adobe Flex/AIR Application?

Mar 4, 2011

I am working on an Adobe AIR Application. The size on Application window is 800X600 and is contains border container and border container contains many controls. What I want is to if user re-sizes the application then that container should also be re-sized according to scale. i.e If user maximizes or minimizes the window then that border container should also be maximized or minimized respectively.

View 3 Replies

Actionscript 3 :: Create A Notification Window In Adobe AIR Application

Feb 21, 2012

I want to create an AIR application in which i need to show the notification that when AIR application is minimize then at some interval of time message shows from the system tray similar like giving information. I have visited this LINK, its a nice component but tutorial is not that much good as component. I need to create a component like that or source is available from this site so modification in this component will also be acceptable. EG: When you minimize the Yahoo Messenger and some one is sign-out or sign-in then it gives notification i want component similar like that.

View 1 Replies

Flex :: Skinning AIR Application Window

Mar 31, 2010

I'm using mx:WindowedApplication, I'm wondering how I can skin the title bar and close/minimize button for the window. I can see application like Pandora One is using it and setting transparency. Any pointer to a doc?

View 1 Replies

Flex :: Set Window Size For Standalone Application?

Aug 1, 2009

I want to set the default window size for a flex application that runs with a standalone player.I set width and height to 100% to be able to get the ResizeEvent and being able to adjust the layout if the user changes the window size. But I'd like to also define a default size.

View 3 Replies

Flex :: Open Air Application By Window Hotkeys?

Mar 29, 2011

I am developing flex air application.I have to implement hot-key functionality in air application.

For example whenever user press any two keys like ctr and S keys the open flex air application.and whenever user press any two keys like ctr and q keys then close flex air application.

View 2 Replies

Flex :: Dragging The AIR Application Window Around The Screen?

Jul 31, 2011

I have an AIR application. It should be moved around the screen with the mouse. In order to achieve this I use the event: this.stage.addEventListener(MouseEvent.MOUSE_DOWN, onMouseDown, true,-2);

It should be activated with the lowest priority compared to inserted elements for example those that should be scrolled, clicked, etc. I tried the solution shown below with the event priority set to -1 because there might happen 2 different events and my moving application event should be the last one to be serviced or shouldn't be serviced at all.

[Code]...

View 1 Replies

Flex :: Application Packaged In AIR Doesn't Show It's Window

Feb 1, 2010

I have a Flex application that builds and runs from Eclipse without any problems. I've created an Ant build based on the sample provided by Adobe and builds the application and packages it up into an AIR application. No errors occur during the build process and an AIR file is created.The problem is that when I install the AIR application and run it, there is no UI at all. The process is running because I can see it in Task Manager but I can't see the app window. I've commented out all of my initial code so just the first window should appear but still nothing.

View 1 Replies

Flex :: Sending POST Variables To A Browser Window From AIR Application

Jul 15, 2011

I'm building an AIR application. Basically, what I'm looking to do is using navigateToUrl() to open a browser window, assign it a "name" and then, send variables to that newly opened window using the POST method.

EDIT : I need the window to be visible, this is why I absolutely need to use the navigateToUrl() function

I already know that I CAN'T DO something like this, that the AIR application will send the variables using the GET method...

var vars:URLVariables = new URLVariables();
vars.myVar = "Hello my friend";
var req:URLRequest = new URLRequest("http://example.com/my-page.php");
req.method = "POST":

[Code].....

View 1 Replies

Flex Web Application - Prevent Framerate Drop When Window Is Invisible?

Nov 20, 2011

So there's been a new "feature" in the flash player since version 10.1, which reduces the player's framerate to 2 fps when the application window is out of view. This is good news for performance, but it can break some functionality, such as the Timer class.

I have an application which uses a Timer to display a countdown. Given the nature of the application, it is required for the Timer to complete its countdown even if the user is not there to see it. Imagine that you need to give the user only 10 seconds to perform a task. If the user minimizes the window halfway through the counter, they can take as much time as they want and still have 5 seconds left when they return to the window. This apparently can not be avoided with the newer flash players.

In Air applications there is the backgroundFrameRate property which can be set to prevent this behavior, but this is part of the WindowedApplication class, so it seems that it is not available in a web application. Does anyone know a way to keep a constant frame rate even when the window is not visible?

View 3 Replies

Flex :: Open A Browser Window To View An Image Created By An Application?

Aug 26, 2009

I have a flex 3 application that creates an Image from a canvas which the user draws on. I use the ImageSnapshot class to create the image

var imageSnap:ImageSnapshot=ImageSnapshot.captureImage(myCanvas);
var imageByteArray:ByteArray=imageSnap.data as ByteArray;

I want the user to be able to print or save the image. I can use the following code to print the image but flex does not provide good control over printing across multiple pages

var printJob:FlexPrintJob=new FlexPrintJob();
printJob.start();
printJob.addObject(myCanvas, FlexPrintJobScaleType.SHOW_ALL);

I would like to display the image in a browser window so that the user could print it using the built in browser functionality or right click on the image and save it. Can this be done without requesting server side code to do it?

View 3 Replies

ActionScript 3.0 :: Multi User Drwaing Application?

Jul 2, 2009

client has suggested that they would like a multi userdrawing board online.Basically i need to demo something that two users can draw onto at the same time, my host has php and mysql which i would like to stick with as I have a basic understanding of the technologys

View 1 Replies

Flex :: Indicating That A Window Is "active" Inside A Regular Flex (not AIR) Application?

Aug 25, 2011

I have an Flex 4 application (not AIR) which has some floating windows that act essentially as modeless dialogs.Right now, if two of these are open at once they function as siblings which are both active and whose controls are enabled for user interaction.I now need to maintain some notion of which one is "active" in the application. I don't want to /disable/ the non-active ones so as to blur them or prevent input on their controls.

I basically want to replicate basic OS window management: when you click or type into a control in one window it comes to the front and its title bar looks "active" and the others then look "inactive". Just like with a bunch of explorers in Windows.

View 2 Replies

ActionScript 3.0 :: Make Multi-user Drawing Application?

Jun 24, 2009

How to make multi user drawing application in as 3.0

View 8 Replies

ActionScript 3.0 :: Adapt Loadmovie In A Multi-sequence Application?

Dec 22, 2010

I'm trying to adapt for Android Tablet a multi-sequence Flash application widely using "loadmovie" and"unloadmovie" instructions.Each of these sequences are independent Flash files that were generated as swf files for load and unload.But building an application for Android is quite different, since it is based upon apk files.So, how "loadmovie" mechanism can be implemented in this environment ?

View 1 Replies

ActionScript 3.0 :: Flash - Online Multi Drawing Application?

May 30, 2009

i make good Online Mulit Drawing example for you herethere is a Socket Server that i made, and swf to.

View 2 Replies

Flex :: Adobe Air: Drag Application Crash - Error #3200: Cannot Perform Operation On Closed Window

Nov 23, 2009

Now I set dragEnabled="true", dropEnabled="true" and dragMoveEnabled="true" to archive the ability to reorder my Items via Drag and Drop. But as soon as I start to Drag an Item the whole Application crashes with:

[Code]....

View 1 Replies

Flex :: Create A PDF Of Web Application Using AlivePdf?

Feb 28, 2011

I have a large web application with verticalScrollBar with few charts and large datagrid. I am planning to create pdf of my web application using AlivePdf.

Right now, Im using below code to creat a pdf of my application, but no luck.

var printView:DisplayObject = new InteractionsAnalysis() as DisplayObject;
printView.width = Application.application.width;
printView.height = Application.application.height;

[Code]......

View 1 Replies

Create A Module For A Flex Application

May 27, 2009

I'm trying to create a module for a flex application, and I want to send notifications to clients. I've been looking at the BlazeDS messaging service to push out the notifications to clients, but I want to be able to send certain updates to certain clients. The Flex notification framework doesn't seem to allow this - if we have a field in the message with a value of the user's user id for example, any client could theoretically subscribe to all messages for any given user id, and there's no verification on the server side to make sure that the client that has subscribed is logged in as that user id.Is there something I've missed here, or is the best way to handle this writing my own polling mechanism on the client side?

View 2 Replies

Actionscript 3 :: Create And Use Popup Window In Flex 3?

Jul 21, 2011

I have used a datagrid and one button in control bar. by clicking button the application goes edit state from base state.My question is how can i use popup for editing selected record of datagrid instead of changing state.

View 1 Replies

Flex :: Create A Webbrowser Inside Application?

Dec 10, 2009

Is it possible to create a webbrowser inside a Flex (not AIR!) application? I want to display some links in a Flex application and when a user clicks the links, it should open a custom component with some sort of a webbrowsing component. Is it possible?

View 2 Replies

Flex :: Requirements To Create Adobe AIR Application?

Dec 17, 2009

i am working with Flex for quite sometime. but i hadn't get any chance to even look at Adobe AIR platform. I am planning to do some personal softwares using AIR.

Provided the background that am an absolute zero in AIR, what all should I have in my system apart from Flex builder? And how fast i can learn AIR if I am pretty comfortable in Flex?

View 2 Replies

Actionscript :: Create Functions In A Flex Application

Mar 9, 2011

I have a flex application, and I am using a cairngorm structure - src/com/mysite/editor/model/ contains the following two things

[Code]...

I was wondering where the best place to put helper methods is. I need these to be methods I can use outside of the singleton enforced class. Would it make sense to put it in Global Constants? The only thing against that, is I always use EditorGlobalConstants the same way: EditorGlobalConstants.SUPPORT_PHONE An example of a 'helper function' is the following:

[Code]....

View 2 Replies

Flex :: Create A Bucket-fill Tool In Application?

Mar 2, 2011

how can i implement a bucket fill tool in paint application in flex?

case FILL:
var b:BitmapData = new BitmapData(width, height);
b.draw(this);
b.lock();

[Code].....

View 1 Replies

Flex :: Create Custom Loading Page In Web Application?

Jul 14, 2011

Possible Duplicate:Custom Preloader in Flex 4?I am working with a flex web application and i want to implement custom loading page on application startup like the above

View 2 Replies

Flex :: Installer - Create Auto-install AIR Application

Nov 3, 2011

I'm wondering if there is a way to make an installer (.exe or .air) autoinstaller So when a user double click it, a silent installation is performed, without asking the destination folder, using instead the default one...

View 1 Replies

Actionscript 3 :: Create A Swc File For Existing Flex Application

Jan 24, 2012

I had flex project with few action script files.I want to make the project as swc file. So can i know how to create it as swc file.

View 2 Replies







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