ActionScript 2.0 :: Passing Variables - Movie Clip & Accordion Component?

Apr 4, 2010

I am trying to build a Calculator used in health circles to project next year's profit and loss etc. I am using flash cs3 and actionscript2.My flash project is based on accordion component with 6 child panes, each pane having a movie clip with input text, dynamic text etc.I have a couple of push buttons that has click eventhandlers taking care of calculations . All the calculative functions are in the actions layer frame 1.I need help in displaying the same calculated fields as dynamic text in a new movie clip in another layer before printing the same movie clip.The present situation is like this, I am able to calculate all the fields, but when i click a button to show a new movie clip with all the calculated fields, all the variables are displayed as "undefined".

the dynamic variables in the new movieclip is referenced correctly i guess, i use pp_acvcfy = myacc.overheads.acv_cfy; where myacc is the accordion component , overhead the child pane and acv_cfy the dynamic text inside the pane 'overhead'. pp_acvcfy is the dynamic text in the new movie clip. Please help

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Passing Stage/root Variables To Movie Clip?

Oct 12, 2009

Just need to figure out how to pass root level variable to a movie clip which contains a dynamic text box to display the passed variable. How is this possible? I usually use global variables when i was coding in AS2...but it appears this feature is dropped in AS3.

View 4 Replies

ActionScript 2.0 :: Passing Variables From A Loaded Movie Clip To Main?

Mar 2, 2007

I can't seem to load a movie clip, and then pass some variables from that loaded movie clip back to through stage_mc it is loading into - to the SubClip.

The structure is as follows:

Main
>SubClip
>>Stage_mc

Where the new movie clip is loading into stage.

I need to pass two variables from the loaded clip into the SubClip. Simple vars to fill some dynamic text in SubClip.

I've done the whole _root.myvar thing, _parent, and _global.

View 5 Replies

ActionScript 2.0 :: Accordion Component - Populating The Accordion With The Data?

Jul 10, 2009

I have an accordion component on my stage and I really do not even know where to start to do .I found this code on the Adobe help pages and it causes the movement of the accordion to bounce... which is great... but my problem is populating the accordion with the data.

Quote:

import mx.core.View;
import mx.transitions.easing.*;
top_acc.createChild(View, "first", {label:"FIRST", icon: vt[i]});[code]........

My accordion is called "top_acc".I have three(3) labels... (FIRST,SECOND, and THIRD) Within there i would like arrays to be displayed for the select label.My arrays are defined and when i trace them i get exactly what i am looking for... the format of the code to add an array to my accordion...then upon selecting the item in the array displayed i would to be able to display that same array value in a text box called "my_selection" ....also the amount of items in the array are not static and change day to day..

View 2 Replies

ActionScript 2.0 :: Create An Accordion Menu With Out Using The Accordion Component?

Mar 6, 2007

how to create an accordion menu with out using the accordion component.

View 14 Replies

ActionScript 2.0 :: Passing Variables To A Duplicated Movie?

Jan 19, 2005

just wondering if theres a way to pass variables to a duplicated movie. Ill be creating duplicate movies very fast (about 20 per second) and want them each to have differrent variables to work with.

duplicating with that , and i want to pass 3 variables to the new movie clip

dot.duplicateMovieClip("dot"+currdot, this.getNextHighestDepth(), {_x: xpos, _y:ypos});

View 3 Replies

Data Integration :: Passing Variables From .swf Extenstion To Movie?

May 21, 2006

I have html code

<param name="movie" value="movie.swf?var=a&vari=b"
/>
<param name="quality" value="high" />

and I need to pass var and vari variables and its values into the actionscript. How it can be done?

View 1 Replies

Professional :: Passing Variables To And From Loaded Movie Clips

May 7, 2010

I have a movie clip where I store a value in a variable called "yourname" and then load a different .swf file in level 1. I display the value of "yourname" in a dynamic text box, that works fine. I then move on to a frame where the user has an input text box and can re-enter a value for the "yourname" variable, and then clicks a button symbol to reassign the value. Bear in mind, "yourname" was not originally stored on this level and this movie clip, it is stored on level 0 on the first (main) movie clip.  Here is my code in the button:
 
