Flex :: Possible To Passing Parameter In Function?

Aug 19, 2004

I have several TextInputs in a certain form which have been assigned id in an incremental order. For example:

<s:TextInput id = "index1"/>
<s:TextInput id = "index2"/>
<s:TextInput id = "index3"/>

[code].....

View 8 Replies


Similar Posts:


ActionScript 2.0 :: Passing A Function As A Parameter?

Apr 25, 2008

I'm trying to do something like this and it doesn't work, but I get no errors.

callback = function(){
//bla bla bla
}

[code]........

View 5 Replies

ActionScript 2.0 :: Passing Parameter To Webservice Function?

Dec 14, 2009

I am connecting to a web service that I know has a method named getAddy.However, in order to work properly I need to provide this method with a paramater named sessionToken. I'm having difficulty with this, my code currently looks like this:

ActionScript Code:
var WS_URL:String = "http://somedomain?wsdl";
var addy_ws:WebService = new WebService(this.WS_URL);

[code].....

View 2 Replies

ActionScript 2.0 :: Passing A Parameter To The Function In The Loop?

Mar 19, 2011

for(var i=1;i<=2;i++)
{
var mc=attachMovie("mc_name","obj"+i,i)
mc._x=200*i;

[code]....

this code places two objects obj1 and obj2 and two buttons button1 and button2

button1 is expected to return _level0.obj1
button2 is expected to return _level0.obj2

Instead they both return _level0.obj2. Obviously, each button is passed the object corresponding to the last "i" in the loop. How shall I sort this out? One of the obvious solution sis to attach each button to its object

mc.mc=mc.attachMovie("button","button"+i,i+10);

but this is not acceptable for some other reason I also have to use this for(var i=1;i<=2;i++) block because in the final application the number of objects will be variable and set by the user at the run time.

View 4 Replies

ActionScript 2.0 :: Calling Function And Passing Parameter

Mar 11, 2004

I am using the asfunction to call a function and passing a parameter. The problem is in the parameter. I can give a parameter that is over 104 characters. What ever is after that 104th character doesnt pass into the string of the function.

View 4 Replies

ActionScript 3.0 :: Passing A Constant As A Function Parameter?

Apr 6, 2010

how to pass a constant into a function, and then for that function to make use of that constant in its constant form (not the string form).

Some code snippets:

Code:
// make call to play ad, passing a constant value defined in a separate AdType class
// in the AdType class, AdType.PREROLL = "before_content"

[Code].....

I realize this is because the value of AdType.PREROLL resolves to a String value ("before_content"), which is then getting passed into the function as such (a String), but is there a way I can make use of that same constant in the playAd function without having to check its string value directly?

View 4 Replies

ActionScript 2.0 :: Calling Function And Passing Parameter?

Mar 11, 2004

I am using the asfunction to call a function and passing a parameter. The problem is in the parameter. I can give a parameter that is over 104 characters. What ever is after that 104th character doesnt pass into the string of the function.

View 4 Replies

ActionScript 2.0 :: Passing Parameter To GotoAndPlay In Custom Function

Dec 13, 2004

I have a custom function with parameter. I'm trying to pass the parameter to the gotoAndPlay as follows. This is where the function is called...

Code:
myButton_btn.onPress = function() {
myFunction("Apply");
}
This is the function...
Code:
myFunction = function (fLabel) {
trace(fLabel);
gotoAndPlay(fLabel);
}

Basically "Apply" is a frame label that I'm trying to send the playhead to. The fLabel paramater traces out properly, but the gotoAndPlay doesn't send the playhead to the appropriate frame label. It sends it to 4 frames before the end. It's really weird. Even if I add frames to the timeline, it still sends it to 4 before the end. I can get it to work perfectly in a "new" flash document, but not in my existing document.

View 11 Replies

ActionScript 2.0 :: Activating The HitTest - Passing The Objects Name As A Parameter Through A Global Function

Jun 16, 2004

I'm having troubles activating the HitTest, passing the objects name as a parameter through a global function. Let's say there is the following function on the main timeline:

[Code]...

View 3 Replies

Flex :: Passing URL As A Parameter?

Jun 3, 2009

<mx:HTTPService id="addWeb" resultFormat="object" result="Added(event)" fault="faultWeb(event)" showBusyCursor="true" method="GET" url="http://localhost/search/populate.php" useProxy="false">

[code].....

View 1 Replies

Flex :: Passing Parameter To SAP Query_view_data?

Jun 2, 2011

I am new to flex and SAP. I am designing a dashboard in flex. I have retrieved data from SAP query_view_data and I am able to show it in charts. However now I want to pass parameter to SAP web service to retrieve data between two dates. I am trying to this with the following code:

protected function adg1_creationCompleteHandler(event:FlexEvent):void
{
var IInfoprovider:String="0FIGL_O02";

[code]....

View 1 Replies

Asp.net :: Passing Parameter From Page To Flex Application

Apr 22, 2010

I have an asp.net page where I get the user_id from who's logged in. Now I need to pass this user_id to a flex application that runs in an asp.net page as a .swf. How can I get this user_id in a variable in my flex application.Or what is the best way to get the user_id into flex.

View 2 Replies

Flex :: Passing A Parameter To HttpService In Flexbuilder 3?

Sep 13, 2011

I have stuck at the point where i need to pass a selected item of a comboBox as a parameter to a HttpService.

View 1 Replies

Flex :: Passing Parameter From Main To Component With Data Binding

Aug 22, 2010

I have a main mxml file (flex4) and want to pass a parameter (user_name) to a component in a directory called components. When I run the program, the user_name is NOT being sent from the main to the component file. (Interestingly, if you make the component visible, you can see the parameter has been passed).

I have hacked much larger files down to get the following two files:
Main
<?xml version="1.0" encoding="utf-8"?>
<s:Application
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"
[Code] .....

View 1 Replies

Actionscript :: Flex - Passing Extra Parameter To Request When Using CallResponder

Nov 2, 2011

I am running flex with BlazeDS. My backend is in Java.

I have the following function in actionscript:

override public function execute():void
{
super.execute();
var responder:CallResponder = new CallResponder();

[Code].....

View 1 Replies

Flex - Error #1088 On Passing A Class As A Parameter For Web Service In Flash Builder

Feb 8, 2011

I need to pass a struct and a string in a web service. I am using a WebService components to do so.upon my search, there is no struct type in actionscript and so I used a class for that one.

public class UserInfo{
public var name:String;
public var dateAdded:Date;
}

and I'm filling it up so that I can pass it on the web service like this:

var newUser:UserInfo = new UserInfo();
newUser.name = "myName";
newUser.birthdate = new Date();
webServComponentId.operationToCall(newUser, "password");

Upon sending this request, it prompts me an error of Error #1088.

the component that is being called by webServComponentId.operationToCall(newUser, "password"); is this:

<s:WebService id="webServComponent" wsdl="[PATH OF WSDL HERE]" >
<s:operation name="operationToCall" result="functionToCallWhenResult(event);" fault="Alert.show(event.fault.faultString)" />
</s:WebService>

Basically it is a web service via MXML. So when I call the operation, it always go to fault part and shows Error #1088

View 1 Replies

Flex :: Require A Function Parameter To Be A Static Constant Of The Function's Class?

May 22, 2009

Let's say I have a Custom Event Class, and it has several Event types stored in static Constant:

[Code]...

Is there an easy way to validate that the type passed to the Constructor is one of the Static Constants of the Class, without having to check it against each value?

View 5 Replies

Flex :: Can (ArrayElementType) Metadata Tag Be Used On A Function Parameter

Jun 23, 2010

What language construction can be used to make a compile time checking of Array elements type when the Array is a function parameter?[code]Here we've marked the returned Array as one containing elements of type string.Is there a way to mark the parameter variable as an Array containing elements of certain type?I'm specially interested in the Array collection. I'm aware of the vector collection but I have reasons not to use it in my case.

View 3 Replies

AS3 :: Flex / Pass Parameter In Anonymous Function?

Aug 4, 2010

In as3, I am adding event listener and then attaching the anonymous function to it:[code]Now this whole piece of code is looped n times. Now, I have n myBoxes and whenever I roll my mouse over the box, it should alert the name. But, what I see is that the last value of count is used by each box. How can I pass parameter or value to the anonymous function? ( as roll over , I believe, expects only one variable)

View 2 Replies

ActionScript :: Overriding Function That Has Optional Parameter In Flex

Jan 18, 2010

I'm using FlashBuilder 4 beta2. My base class has a function foo():
protected function foo(s:String, z:String=null): void{}
Literally "foo" so that there's no chance I'm stepping on a built-in method. I am getting an
"Incompatible override" error when attempting to override the method in a subclass:
override protected function foo(s:String, z:String=null): void{}
Does the optional parameter do something "behind the scenes" that makes it illegal to override the method?

View 1 Replies

Actionscript 3 :: Can't Use Static Const As Parameter In Function Call Within Binding Tags In Flex 3

Apr 23, 2010

I'm having a problem in flex 3 where if a static const I have defined is used as the parameter to a function call within binding tags I get a "1120: Access of undefined property NodePropertyMatrix". _propMtx is a ArrayCollection.

[Code]...

View 1 Replies

Actionscript 2.0 :: Passing Parameter

Jan 7, 2010

I have a function setup that I was hoping to re-use to eliminate a bunch of code, but I can't figure out how to pass a parameter to it. I'm getting the trace output, but the rest of the function is not working.Is there a way to get this to work?From what I can tell the syntax matches the examples in the reference guide.

Code: Select allfunction hideButton (elementName:String)[code]......

View 2 Replies

ActionScript 2.0 :: Passing Mc Name As A Parameter?

Oct 15, 2004

I'm trying to pass an mc instance as a paramter of a function. is this possible because I keep getting errors.

Code:
function moveCircle(sIncrement:Number, sMovie:String):Void {
sMovie._x +=sIncrement;
}

[Code]....

I'm trying to do this to cut down on redundant functions I've used in the past for simple as movements and controls.

View 2 Replies

ActionScript 2.0 :: Passing Mc Name As As A Parameter?

Oct 15, 2004

I'm trying to pass an mc instance as a paramter of a function. is this possible because I keep getting errors.

Code:
function moveCircle(sIncrement:Number, sMovie:String):Void {
sMovie._x +=sIncrement;
}

[Code]....

I'm trying to do this to cut down on redundant functions I've used in the past for simple as movements and controls.

View 2 Replies

ActionScript 3.0 :: Flash Passing Parameter To PHP?

Feb 2, 2008

i have 1 PHP page in which i have a Flash animation. this flash swf file, display 2 fields and 1 button.

this php page is called "test.php".

i'm able to send data from Flash to a PHP page, but i would like to send the content of those 2 fields to the "test.php" and display them. however, i do not know how to do it.

i see that it works but i'm not able to display or refresh the PHp page to display the result.

as walkaround i was thinking to collect the webpage address where is executed the flash and to send it to another PHP page. and this 2nd PHP page, will reload the test.php with parameters...

how to get under flash, the address of the actual executed php page ?

View 10 Replies

ActionScript 3.0 :: Passing Var Type Name As Parameter?

Sep 3, 2009

I would like to know if is possible to pass a var type as parameter to a function. I have several sounds in library, and I would like to do something like that:

Code:
function PlayMe(soundname:String)
{
var snd:this[soundname] = new this[soundname];
snd.play();
}

View 4 Replies

ActionScript 2.0 :: CS3 Passing Parameter/variable From Url To Swf?

Oct 23, 2009

i am trying to define a parameter/variable in my html file and pass it through to the embedded swf file:

Code:
<param name="movie" value="index.swf?wmode=transparent&index=XXX">
...
<embed src="index.swf?wmode=transparent&index=XXX" width="200" height="910" quality="high" pluginspage="http://www.adobe.com/shockwave/download

[Code].....

View 2 Replies

ActionScript 3.0 :: Parameter Passing Between Two SWFs?

Jan 27, 2009

The problem I am currently having right now is the inability to send variables loaded from the LoaderSWF to the SWF that has been loaded.

Concretely speaking, I have an embed script on an HTML page that contains several variables in the FlashVars line. The embed script loads a file called loader.swf. Loader.swf's main responsibility is basically take those variables from the flashvar, load the game URL and pass along the rest of the necessary parameters to the game that the loader is loading. However, I've been working out several solutions and none of them worked the way I wanted to.

The embed script is as follows:

Code:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="550" height="450" id="game-player">
<param name="movie" value="/shockwaves/loader.swf" />

[Code]....

how can I load the game SWF file and send along additional parameters with that request? Is there someway I can punch in variables into the myLoader object?

The code I came up with sends along the authenticity token just fine, however, it is not sending score_url correctly. I'm not sure if that is the correct behavior, but please enlighten me with any insights you may have.

I have also considered trying LocalConnection, but the problem is that I do not have the necessary source code for the games to set up LocalConnection on the receiving end.

Also, the game files are using AS2, while the loader is using AS3. The game files read variables by utilizing _root.score_url, etc.

View 1 Replies

ActionScript 2.0 :: Passing PHP Parameter To Flash?

Mar 13, 2010

This is something simple, but yet it's killing me...here's my php file contents:

PHP Code:
<?php
$total_rows = 5;

[code]........

View 7 Replies

ActionScript 3.0 :: Passing Stage As A Parameter?

Nov 12, 2010

So I have a linked external class that has my actual code. On frame one of the flv I have the code:

ActionScript Code:
new main(this.Stage);
The actual main.as contains:

[code].....

View 2 Replies







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