Flex :: Pass Data Between Mxmls?

Jul 17, 2011

index.mxml :
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"

[code].....

View 2 Replies


Similar Posts:


Flex :: Pass Data From Port To Xml()?

Mar 31, 2011

AM reading data from port in the form of bytes.my data will be like [code]...

View 3 Replies

Flex :: 4 - Pass Data To The Module

Apr 18, 2011

I have a Flex 4 application that loads a module. Everything works fine except that I cant create and object or cast an object to a type of my module. At run time it throws an error. I'm not sure if there is an issue with modules, Flex4, and spark? I've tried many different ways to set/cast these objects, but nothing seems to work.

[Code]....

View 1 Replies

Flex :: Flex - Pass Data From Popup To Parent?

Jan 1, 2011

I have a parent w/ a popup child. When parent loads, I have to call a function within the popup without showing the popup (thus, I load "pupLove" but don't include it in layout)....I then pass this data to the parent. When the user manually clicks another button to open the popup, the same function is called & data passed to the parent. However, I am not able to pass dg.length to the parent. I believe the root problem is that I am loading "pupLove" & thus the parents are getting confused.....I'm guessing if I get rid of "pupLove" I can pass the data correctly but will need to call the child's function at creationComplete of the parent....how do I do that?Here's my parent:

<?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"

[code].....

View 1 Replies

Flex :: Pass Request Data With URL Fragments?

Sep 1, 2009

I'm passing the following parameter as an url fragment to flex. (#groupID=2385)

This works great on the development box, but when I put it on the production server.. nothing.

Do you think this is a server configuration issue. I presume that flex is talking to the javascript file 'AC_OETags.js' to make this all happen.

View 1 Replies

Flex :: Events - Pass Data From Preloader To App?

Jan 19, 2010

I would like to track the customer experience in downloading and initializing my flex app.

(a) Is there a way to pass data from preloader to the application? I would like to pass the time it takes to download and the time it takes to initialize.

(b)Alternatively: Is there an event at the application level that corresponds to the preloader events:

1. Download complete

2. Initialization complete (same as Application creationComplete)

View 1 Replies

Flex :: Pass Data From One Flex Application To Another?

Mar 31, 2010

i have two flex applications and i want to pass the data from one application to another.Is there any way to do the same.

View 2 Replies

Flex :: Events - Pass Data To Handling Function?

Jul 28, 2010

In flex, I am handling event like this,

myImage.addEventListener(MouseEvent.CLICK, redoOperation);

Now, I want to pass some value to redoOperation. (function redoOperation myId:String)) How can I pass String to it?

View 1 Replies

Flex :: Pass Multiple Data Items Through Checkbox?

Dec 18, 2010

I have 2 checkbox repeaters: The first gets populated w/ an ArrayCollection & the second gets populated w/ the "Label" and "Data" fields selected from the first checkbox....how do I pass another item to the second checkbox? In the code below, I am currently only passing the "key" and "val" fields & would like to pass "another" field.[code]...

View 1 Replies

Flex :: Data - Pass Multiple Strings Between Views?

Aug 10, 2011

I have a list of txt files and when one is selected it is read and assigned to a string variable. this string is then pushed to a view : pushView(viewer, string), where the string is displayed in a textarea. I want to also pass the relative path of the file also. Is this possible to pass two strings?

[Code]...

View 1 Replies

Flex :: Pass Data To A ClassFactory-generated Instance?

Mar 7, 2012

I have created an item-renderer (IListItemRenderer) to customize the display of a datagrid, and I override the data getter/setter to pass in the relevant variable.

In the item-renderer I have a button, which, when clicked, should display a form populated with various fields of the aforementioned variable. To do this, Button is overridden so that it displays whatever IFactory implementation it is passed.

