ActionScript 2.0 :: Dynamically Assigning MC Positions?

Jul 25, 2005

I have a navigation section built in Flash and am trying to position headers dynamically, based on variables passed from each page.

For example, the HTML on the HOME page, will have an swf with a variable like : nav.swf?dynHEAD=home

and NEWS will have a variable like : nav.swf?dynHEAD=news

then in flash, I guess something like this should work - but doesnt!

dynHEAD._x = 27;
dynHEAD._y = 211;

View 6 Replies


Similar Posts:


ActionScript 2.0 :: Assigning X / Y Positions To Dynamically Attached Clips

Jun 29, 2008

As you can see I am attempting to assign x,y positions to clips that are being "attached."
var clipArray = new Array();
clipArray = [189, 275, 361]; // x positions
for (var i:Number = 1; i < 4; i++) {
this.attachMovie("clip"+i,"butt_"+i,i,{_x: [clipArray(i-1)], _y: 142});
}

View 4 Replies

ActionScript 2.0 :: Dynamically Assigning Hyperlinks To Buttons

Jul 22, 2005

I have some basic knowledge in PHP and am learning XML, and basically have decided to prepare my site for the future by switching to strict XHTML / php (plus it needs to be updated anyway). It is a hybrid site with HTML and Flash elements, and each HTML (soon to be .php) page has a single .swf as the nav bar. Is there a way to externally assign hyperlinks to the nav buttons within this .swf? I've done basic external assigns (with .txt files into dynamic text boxes), but this seems a bit trickier. Basically, I want to be able to update the .swf without opening flash, changing the links, and then publishing a new .swf.

View 6 Replies

ActionScript 2.0 :: Dynamically Assigning Variable Names?

Mar 29, 2007

dynamically assign variable names from XML? For instance, if I have an XML file with a list of variable names and their respective values, can I make my Flash movie create these variables?

View 5 Replies

ActionScript 2.0 :: Dynamically Assigning An Event Handler?

May 16, 2005

I'm creating a photo gallery script with 3 categories (people, places, and things). The 3 categories all share the same thumbnail movie clips whose onRelease handlers I want to change depending on whichategory is selected If you look at the newCat() function at the bottom of the script you'll see my comments as to what is happening and when Apparently the event handlers being assigned to the thumbnails are using the local variable 'pict' inside the 'newCat()'function which is being overwritten each time the function goes through a loop? Does anyone know why this is happening or another approach I can take?

Code:
//set up picture categories and file names
people = ['mittens.jpg', 'penny.jpg', 'selfportrait.jpg'];

[code]....

View 2 Replies

Actionscript 3 :: Dynamically Creating And Assigning Names To Movieclips?

Oct 28, 2011

I have a movieclip that I need to duplicate dynamically based on an outside variable.e.g. clip1, clip2, etc This variable changes so I can't hardcode the number of times it occurs.Is there a way to dynamically create this movieclip multiple times and align it according on the screen?

View 3 Replies

ActionScript 3.0 :: Dynamically Assigning Instance Names To TextField

Mar 31, 2011

Is it possible to add a textField dynamically but have different instance name each time this is created? In other words if I have a button that whenever its click it will add a textField to the stage and assigns a new instance each time this is added.

