ActionScript 2.0 :: Flash 8: Getting A Parameter Into A String?

May 10, 2007

I have a movie clip which has a function on it that loads some xml (actually xml that is created on the fly by php). The problem is that I have several different parameters - 3 in total which have to be tagged on to the URL so that the xml can display correctly.

I have no problem getting the first 2 parameters into the URL, but I cannot get the final one. On the _root I can trace it fine via another function however I can't get the parameter from the function that lies on the _root, into the URL that sits in another movie clip.

This is what I have for the code that sits in the movie clip:

//load vars for product info
var sendProduct_lv:LoadVars = new LoadVars();
var prodID:Number;

[code]....

What I am trying to do is get the URL that is declared in the first function after xmlData.load to have page=2 or 3 or whatever page I hppen to be on when the function floadPopup is invoked.

View 1 Replies


Similar Posts:


Flash :: Adobe Flex Page Doesn't Refresh When New Query String / MVC Parameter Entered

Oct 26, 2011

I am working on adding functionality to where the URL takes in a parameter as defined by an MVC style looking way.eg. (URL... )where 12345 is the corresponding Id number that I want to get.I have this functionality working.I am using Internet Explorer 7.My issue is that when a user attempts to enter a new query string id into the URL, the page doesn't refresh when the user hits enter or the refresh button. (The user can navigate to the url/#/Id/12345 only when opening a new window/tab)Does anyone know if this is a feature that doesn't work in Flex or if there is some code or configuration needed to allow this?

View 1 Replies

ActionScript 2.0 :: Add A Space In The String Parameter?

Feb 29, 2004

It just doesn't seem to return the correct width and height of the string parameter. Documentation states that the function returns 6 properties; width, height, textFieldHeight, textFieldWidth, ascent, descent. textFieldWidth and textFieldHeight are supposed to return the exact height and width in pixels that is required to show the textfield obj. Problem is the text will still appear cropped. Of course the workaround is just to add a space in the string parameter, but this a quick and dirty fix.

View 1 Replies

ActionScript 3.0 :: Retrieve Parameter Value From URL Query String

Sep 24, 2009

this seems like it should be simple but for some reason i can't figure out how to get the value of a variable out of a URL query string. if this is in my location bar: [URL] and i just want the value of "chosenCLIP" to use in my loaded SWF file, how do i do it in AS3?

View 8 Replies

ActionScript 2.0 :: Using String Parameter In Function For Mc Path

Dec 17, 2004

I've got a problem with a function i'm using to dynamically move movieclips around - its like this at the mo:

function wjump(number) {
_root.content.aboutus.webwizard.targetY = startPos[number];
}

where startPos is an array with numbers.

I want it to be like this:

function jump(target, number) {
target.targetY = startPos[number];
}

so any clip can be moved as long as it has a targetY variable. But it won't work for some reason. Is there some sort of special syntax i should use like [] brackets? I tried this around the target in function body but it did not work.

View 7 Replies

ExternalInterface Breaks When I Pass Parameter With JSON Like String?

Mar 1, 2011

I have a very odd problem with Flash 10 and ExternalInterface. I am currently using a homemade bridge to use RTMFP with Javascript and whenever I try to pass data that contains JSON, I get a wierd Javascript error that comes from Flash[code]...

View 2 Replies

ActionScript 3.0 :: URLRequest String Parameter : How To Point It To Parent Directory With URL

Mar 3, 2009

I just have a simple question how do i point to the parent directory from where i curently am in URLRequest string parameter?in other words my folder structure:

my_site/flash/button.swf

How must string look to tell flash to locate solarij.html that is in my_site folder one folder up(parent) from current swf position.?

ActionScript Code:

var link:URLRequest = new URLRequest(""); navigateToURL(link, "_self");

View 2 Replies

Actionscript 3 :: Creating A Button To Update String Parameter For RSS Reader?

Apr 9, 2012

I want to create a few buttons which users can choose from to change the XML file for my RSS Reader in Air for Android. This is what the button will need to update:

var rssURL: URLRequest = new URLRequest("http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml");

The above XML is the default one I have chosen. What code would I need for them to do this?

View 1 Replies

ActionScript 3.0 :: Converting A String Function Parameter Into A Movie Clip?

Nov 16, 2009

This has been bugging me for a couple days now and I can't seem to figure it out. I'm passing a string variable as a parameter in a function and want to convert that variable to a movieclip. I thought I had the proper syntax but the trace keeps returning null. I've dumbbed down the function for simplicity's sake.

