ActionScript 2.0 :: AttachMovie Is Not Loading Variables?
Jan 20, 2011
I'm using an xml to feed content to a flash website, to load the content I use an array to create a new movie clip per item. What I need to use is for every item to have an action to attach a movieclip in the fashion of a modal window and load the content of this item into the popup movie clip. So far I've managed to get it to get it to attach the mc but the variables with the content do not load.I tried with this but it still didn't work:
_root.contenedorPop.attachMovie("popup", "popnoticia", this.getNextHighestDepth());
_root.popnoticia.onEnterFrame = function() {
_root.noticiaTitulo.text = "textoooo";
[code].....
View 4 Replies
Similar Posts:
Oct 3, 2009
i was wondering if it is possible to use attachMovie with variables using flashvars from html. im kind of new to AS and would like to know if anyone could help me out here
i need to make a single SWF in wich some movieclips can be replaced by others through the html code without editing the swf file.
i already know how to enter the variables on the html, but i dont know how to apply this to attachmovie command in the flash file.
View 3 Replies
Jun 24, 2009
I used a movieClip to store the attach movieclip, but How to get back the variable from that movieClip container, such as a I set a array in the exiting movieClip
var m_click:Array = new Array();
for (var f=0; f<=this[mc_name+"_qty"]._totalframes-1; f++)
{ m_click[f] = 0; }
I want the attached movieClip "y_qty" with a button inside to get the m_click for changing each m_click[0]..m_click[1]..value, how to do it?
View 0 Replies
Jun 24, 2009
I used a movieClip to store the attach movieclip, but How to get back the variable from that movieClip container,such as a I set a array in the exiting movieClip [code]I want the attached movieClip "y_qty" with a button inside to get the m_click for changing each m_click[0]..m_click[1].. value, how to do it?
View 1 Replies
Mar 19, 2009
Need some help on getting my images to load in order rather than trying to all load at the same time. The code I am using at the moment is ..
Code:
var imagesx = new XML();
imagesx.ignoreWhite = true;
imagesx.load("content/xml/action.xml");
imagesx.onLoad = function (success)
[Code]...
View 1 Replies
May 1, 2010
Code:
thumb03.onRelease = function(){
image_holder.loadMovie("images/03.jpg");
submenu01_holder.attachMovie( "submenu01", "submenu01_new",this.getNextHighestDepth());
getURL("./htm/03.html", "tracker");
};
So I'm working on a portfolio and I'm trying to load an image with a submenu on top of it that will let you click through a couple different related images. However, right now the submenu keeps loading underneath the image, so the buttons are there and you can see it a split second before the other image loads over the top. I tried manually putting in levels for the image and submenu and no luck.
View 4 Replies
Jun 23, 2007
I encountered a strange thing when experimenting with attachMovie. So, here's the deal: 2 button, 1 mc_colder. Each button onPress loads a different MC into the holder ( mc1 and mc2 ). Beside those 2 buttons that load the 2 MCs i have 2 more buttons that should remove the loaded MC. Nothing bad until now, loading, removing works fine, but a problem occurs if I click one of the 2 loading buttons twice.. Example: I pess the first buttons once, and loads mc1, i press button 2, loads mc2, i remove both mcs, now, i press button 1 again, loads mc1, i press buton 1 again ( and it should load the mc again or do nothing ? ) but when i want to remove this MC it won't. How can I fix this? Or how can I tell flash not to attach the MC again, once it has already been loaded? I tried a few tricks but nothing yet. I'll keep experimenting with it.
View 3 Replies
Apr 11, 2008
Adobe Flash CS3
publishing as Flash 8, AS 2.0
I have a movieclip named menu (instance name = mainmenu). Inside of that there is a button named btn_about (instance name = about). On the main stage there is an empty movieclip named empty_mc (instance name = mcholder, linkage id = empty). I want a user to press the button which causes a movieclip in the library named tesst (Linkage name = testid) to load into the empty movieclip (mc_holder).
Here is the code on the button:
on (release) {
this._parent.mcholder.attachMovie("testid", "tesst1", this.getNextHighestDepth());
}
It does not work.
View 2 Replies
Feb 10, 2009
my actionscript:
Code:
label1 = new LoadVars;
url1 = new LoadVars;
[code].....
View 2 Replies
Jan 20, 2010
I'm attempting to hit an off-domain url with some variables attached. The domain has a cross domain policy file on it, but flash is looking for the file after the url with the variables attached which then fails.Example:I want to hit: www.sample.com?someArg=1I have even tried loading the cross domain file prior to making the call and it is found ok, but flash then looks again when I attempt to hit the url with variables attached as if it is another domain.
View 5 Replies
Nov 1, 2003
trying to make this load certain jpg files based on a variable, but I can't make it loop through?
artistName = "Grace Jones";
for(i=1; i<4; i++){
filename = artistName+"/"+i+".jpg";[code].............
View 4 Replies
Jan 8, 2004
i'm trying to load in a variable value from an xml file.
i want to turn the visibility of a button clip on or off from within my loaded XML code. i know that my xml is loading and working correctly. in my XML file, i have visible="true" set up as an attribute to one of my nodes. what do i need to do to get
_root.myButton._visible=[the variable from my XML];
View 1 Replies
Aug 4, 2011
This question might be a common one ..I too have googled for it a lot but cudnt find the solution for my problem.I have a swf file that loads variable into a php file by :
Code:
my_lv.send("file.php","_blank","POST");
php then uses these variables.
[code].....
View 6 Replies
Feb 18, 2010
I am a little rusty with my action script and i am still using 2.0 in my project. I need to load variables in to flash from an xml file and i just can't seem to get it to work.
here is my flash code:
Quote:
on (release) {
getxmldata = new XML();
getxmldata.load("xmldata.xml","");
if (getxmldata.loaded) {
var p = getxmldata.firstChild;
[Code]......
View 2 Replies
Sep 22, 2010
I have several Movie Clips in the Library which I need to be able to load and bring up on the screen randomly.The code below shows how I can load one of these, but to get a proper control ideally I would like to load them all in to an array or numbered variables so that they can be called from a simple piece of code and actioned one at a time.
My movieclips can all be called something simple like mc1, mc2, mc3, mc4 etc to make things easier.These need to be referenced in to an array mcContainer[.....] or as mcContainer1, mcContainer2........ so that they can be called easily.I just need to know the simplest way to do this and how i reference them, I have tried several ways like ["mc"+i] etc and nothing seems to work.
Code:
var mc:mcLogo=new mcLogo();
addChild(mc);
View 4 Replies
Nov 6, 2007
I am using loadvariablesnum to load some variables from my php doc, is there a way i can test to see if its loaded or not to jump to the next frame..? Right now I am having it load into a string.text to test if there is text in it, but I don't want to use a string.text
View 1 Replies
Aug 24, 2009
I'm trying to load the variables from a database into my flash file but I'm unsure what to use. I know for XML it's
var myXML:XML;
myXML= new XML(e.target.data);
but i'm not sure what the type is if it is coming from a database? I sent it the database via php and need to receive it back into flash. Even a reference so I can go look, I'm just not sure what class to begin with.
View 16 Replies
Oct 19, 2010
I have this project where I need to load 3 external variables into my swf-file on a webpage. The wierd thing is that I got this to work before, but now it suddenly wouldn't :
I use swfObject to setup the variables like this:
<script type="text/javascript">
var flashvars = {page:"page1", box:"head2"};
var params = {};
[Code]....
View 2 Replies
Jan 15, 2009
I have created a php scipt (in line with Tony Marstons tutorial) to creating xml document from mysql database.[code]I am wanting to incorporate the results from this into a dynamic text field in my flash file so the content is read from the file.
View 4 Replies
Aug 12, 2009
When loading an external SWF file, can you actually use some of the variables from the loaded SWF file in the parent SWF file?
View 1 Replies
Nov 13, 2009
I am currently helping make a project which needs to load variables from a PHP file into Flash. What I want is the flash movie to go to a frame if the PHP variable in the PHP file equals some text, say "hello".For my PHP file I have this:
Code:
<?php
$dataForTxtbox_1 = "hello";
print("&name1=$dataForTxtbox_1");
?>
I have tried several bits of actionscript, but with no luck. Basically, I want the movie to go to a frame if the variable in PHP equals "hello". Which it currently does, I have tried using the if statement in several ways but with no luck.
View 0 Replies
Jan 26, 2004
I had a question about loading external variables. Is it possible to load external variables from a different server other than the one that the flash site is hosted on?And if so, what would that command look like?For instance, if you load a variable from the site's own server it might look like this;loadText.load("TEXT1.txt");Would loading it from a different server look something like this;
View 1 Replies
Aug 27, 2004
I am trying to load data into a variable. This part works fine
Code:
loadText = new loadVars();
loadText.load("htmltextFile.txt");
loadText.onLoad = function(success)
[Code]....
View 1 Replies
Jan 26, 2005
I'm trying to save a change to a text document (In this case a variable "Title" just to test) and then view the changes from another swf movie... In the end I'm hoping to build a client updatable flash site. In particular menu items... feature items & prices.
A Recap: a client types in the items, php/flash saves the changes to the text document, and site visitors can views those changes.
Something in my code isn't clicking:
My PHP is:
Code:
<?php
$Title = $_POST['Title'];
$toSave = "Title=".$Title;
[code]....
View 1 Replies
Jun 7, 2005
I sorta asked about this in the Server-side section, but I guess the question is really more AS related....How can I send variables from a swf to a cfm page that the swf is embedded in WITHOUT having to reload the page.
I tried the LoadVars() Object, it send() variables fine but the page reloads, and it loops so I get a million windows opening...what do I do? I need to be able to communicate back and forth with the cfm files...
View 1 Replies
Aug 29, 2006
I'm develloping a little image loading application for a client. the same swf has to be reused over and over to load the files. They are passing me the image location in the embed tag but they are not using the usual
flash.swf?path=folderpath&img1=image1.jpg&img2=ima ge2.jpg&img3=image3.jpg
instead they are using this format :
flash.swf?/folderpath/::SPLIT::image1.jpg::SPLIT::image2.jpg::SPLIT::ima ge3.jpg
do you know how I can read those variables into my flash file ?
View 1 Replies
May 15, 2008
im having a bit of trouble getting my variables sent back to flash from php. This is my code
Actionscript
logins = new LoadVars();
login.onPress = function (){
logins.user = user.text
[code]....
View 2 Replies
Dec 31, 2008
I'm working on a project that requires me to load variables into my movie dynamically.I've gotten to the point where I get the variables loaded into flash. But then I cannot use them dynamically once inside flash. I understand code pretty well But I am relatively new to actionscript. The variables have to be used dynamically because I'll never know how many variables there will be. Could be 1 could be zero, could even be 1000.So say my loaded variable var.txt had this line in it.
Code:
File1=Pages/PageData/Page1/Downloads/SomeTextFile.rar&File2=Pages/PageData/Page1/Downloads/SomeTextFile1.rar&File3=Pages/PageData/Page1/Downloads/SomeTextFile10.rar&File4=Pages/PageDat
[code].....
View 1 Replies
Feb 28, 2009
i want to turn the visibility of a button clip on or off from within my loaded XML code. i know that my xml is loading and working correctly. in my XML file, i have visible="true" set up as an attribute to one of my nodes. what do i need to do to get_root.myButton._visible=[the variable from my XML];
View 3 Replies
Apr 26, 2002
I've a .txt-file containing variables. The variables are structured like this:
aaa_301, bbb_301, ccc_301
aaa_302, bbb_302, ccc_302
...
[code]....
View 9 Replies