Flex :: Set Application's Dock Name?

Dec 20, 2010

I'm making a Flex app and I'd like to know how to set the name of my app as it appears when the user hovers over it in the dock. Here's a screenshot of it now:I'd like a space between the lowercase 'd' and the uppercase Y. What part of my app's XML file must I edit to change that text in the gray tooltip?

View 2 Replies


Similar Posts:


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

Flex :: Adobe AIR Application To Receive Back Events From Native Windows Application?

Oct 8, 2010

I'm trying to develop a simple mxml Flex application to start Skype from the AIR/Flashplayer runtime. Is it possible to get back events from a native Windows application? In the simple example of Skype, the OS returns control to the Flex app when Skype exits. But what about native applications which have their own event model and wants to communicate with the Flex event model. For example, a Face detection system which shows "Hello" on a Flex app when the camera detects a face. Can this be done in the current Flex framework?

View 1 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

Flex :: Come Back In Main Application On Click Of Logout Button Which Is In Application's Component?

Aug 4, 2011

How I will be back in Login Page after click of logout which is in application's component.

Project.mxml

<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" width="100%" height="100%"

[Code]....

View 2 Replies

Flex :: Delete Application Storage Directory Instance / Data When Uninstalling Any Air Application?

Dec 22, 2011

how can i delete storage directory instances or folder while uninstalling any air application. In my application when i first time run my application, application copy some data from application directory to application storage directory. now i want to delete all data and application directory folder also while uninstalling application.

I am doing that because when i launch any update then application is accessing old data which conflict with my application new features.

View 1 Replies

Flex :: Gui - Switch Between Different Applications(mxml File With Application As The Root Tag) In A Big Application?

May 16, 2010

I'm new to flex. Now I'm writing an flex application. I plan to split my application into some MXML files(Application as the root tag). How can I switch from one mxml to another?BTW, what is the best practice for design large flex application? Just one MXML Application and many MXML component or many MXML Application?

View 1 Replies

Actionscript 3 :: Using External Xml Data In A Flex Application Without Compiling The Source Into The Application?

Jul 15, 2011

I want to read xml data to a mxml application from a xml file on my filesystem. The example I found was for AIR,link2, link3. But I want to target the Flash Player runtime. If I use the the tag, I can do it; however the xml compiles into my swf. How can I retain the xml file in my release build?

View 2 Replies

IDE :: Panels Won't Dock?

Feb 3, 2009

Somehow, my properties and actions panels became "undocked". They now refuse to snap back into their original positions.

View 2 Replies

Flex :: SystemManager.addEventListener Of Sub Application Is Not Working In Main Application?

Mar 31, 2011

i used systemManager.addEventListener in sub application...... it is working well....but when i load sub application into main application through swfloader it doesnot working..

View 1 Replies

Ios :: Embed Adobe Air / Flex Application Inside A Standard Application

Aug 29, 2011

I have a native (Obj-C, standard Xcode project) application and I'd like to integrate a partners iOS application (or specifically, it's functionality) into it as just another view in my application. The problem is that their application is a Flex/Air app. I really don't understand the Adobe compilation process on how it gets from a bunch of flex code down to an IPA. I don't see intermediate projects, shared objects, etc on the disk to produce that IPA. It looks like it doesn't rely on the Apple tool chain... as I understand it, you can produce the IPA on Windows as well. Is there any way to build that Flex app in such a way that I can import it into Xcode so I can link against it and use it as a library from within my application? While I specifically used iOS as an example since that is the most important platform, we'll want to apply this solution to our respective Android and Blackberry 6 apps as well.

View 1 Replies

ActionScript 2.0 :: Mac Dock In Flash?

Mar 17, 2008

I found this tutorial on how to make a flash dock in flash [URL].. I understand very little flash coming from PHP but I can usually figure it out.

I'm wanting to use this on my website as the navigation and I need help changing the icons themselves and the images.

View 3 Replies

ActionScript 3.0 :: Mac Dock In Two Dimensions?

Dec 10, 2009

I'm looking for an example or script of a mac dock type interface with objects in a grid rather than on a line.

View 3 Replies

ActionScript 2.0 :: Mac OS Dock Like Menu Bar?

Jan 17, 2005

[URL]Is there a way to do this particular script without having to buy that program?

View 1 Replies

IDE :: Mac OS X Style Dock Menu

Apr 11, 2005

I wanted to know how to make a Mac OS X Styled menu. I need it for a site that I am making.

View 8 Replies

Flex - Application.application.nativeWindow.activate() On Windows?

Dec 8, 2009

I have an AIR application with a system tray icon. When clicked it shows and activates the app. This is working as expected when the app is hidden (docked), however if I select another application so my app is in the background clicking on the system tray icon does nothing.

Oddly I also have a contextual menu on the system tray icon, which has an option to restore, this calls the same event handler as ScreenMouseEvent.CLICK, yet works.

I expect it's something to do with the contextual menu changing the focus, perhaps it's a bug in how AIR works with the system tray, perhaps it's just something I'm missing. Would be good to know if that's the case.

View 1 Replies

Flex :: Launch A Separate Air Application Through My Current Air Application?

Sep 1, 2010

I've been trying to launch a separate Air Application through my current Air Application.Both apps are compiled using the Adobe Air 2.0 SDK. The methods I have found so far involve passing the Publisher ID in addition to the Application ID, but I believe the Publisher ID became redundant past Air 1.5.3? Below is my current implementation whic seems to correctly ascertain the Air Application's version number, but when I try to launch it, nothing seems to happen.

