Flex :: Add Additional Name-value Pair In An Existing Object?

Apr 5, 2012

adding additional name-value pairs to my existing object in Flex;

I have an object1 of Object Type and I declare a new object2 = object1 plus some extra name-value pairs, is there a way to attach new name-value pairs to an existing object?

View 2 Replies


Similar Posts:


Regex :: Regular Expression For A Specific Pair Or Each Item In A Pair?

Jul 12, 2010

I have a situation where I might be getting one or both of a pair of characters and I want to match either.

For example: str = 'cddd a dfsdf b sdfg ab uyeroi'

I want to match any "a" or "b" or "ab". If the "ab" comes together I want to catch it as a single match (not as two matches "a" "b"). If I get "ab" it will always be in that order ("a" will always precede "b")

What I have is: /[ab]|ab/

But I'm not sure if the ab is going to be a stronger match term than the [ab].

View 3 Replies

Flash :: IE9 "feature": Turns Oldie Object/embed Pair Tags Into Single Object Tag, But It Failed?

Jul 5, 2011

I'm working on a project which allowing end users to embed a flash in their own HTML pages while we offer different ways so user could choose one that works for their circumstances, for example, most blogs doesn't welcome users to inject JavaScript on their pages, therefore SWFObject wouldn't be possible, we offered two other ways: IFrame and the oldie but goodie Object/Embed pair. Just like old Youtube embedding code:

[Code]...

View 1 Replies

Flash :: Object Literal With Constants As Keys (in Key Value Pair)?

Apr 4, 2011

I have a class that holds some constants and will receive an object literal (associative array) with some data like this:

var ConfigObj:Config = new Config({
"Some" : 10,
"Other" : 3,
"Another" : 5
});

The class looks like this:

public dynamic class Config
{
static public const SomeProperty:String = "Some";[code].....

View 2 Replies

Actionscript :: Xml - Store Name-value Pair In Flex?

Nov 26, 2011

Parse XML to get name and value of tags in Flex.I am able to get the name and value pairs of the <id>,<width> etc XML tags.But I am not able to store them as a name-value pair in Array/ArrayCollection, i.e

id - ""
width - 10
height - 10
name - Person1

I want to use them later in my application. How to do that ?

View 1 Replies

Flex :: Connect A Pair Of Clients Together Via Server For An Online Game?

Oct 27, 2009

I'm developing a multi-player game and I know nothing about how to connect from one client to another via a server. Where do I start? Are there any whizzy open source projects which provide the communication framework into which I can drop my message data or do I have to write a load of complicated multi-threaded sockety code? Does the picture change at all if teh clients are running on phones?

View 4 Replies

Data Binding - Flex Additional Label In ButtonBarButton?

Dec 5, 2011

I'm trying to extend ButtonBarButton to include an additional label that shows the number of updates for the respective box in a viewstack (which is the tabbar's dataProvider).

I can get the additional label (named indicatorLabel) to read an initial value from data, but I can't get it to update automatically like the actual "label" attribute. My understanding was that you could bind to the data object, but that doesn't appear to be the case.

[Code]...

View 1 Replies

Flash :: Flex - Using The Vanilla Preloader To Load Additional Assets?

Jan 27, 2010

I have a Flex application that automatically loads the SWF and it's contents and displays the default progress bar like in all Flex apps. Currently I have a class in the application using a Loader instance to load an external bitmap to be added to the stage/canvas. I'd like to handle the loading of this bitmap in the Flex default preloader and get rid of the Loader instance entirely.

View 1 Replies

ActionScript 3.0 :: Change An Existing Object?

May 4, 2011

I want to change or rather swap an existing object after a said event, say after the player collides five times with another object, but as my knowledge is very limited I don't know how to proceed.

View 14 Replies

Access An Existing Flash Shared Object?

Oct 31, 2011

I am trying to access a flash shared object using sharedObject.getLocal("sharedObjectName"); But, it always creates a new object and doesn't locate the existing object, then I searched the location where it saves the object and I got this location from the internet c:/Documents and Settings/username/Application Data/Macromedia/Flash Player/#SharedObjects But, I could not get this directory in my windows XP. access my shared object which is residing in my flash media serverapplication folder..

View 1 Replies

ActionScript 2.0 :: Existing Code To Rotate An Object?

Feb 21, 2012

I have an object that I want to rotate in 3D (letter "Y"). I have some code that I gathered and edited a bit, but right now it rotates at the top left as it's anchor. I'm trying to get it to rotate at the "crux" of the Y (absolute center), so it basically rotates in place.My second problem is the speed. Ideally it needs to rotate very fast then slow down and stop.Any thoughts on how to either clean up this code to make it work? could try it with just transforming the shape, but I'm trying to see if it can be cleaner with Actionscript

ActionScript Code:
scaleDirect = -1;
function dec2hex (dec)

[code].....

View 2 Replies

