Actionscript 3 :: Determining Linkage Dependencies In Flex Applications?

Jun 15, 2010

I have a large Flex project with two Applications in it. A lot of code is shared between these Applications. However, the smaller of the Applications does not require much of the code that the larger one does. I'm trying to ensure that code that isn't required by the smaller application isn't getting compiled into it.

View 1 Replies


Similar Posts:


Flex :: Dependencies In Data Binding

Aug 20, 2010

I'd like to add a derived property to flex:[code]However, derived won't update when I change a or b.Is there a better (faster) way to make derived update than giving a and b setter methods which invalidate it?added keyword "get".This makes more sense now, I hope.

View 3 Replies

Actionscript 3 :: Circular Dependencies In Flex Libraries?

Sep 21, 2009

I have two Flex libraries that reference each other. Both use link type "External", and I manually load then with the Loader class.I'm getting the error "A cycle was detected in the build path of project: foo".

View 2 Replies

Flex :: Dependencies - How To Get List Of Classes Compiled Into App

Jun 15, 2010

I have several Flex applications in a project, and I would like to know if there's a way to get a list of the classes (and ideally, other assets) that are being compiled into each one. I want an easy way of making sure I've kept things separate and there aren't unnecessary dependencies. Any ideas? I'm running Flash Builder 4.

View 3 Replies

Actionscript :: Collect Dependencies From Adobe Flex Files?

May 14, 2010

I'm looking for a way to collect the file dependencies from Flex ActionScript and MXML files. I was hoping that mxmlc could spit them out (like gcc's -M option), but its option list doesn't seem to have anything relevant. I could write a parser, but would prefer not to reinvent the wheel if it has already been done, particularly given the two very different languages involved. In particular, star imports and in-package implicit imports could be troublesome.

View 2 Replies

Flex :: Grails - BlazeDS Failed Due To Unresolved Dependencies

Oct 4, 2011

I trying to integrate Flex with Grails through BlazeDS but I am stuck with the very first step i.e installing BlazeDS plugin ... it fails everytime i try to install. Following is the complete stacktrace

Resolving plugin JAR dependencies ...
Warning
module not found: com.adobe.flex#flex-messaging-opt;4.0.0.14931.1
grailsHome: tried
D:PlatformsGrailsgrails-1.3.7lib/flex-messaging-opt-4.0.0.14931.1.xml
[Code] .....

View 1 Replies

Flex :: MXML Views - Passing Dependencies Into Constructor Of Classes

Oct 6, 2009

I'm used to building applications using pure AS3. I always pass dependencies into the constructor of classes I make, but this method seems to not work out well for Flex MXML views. It seems like I should define setters on the MXML class, which map to attributes in the tag/class instantiation. But using this method I cannot specify which properties are required and in what order I expect them etc. What is the preferred method to give a Flex view it's dependencies?

View 3 Replies

Flex - Compile Large Dependencies Into Modules Instead Of Main Application?

Jul 20, 2010

I've got a module, MyModule which requires a large library:

<mx:Module>
<mx:Script><![CDATA[
import com.huge.library.AwesomeThing;
var myThing:* = new AwesomeThing()
]]></mx:Script>
</mx:Module>

And that large library isn't referenced from my main application, except through MyModule

[Code]...

View 2 Replies

Actionscript 3 :: Create Relative Paths To Swcs In Module Dependencies For Flex?

Dec 6, 2010

Can someone tell me if its possible to create relative as opposed to absolute paths to swcs in module dependencies for Flex or actionscript modules?In Flex Builder i would simply edit the swc path as'../lib/.swc..But there doesn't seem to be a way to edit the path in IntelliJ once you've defined it.

View 1 Replies

ActionScript 3.0 :: Default Value (uint=null) - Create An Object From A Library Symbol With Linkage 1180: Call To A Possibly Undefined Method [linkage Name]

Oct 16, 2009

Flex complains if I want to create an object from a library symbol with linkage: 1180: Call to a possibly undefined method [linkage name]. So to avoid this, I create a class for that symbol, in this case extending BitmapData using Flex's new ActionScript Class feature. Flex create that class for me and the constructor looks like this: public function CustomBitmapData(width:int, height:int, transparent:Boolean=true, fillColor:uint=null)

[Code]...

View 6 Replies

Professional :: Linkage : Cannot Find The Linkage Instance?

Apr 20, 2010

I'm trying to create a linkage to swap movie clip dynamically. I already create a linkage and after my movie clip symbol actuall say Export: contact_idea. But when I try to attachMovie("contact_idea"). It does nothing. Is there anyway that I can test that the linkage is actuall linked?

View 2 Replies

Flex :: Datagrid - Determining When Grid Has Completed Rendering?

Dec 3, 2009

i have a datagrid which contains a number of itemrenderers, it is populated each time a user does a search. Is there an event which can tell me when the datagrid has completed rendering all new rows and item renderers?

I need to trigger an event once everything has been created so that i can resize then container which holds the grid.