[Code]...

View 9 Replies

ActionScript 2.0 :: Search + Return A New String Containing Parameter Along With A Couple Of Words

Oct 8, 2006

i'm trying to write a function but with no luck. seems my brain capacity's limited the function will take two parameters: a term to search for, and a string to be searched. what i want the function to return is a new string containing the term (the parameter) along with a couple of words before and after it (as found in the search string).

View 2 Replies

ActionScript 3.0 :: Library Bitmaps - Pass String To The Class Which Expects A Bitmap As A Parameter?

Nov 15, 2009

i have a bitmap in the library with export name Dots

1. how do i take this and pass it to the class which expects a Bitmap as a parameter? if i load it externally i could say:

[Code]...

View 5 Replies

Actionscript 3 :: Skip An Optional Parameter And Assign Value To The Parameter After The Skipped One?

Dec 14, 2010

Can we skip an optional parameter and assign value to the parameter after the skipped one?

For example I have a function:

public function Dialog(message:String,title:String="Note",dialogsize:int=99):void
{
}

I can easily call the function with a message and a title:

Dialog("HELLO","Intro");

Is there a way to skip the title and just pass in the dialogsize? I've tried it but can't make it work:

Dialog("HELLO",,dialogsize);

Is it possible to skip some optional parameters without using (rest) parameter?

View 3 Replies

Flash :: Error #2101: The String Passed To URLVariables.decode() Must Be A URL-encoded Query String

Aug 15, 2010

I get following Error when trying to pass variables via URLRequestMethod.POST;

Error: Error #2101: The String passed to URLVariables.decode() must be a URL-encoded query string containing name/value pairs.

Is there a method for string URL Encoding?

View 4 Replies

ActionScript 2.0 :: URL - Encrypt Flash String So Asp Will Read The String Corectly?

Jan 23, 2003

I am sending a string to asp from flash that looks like this;

[CODE].....

The problem is when asp (probably php too) reads this string, it reads it like this

[CODE]....

Now this sucks, is there a way to encrypt my flash string so asp will read the string corectly? I know asp is url encoding the flash string, but this bit of info does not seem to help.

View 14 Replies

ActionScript 2.0 :: Parse Out Url String Using The String Object In Flash?

Jan 13, 2005

I'm creating a CMS(Content Management System) tool so that users can change text and the changes be reflected in a text window in flash . The text that the user enters in the CMS tool will be stored in the database.

In flash I want to parse the string that I get from the database and look for URL strings that start with http "http://www.someurl.com" and parse out that substring.

For example the string could be "Please vist my site at http://www.site.com". I would want to parse out the http://www.site.com

If I find this url string I want to pre-pend the a href tag <a> and append the closing </a> tag to the string so that this link will be clickable from the textfield.

Does flash have an object that deals with Regular Expressions? I've looked at the String object in flash but not sure how to achieve this task

View 2 Replies

ActionScript 2.0 :: Way To Parse Out A Url String Using String Object In Flash

Jan 13, 2005

I'm creating a CMS(Content Management System) tool so that users can change text and the changes be reflected in a text window in flash . The text that the user enters in the CMS tool will be stored in the database.In flash I want to parse the string that I get from the database and look for URL strings that start with http "URL..." and parse out that substring. For example the string could be "Please vist my site at URL...". I would want to parse out the URL...If I find this url string I want to pre-pend the a href tag <a> and append the closing </a> tag to the string so that this link will be clickable from the textfield. Does flash have an object that deals with Regular Expressions?

View 2 Replies

ActionScript 3.0 :: Read A XML File And Check A Parameter For Duplicates Of That Parameter In The File

Dec 8, 2009

I am trying to read a XML file and check a parameter for duplicates of that parameter in the file. There could be up to 200 entries with this parameter which is a number. How can I check to see if there are any duplicates?

View 2 Replies

Call A Function With Event Parameter When Have No Event Parameter To Pass?

Aug 14, 2009

Forgive me for this stupid noob question but I want to call a function (loadList) that originally gets triggered after a mouseevent from another function (addToXML) that does not have an event.

The loadList function takes info from a XML var, sticks it into an array which then gets loaded into a tile list and that is working fine.

The addToXML function when called adds elements to the XML var after which I want to call the first function with the event parameter so it refreshes the items in the tile list.

I know it can do this by creating a new array and loading that into the tile list in the addToXML function, but it be much simpler to just recall the function.

I have tried things like