on (release) {
_level0.yourname = String (inpt_newName.text);
}
 
inpt_newName is the input text box. My intent here is to have a "main" timeline where variables are stored, and then load and unload various .swf movie clips as needed, storing and variables (i.e. decisions) that the user makes.

View 1 Replies

ActionScript 2.0 :: Passing Variables To Skip Flash Movie?

Jun 19, 2009

When you click on a link, it takes you (_self) to an "in-between" page that contains another Flash movie (that tells customer to be sure to come back to our page in the future). This Flash movie is coded so that it automatically opens a new window (_blank) to a different site. Then, HERE IS WHERE I HAVE MY PROBLEM, the original page (which is now hidden behind the new window) redirects you (_self) back to the homepage. SOOOO, when your on the new window, you can hear the lady's voice in the background.

NOW, what I want to do is to pass a variable so that, when you get redirected back to the homepage, it skips the lady speaking and goes directly to the looping slideshow.For example, "if F=1, gotoAndPlay(346);"I know that's not proper actionscript, I'm just saying what I have in mind.I've never passed variables before, so the more detailed the better.Note: I am using Flash CS3 and Dreamweaver CS3 (.asp)

View 2 Replies

ActionScript 2.0 :: Initial Accordion Component State?

Jun 23, 2009

Is there a way in AS2 to control the Accordion component so that the initial state is all children are closed?

View 0 Replies

ActionScript 3.0 :: Accordion Component Null Reference?

Apr 23, 2010

I've got an mx accordion component that I want to populate at runtime. However, the first box will populate fine, but all the others return null reference so I can't access them. Does this have something to do with which one is currently selected? I'm creating my accordion:

<mx:Accordion x="398" y="207" width="331" height="250" alpha="1.0" borderStyle="solid" borderThickness="0" cornerRadius="10" fontFamily="Arial" color="#000000">
<mx:VBox label="EDITOR'S NOTES" fontSize="10" width="100%" >

[code].....

View 2 Replies

Flex :: Accordion Component : Open Multiple NavigationContents At Once?

Jun 23, 2011

Is there a way to open multiple navigation contents at the same time with the Accordion in Flex 4.5 ?

View 1 Replies

ActionScript 3.0 :: Passing A String As A Movie Clip Instance Name?

Oct 17, 2010

I thought this would be a simple one, but i am stumped.  So I resulted to using this less than optimal solution, just to get it working...

if (lobby.gamemap.selectedItem.label == "Map1") map.AddMap(new Map1)
else if (lobby.gamemap.selectedItem.label == "Map2") map.AddMap(new Map2)
//Map1 and Map2 are movie clips in my fla library, with linkage Map1 and Map2

[code]........

View 5 Replies

ActionScript 2.0 :: Passing A Variable From The Stage To A Movie Clip?

Sep 13, 2011

I have a big bit of action script that I want to reuse on various frames. Rather than write it out on each frame I want to embed the script within a movie clip and embed that movie clip on each frame that it is required to be used on.

In order to do that I need to pass a different value into the movie clip.

Basically the script creates 20 pages on one frame, 40 pages on another frame and 60 on the last page.

This is the bit of code that needs to have the number fed to it:

ActionScript Code:
var myArray:Array = newArray(20);

The number 20 is currently set manually. I ideally want to write this within the movie clip:

ActionScript Code:
var myArray:Array = newArray(frameVal);

and on the stage I want to set the variable like this:

Frame 1:

ActionScript Code:
var frameVal:Number = 20;

Frame 2:

ActionScript Code:
var frameVal:Number = 40;

Frame 3:

ActionScript Code:
var frameVal:Number = 60;

The movie clip that contains my code has an instance name of "testStart"

how do I get it to pass the frameVal into the movie clip?

View 2 Replies

ActionScript 1/2 :: Passing Variable From Scene To Movie Clip?

Mar 11, 2010

I have a problem with my actionscript. I can't pass the variable from scene 1 textbox to a movie clip textbox.My scene 1 textbox has a name of resultText. My movie clip is call over_mc which is on the symbols definition.the textbox for the movie clips is call finalResultText.here is my code:

