Flex :: Actionscript 3 - Mate Doesn't Cache Instance - Created With Object Builder

Aug 16, 2010

If you once run an ObjectBuilder the object instantiated will be cached and next time you use an PropertyInjector or something else, the instantiated object will be used instead of creating a new object. Or at least this should be like this :) But in the example below it seems that mate tries to instantiate the object again: The following error occurs:

[Code]...

View 2 Replies


Similar Posts:


Flex :: Auto-mate Build Of Multiple Swfs From Flash Builder 4?

Jun 10, 2010

I'm working on a project that has a Main.fla and a Preload.fla. I am doing all the coding in Flash Builder 4. Each time I want to test I have to go to Flash CS5, publish Main.swf and then run Preload.swf. Is there a way to automate this process so I can just press the "Run Main" button inside Flash Builder 4 and all that is done automatically?

View 1 Replies

Flash :: Builder 4 Auto-mate Building For CS5?

May 4, 2010

Does Flash Builder 4 allow one to automate building Flash CS5/as3 .flas?

View 1 Replies

ActionScript 3 :: Dynamically Created Children Of Display Object Instance?

Jul 11, 2010

Is it possible to get dynamically created children of a display object instance in action script 3?
Example
trace(_view.getChildByName("name")) = returns name of display object (success)
trace(_view.getChildByName("name").getChildByName("name2") = returns error 1061

View 2 Replies

Can Flash Load A Flex Mx:module Created In Flex Builder 4

Feb 16, 2011

I have a Flex module created in Flash Builder 4 as a swf file. I am trying to load and run in within a Flash application. I can get the module loaded but I can not get the flash application to access any module functions. Here is how I load the module in Flash and the error I get. If I change the module to an application type swf then it loads and runs but now I have two applications on top of each other. I would like the loaded module swf to be able to have access the Flash stage object.

ReferenceError: Error #1069: Property application not found on MyModule__mx_core_FlexModuleFactory and there is no default value.
var loader:Loader = new Loader();

[code].....

View 1 Replies

Flex :: Use TextMate With Existing Projects Created In Flash Builder?

Jul 23, 2010

I am wondring if anyone has a good resource for opening existing Flex projects that where created in Flex / Flash Builder and run them using the TextMate bundle for Flex and Actionscript projects.

Basically I just want to know if I can walk into an existing project and configure this easily or am I pretty much stuck with using Eclipse ?

View 1 Replies

Flex :: Reserve An Object In Browser Cache?

Jul 26, 2010

I have a flex application about 2M need to send to browser, so I want the browser to reserve the file in cache forever unless I upgrade the version. I have set the ETAG and last-modified tag in http reponse header, but sometimes, when the user click the refresh, the swf file still be reloaded. So what http response header can I use to reserve the file in browser cache forever?

View 1 Replies

Eclipse :: Flex Builder Debugger Doesn't Display Local Variables

Feb 11, 2010

I am using the Flex Builder 3 debugger almost every day and it's starting to be a real pain that the 'Variables' tab in the 'Flex Debugging' view doesn't show local variables, only 'this' is displayed.

Also I can not add Watch Expressions for local variables.

Am I forgetting something here or is the debugger just very limited?

View 3 Replies

Flex :: Air - Adobe Export Release Build Doesn't Work - Mac OSX - Builder 3

Jun 4, 2010

I have an AIR application i'm trying to release with flexbuilder. Launching application has no problem ... bin-debug dir is correctly filled with my files. But when i want to create the AIR file (export release fuild), AIR files content view is empty and bin-debug directory is never filled.

View 4 Replies

Actionscript 3 :: Flex : Dynamically Created Series Doesn't Show On The Chart?

Oct 13, 2011

I have the follow class :

package my.controls.charts.series
{
import mx.charts.series.LineSeries;
import mx.collections.ArrayCollection;

[Code]....

The new series name appear on the chart, but the data doest, and the chart always remains blank.

View 2 Replies

Flex :: TextField Instance Inside A Button Created In A Separate Layer In Flash Is Null

Mar 25, 2010

I've created an button object in flash. The button contains 2 layers. One is the background image and on top of it is a textField. The textfield is dynamic. I use the button inside a movieclip and I export it in a SWC. The I'm trying to use it in flex.

I'm trying to do this:

var myComponent:MyComponent = new MyComponent();
myComponent.button01.theTextField.text = "Caption";

I get and instance of the button(myComponent.button01 is not null in Flex debugger), but the instance of the textField(myComponent.button01.theTextField) is null and I'm not able to change the text(but the default text appears onscreen). The code is compiled correctly in flex.

I exported the in swc the button control as well. So the button is not the default SimpleButton from Flash, but an derived class generated by flash(with the same name as the symbol defined in flash). It contains theTextField memeber, which is null.

Here is the button timeline(Layer 2 contains the textfield, and the textfield instance is named theTextField):

View 5 Replies

Actionscript 3 :: Flex: Adobe Flash Builder With MXML: HTML Progressive Streaming Doesn't Work

May 7, 2011

I am using progressive streaming with VideoDisplay, the HTTP URL provided gets buffered completely even if I have configured it to start playing the video when the buffering reaches 20%, the trace message shows that the playing started(using mozilla /Flashbug+Firebug), but it doesnot show the video till the buffercounter reaches 100% How can I get the video stream to play at the 20% of stream.Code Segment where the check takes place

var loadedPct:uint = Math.round(100 * (event.bytesLoaded / event.bytesTotal));
trace('waiting...');
mainVideoCanvas.addChild(LoadingImage);
VidLoadingLabel2.text = loadedPct.toString();

[code].....

View 1 Replies

ActionScript 2.0 :: Objects - XML - Creating A New Instance Of An Object That Uses An Identical Name To An Older Instance Delete The Previous Instance?

Mar 20, 2009

Does creating a new instance of an Object that uses an identical name to an older instance, delete the previous instance? Or should the original instance be deleted first? The code uses a ridiculous amount of XML vars. Isn't it less memory intensive to parse the XML and save the properties to an Object, and then delete the XML Object, rather than keep the XML Object around and reference it's child nodes directly? Is it better form to break up a huge XML file (>600lines/3200vars) into smaller chunks?

View 1 Replies

Flex :: Dispatching A Variable In Mate Framework?

Oct 14, 2009

I have a grid, when i click on the edit button it goes to edit page... but i need the value in the grid also to be passed to the page. this.dispatchEvent(new DepManagementEvent(DepManagementEvent.EDIT_NAVI));The above code lands in EDIT page... how can i move the values too.My Parent Page code.

private function editForm():void {
var event:DepManagementEvent = new DepManagementEvent("Edit Page",true);
dispatchEvent(event);

[code]......

View 1 Replies

Flex :: Mate Not Catching Event In EventMap?

Jan 12, 2010

In my AIR application I am having problems catching dispatched events in my eventmap. The class that is dispatching the events looks like this:

Shortcuts.as
[Event(name="centeredZoomOut", type="flash.events.Event")]
public class Shortcuts extends EventDispatcher
{
// Event Names

[Code]...

View 1 Replies

Actionscript 3 :: Flex - Use Framework Like Cairngorm Or Mate?

Feb 13, 2010

From what I understand a framework reduces complexity in areas that are common, like a log-in system. I use ASP.NET MVC at work and have done some work in Zend Framework but do not get how a framework helps with client side development. The reason ASP.NET MVC is used at work is for Unit Testing - does a Flex framework help with this too? why I should or should not use a framework with Flex?

View 4 Replies

Actionscript 3 :: Mate Not Listening To Events - Flex?

Jan 23, 2011

I am working on a simple project involving flex 4 and Mate framework. When I am including Mate event map in fx:declarations tag in mxml file, and when I fire up an event, Mate event handlers listen to events and act upon it.

The issue is this, in action script based project, when I instantiate the eventmap class(this is in mxml file only) and keep it in top and fireup an event, instantiated eventmap is not listening to event fired up from action script class.

View 2 Replies

Flex :: In Mate, Sending Two Or More Requests To The Server Simultaneously?

Sep 29, 2010

I'm using Mate's RemoteObjectInvoker to call methods in my FluorineFX based API. However, all requests seem to be sent to the server sequentiality. That is, if I dispatch a group of messages at the same time, the 2nd one isn't sent until the first returns. Is there anyway to change this behavior?

View 1 Replies

Flex :: Handling Event Inside Loaded Swf In MATE?

Sep 12, 2011

Can I handle an event inside a loaded swf file(using swf loader) using MATE when my main application fires the event ? i want to make a remote service call based on the data i get from the main applications event , and then populate my loaded swf .

View 1 Replies

Java :: Object Via The Response Writer To The Flex Builder 4.5?

Mar 8, 2012

the problem is as so: I have a java server running on tomcat 7.0 and having the library Gson 2.1 on it.
I have and object to be encoded into json that got an attribute which is an array and might be an empty one.

when I send my json object via the response writer to the Flex Builder 4.5 in the Network Monitor view in the response type I get unknown. well, I have done my research, and discover that this is a known issue.[URL]..

adobe said that with Flex Builder 4.5 this issue will be fixed. but apparently it ain't so.

[Code]...

View 1 Replies

Flex :: Find Where An Object Is Created?

May 7, 2006

I didn't create that Timer... so this is problably a component I have addedUnfortunately it will be difficult to remove all compenents until if find the "one" ..Yes I should have notice the CPU usage sooner !and yes I will do that if I don't find another solutionI am of course using some components without having their sources...My questions :* How can I find the guilty component ?* I tried to find it using Kap Inspector without success ...any tips for Kap inspector ?

View 2 Replies

ActionScript 3.0 :: Keyword "this" - Refer To The Current Instance Variable Being Created When Its The Only One Being Created?

Dec 11, 2009

When an instance variable is constructed by a constructor method, why do you need to refer to the current instance variable being created when its the only one being created? I understand assigning an expression to it but why name it "this." when it is the only object that the constructor is building? Does it have some hing to do with being able to naming that object in the Local Variable? In other words am I creating a generic object that will be named in another class?

View 7 Replies

Actionscript 3 :: Multiple Instance Of The Same MovieClip Share The Cache?

May 30, 2011

If I have one MovieClip which has two frame, each frame has a 1K Bitmap.When I create three instance of this MovieClip, Is these three instance share the same memory which will only cost 2K memory or they has their own memory which will cost 2K * 3 memory?

View 1 Replies

Checking Cache As Bitmap Doesn't Work

Jun 29, 2009

Checking Cache as Bitmap doesn't work, you have to .cacheAsBitmap = true with actionscript? 

View 2 Replies

Java :: Integrate Services With Flex UI Built Using Mate Framework

May 24, 2010

I am new to Flex and need to integrate Java services with Flex UI built using Mate framework. Can anyone point me to any website/links or show an simple example of integrating Flex UI on Mate framework with Java remote services? A simple integration of a "LoginService" will be good enough.

View 1 Replies

Flex :: Sending A Json Object Over Flash Builder 4 Webservices?

Aug 12, 2010

Can I use the webservice wizards in Flash Builder 4 to send a json encoded object...not as a string but as type application/json; charset=UTF-8

View 1 Replies

Flex :: Flash Builder - AdvancedDataGrid DataField - Use A Subarray Or Object?

Aug 5, 2011

I have an advanced data grid in flex (flash builder 4). It's dataProvider is pointing to an ArrayCollection (this._encounters). Inside that array collection is a property that is an object (a client object).

I tried setting the dataField to "clientObj.firstName" to refer to the first name property within the clientObj property of the this._encounters array collection. It did not show anything. So, I added a labelFunction to that column (code below) to set the text in the cell. This works fine and now I have values showing in the grid.

The problem is now when I click the title of column to sort it. It throws an error that property clientObj.firstName is not found in my array collection!So, is there a better way to set the dataField / source for a column and point at a property in a sub-object -- or a way to fix the sort?

Below the first column

<mx:AdvancedDataGrid x="0" y="25" id="adgEncounters" designViewDataType="flat" width="100%" height="100%" dataProvider="{this._encounters}">
<mx:columns>
<mx:AdvancedDataGridColumn headerText="first" dataField="clientObj.firstName"

[code]....

In the mxml above, this is the changed line - notice the stringSortByField added:

<mx:AdvancedDataGridColumn headerText="first" dataField="clientObj.firstName" sortCompareFunction="{stringSortByField('clientObj','firstName')}" labelFunction="encounterGridLabelFunct"/>

If it were a numeric field use the numericSortByField. If it were a date string from a database, use the dateSortByField function instead.

View 1 Replies

ActionScript 3.0 :: Embedded A Swf In A Forum Post, But It Doesn't Cache?

Apr 25, 2010

i embedded a swf in a forum post, but it doesn't cache.

View 1 Replies

Web Services - Initialize Webservice WSDL At Runtime Using Flex And Mate Framework?

Mar 17, 2010

I am developing a Flex application on top of Mate framework. In this application, I am using a webservice to retrieve data.As this webservice as not a fix location URL (depending on where customers installed it), I define this URL in a config file.When the Flex application starts, it first reads this config file, then I would like to use the value I found to initialize the webservice.But currently, I have no idea how to this.

[Code]...

View 3 Replies

Actionscript 3 :: Comparison Between Mate Swiz And Robotlegs Frameworks For Flex Development

Jul 5, 2011

My company is willing to reffactor its biggest and heaviest project introducing some kind of framework. Are there good online source/issue/blogpost with comparison of these 3 frameworks - Robotlegs, Swiz and Mate?

View 4 Replies







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