Code:
addToXML.addEventListener(Event.COMPLETE, loadList);

but all the event constants I have tried give me error messges like "1061: Call to a possibly undefined method addEventListener through a reference with static type Function."

View 3 Replies

Flash :: CS4 Parameter Is Incorrect

Aug 12, 2009

CS4 was working fine for a few weeks, then yesterday I opened an FLA and got an error pop-up that said "Parameter is Incorrect".  The error happened for all FLA files.  I could save changes but could not preveiw or publish (same Parameter is Incorrect error as on starting CS4).  I even made a blank FLA and it wouldn't work either.
 
Relized today during more testing that this error only happens any time I open a file that is on my desktop (running XP).  Same file moved into another folder (Even desktop ewfolder) works fine.

View 5 Replies

AS3 :: Flash - Pass Parameter By Value?

May 6, 2010

im having problems with the following code:

for (var i:Number=0; i<numFaces;i++){
var faceLoader:Loader = new Loader();
faceLoader.contentLoaderInfo.addEventListener( Event.INIT,
function(fle:Event){

[code]....

The problem is that im sending the variable i to the function LoadCara on every iteration, and its always called with the last value of i. I would like this function to be called with the appropiate index.

View 2 Replies

Flash :: Parameter Url Must Be Non-null?

Nov 2, 2010

i am getting the Parameter url must be non-null error while trying to pass the path of an XML file to an Shockwave flash object.The javascript code is as follows

<script type="text/javascript">
var so = new SWFObject("preview.swf", "", "100%", "100%", "9", "#ffffff");
so.addParam("allowFullScreen", "true");

[code]......

View 1 Replies

IDE :: Send Parameter In Flash?

Nov 23, 2009

basically, the ecard will start with 3 questions.each question has 3 answers.so user choses the answer e.g. B, B, C and clicks preview.it will play the movie clip assigned to B B C in sequence.then user can click send to sent to friend.so the URL needs to be able to identify the sequence maybe in parameters.so that when his friend receives the ecard and clicks on the flash it will play B B C sequence.then his frind can create his own ecard and maybe A C A etc...So how i created like that?

View 3 Replies

ActionScript 3.0 :: Setting Up The Reading Of The Flash Parameter Code In Flash?

Nov 8, 2011

I have a flash file that has a movie clip in it. In this movie clip there are two movie clips. What I need to do is show a one movie clip and hide another. I basically only need help with setting up the reading of the flash parameter code in flash...

Code:
var imageToShow:String;
var paramObj:Object = LoaderInfo(this.root.loaderInfo).parameters;

This is basically what I have.I'm not sure what to go on to next or if this is even correct. I basically need to get to the point where I can say...

Code:
if (parameter == "image1") {
image.image1.alpha = 1;
image.image2.alpha = 0;
}[code].......

View 3 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

Flash :: Parameter SourceBitmapData Must Be Non-null?

Jan 9, 2010

I am trying to copy the pixels of a bitmap data. but I keep getting the following error

Parameter sourceBitmapData must be non-null.

it happens in the method drawImage. exact after my trace that says "got canvas data".

canvasData.copyPixels(image,tileRect,tilePoint);

Below is my code

package com.objects {
import flash.display.Sprite;
import flash.display.BitmapData;

[Code]....

View 1 Replies

Actionscript 2 :: Set Parameter For Flash In Web Application?

Jul 13, 2010

What's the best way to pass a predefined argument to flash?

View 1 Replies

Encode A Flash Parameter In Python?

Mar 6, 2011

I'm trying to generate an embeded flash widget on a page with Python using a dynamic parameter. Here's the code I currently have.[code]...

The {{query}} parameter is passed through as a URL parameter. I'm not very technical, but I think the query value needs to be encoded for the flash to work. How do I encode the flash parameter?

View 1 Replies

Actionscript 3 :: Flash - What Does The Parameter 'e' Do In E:KeyboardEvent

Mar 9, 2012

Ive been using the 'event' parameter for my KeyboardEvents and MouseEvents in a recent project ive been working on for my course (VERY BASIC).Im not entirely sure on what the 'e' part of e:KeyboardEvent actually does, and ive been asked to find out what information the parameter 'e' can actually access when using it.

EDIT: If A method takes the parameter (e:KeyboardEvent). what information could we access through the use of the parameter e?

View 3 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 :: Send Parameter Out Of Flash?

Jun 11, 2010

I want to send some parameter our of flash to some javascript code, that a nother developer has made. [code]...

View 2 Replies







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