_root.over_mc.finalResultText.text = resultText.text;

View 2 Replies

Center Component In Movie Clip?

Feb 18, 2011

I'm try to build a photo gallery using the flash components SlideShowPro and ThumbGrid. I have put ThumbGrid inside a movie clip called thumbs_mc that slides in and out when you mouse over it to show or hide the thumbs. That part is working, but I would like to have the stage and thumbs_mc resize to the browser width with ThumbGrid centered inside thumbs_mc.

Resize and scaling the stage and movie clips is not a problem, but I can't figure out how to keep ThumbGrid centered inside the containing movie clip. ThumbGrid is a fixed width component, and the only way I can get it to work is to have the mc the same width as the component. Here's the part of the AS that I'm using to control the positioning now:

Code:
thumbs_mc.x = (sw/2) - (thumbs_mc.my_tg.width/2);
thumbs_mc.y = sh-25;

View 7 Replies

ActionScript 1/2 :: Use A Component Twice In Same Movie Clip?

Jul 7, 2010

Excuse me am a beginner in this as2

below is the script used[code]...

1st problem: i need this component to work when the swf loads instead of (on release),

2nd problem: i need to introduce several frames with different movieclips using the component.

View 1 Replies

AS3 :: Changing Stage Variables From Within A Movie Clip

Feb 2, 2012

I want to change variables on the main stage's code from within a movie clip.

Say for example, I want to change a variable called 'chair'

In AS2, this is how I would do it:

(on the main stage)

Code:
chair = 2;
(in the movie clip)

[Code].....

But all I get is a 1119 error saying 'Access of possibly undefined property chair through a reference with static type flash.displayisplayObject.'

View 3 Replies

Trace All Movie Clip Variables And Functions?

Jan 21, 2010

How can I trace all available Movie Clip variables and functions?

View 5 Replies

Flash :: Casting Variables To Movie Clip?

Apr 27, 2010

How i can convert gecko object to a movie clip