private static var _air:Object;
private static var _loader:Loader;
private static var appID:String = "someOtherAirApplication";[code].....

I have changed the app-config.xml (app descriptor) on the application I am trying to load to allow browser invocation.The version number of the app descriptor of my application I am trying to load is "V1" which the versionDetectCallback seems to pickup. If this is the case I would expect to be able to launch it but this doesn't seem the case.

View 2 Replies

Android :: Load Flex Application In Mobile Application?

Mar 7, 2012

I want to load a flex application in mobile flex application and also i want it to interact with the parent application. Right now I am trying to load the swf with swfLoader in mobile app, but it gives me security error. And also should I want the parent application to be generic in terms of child application as in down the line if someone wants he can have another child application with same name run.

[Code]...

View 1 Replies

ActionScript 2.0 :: Circular Dock Menu?

Apr 17, 2008

I'm trying to do a circuler dock menu, like the mac osx but as a ring instead.

View 1 Replies

ActionScript 2.0 :: Mac - Where To Set The Spacing Of The Icons In The Dock

Jul 31, 2008

I found a bit of code out there that creates a mac style dock but what i cant figure out is where to set the spacing of the icons in the dock

[Code]...

View 1 Replies

Php :: Load A Sub-application From A Main Application In Flex?

Jan 19, 2010

I've created a client with login acces in Flex. After the succesful login i have to show a table based on a mySQL server. The database is composed by some tables, and I have created 6 flex mxml components with each own scripts for each of those tables. How can i load sub-applications, for example with a PopUpButton or a TabBar in the main application?

View 1 Replies

Professional :: Can't Dock The Main Toolbar In Flash 10

Oct 16, 2008

I'm on Windows and can't dock the Main toolbar in Flash 10.Is this by design? I find it annoying.

View 2 Replies

ActionScript 3.0 :: Dock Style Menu Buttons?

Jun 3, 2011

Ok so i was following this tutorial today at: [URL]..and its a good tutorial... with one exception. They never tell you where you can put the code for clicking on the buttons to make them functional.so now i have some good looking buttons that dont go anywhere. Any one want to take a look at this and see if you can tell me where i can put in my "click" event code.

View 8 Replies

ActionScript 2.0 :: Create 'add To Dock' Type Of Feature

Sep 4, 2007

I'm wondering if anyone knows how to create an "add to dock" type of feature much like URL...

View 1 Replies

Professional :: Creating Apple Dock Effect In Movie?

Feb 4, 2011

I have created a movie in CS3 which is basically a series of images that scroll from right to left across the screen. Each image also has a url assigned to it so that clicking on that image takes you to another (external) website. It's all working beautifully.All I want to be able to do now is to create a mouseover effect, whereby when your cursor is over the scrolling image, that image only enlarges slightly - a bit like the Apple dock effect. Then, if the cursor moves to the second image, the first image reduces back to its original size and the second one enlarges.

View 5 Replies

ActionScript 3.0 :: Auto View - Hide Navigation - Dock ?

Aug 28, 2009

I Am trying to create a navigation system where the navigation(nav_mc) will slide into screen anytime the mouse is over the plash player and then slide out when the mouse is off the flash player.

I have achieved this quite easily using an invisible button(stage_btn) over the entire flash, with event handlers to initiate tweenlite tweens of the navigation in and out of screen on MOUSE_OVER and MOUSE_OUT

Now i have buttons in nav_mc, that dont receive focus if nav_mc is below the main stage_btn and if i bring stage_btn above the nav_mc it means that when i rollover nav_mc, then stage_mc looses focus and slides out with all my navigation buttons...

Any ideas on the best way to handle this situation - or go about doing the the entire ting in a different way?

ActionScript Code:

View 0 Replies

ActionScript 2.0 :: Mac OS X Dock Menu Effect Doesn't Work

Mar 22, 2006

i found this nice Mac OS X Dock Menu effect on [URL] (the second link from the top), the thing is, it only works when it is published for flash player 6 or lower... why it doesn't work when it is published for flash player 7...

View 14 Replies

ActionScript 2.0 :: Editing Apple Style Dock In Flash?

Feb 27, 2008

and want to turn it into a photo slideshow menu, I have manage to change the icons to my images and edit the buttons up/down states etc, but can't figure out how to get it to display the corresponding picture when the icon is clicked on?I want a larger version of the picture used as the icon to appear above the menu when clicked on or maybe just on a roll over?

View 3 Replies

ActionScript 2.0 :: [FMX04] Mac-like Dock Menu: Creating Links?

Sep 9, 2010

I was following this nice tutorial on how to create a dock-like menu in Flash.I managed to add my own icons and to adapt height and length etc., but I did not manage to remove the grey bar in the back.And more important, to add a link to one of the items in the dock. I tried to make the icon a button, but that didn't really work.

View 1 Replies

CS3 : Flash Multi Flv Player With Dock Menu From Streaming Server?

Apr 3, 2009

I am trying to create a menu, similar to a dock menu but that just magnifies the images when rolled over (rather than overly crazy carosels or massively zooming docks. and secondly...the dock menu would link to separate flvs that are on a streaming server. I've never worked with one before and wonder how to connect them to my flash. I'm trying to create an flv player, sorry, shouldve said earlier... but one that only plays 6 vids (linked to by the magnifying dock menu).

View 2 Replies







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