Test Length Of String And Call Function Depending On Result

Sep 29, 2009

I'm trying to do a test on the length of a string and then call a function depending on the result. This is the pertinent excerpt from the fla file:

Code:
_loc4._comment = candles[_loc3].comment;
// I want to find out the length of _comment and call differently depending
_loc4.onRollOver = function () {
if (_loc4._comment.length > 0 && _loc4._comment.length < 60) {
show_comment(this._comment, this._x + this._parent._x, this._parent._parent._y - 50);
} else {
show_comment(this._comment, this._x + this._parent._x, this._parent._parent._y - 100);
}};

Basically I want to check the length (in characters) of _loc4.comment and if its under 60 call with an offset of 50 and if its not call with an offset of 100.

View 7 Replies


Similar Posts:


Actionscript 3 :: Variable Length Argument Expand To Call Another Function With Var Length Args?

Dec 22, 2011

how to do this

function foo(x:*, ...args):* {
}
function bar(x:*, ...args):* {[code].....

how to expand args ? when I call bar(1,2,3), I wish it call foo(1,2,3), but it call foo(1,[2,3])

View 2 Replies

Actionscript 3 :: Flex4 - Call Alert.Show In A Function And Want To Get The Result From There?

Nov 14, 2010

I'm using the Alert.show in a function and I want to get the user answer from there. So how can I achieve this. The problem is the function that call Alert.show will return a true or false value depend the user answer.but It seem that in Alert.show it only allow to pass in a CloseHandler for this. that is a new function. and since that I can get the user answer from where it is call to return the user answer.

View 2 Replies

ActionScript 3.0 :: Call A Function And Run It With Specific Properties Depending On Which Button Is Clicked?

Nov 25, 2008

How would I do this in AS3? I want to call a function and run it with specific properties depending on which button is clicked.So how do the "_this" statement work in as3? in as2 I would write something like this and "this" would stand for the instance name:

View 2 Replies

Actionscript 3 :: Function To Test If A String Variable Is A Number Value?

Jun 16, 2010

Is there a way to test a string, such as the one below to see if it's an actual number value? var theStr:String = '05'; I want to differentiate between the string value above and one such as this: var theStr2:String = 'asdfl';

View 3 Replies

IDE :: Call A Function From A String?

Oct 28, 2009

Is it possible to call a function from a string? such as if I passed the name of a function to this function, is there a command to convert the string to a function call? :

function CallSpecific(passedFunctionName:String)

I used String, but it was just a guess...

View 9 Replies

ActionScript 3.0 :: Call A Function From A String?

Oct 29, 2009

I have a class that has a timer function built into it. When this timed function is called, I would like to be able to call another function when the timer is finished (which I would do in the TIMER_COMPLETE handler).

If I pass the name of the function to my class function, could I use that string(?) to call the function at the end of my timer?

View 8 Replies

Actionscript 3 :: Function.length And Variable (...rest) Argument Length?

Apr 19, 2011

Is there any way to determine if a (anonymous) function has defined the ...(rest) parameter in ActionScript 3? I know there's the function.length property, but it only counts the explicitly defined arguments.

View 2 Replies

Flash :: Call String Or Integer From Another Function?

Oct 16, 2011

I've got different functions in actionscript 3, one function generates random numbers each time there's a button click. But with another button I want to call the random number which is generated at that moment. I have to call the random number from another function then, but these are two different functions so it just considers it as an undefined property.

[Code]...

But I can't call randomnummer1 because it's inside another function. So I get the property undefined error.

View 2 Replies

ActionScript 3.0 :: Call Static Function From String Name?

Jan 29, 2011

I'm wondering if its possible in flash to be able to call a static class function via its name as a string. I know for you're usual case you can do this to call the function 'func'

Code:
this["func"]();
func():void
{
trace("I'm a function");
}

However I'm wanting to do this from another static function and in a static function you obviously can't use the 'this' keyword. I've tried just omitting it, or replacing it with the class name but neither work.

View 2 Replies

ActionScript 2.0 :: Call A Function From A Concatenated String?

Mar 11, 2011

I'm using the Gaia Framework to develop a website, I'm still getting used to it but it's been great so far. There's a part in a page class where I want to call certain functions to initialize some effects on every deeplink. I'm doing good, but I need to call a function through concatenating some strings. Please have a look at some code of my class and read the comments for a better understanding:

Code:
private function FUNC_que():Void{
SEC_que.b1._width = 0
stringTyper(SEC_que.t1, st1, 15, 8)
var ts2 = new TextShuffle(SEC_que.t2, st2,SEC_que.b1);

[code]....

View 2 Replies

ActionScript 2.0 :: Make Scrollbar Invisible / Visible Depending On The Length Of Text?

Apr 11, 2005

I'm sure this question has been discussed before? I'm wondering how I can make this particular scrollbar invisible when the text inside is short and visible when the text is longer? What would be the AS for this? I'll attach my file to this post!!

View 2 Replies

ActionScript 2.0 :: Make Scrollbar Invisible/visible Depending On The Length Of Text?

Apr 11, 2005

how I can make this particular scrollbar invisible when the text inside is short and visible when the text is longer?

View 3 Replies

ActionScript 3.0 :: Call Core Function/constructor By Its String Name

Jun 9, 2009

I worked out a way to call a function whose name is in a String variable. That is:
 
function myFunction()
{
trace("Hello!");
}

[Code]....

View 3 Replies

Actionscript 3 :: Call Function Or Object Name In String Variable?

Mar 15, 2012

I need to call an object or function name with string variable.[code]it's working but, if I do something like below its not working [code]

View 2 Replies

ActionScript 3.0 :: Call Override Depending On What Value A Var Has?

Nov 11, 2009

Is there any way to call the override depending on what value a var has?[code]...

View 4 Replies

ActionScript 2.0 :: Converting String To Function Call On "unknown" Object?

Jul 20, 2010

I'm working on a function that replaces an existing movie clip with a symbol from the library and then designates an "updater" function for the new instance. I have the first part working as intended, but I'm not sure how to approach creating the "updater" function.I've considered using event listeners, but I'm not sure if that is my best option.The following is a excerpt from my code. This code is on the timeline of a movie clip. The movie clip is on the main timeline with an instance name of slideUpPanel_mc.

ActionScript Code:
var window_mc:MovieClip = window_mc; //window_mc as it exists on the timeline
var windowUpdateFunc:Function; //reference to updater function in window_mc

[code].....

View 1 Replies

ActionScript 3.0 :: Return Result From Function Called By Function?

Aug 4, 2010

I'm using an AMF service that was built by someone else. Basically what happens is that some info is passed to the AMF service and it returns true or false.I want to be able to pass in various info to the a function that calls the AMF service(submitTracking) and then get the true or false value returned in onResultSubmit to be passed back to submitTracking.

var screen:String;
var buttonnumber:String;
function submitTracking(screen:String, buttonnumber:String) {

[code]....

View 3 Replies

Actionscript 3 :: Assign URLVariables Result To A String Variable?

Sep 1, 2010

In the following example (yes, I am coding on my timeline while I try to work this out - I know, I know) I am loading an SWF in an HTML page and then directing the SWF to get the query parameters from the current URL. The query parameter will contain the source for the video to play.

This seems straight forward to me but I cannot get myURL = urlVars.videoloc; to work. More specifically, urlVars.videoloc seems to be undefined rather than holding the query parameter from the URL. All other variables are correct; both wholeURL and urlVars are defined.[code]...

View 1 Replies

ActionScript 2.0 :: Search String - Result Appear On List With Links

Apr 12, 2005

I need to create a search "thing"! I have a database with, for ex., 10 names, with age, color of eyes and hair. I need to create some form were you choose to search for someone between 20-30 years, blue eyes, brown hair, and then the results appear on a list with links to each case... did I made myself clear?

View 1 Replies

ActionScript 3.0 :: Max Length Is For A String?

Jun 19, 2011

I am trying to find out what the max length is for a string because since as3 doesnt provide any methods for removing characters from a string by changing the initial string itself, i am going to have to stick to re-initializing.I did a little test to see how long it would take for my program to break using the following code:

Actionscript Code:

+[code]..............

The program crashed at a string length of about 500 million.

EDIT:however before it crashed,it performed the incrementations with reasonable performance.

EDIT EDIT: which is strange since my ram still had over 2 gig the program didnt use

View 4 Replies

Flex :: If HTTPService.send() Gets Called Before A Previous Call To It Returns A Result

Jan 28, 2010

I have an HTTPService that executes the dataLoaded(e:ResultEvent):void function whenever it gets a result from a send() call. OK so If I call HTTPService.send() and then call HTTPService.send() again before the previous one receives a result, I end up repeatedly running dataLoaded() which is undesirable What I want is if HTTPService.send() gets called before a previous call to it returns a result. I want to cancel the first call, and only process the result from the last call to HTTPService.send()

View 4 Replies

ActionScript 3.0 :: Increasing The Length Of A String?

Nov 6, 2009

I am working on the following code and I keep getting a cut off at around the 'C' of Dave's computer.I know this is going to be a simple answer but I for the life of me cannot figure out HOW to extend the string visual field. I am pretty sure the secret lies in the variable len.

Code:

import flash.text.TextField;
import flash.events.Event;
var txtFld:TextField = new TextField();

[code]....

View 2 Replies

Actionscript 3 :: Get The Byte Length Of A String?

Sep 4, 2010

Is there an easy way to get the byte length of a string in AS3? String.length works in many cases, but breaks if it encounters mulibyte unicode characters.(in this particular case, I need to know this so I can preface messages sent across a TCP socket with the message length. This is in standard netstring format e.g. "length:message,").

View 1 Replies

Actionscript 3 :: Length Of A String In Pixels?

Jan 7, 2011

I'm populating a dropDownList with arrayCollection of strings. I want the width of the drop down list control to match with the size (in pixels) of the longest string in the array collection. The problem I'm facing is: the font width of the strings in the collection are different e.g. 'W' looks wider than 'l'. So I estimated the width of a character to be 8 pixels but that's not pretty neat. If a string that has many 'W' and 'M' is encountered the estimation is wrong. So I want precise pixel width of strings. How can i get the exact length of a string in pixels??

My solution that estimates all character to be 8 pixels wide is given below:

public function populateDropDownList():void{
var array:Array = new Array("o","two","three four five six seven eight wwww");
var sampleArrayCollection:ArrayCollection = new ArrayCollection(array);

[Code].....

View 2 Replies

ActionScript 2.0 :: Pad A String To A Certain Length With A Certain Character?

Sep 28, 2007

Is there an actionscript function I can use to pad a string to a certain length with a certain character?

Example: I have a number lets say 274 and I want to make sure that number is at least 6 characters long...with any open space receiving the character 'W'. So I'd call the pad function and my final number would look like this: WWW274

View 3 Replies

Actionscript 3 :: URLLoader Loads Multi Files And The Result Order Is The Same As Call Load()

Mar 31, 2012

Since URLLoader is async, how to make sure the order of data from server side is the same as the loader.load() call? In other words, the data order in totalResults is the same order of url-related content?

Following is code snippet:

1.for each(var url in urls) {
loadData(url);
}
2.private function loadData(url:String):void {

[Code].....

View 4 Replies

ActionScript 2.0 :: String Variables - Consentrate A String To Call That Variable?

Mar 16, 2002

If i have an ASP page that is returning variables (and I can see them in the debugger) how do i consentrate a string to call that variable?

ie:
variables being returned are named:
"res1", "res2", "res3"...etc
for (var i = 0; i < 10; i++) {

[Code]...

View 4 Replies

ActionScript 3.0 :: Length Of Function Arguments And Display Function

Sep 21, 2010

i have a question i have a primary and secondary function which i want it to be dynamic so i can get the user to enter in six to seven different or as many as required argument parameters for my primary function

[CODE]...

View 5 Replies

ActionScript 2.0 :: Convert String Length To Pixel Based Value?

Jan 14, 2002

I can obtain the number of characters in a string using the 'length' action script command. However, I need to know the pixel width of this 'length'?

View 1 Replies







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