ActionScript Code:
button.addEventListener(MouseEvent.CLICK, addField);
var inputWidth = 200;
var inputHeight = 20;
function addField(event:MouseEvent):void{
[Code] .....

Something like this but instead of textFieldName this would be different each time.

View 8 Replies

ActionScript 3.0 :: Assigning Custom Class To Loader Dynamically

Jun 5, 2009

I have a question regarding custom classes. I have created one named HrollBtns with a some scale and alpha roll over behaviors. When I load a jpg using a loader obj. Can I dynamically assign this custom class to the loader? If I had to do this loading an object from the library ...I would first assign the custom class through the linkage prop inspector and then simply add the Child(with my class behaviours) to the stage. Loading external files dont know how to do it...

View 2 Replies

ActionScript 2.0 :: Why Emptymovieclip Positions Affect Positions Of Thumbnails

Jan 22, 2007

I have thumbs placed on the stage. I create an empty mc to load swf. But my thumbs disappear from the stage when I test the movie ( html or swf) if I settle the _ and _y position of the empty mc.why the emptymovieclip positions affect the positions of my thumbnails?

View 2 Replies

Actionscript :: Flex Assigning Events To Dynamically Created Buttons?

Jul 18, 2011

My app has buttons that users press to insert predefined strings into a textarea. I'm now making it load in the button values dynamically so users can define their own buttons.I'm using a buttons.txt which contains a different label on each line (button1, button2,button3 etc). I loop through the text file and add the buttons to a group. This all works, but now the hard part. How can I assign an eventlistener to these buttons so that they output text to the screen?

protected function view1_viewActivateHandler(event:ViewNavigatorEvent):void
{
var path:File = File.documentsDirectory.resolvePath("buttons.txt");

[code]......

View 1 Replies

Actionscript :: Flex: Assigning Events To Dynamically Created Buttons?

Jul 19, 2011

I have a txt file structured like this:

button1_label
button2_label
button3_label

[Code]....

View 2 Replies

ActionScript 2.0 :: Dynamically Assigning Functions To Button Events Results?

Jun 25, 2009

I am in the process of writing a scrolling image viewer that dynamically updates from an xml file. I have written the scroll function (with a lot of help from Kirupa and other sources), and the pictures are updating beautifully, but when it comes to adding the function for the buttons I am encountering an unusual error.

Using the following code:

Code:
initButtons=function(){
for (var i in btnArray) {
var btn:MovieClip = btnArray[i];

[code]....

from this site results in the doClick function being called for each of the buttons in the btn array at runtime, and then not working afterwards.

View 4 Replies

ActionScript 3.0 :: Assigning Variables Into Dynamically-created MovieClips And Indexing Them

Apr 27, 2010

I'm having a problem while assigning variables into dynamically-created MovieClips. Here's a pseudo-code of what I'm trying to achieve.

[Code]....

I need the movie clips to contain their index values as a variable within them. I've tried several approaches, including declaring the variable names within the MC itself, but that doesn't work either.

View 2 Replies

ActionScript 3.0 :: Flash - Assigning Frame Events To Dynamically Attached MCs?

Aug 12, 2011

I'd been working on a side-scrolling shooter game in AS2 for a while and it was going great, but for whatever reason, it scrolls all choppy and the framerate is inconsistent on faster machines. I would have expected the opposite, but it is what is is, I guess. So I'm trying to finally learn AS3, and I found some tutorials that got me started towards remaking what I had, but now I'm stuck.I'm trying to make one of those rotating cannons that shoots projectiles towards the mouse cursor. I have the rotation part working, but I'm having trouble with attaching the projectiles to the stage with enterFrame actions on them.I feel like I'm pretty close to a solution, but I don't understand where to put the functions to move the clips to make them work properly. In AS2, I just put something like this on the cannon clip:

Code:
bullet = _root.attachMovie("bullet", "bullet"+_root.bullets, _root.getNextHighestDepth(), {_x:nozzledot.pointx, _y:nozzledot.pointy});

[code].....

View 1 Replies

Flash :: Creating Varying Number Of Parameters In An Object By Dynamically Assigning Their Name?

Aug 4, 2011

How would I write a procedure that would build this array such that I could choose as many parameter names such as KBP? I wanted?

public var expenses:ArrayCollection = new ArrayCollection([
{Impact:"A", KBP1:1, KBP2:0, KBP3:0, KBP4:0 },
{Impact:"B", KBP1:0, KBP2:0, KBP3:0, KBP4:0 },
{Impact:"C", KBP1:0, KBP2:2, KBP3:3, KBP4:0 },
[Code]....

View 2 Replies

Actionscript 3 :: Dynamically Assigning An Image Source In An Item Renderer Does Not Work In Flex?

Oct 23, 2009

I have a custom item renderer that displays images:

<mx:DataGrid dataProvider="{friends.friend}" id="friendsGrid" width="240" rowCount="3" variableRowHeight="true" headerHeight="0"
horizontalCenter="true" backgroundAlpha="0" borderThickness="0"

[code].....

View 1 Replies

Flash :: Assigning Icons To A ComboBox's List Using Dynamically-loaded External Images

Feb 5, 2010

I'm trying to implement this for an instance of ComboBox specifically, which uses a List to display the dropdown menu full of items. Lists can have icons associated with them, as described in the documentation:

var comboBox = addChild(new ComboBox());
comboBox.dataProvider = new DataProvider([{label:'item1',iconClass:IconClass1},{label:'item2',iconClass:IconClass2}]);
comboBox.dropdown.iconField = 'iconClass';

... assuming IconClass1 and IconClass2 are valid classnames of symbols in our library, this code works perfectly.

Here's my question - the contents of this ComboBox will be XML-driven, populated dynamically, and I'd really rather include that icon reference as a filename instead of a classname, so that when the whole thing is implemented, the icon can be changed in the XML without opening Flash and adding a new symbol to the library. Clients aren't generally good at that sort of thing.

Ideally, I'd like to be able to find a way to reference the container for the instance of that icon class - the ComboBox.dropdown is obviously keeping a reference to each list item somewhere, and if I can find it, I can load the icon images dynamically, then addChild them to the icon instance.

View 1 Replies

ActionScript 2.0 :: Assigning Text In Dynamically Created Text Fields - Flash 8

Dec 1, 2006

I'm having trouble with dynamically assigning text to a dynamically created text field.

[Code]...

I've tried setting up the TextFormat and createTextField as a function that's called on the onRelease handler. I've tried dropping the whole frackin' code in the onRelease function for each button. Neither approach works. I've been digging around on the web, looking for answers, and nothing seems to solve my problem.

View 3 Replies

ActionScript 2.0 :: Assigning Movieclip To Dynamically Created Movieclip

Oct 24, 2006

In part of my actionscript i'm using: thumbnail_mc.createEmptyMovieClip("t"+k, thumbnail_mc.getNextHighestDepth()); to create a seperate movieclips for ewach image in my xml file. How would I then attach another movieclip to each of the newly created ones? ie thumbnail_mc.t0, thumbnail_mc.t1, thumbnail_mc.t2... is there a way to do it automaticall7y or do i have to assign it to each one individually? "thumbnail_mc.t"+k.attachMovie obviously doesn't work

View 11 Replies

ActionScript 3.0 :: Add Duplicates At Different Y Positions?

Oct 9, 2009

I have a movieclip in the library that I am exporting for actionscript.  I duplicate the movieclip by adding a child for each occurance of a tag in actionscript.  This works fine, but I can't figure out how to change the y postion of each new child to be 30 pixels below form the last child.  Here is a snippet of the code where I am having the problem:
 
for (var i in xmlData.region){        for (var k in xmlData.region[i].regionInfo.payment);
            var mcRI:regionInfo = new regionInfo();            this.addChild(mcRI);            mcRI.txtPayment.htmlText = xmlData.region[i].regionInfo.payment[k].card;            mcRI.y += 30;        }
}
 
Instead of each new child's y position changing +30, every duplicate is on top of each other at +30.

View 3 Replies

IDE :: Flash 8 Moviclip X+Y Positions

Aug 11, 2009

What I'm really looking to be able to do, is have a clip in the root move to the same x and y as a clip that is embedded into another movieclip. How would I pick up the X and Y co-ordinates of this embedded movie clip?

To summarise,

ClipA is embedded into ClipB, what I want, is for ClipC - that is based in the root - to match ClipA's position.

View 2 Replies

ActionScript 2.0 :: Positions Of MC (x And Y Co-ordinates)

Jul 20, 2010

I have 52 (pack of cards) movieclips on stage all turned invisible When selected they turn visible. and need to display in one of five set positions (e.g. x and Y co-ordinates). If the first slot if full the card should be displayed in slot two. IF slot two is full the next dard displays in slolt three. I card two is then removed and a space left the next card chosen should go in there.

View 3 Replies

ActionScript 2.0 :: Swf Refers To Positions Of MC's In Itself?

Aug 14, 2004

ok I am having what I think is a targeting problem.I'm loading a swf into a blank container inside another movie (main). The AS in the loaded swf refers to positions of MC's in itself _x & _y etc.However once it is loaded, those positions are not true... ex. if the center of the swf is 200 by itself depending in where it is loaded, it might become 400 or any other number - reletive to the main movie's stage (I hope Im being clear).I need the AS in the loaded swf to refer to itself (x/y values relative to its OWN stage). So how do I target that? _root.MC.containerMC doesnt seem to work, but is this on the right track? Basically when an swf is loaded into another, does its _root now become the main timeline of the movie its loaded into???

View 2 Replies

ActionScript 3.0 :: Get X , Y And Z Positions Of A Point In A Shape?

Jan 5, 2010

Is there any way to get the positions of points in a shape on stage at runtime? for instance a triangle, is there any way to get the positions of the 3 points that make the triangle?

View 2 Replies

ActionScript 3.0 :: Calculating Positions Along A Curve

Jan 13, 2009

what I am trying to do is calculate the position of a point along a curve, what I want to do is create a function where i am able to determine where a point intersects the curve when I provide an X value.I have created a simple diagram to illustrate what I am looking for:So assuming I know the x,y of each black dot, and the x of the red dot, how do I calculate it's y value?

View 2 Replies

ActionScript 3.0 :: How To: Call 3 Array Positions

Jan 19, 2009

im trying to get this project done. Basically i'm pulling info out of an XML file:

Code:
<COVER>
<COVER_FILE_LOC>myImage1.png</COVER_FILE_LOC>

[code].....

View 0 Replies

ActionScript 2.0 :: Fixed Mc Positions In Web Browser?

Sep 4, 2009

When creating content for the web, I have certain elements I always want to be in view - no matter on what display or size it is being viewed from..How do I actionscript an mc, nested within a swf file to stay in a specified position / relative to the edge of a web browser

View 0 Replies

ActionScript 3.0 :: Find Positions In A String?

Nov 10, 2009

I have a function that finds the position of a specific string.[code]...

But indexOf searches the string and returns the position of the first occurrence.I know there's a startIndex parameter but I dont know how to use it so that I could go through an entire string.

Like for example: " Hello there little boy. What's your name boy?"

How can I get the position of first boy word and then the position of second boy word ?

View 2 Replies

ActionScript 3.0 :: Change The Positions Of Movieclips

Nov 14, 2009

i wanna know how to change positions of movieclips.[URL]

View 4 Replies

ActionScript 2.0 :: Mouse Show X Y Positions?

Apr 24, 2010

I have made a colouring application. The mouse changes to a brush when the user enters a page, but I dont know how to change the brush back to a mouse when the mouse is outside the colouring canvas,so the user can click on the navigation buttons.

View 1 Replies







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