Media Server :: Append Stream Object To Existing File?

Apr 4, 2011

I'm trying to append a live stream to an existing file, but I cant figure out how to open the existing file and then append the live stream. This is server side as well.I know I need to open the existing file using stream = stream.get("file"). but I don't understand how to associate stream with the live stream coming in.

View 8 Replies

ActionScript 2.0 :: SharedObject.getLocal() Re-writes The Existing Object Instead Of Returning Reference

Mar 3, 2011

Everytime a clip is being started the line var so = SharedObject.getLocal('mysharedobject', '/'); creates new mysharedobject instead of returning the reference to the existing one. What might be the reason for this?

View 2 Replies

Flex :: Adding Flex Capabilities To An Existing J2EE Enterprise Application Project

Sep 17, 2010

I have an J2EE Enterprise Application Project in which I would like to add a few Flex screens. How do I go about adding Flex capabilities.

I have build Flex/J2EE applications from scratch but can't think of the best way to do this.

I am currently using Flex Builder Plugin for IBM Rational Application Developer 7.5.

View 1 Replies

Xml :: Flex 4.6 - Add Additional Configuration Sets To One "main" XML

Dec 14, 2011

i want to use XML to save some configuration for elements in my app. in my example i want to add 6 additional configuration sets to one "main" XML. each set can be config1 or config2. In this case i added 3x config1 and 3x config2. if i trace my results i do not only get the wrong order of elements but also some "strange" binding behavior. Of course this is a simplified example. my configuration sets are more complex (this is why i use seperate xml-objects for each config).

[CODE]...

View 2 Replies

ActionScript 1/2 :: New Name/value Pair At Runtime?

May 18, 2010

I'm trying to create a new list from a query using the following code, but I get a script error left side of assignment operator must be variable or property.
 
mclist add Number(mccounter) = eval("mcid" add i);
 
I want to end up with a list that looks like "mclist1=somevalue, mclist2=somevalue, mclist3=somevalue, etc etc. ps its nested in a FOR loop.

View 8 Replies

ActionScript 3.0 :: Get Every Possible Pair From An Array

Jun 7, 2010

I am trying to get every possible pair of objects out of an array. I only want unique objects, so the pairs (obj1, obj2) and (obj2, obj1) would be the same and thus not unique. I do not want any repeats either.

View 2 Replies

ActionScript 3.0 :: SWF Assembler/disassembler Pair?

Jan 31, 2009

Does anyone know of a good SWF assembler/disassembler pair?

View 1 Replies

ActionScript 3.0 :: Using A Getter/Setter Pair?

Nov 9, 2009

I'm having trouble updating a property value of a custom class (SubLoader) using a getter and setter. Inside the if() statement of the main fla you can see my attempt to set the percent value. Running a trace() method before the if() statement always outputs '0' for some reason. Tracing after the if() statment outputs an actual value. I can't figure out why the percent property always traces as '0' before the if statement even though I am updating it with each progress event.

[Code]...

View 3 Replies

ActionScript 2.0 :: CS3 - Pass Variable And Value Pair To Flash

Aug 27, 2009

I have a php page called userid.php. The code is as follows:

PHP Code:

<?PHP
$username = $_SERVER["REMOTE_USER"];
echo ("&serverResponse=$username");
?>

[Code].....

I believe there is a few things that I am doing wrong in both my php and actionscript that is keeping the textvalue from the variable $username from being passed to flash.

View 5 Replies

Flex :: AIR App That Loads And Runs Existing AIR Swf?

Feb 19, 2010

I have an existing AIR app whose main content is App.swf.I would like to have another AIR app that hosts and runs App.swf. When I say run it, I mean displays it's WindowedApplication.Here's the code for the 2 AIR projects (imports are omitted for brevity):

// App AIR Project -> App.mxml -> App.swf (it's just a window)
<?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml">[code]....

I get the following error while App.swf is being loaded:

TypeError: Error #1009: Cannot access a property or method of a null object reference.at mx.managers::SystemManager/initHandler()[C:autobuildgalagaframeworksprojectsframeworksrcmxmanagersSystemManager.as:3001]

I believe the issue has to do with AirAppHostApplication's SystemManager conflicting with App's SystemManager because they are both living in the same app domain. Can an AIR app be written where a WindowedApplication class isn't statically defined, but loaded at runtime by loading a swf and instantiating the WindowedApplication subclass that's contained in the swf.The reason I want to do this is for an automation scenario where I have to assume I don't have the source code for the app I'm automating, but I do have access to the names of the public classes and their public methods exposed for automation. I have complete control over the environment and don't have to deal with any constraints around that, so I can put 2 AIR apps in the same directory, etc.

View 2 Replies

Flex :: Unreachable, Existing Variable?

Jun 13, 2010

I'm new at as3, maybe thats the reason why i don't understand, why the setInterval causes an error.