function finish(boxname, arrayname:Array):void {
for each (var item:String in arrayname) {
trace(boxname+"_"+item);

[Code]....

View 2 Replies

ActionScript 3.0 :: AS3 : Moving A Component Into A Movie Clip [renamed]?

Sep 16, 2009

I am using Flash CS4, AS3.I have a movieclip "MC1" and a Component "B1" from the 'Component Library' on my main stage. From code inside of MC1, I would like to create an empty movieclip "MC2". Then, still from code inside of MC1, move(cut and paste-like) B1 into MC2. I have failed in my attempts thus far...

View 2 Replies

ActionScript 3.0 :: Controlling A Component Within A Dynamic Movie Clip?

Jul 26, 2010

i have an flvplayback component within a dynamically-created accordion pane. when the user hovers over a new accordion tab and opens a new pane in the accordion, i want to stop the video in the first pane. how can i reference the video player?

here's the code on the root timeline:
function _open(ev:AccordingEvent):void {
MovieClip(root.instance7.flvPlayback).stop(); 

[code]....

View 2 Replies

IDE :: Component - Create A Movie Clip And Set The Live Preview

Oct 9, 2009

I'm having a problem with component live previews. If I just create a movie clip and set the live preview, all instances of the clip i put on stage update separatly from each other (their live preview that is). As soon as I change the clip to a component (export .swc or compiled clip) all the instances update together. eg if i set the component parameter 'title' - all titles of the all the instances on the stage will change. This didn't happen when it was just a movieclip - all instances changed separatly as i set them.

View 1 Replies

ActionScript 2.0 :: Empty Movie Clip Loading Swf Which Contains Variables

Nov 13, 2007

It is on tracing variables. I have a attached main.fla, movieclip.fla, and movieclip.swf.

If you run main.fla from within flash you'll notice the actionscript on the first frame of main.fla is loading movieclip.swf into an empty movie clip called container on the first frame of main.fla. No problem.

In movieclip.swf I assigned three values to three different variables, a, b and c, on the first frame of moviclip.swf(See movieclip.fla) like this:

a = 1;
b="string";
c 1.234556;

Also, in the first frame of main.fla, there was actionscript as follows:

container.loadMovie("movieclip.swf");
trace (_root.container.a);
trace (_root.container.b);
trace (_root.container.c);

Now each of the above traces produced undefined results when I ran main.fla from within flash. And yes I had complied moviclip.swf. Why did I get undefined results? What concept am I not grasping?

View 2 Replies

ActionScript 2.0 :: Changing A Movie Clip's Local Variables?

Mar 4, 2009

I'm working on a particle system, where each single particle is represented by a movie clip and has it's own behaviors, defined in the movie clip's code in a separate layer from the image. The particle creates local variables, such as it's gravity and color, in the first frame and then uses them to guide it's actions throughout it's lifetime (it fizzles out and dies, eventually).Frame 1 of particle_mc:

Code:
var gravity:Number = 0;
var color:Number = 2;

[code]....

View 2 Replies

ActionScript 2.0 :: Controlling A Movie Clip With Buttons And Variables?

Mar 12, 2002

I have two buttons (a and b) and a ball movie clip (ballMove) on the screen.This is what I want to happen:The ball starts off under button A. If you click button A, the ball stays where it is. If you click button B, the ball moves over to button B.When the ball is under button B it won't move if B if clicked, but will move to A if A is clicked.How I plan on doing this is within the ball movie there will be three motion tweens, staggered so they don't overlap. The first isn't a tween at all, actually. It is one key frame at the very start of the movie timeline. I have labelled it "beginning". Also, it has a stop action and var busbus = 1. Bus is the variable I want to use to track the position of the ball.

The next tween is the ball travelling from point a to b. The start frame is labelled "atobbegin". There is a keyframe at the end labelled "atobeend". A stop action is on this keyframe, and also bus = 4.The final tween is the ball travelling from point b to point a. The start frame is labelled "btoabegin" and the end keyframe is labelled "btoaend" with a stop action and bus = 8.Eek, just got Deja Vu.er, moving right along....

On button A I have assigned these actions:
on (release) {
if (_root.ballMove.bus == 4) {

[code]......

View 2 Replies

ActionScript 2.0 :: Change The Tint Of A Movie Clip Inside The Component?

Jan 19, 2007

I am trying to build a custom button component in flash 8... I am setting it up so you can change certain color values with the component inspector.I want to know how to change the tint of a movie clip inside the component...I searched all over the place, maybe I'm not looking right.I found out how to change the color in a text field but I am still stumped on how to change a movie clips tint.

View 3 Replies

ActionScript 2.0 :: [Flash MX] Accessing A Component From Inside A Movie Clip?

Mar 21, 2005

Okay I have this problem and I can't for the life of me figure out what's wrong. Here is an outline of what is happening:1. I have a movie clip that contains two components, a combo box and a check box.2. The combo box has the instance name "comboBox", and the check box has the instance name "checkBox".3. The movie clip is exported for actionscript with the identifier "test".4. I run the following code:

[AS]
attached = _root.attachMovie("test","componentContainer", 1);
attached.comboBox.addItem("A", 1);[/AS]

[code].....

View 1 Replies

ActionScript 3.0 :: Can't Change Property Color Of Component Movie Clip In Program?

Jan 18, 2010

I can't change property Color of the component Movie Clip in my program? Compiler didn't found the error but when my program run color Movie Clip doesn't change.

View 5 Replies

Flex :: Accordion Component - Show The Whole Content Without This "white" Rectangle When It Loads?

Nov 24, 2011

I've an Accordion component in my Flex application and works great, but I found a little glitch in its behaviour.While one of its menus is opening, it shows a white rectangle and, when it completely loads, it shows me the content. But I want to show the whole content without this "white" rectangle when it loads.For example:

Image 1: My Accordion is ready to use

Image 2: I want to open another submenu, so while it's opening, a white rectangle is shown (I was really quickly to take an screenshot)

Image 3: Recently opened submenu is fully loaded.Here is my source code:

<mx:Accordion id="accordion" width="100%" height="90%" verticalGap="0" horizontalGap="0" creationPolicy="all">[code]...........

View 2 Replies







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