Flex :: Popup - Dock A Normal Panel To A Pop Up Panel?
Nov 14, 2009
I want to create a panel docking to a pop up panel in my flex app, like Winamp's playlist window can dock to main window. but I didn't find any useful on docking in flex
I've traced the PopUpManager, but I didn't find any available interfaces or events about popup window's moving, I think it's design shouldn't be so bad.
View 2 Replies
Similar Posts:
Mar 6, 2010
I have a map in a panel.When maximizing the panel,the map remain the smaller size.How to make the map growing synchronizely with the Panel? When maximizing the Panel,I added Resize Effects.How to apply Resize effects on the Map when the extent of the map changing? It seems to me that I should dispatch extentChange event when maximizing the panel.
View 1 Replies
Mar 24, 2011
I discovered this while doing some programmatic panel resizing:Components in a spark Panel will still be visible when their location is outside the physical Panel boundaries. This does not happen with the mx Panel.unning Flex 4.1 on Windows 7I tried putting mx and spark controls in the spark Panel, and they both appear outside of the boundaries. Note this doesn't happen with the mx Panel. What am I missing to make the spark behave like the mxSample Code:
<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
[code].....
View 1 Replies
Dec 15, 2010
I need to popup some buttons in Flex 4. Users should be able to see the background (ideally a little faded, but not important) around and in between the buttons. And clicking anywhere except the buttons should dismiss them all.So I created a spark Panel and added a spark VGroup with some buttons. Then I call
PopupManager.addPopUp(myNewPanel, background, true);
My 2 main problems are the panel is not transparent and clicking outside the buttons doesn't dismiss them... How do I implement that?
UPDATE: Figured out how to dismiss the popup when clicking outside the panel with:
addEventListener("mouseDownOutside", close);
private function close(event:FlexMouseEvent):void {
PopUpManager.removePopUp(this);
}
Now I just need to figure out how to make the Panel transparent so you can see the background around and in between the buttons.
View 1 Replies
Dec 7, 2011
I just downloaded Flash CS5 for mac which installed without any errors. However, when I first launched the software I am getting the following error: The following panel layout is missing or could not be read: /users/rob/Library/Application Support/Adobe/Flash CS5.5/en_US/Configuration/Workspace/Essentials.xml The application will not have a correct layout. load one from Windows ->Workspace Once past this message none of the panels load.
View 3 Replies
Jun 26, 2009
Does anyone knows of a way to get the output panel in flash or the console panel in flex builder or flash builder, to format the "traces" with html or any thing else? for example:
trace( <b>brett</b> ); and to get that to appear in bold in the console window or the output window?
View 0 Replies
Mar 3, 2011
I have basic movie clips, On roll over, show arrows [NEXT, PREVIOUS] on movie clip [they then show other images inside movie clips]I can show arrows on roll over.But when i roll over the arrows the main ROLLOUT function gets called, the arrows hide. I've tried several flagging methods and have resulted in using a larger invisible border around the clip, rolling over that hides them.
View 1 Replies
Dec 29, 2009
I am drawing a cellular automaton simulation on a Flex Canvas. I alternate computing the state of the automaton with updating the graphics on the Panel. However, the updating of the Panel does not seem to be "keeping up" with the update of the CA state.
I'm wondering whether I am doing something wrong with my handling of the graphics code. The code is below. Sorry it's so lengthy, but I don't think the problem will happen with anything simpler (well, it probably will, but I'm not certain I want to take the time to find it).
[Code]...
View 1 Replies
Jul 8, 2010
I'm trying to implement a collapsible TitleWindow popup by adding a handle to the top right corner of a Panel control. Unfortunately, the image that I add as the handle doesn't show up when the control is drawn. I can trigger a redraw by changing the source of the image, so apparently it's there, but it's somehow hidden. Is there a way to make this Image control visible to the user?Here's the code for the window:
package
{
import mx.containers.Panel;
[code]......
View 2 Replies
Sep 17, 2010
I want to increase the (height) size and change the color of a spark accordion header, similarly I want to change the color of a spark panel header. Can I do this through mxml properties and css or will I need to use a custom skin?
View 1 Replies
Oct 6, 2010
I have a web-application whose UI is implemented in GXT (ext GWT).Now I want to switch to Flex but as the application is so large that I cannot afford to start migrating the whole application at once.So I have decided to migrate slowly. So what I want is to bring up a Flex panel on the click of a GXT's button.Basically the idea is how to make Flex components listen to the events generated by GXT's component.
View 1 Replies
Jan 17, 2011
I give my users the ability to create items. The Create item dialogs such as:
<s:Panel id="postitNoteCreatePanel"
horizontalCenter="0" verticalCenter="0"
...
How can I make panel draggable so that users can move it around the page so it doesn't block other items
View 5 Replies
May 27, 2011
How can I center the titleicon in a Flex 3 panel? The title is centered but the titleicon is way on the left side of the panel.
<mx:Panel
title="{myTitle}"
textAlign="center"
titleStyleName="panelTitle"
[code]...
View 1 Replies
Sep 6, 2011
Is there a way to remove the left+right+bottom border of a mx:Panel?
basically I want to have the right UI instead of the left one ( check the screenshot )
I know that the default spark Panel is able to do so, but I just need to use Flex 3.
Here is what I tried already :
padding (seems only changing the children)
borderStyle = none is removing the color of the header
View 1 Replies
Sep 29, 2011
My app has 3 categories of buttons, I want to have a tabbed panel I can use to switch between the 3 categories like in this example:
My app is a mobile app though so I can't use mx components. When I try searching for mobile tabbed navigation etc., I come up with only viewnavigator examples.
View 1 Replies
Mar 6, 2012
i have a tabbed panel in the flex having various tabs and i m using this to get the selected tab index
private function handleInspectorAreaButtonClick(e:Event):void
{
var selectedIndex:int;
[code]....
View 2 Replies
Mar 13, 2012
I have a Hgroup that contains of four panels. Sometimes it happens then when users open it the panls have a unknown width even bigger than the window resolution.
<s:Scroller width="100%" height="100%" >
<s:Group width="100%" height="100%">
<s:VGroup gap="10" width="100%">
[Code]....
View 1 Replies
Nov 9, 2009
I have a page (below) that has a datagrid that lists "item"'s returned from an XML file (below) and when it loads it created a page in the viewstack for each item it finds (working) it also renders a page (below) inside each panel but i am having issues passing the data. Each page renders and loads but with the FIRST result of the XML data instead of each page having its own data they all have the same as the first page.
HomePage.mxml
<?xml version="1.0" encoding="utf-8"?>
<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml"
width="100%" height="100%"
[Code].....
View 1 Replies
Dec 29, 2009
I was wondering how to distort a Flex object like Panel so it looks like a trapezoid?
View 2 Replies
Feb 12, 2010
And i have a requirement like, if i change the resolution of the computer, all the panel's in my applcition are auto setted to particular resolution by defaultly. but it should not happened like this.If resolution changed, the scrollBar comes into the picture for panelFor example, I have set the resolution in 1280*1024, so now the panel scrollBar not visible And as per my requirement, i need to check the resolution in 800*600 .But now the panel is automatically reset to this resolution.But i need a scroll bar for the panel when we change the resolution to 800*600.
View 1 Replies
Mar 27, 2010
I'm building a user login page and I want to go from titleWindow to Panel. I'm using the following function but it always takes me back to parentApplication.
how can I go to my panel and not to Application page?
I know that I'm using parentApplication but what should I use instead?
Here is a part of my code:
private function handleLogin(event:ResultEvent):void {
Alert.show("You have succesfully logged in.", "Information", Alert.OK, null, null, null, Alert.OK);
[Code]....
View 1 Replies
Apr 14, 2010
Here is what I have:
[Code].....
How can I center the mx:Image in the mx:Application?
View 1 Replies
Apr 27, 2010
It looks like the "cornerRadius" property of a Panel only changes the top corners and bottom if using a ControlBar. I'd like to specify a corner radius for each of the corners individual.
I know Degrafa can do this but I'd like to avoid if possible.
View 1 Replies
Aug 2, 2010
I would like to add an title Icon image to a Panel, but cant find the click event on that icon,
View 1 Replies
Oct 11, 2010
Is there a way to detect this in Flash?
View 1 Replies
Nov 9, 2010
I have a panel in my application, and the user can change its width. My problem is when the title is very long. I would like to crop the title by changing the width.I have tried changind the width of the titleTextField by:this.titleTextField.width = ...
View 1 Replies
Jan 30, 2011
I am creating a application in which Live video streaming in publishing in mx:video object.I want to capture.
View 1 Replies
Mar 29, 2011
I am trying to override the default panel style on Flex 3.And the following doesn't work.
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute" minWidth="955" minHeight="600"
creationComplete="init();">
[code]...
View 2 Replies
Jun 21, 2011
Is there anyway for me to adjust the padding (left and right) of the text within a Panel Title in Felx 3.5?
View 1 Replies
Aug 6, 2011
I am dynamically creating panels based on information i get from an XML file but i'm having a problem with adding buttons to these panels. These buttoms are also created based on information taken from the XML file. The problem seems to be in the way i give the panels an Id name.[code]...
View 1 Replies