<mx:Script>
<![CDATA[
import flash.utils.setInterval;

[code].....

View 1 Replies

Flex :: Compile An Existing Project With The SDK

Jun 20, 2010

I'm trying to compile an existing Flex3 project with the Flex4 SDK. I'm getting this error:

Warning: This compilation unit did not have a factoryClass specified in Frame metadata to load the configured runtime shared libraries. To compile without runtime shared libraries either set the -static-link-runtime-shared-libraries option to true or remove the -runtime-shared-libraries option.The resulting file is roughly the same as my old Flex3 compiled .swf file. Playing the resulting .swf file in the Flash Player also gives the following errors:

An Actionscript error ocurred: VerifyError: Error #1014: Class spark.core::SpriteVisualElement could not be found If I set the compiler attribute static-link-runtime-shared-libraries to true, then the error disappears and all is well. However, the size of the resulting .SWF is a couple of 100K's bigger. And that's not what I want.

I don't fully understand the concept of runtime shared libraries, but it seems that with the option to statically link them set to true, the libraries are included in the .swf. However, I like to exclude them from the .swf and only load the needed library at runtime, as my project seemed to do with Flex3 (I didn't know that by the way).

If I understand correctly, playerglobal.swc should hold all the necessary code for the external libraries that my .swf has to load. Do Flex4 compiled files need more libraries? Should I do something with the factoryClass in the Frame metadata tag?

I think my question boils down to this: How do I compile a Flex4 .swf that is the same size as my previous Flex3 compiled .swf?

View 3 Replies

Web Development :: How To Integrate Flex With Existing Web App

Sep 2, 2010

I'm having trouble conceptually understanding how to integrate flex components -- forms, charts, data grids, etc. -- with an existing web app. There are certain aspects of the web application where I believe it makes more sense to use flex -- however, I DO NOT want to replace the (html/js/java) web-app with a pure flex based app.For example, currently the web app displays user data using html tables and java based charts, I'd like to re-implement this "data display" using flex. Would I have to create a flex "application" for the "data display"?

View 1 Replies

Flex :: How To Add New Column Based On Existing One

Apr 6, 2011

I have a AdvancedDataGrid in flex3 (Flex 3) with 4 columns:
id : int
category : String
name : String
isPreferred : Boolean

And I would like to add a fifth column
favorite : Image
The value of favorite will be based on the value of is Preferred : if true, then favorite will be a read-heart-icon, if false, a grey-heart-icon.

Below is my code :
the mxml content
<xml version="1.0"?>
<mx:Application xmlns:mx="[URL]" applicationComplete="init()">
<mx:Script>
[Code] .....

View 1 Replies

Flex :: Reading In Existing File In 4.6?

Mar 8, 2012

I have a data file on my computer that I need my flex mobile app to read from. Is it possible to put this file in a certain location on my computer so that the app will see it when I'm testing(ex-can i put it in a folder that is linked to the applicationstoragedirectory directory)?

View 1 Replies

ActionScript 3.0 :: Read In The FileProperties.txt And Extract The Key/Value Pair From The File?

Aug 6, 2010

I have a property file (fileProperties.txt) which contains a name value pair like below:

FileLocation1 C:/Test/Lookup.xml
FileLocation2 C:/Test/Multiple/MultiLookup.xml

From my ActionScript code I need to read in the fileProperties.txt and extract the Key/Value pair from this file wherein my key is for eg FileLocation1 & corresponding Value is C:/Test/Lookup.xml.

View 1 Replies

Flex :: Expose Component's Existing Events With New Name?

Jan 21, 2010

I created a flex component that hosts several built in (mx) components such as a listbox and combo box. My component relies on external data, and I need to expose events such as ComboBox.enter and List.click to get certain pieces of data.I was wondering if there is any easy way to do this without having to create my own custom event handlers. I'm simply trying to expose these events with different names so that when my component is used, I can do things such as:

<?xml version="1.0" encoding="utf-8"?>
<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" width="100%" height="100%" xmlns:com="com.*">

[code]........

View 4 Replies

Flex :: Rebuilding Existing Flash Project

Nov 23, 2010

I'm not a flash developer.We paid a developer to build us an app. It is nearly perfect, but a few things in the actionscript need tweaking (purely the values of some URL's for action when buttons are clicked.)I believe I need to rebuild the project to pull this information through.I believe he has sent me the full source. Do I need to install all of the dependencies to get this to work? I'm tempted to just go in and make the changes in a hex editor..

View 1 Replies

Flex :: Replace An Existing XML File Using Webservice In It?

Jul 15, 2011

Is it possible to Replace an existing XML file using Webservice in Flex(browser-based application)?

I wanted to replace an existing xml file with new xml file of same name for example 'dashboard.xml'.

How can i replace this file from Flex browser-based application? can this is possible using webservice?

what things should be taken care to implement this?

View 1 Replies







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