private function instantiateDropdown():void
{
_dropdownFactory = new ClassFactory(MyPanel);
_dropdownFactory.properties = {boundData: _myVariable};

[Code]....

My IFactory implementation is a panel containing my form, and it is displayed when the button is clicked, as desired. However, the variable is not set. It seems that in order to instantiate my IFactory before the overridden button needs to access it, my new ClassFactory() statement needs to be in the preinitialize event handler, but the variable has not been set at that time. Setting the properties of my IFactory instance after it has been created (e.g. in the click event) does not appear to work.

How should I pass my variable to my ClassFactory-generated instance so that it populates the form correctly?

View 1 Replies

Flex :: Pass Data Between ViewNavigators In Flash Builder 4.5 Burrito

Feb 12, 2011

I'm giving it a try and it happens that I'm having a hard time figuring out how to pass data between ViewNavigator in a TabbedMobileApplication.

<s:TabbedMobileApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark">
<fx:Declarations>

[Code]....

How can I pass data between nav1 and nav2? I know how to do it in between navigation views.

View 4 Replies

Flex - Facebook IFrame Application - Pass Data From URL Query String?

Jul 4, 2010

I have a Facebook application that has a picture gallery. It's build in Flex 4. I want to allow users to link to a specific image. How can that be done?

The only way I see this being done is adding a GET var like &my_picture=asd.jpg in the Facebook page URL, but I don't know how to read that from the iFrame.

View 2 Replies

Flex :: Pass Data Retrieved From A Remote Object Service To A Modules Interface?

Jun 9, 2010

I found at this Adobe tutorial a nice "RemoteService" class that creates a RemoteObject and contains the functions for handling the result and fault events. If I wanted to use this approach, how could I pass the data from the result handler to interfaces that modules from the main application could use?

I could put the RemoteService/RemoteObject in the modules, but (in my opinion- and I could be wrong) the best design seems to be using the remote calls in the main app and passing the data along to the modules.

View 1 Replies

Flex Mobile 4.6 - Pass Data (selectedItem) From Master To Detail View In Splitview?

Dec 26, 2011

I have a tabbed view with in the second tab a splitview controller.

The master view shows a list. When selecting an item from that list it opens a second view with a new list by using navigator.pushView.

When I select an item in the second view/list it has to be passed to the detailview. Is there a simple solution available?

View 1 Replies

Python :: Pass Data From Google App Engine(Python) To Flex 4 Application?

Feb 22, 2010

I am using python and webapp framework in app engine for backend and flex 4 for front end.I would like to pass a string form backend to front end, so i write the following code in the main.py:

[Code]...

View 3 Replies

Flex :: Can't Pass Data From Child To Child

Jun 25, 2010

I have a parent and 2 children. I am trying to pass data from child1 to child2 but keep getting an error message: 1061: Call to a possibly undefined method through a reference with a static type.

In child1 I have the following code:

[Bindable]
public var TestVar:String='sometext';

In child2 I am trying to get the value of TestVar and then use it as a value to search a mysql database via php.:

var newTestVar:String = child1.TestVar;
if(newTestVar != null){
getResult.token = someService.get_filtered_Paged(newTestVar);

[Code].....

View 4 Replies

Simple Flash Form Variable - Collect Data From A Form, Then Pass That Data To An Asp File?

Oct 19, 2009

I am trying to create a simple form using Actionscript 3 that will collect data from a form, then pass that data to an asp file. I have attached the following code to the submit button,but this is not working.I'm not sure if I have to add anything else and I don't understand why this is not working. I'm trying to load all the variable info into one variable called email form.

submit_btn.onRelease = function() {
var emailform:text;
emailform.email_txt = email_txt.text;[code]......

View 1 Replies

ActionScript 3.0 :: Pass Data Between Two Swf?

Apr 21, 2009

I m trying to create few swf for a website for which i need to pass data from one swf to another which are on the same page.

View 3 Replies

Php :: How To Pass Xml Data To Flash

Dec 16, 2009

How can I pass xml data from php to flash, without using xml file?

View 3 Replies

Php :: Pass Xml Data To A Swf Object?

Dec 17, 2009

The Context of the Problem.I'm working on a rotator banner in flash. I use an external xml file to pass the banners info (like info-text, link, image-path, priority, etc). Everything is going well so far. I'm loading the xml something like this:

var bannersXML:XML = new XML();
bannersXML.ignoreWhite = true;
bannersXML.load("myBanners.xml");

The Problem itself.Now I need to construct this xml on-the-fly in php and somehow pass it to my flash object. So instead of read the external file I want my flash script receive an xml parameter it can work with.

View 1 Replies

ActionScript 2.0 :: Pass Data From PHP

Sep 24, 2011

I'm trying to pass the data from a PHP file to ActionScript but keep getting "undefined". This is my ActionScript:

[Code]....

View 1 Replies

ActionScript 3.0 :: Pass Data To Swf?

Dec 11, 2009

I'm wanting to know if there is a way to pass a string to a swf php style like

www.website.com/the.swf?data=30

Is there any action script class that deals with this?

View 2 Replies

PHP :: How To Pass Immutable Data Through Two Webpages

Jun 1, 2010

I have a flash application (a game) and it needs to pass data to a php page to save the user, and the user's score. However I don't want the user to be able to alter the score him/herself or to initial a scoring without using the application. What is the best way to do this?

View 3 Replies

AS3 :: Pass Custom Event Data

Aug 9, 2010

I am trying to pass custom event data from 1 class to another class...here is my codes..[code]

View 2 Replies

AS3 :: Php - Securely Pass Data From MySQL

Oct 1, 2011

I need to pass private data from MySQL to a flash file securely. I have a PHP script that is assigning variables on the server side - how do I pass this to flash without being available publically? I assume XML and an HTTP query string are out of the question because of security. What's the most secure way of doing this? Basically I have some file paths that I need to load into a music player - however, I don't want these URLs to be publicly known. I was hoping I could pass data directly to flash securely somehow.

View 2 Replies

Pass Parsed XML Data On To Classes?

Nov 30, 2011

I've traditionally all my as3 code in one included .as file, not as packages / class files, but I'm trying to make that transition. I'm a little confused about how to pass information back and forth among class files though. For example, what I'm trying to make is a sort of node diagram where clicking on a certain node will sprout out its child nodes, and clicking on a child node will sprout out its children, etc. I have a main class, Main.as, which I was going to make parse an XML document and store an array of all the relevant data for each node (things like a title, link, etc). Then I have a class file called Node.as which actually builds the node, adds it to the stage, and sets up its listeners and the motion tweens.

My question is - if all the information for the nodes is stored in Main.as, but the click handling is done in Node.as, how does Node.as know what attributes to assign to each added node (i.e., how does it access the array from Main.as to assign properties to the clips created)?[code]...

View 1 Replies

ActionScript 3.0 :: Get And Pass Data From PHP To SWF At Runtime?

Jul 11, 2009

Is there a way to pass data from a PHP script to an SWF at run-time without first writing the data to a file (through PHP) and then making your SWF read that file?

View 5 Replies

ActionScript 2.0 :: Pass Data From Flash To SQL

Feb 23, 2010

Could anyone redirect to the tutorial or post explaining how to save data from flash to SQL using c#/ADO.net?

View 0 Replies

ActionScript 3.0 :: Pass Data Between Swfs?

Aug 24, 2011

how to pass data between 2 swfs better way then LocalConnection.I tried Localconnection but it seems slow and unreliable.id did test passing array 5000 items 200k bites in total
I sent row by row (on success sent next row).it took me 90 sec to pass data from one swf to another and it failed on second attempt.Is any other way to establish bridge between 2 stand alone swfs?

View 2 Replies







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