ActionScript 3.0 :: Change The TxtField.text Without Using The AddChild Function In The Main Class?

Feb 19, 2012

I have the following scenarios.

[Code]....

how can I change the txtField.text without using the addChild function in the main class?? because the Content Class is already visible when you compile it.. and when I remove the that addChild function, the txtField.text is still in its default value which is "Lorem Ipsum"

View 9 Replies


Similar Posts:


Actionscript 3 :: Use Addchild In Another Class Not The Main Class As Of .fla File?

Jun 3, 2010

i want to add to stage a movieclip in another class not the .as file as the same name of .fla file how can i get this.When i run same code in main.as i get the result but in another class it runs but no result.

View 2 Replies

ActionScript 3.0 :: AddChild From An External Class To Main?

Jan 25, 2010

i only want to make an addChild on the "root" ( or stage? as3 is really different from 2, im really confused)

the MAIN class:

ActionScript Code:
package com.website
{
import flash.display.*;

[Code].....

View 9 Replies

ActionScript 3.0 :: AddChild From Class To Parent In Main Package?

Feb 16, 2011

I have a main package that adds the background image to the project, from here on im trying to have seperate classes that add objects to the background as a parent and control these objects.my code in the main package:

package
{
import Dinos_Control;

[code]....

View 3 Replies

ActionScript 3.0 :: AddChild Function In Another Class?

May 13, 2011

I am trying to pull a funtion that adds a child to a container. This function gets pulled in another class. All the traces do work by the child doesn't show.

pulling the function from StickerBook_Class
---------------------------------------------------------------------- -----
public static var stickBook_Class:StickerBook_Class = new StickerBook_Class  ;

[code].....

View 2 Replies

AS3 :: Listen From The Main Class To A Sub Class For A Variable Change?

Apr 25, 2011

How do I listen from the main class to a sub class for a variable change?

package {
import flash.events.*
public class DataBase extends MovieClip {

[Code].....

This is what I have so far for the sub class but I can't seem to figure out how to listen to this variable change from Main() or even if I am dispatching the event properly.

View 2 Replies

ActionScript 3.0 :: TxtField Document - Know All The Available Attribute Of Flash.text

Jun 20, 2009

I have imported libary of flash "flash.text.TextField". I have have set x and y position and height and width of text file . Now I need to know all the available attribute of flash.text. For example flash.text.border=true. etc. Is there any document about flash.text ?

View 3 Replies

ActionScript 3.0 :: Calling A Function Located On The Main Class From A Sub Class?

Nov 21, 2009

I'm not sure that I'm on the right track here. I've got what is essentially a 'gateway' movieclip and depending on the CLICK a corresponding movieclip (form) is loaded -- these all being in their own AS file. There are multiple corresponding pages that will all load/close in their own fashion but the 'gateway' will reload in it's own function-- consequently, I have this function on the main_AS.  Can I trigger this function from the sub class or do I need to move the 'reload' function to a 'reload' class.

View 2 Replies

Flash - Listener In Main Document Class For Custom Dispatch Event From Another Class Does Not Respond Or Call Function?

Apr 1, 2011

I have a document class called Main.as In the class constructor I have the following listener:

enter code here
var listeningFORModeChangeToStudent:Sprite = new Sprite;
listeningFORModeChangeToStudent.addEventListener(TellAllModeChangeToStudent.STUDENT,exp);
addChild(listeningFORModeChangeToStudent);

[code]....

In a third class I make a call to the despatcher in the previous class:

enter code here
var ThisTellAllModeChangeToStudent:TellAllModeChangeToStudent = new TellAllModeChangeToStudent;
ThisTellAllModeChangeToStudent.tellAllModeChangeToStudent();

I have trace statements in eveything and from this I know the despatcher in TellAllModeChangeToStudent is being called.The problem is that the listener in the main.as is not calling the function exp.I cant see why and I dont know how to check if the listener is actually seeing the dispatch event?

View 1 Replies

ActionScript 3.0 :: Access Function At Main Class From A Sub Class?

Mar 3, 2011

My first experience is build an aquarium with a lot of fish swimming, and they can be clicked. When one of them is clicked we should receive a trace message saying ("I�m a Fish!"). To do this, I thought that the best way will be:

1- create a document class, named Main.as

2- create a base class, named Clicked.as

2- create a movie clip with a fish.

3- export the movieclip to actionscript. In the mc properties set Class as "fish" and Base Class as "Clicked".

View 6 Replies

ActionScript 3.0 :: Access A Function In The Main Class From Another Class?

Mar 1, 2010

i have a game that i want to put load screen on, which i created a separate class for. first the main class is initialized and in the constructor function, it does an addChild(loadScreen) which places an instance of the loadScreen MC on the stage. within the loadScreen is a "Play Button" that when a user presses this button i want it to continue startGame in the Main class. the way i tried it was Main.startGame from the loadScreen class, but that obviously does not work. is it possible to call a function from a different class.i have three files:

Main.fla
Main.as
loadScreen.as

the Main.as file:

Code:
package
{
import flash.text.*;
import flash.display.*;

[code]....

View 3 Replies

ActionScript 3.0 :: AddChild From A Class - Get The Error "1180 : Call To A Possibly Undefined Method AddChild?

Jun 15, 2011

I'm trying to have a class file which can add objects to the stage via addChild; however, when I call addChild from within the class file, I get the error "1180: Call to a possibly undefined method addChild." I've tried importing flash.display.* and that doesn't fix the problem. Does the class file have to extend Sprite or MovieClip to be able to add objects to the stage?

View 8 Replies

ActionScript 3.0 :: Box2d Addchild - 41061: Call To A Possibly Undefined Method AddChild Through A Reference With Static Type Class

Jan 16, 2012

I have downloaded Box2d ([URL]) and created a project that looks like this: [URL]. catalyst is the green cube and it has the base class "shapes.box", it is inside "world" which has the base class "wck.World". What i want to do is to add another "catalyst" from the library inside "world" when i click on add_btn. I tried to accomplish this by this code:

[Code]...

Symbol 'buttons', Layer 'Actions', Frame 1, Line 41061: Call to a possibly undefined method addChild through a reference with static type Class.

View 9 Replies

Call Function In Main Doc Class From External SWF?

Jul 9, 2009

I have a main.swf that loads in an external swf called home.swf. I want to be able to call a function in main.swf's doc class from the loaded swf:

Code:

function loadArtist():void { // my function }

in the main timeline of home.swf I'm calling it this way:

Code:

function timeToGo(m:MouseEvent):void {
trace("button pressed");
MovieClip(this.parent.parent).loadArtist(); }

the home.swf compiles fine but when loaded in the main.swf & the button is pressed i get this error:

TypeError: Error #1006: loadArtist is not a function.
at home_fla::MainTimeline/timeToGo()

It seems that it thinks loadArtist is a property. Ack. I've got 3 objects loaded dynamically using addChildAt(mc, 0) ...

View 2 Replies

ActionScript 3.0 :: Button In A Class To Run Function In Main .fla?

May 15, 2011

Does anyone know of a way to have something in a class, run a function in the main .fla? I have a class that creates a drop down menu and I would like that when a btn is clicked, a function is run.....but it is important that this function is in the main .fla and not in the class.

View 2 Replies

ActionScript 3.0 :: Access Main Class Function From External?

Feb 9, 2009

I'm quite confused about how to do it, look at this [code]...

View 2 Replies

ActionScript 3.0 :: Getting Loaded SWF To Use A Function From Main.fla Document Class?

Dec 16, 2009

I have a main movie with thumb movieclips that load new children and stops the main movie's animation. Within the child there is a close buttion that removes itself. I also wanted the close button to start the animation of the main movie again once it removed the child. Since I am using a document class to load everything for the main move, how can the close button from the loaded swf use a function from the main document class?

View 5 Replies

ActionScript 3.0 :: Call Function In Main Timeline From Class File?

Jun 3, 2009

How can a function in main timeline be called from class file?

View 4 Replies

ActionScript 3.0 :: Pass Parameters To A Function In Main Class From Loaded SWF?

Aug 15, 2011

I've got a main.as that loads SWF to the stage. the loaded SWF seppoused to pass a link to the main.as and trigger a javascript function to popUp that photo from that link.

I know there are two ways:
 
((root as MovieClip).parent.parent as Object).somefunction(parameters);
 
and to dispatch an event. inorder to pass parameters throug the event i need to extend it with another class.
 
isnt the (root as... )  more efficient if all i need is to pass a link?

View 7 Replies

Actionscript 3 :: Call The Function That Is In Main.mxml App From A Class In Flex

Feb 24, 2011

i write a sound playback class that stop the older sound and play the new sound.After that i need an extra method in this class that trigger when the sound play is complete.I successfully achieve this, but i need to inform the main app (main.mxml) about the completion of that sound playing.

here is my sound playback class.

package com.m2b.data
{
import flash.events.Event;
import flash.media.Sound;

[Code]....

View 3 Replies

Actionscript 3 :: Call A Function In The Main Timeline From A Class In A .as File

Feb 15, 2012

I have some functions defined at the main timeline, and I need to call them from a class, how can I do this?

I've tried object(parent).function();

and object(root).function();

but didn't worked

those functions need to be on the main timeline because they removeChild() of the class

View 2 Replies

ActionScript 3.0 :: Class Hierarchy Design - Trigger A Function In Main.as

Nov 9, 2009

Im making different quizes and small games. I always use a Document Class when coding, and usually i call this Main.as. Usually the Main.as contains pointers to different classes like:

private var _menu:Menu;
private var _messageBoard:MessageBoard;
etc..

My question/scenario is this: In for example _menu, i have a button that has an event listener on it (example: "Start" button). When this event is triggered (ie user hits "Start") I want to trigger a function in Main.as. How is the most elegant way of doing it? The solution i use now, is that i send a reference pointer of Main.as to each new class i make. ie in Main I would do something like this:

[Code]....

View 3 Replies

ActionScript 3.0 :: Playing A Movie Clip From A Function In Main Class?

Jan 1, 2012

I have a timer which times how long the game takes and I made a highscore function: if highscore < timer - newhighscore(); This all works fine. My problem is that I want to have the words "Your highscore" flash up on the screen if a highscore has been acheived or to just stay still if a highscore has not been achieved.

ActionScript Code:
private function getScore() {
trace(timer);

[code]...

I have text on my game over screen saying "Your highscore:" I exported them to a movieclip where they turn red and get bigger, the smaller. Frame 1 is plain stop(); Frame 2 to the last frame and the animation Last frame gotoAndPlay(2); These words will normally be plain but I want to be able to, from the newhighscore() function, play the animation for the MovieClip.

View 0 Replies

ActionScript 3.0 :: Calling A Function Inside A Class From The Main Timeline

Aug 12, 2009

i am getting a "ReferenceError: Error #1069: Property beginTargetLock not found on AimCursor and there is no default value."

[Code].....

View 2 Replies

ActionScript 3.0 :: Flash Need Buttons Inside Movieclip Call Function In Main Class

Nov 16, 2010

I'm having some trouble finishing an interface i'm working on,the function indica() adds a menu listing of items (indicadores) inside a mask because its too large, and i added a scrollbar that allows to scroll through the items but now i need to add the buttons inside the movie clip indicative,i can add symbols and buttons, but i'm having trouble having them call functions inside the same class that the function indica() is running.[code]

View 2 Replies

ActionScript 3.0 :: Call Function, Pass Value, Access Variable In Movieclip Class From Main Stage?

Nov 20, 2008

I have a movieClip named MC, and it's enabled with action script, with the class name MC_Rectangle and a Stage.I override the MC_Rectangle class file in a mc_rectangle.as external file.here is the code:

package{
import flash.display.*;
import flash.events.*;[ code].....

I have new a object in the main stage var

mc_rect:MC_Rectangle = new MC_Rectangle()

in main stage:

1. how can i access the variable "sequence" in "mc_rect"

2. how can i pass parametre from main stage to mc_rect via function setSequence(data:int)?

3. how can i call the function in addSequence() in mc_rect.

in asp.net, i usually use mc_rect.sequenct,mc_rect.setSequence(data), mc_rect.addSequence() to achieve my goals......btw, can function in mc_rect return out result to main stage?

View 1 Replies

Flex :: Campture The Text Change Event Of A Text Control To Call A Function?

Dec 5, 2010

I am very new to flex and have trouble capturing the text change event of my text control:

<mx:Text id="description"
text=""
textAlign="center"

[code].....

View 2 Replies

Actionscript 3 :: Change A Function Reference Of A Class?

Feb 10, 2010

Ok, I have a class like this:

public class Foo extends Sprite {
public function Foo(x:Number, y:Number):void {
this.x = x;

[Code]......

I'm getting this error from the compiler: "Error: Illegal assignment to function bar". How can I change the public function bar on the fly?

View 2 Replies

ActionScript 3.0 :: Store Text Into Dynamic Text Filed Inside A Class->function?

Mar 18, 2010

here is my code public function loadtext():void{ var text_arry:Array=new Array(xmldata.child(0).name); student_name.text=String(text_arry); } I called this function inside my timeline action window. but it is not working it said undefined...

View 5 Replies

Flash :: AddChild Error When Not From Main.as?

Jan 3, 2012

So I have Main.as and Helpers.as

I've made a function who adds children to stage but I get this error: "Main.as 1180: Call to a possibly undefined method addChildToStage"

So here's the code:

Main.as
package
{
import flash.geom.*;

[Code].....

View 1 Replies







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