Currently im using DataGridEvent.HEADER_RELEASE and CollectionEvent.COLLECTION_CHANGE events to manage this however the problem with these events is that they get called as each new row is being added to the datagrid.

View 2 Replies

Flex :: Determining The State Of The DropIndicator For A Tree Component?

Mar 24, 2011

I have a custom class that extends the Tree component so I can add some logic to the drag and drop functionality and not allow folders to be dropped inside folders.In the dragOver function, I am using:

var currNodeOver:TreeItemRenderer = TreeItemRenderer(indexToItemRenderer(calculateDropIndex(event)));
to determine the drop target, and setting:

[code].....

View 2 Replies

AS3 :: Flex : Determining When A Displayable Object Is Finally Displayed?

Apr 7, 2011

I am looking to determine the final event or location where it could be determined that an Image, or a UIComponent, has been rendered to the user. I need to know when it has been displayed and thus is, presuming it's not covered up or at a silly location, visible to the user. In the UpdateComplete Event Documentation it says:

This is the last opportunity to alter the component before it is displayed. All properties have been committed and the component has been measured and layed out.Overriding the dispatchEvent on an Image shows that the UpdateComplete Event is the last one that it dispatches after an update of the .source property. Breakpointing and walking the code after that event shows that the LayoutManager seems to finish with it's actions before the Image is displayed.

I have watched the dispatchEvent on and updateDisplayList on the canvas container and no dice. I assume that there is some higher (lower) object that I might be able to extend or listen to that would give me that final piece of information.

NoisyImageTest.mxml - test application for watching the event loop. If you breakpoint at line 22 you see the last updateComplete event but the image is not yet displayed. Stepping through the code from there, it exits the thread after the LayoutManager but still has not updated the screen. I assume that there is a point where the systemManager or stage or some other item could say it drew the image.

<?xml version="1.0" encoding="utf-8"?>
<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" minWidth="955" minHeight="600" xmlns:local="*">
<s:layout>

[code]....

View 1 Replies

Flex :: Determining Index (not Selected One) For TabBar MouseOver

Apr 24, 2011

I have an application where I'm trying to update the String for a Label's text property, based on the tab which user has the mouse over. I've constructed a simple example displaying how I would process the eventHandler function if I was going to use the selectedIndex property, however it's the tab that has mouse focus, which may or may not be the selectedItem, that I'd like to reference and I haven't been able to figure out a way to do it.

So here is the example:
<s:Label id="descriptionLabel" />
<s:TabBar id="audioTB"
dataProvider="{audioVS}"
mouseOver="audioTB_mouseOverHandler(event)"
rollOut="audioTB_rollOutHandler(event)" />
[Code] .....

View 1 Replies

Flex :: Adobe - Create Smooth Transitions For Drop Down List In Flex For Desktop Applications?

Jan 22, 2012

I have a drop down list for selecting the titles for a person, I want to employ smooth drop down when i select the drop down menu.

View 1 Replies

Flash :: Determining When Video Has Ended In Adobe Flex Using Events

Mar 22, 2010

I'm new to Flex, Flash, and ActionScript. I'm attempting to create a video player that starts another video when the previous video ends. I thought there might be an event that is thrown when the video finishes playing, but I have not been able to find it.

VideoEvent.COMPLETE is when the video is completely downloaded, not when it is completely done playing. Does such an event exist? how I could subclass SWFLoader, Image, or Video to support such an event?

View 1 Replies

Flex - Design Patterns For Adobe Air/Flex Applications?

Jun 2, 2010

I'm going to write an application with the Air/Flex-Framework. I'm looking for Best Practise and general Design Patterns for designing software especially in Air/Flex. I have experience with this framework but never had the pleasure to write a piece of software from scratch.

For instance: I stumbled across lots of software written in Air/Flex with nearly infinity global vars Most of the software I saw was not object-oriented How can I pack the asynchronous method calls nicely?

I'm familiar with general design patterns by gamma. I'm looking more for advise in designing good quality software with Adobe Air/Flex.

View 4 Replies

ActionScript 3.0 :: Flex And Linkage Names?

Oct 19, 2009

If you try to add an object out of an linkagename in Flex you get errors. Like:1180: Call to a possibly undefined method [linkage name].If I don't want to create classes for every library symbol I'd like to add, is there any other way/praxis of doing this besides using 'getDefinitionByName', so that I won't get errors in Flex?

View 7 Replies

Communication Between Two Flex Applications?

Aug 6, 2010

I have two web applications written in Flex I would like to integrate. I would like one Flex app (let's call it application A) to invoke second Flex app (let's call it application B). Application A has access only to swf file of application B (not source code). When application A invokes application B, it should be able to pass some data to application B. After application B is invoked it should be able to pass some data back to application A. These two applications will be hosted on the same server, but will use different server code.

The easiest way of implementing this (or one of the ways to be more precise) would be to have UI element on app A (button, link, menu item, etc) that would invoke app B. But in that case, two Flex applications couldn't communicate directly (since only one is active at a time), and they would have to communicate through server code, which is something I would like to avoid.

In short application A should invoke application B, pass some data to it. Application B should do it's work, display some content, and have a mean of passing some data back to application A. I'm aware of LocalConnection, and I've seen similar question, but in that case I would have to have both application in the same browser window. This would be acceptable to some extend, but only if app B is contained in app A (not if they are both on the same HTML page). Would LocalConnection work in that case?

Do you have any recommendations on how to implement this kind of communication?

View 2 Replies

Flex :: Localization - Fix An Inconsistent Linkage Error In 3?

Sep 29, 2009

I was excited to find out that Adobe released the data visualization for free so I can use the fancy charts and all with my projects even though I don't have Flex Builder Professional. So I installed the new 3.4 sdk along with the data visualizations. Most all of my projects did fine except for one. This particular project uses localizations. Are there any new compiler arguments that I need to include? I current have -source-path=locale/{locale} -allow-source-path-overlap=true. I get the inconsistent linkage error below:

[Code]....

View 1 Replies

Flex :: Get List Of Installed AIR Applications?

Feb 15, 2010

Is it possible to get list of installed AIR applications, optionally only by one vendor?

Or, is it possible to check, whether is one application (checked by name/some id/vendor) installed (this method would be preferred)

View 3 Replies

Flex :: Load Audio Into Applications?

Mar 9, 2010

I want to play Audio in flex application.I am using SWFLoader for it.Is there any other way to load audio into Flex applications.

View 1 Replies

Flex :: Write Adobe AIR Applications?

May 9, 2010

I cannot afford the Creative Suite or Flex Builder but I would like to develop a commercial Flex/ActionScript AIR application. Is this a viable goal and are there robust tools out there that don't cost a small fortune?

View 2 Replies

Flex :: Do AIR Applications Run In A Trusted Sandbox

Jul 22, 2010

I have an AIR application that is packaged with a network appliance and that is used to configure that network appliance...much like a the embedded webservers on home routers except this is an installed AIR app.

If I want to communicate with the appliance on a port higher that 1024, do I need that appliance to serve up a socket policy file or is AIR considered a trusted sandbox. All the info I find relates to Flash Player and the web, but this particular AIR app is communicating in a closed environment.

View 1 Replies

Flex :: Skins Not Loaded In Sub-applications ?

Jul 29, 2010

we try to develop a flash game engine with several abstraction layers. This flex project contains: an Application (1)-> loading a class (2)-> loading another class (3) which instanciates a Flex component (4).

The loadings uses SWFLoader. The last Flex component (4) is just a Group with AdvancedDataGrid. We do not define skins so I suppose it must take default skin.The problem is that during execution, an error is throwed because default skin for components cannot be found in the Flex component (4). In our case, for the AdvancedDataGrid:

Error #1007: Instantiation attempted on a non-constructor.In mx.controls::AdvancedDataGridBaseEx. The guilty command is: getStyle("headerSeparatorSkin"); which returns null

For the moment, we found two solutions :

the first solution is to add the attribute headerSeparatorSkin="spark.skins.SparkSkin" into the AdvancedDataGrid of the Flex component .

View 2 Replies

Align Flex Applications To The Left?

Dec 17, 2010

How can align my application to the left in Flex ? The application is horizontally centered and when I resize the browser window it stays centered. It is not css padding, it is flex padding, so I guess I have work with Flex code.

I've tried to add the following properties to the Application container: paddingLeft="0", left="0".. but it doesn't work. Still centered. I've also tried to set "align","left" in the html/javascript code, but it doesn't solve the issue, because the padding is inside the flex application.

View 1 Replies

Flex - Printing In Adobe Air Applications?

May 12, 2011

I have a requirement to print a bill from the AIR application.

Following are the constraints.

I need to print to a DotMatrix Printer. I have a complex layout with header, footer and a datagrid with data rolling out to more that one page. I need to have a template to which I will be passing my object.The suffice with the usage of Jasper reports, but I have no server side support.I tried the FlexReport, bentbit and other tools which is optimized for the DotMatrix printers.

Is there a alternative to get the above requirements done. Is there any alternative similar to that of jasper reports without going for a server.

View 2 Replies

Why Flex Applications Perform Better Than Flash

May 14, 2011

When I'm making projects with Flex (or Flash Builer) the end result usually performs much better than a similar level project made with the Flash authoring tool. I know Flash IDE is rather for animations and design heavy works so you can't really compare these 2 tools, but this question is bugging me for a long time.If apps made with Flex (or Flash Builder) are really faster and less CPU intensive - why is that?

View 1 Replies

Flex :: Mailto With Attachments In AIR Applications

Jul 27, 2011

How to forward attachment(for example image) from Flex or AIR application to email client? For forwarding email address, body and subject, I use this:

var s:String = "";
s+= "mailto:";
s+= g.text;

[Code].....

View 1 Replies







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