ActionScript 3.0 :: Static Class Needs A Non-static Function

Nov 22, 2009

Alright, so I have a class that is linked (via the linkage panel) to a scrollbox class. I'll paste the class here:[code]Ignoring the formatting, the commented out functions are the ones causing the issue. Adobe says that it's a static class and I can't use non-static functions. The way I wanted to use it was:

1. Call the page button generating function above.

2. In the main code in my program is this line:scrollbox.setClickFunction(historyContent.generate Page);So when the buttons that are supposed to be generated are clicked, the scrollbox class can call the History pages generatePage function and pass it which page to show. (I did this because there was a lot of text and a limit on how much would display, so small chunks sounded logical).

3. In the onClick function (which I haven't finished yet because the rest wont work), when you click one of the buttons it calls the set function. Its that simple.

View 4 Replies


Similar Posts:


ActionScript 3.0 :: Static Function Can't Find Non-static Functions

Jan 6, 2010

Ok, so I have a bit of a mess here (Which I'm probably not doing right anyway, which could be my problem...). I have a document class, I'll call it as Body.as, that creates an object from another class known as Headgear.as. There are also other objects created from other classes, or will be in the future. Now, amoung all this, Headgear.as and all of the other classes Body.as will use to make objects require the use of dragging functions (starting and stopping dragging). On stopping drags, position checks are then made to compare a particular hidden movieclip with the dragged MC.

To try and save myself some hassle (from making the same functions over and over to ensuring that when the objects are created I don't need to send a complete crapload of variables just to ensure the position checking function would work), I had the functions for the event listeners (Which are set-up on the draggable MCs in Headgear.as) just direct to functions in Body.as

[Code]...

View 6 Replies

ActionScript 3.0 :: Static Function Calling A None-static Function?

May 18, 2011

Basically, what I mean is I i have few layers of classes, that calls and change something on the 1st(root) class. In between the process I have to use static var and static function.But when I want to run a function which does not change any variables, for example:otoAndStop(someFrames), I need to make the function a static function too or else there would be error

Code:
1061: Call to a possibly undefined method checkStatus through a reference with static type Class.

[code]....

View 4 Replies

ActionScript 3.0 :: Static Methods - Error "1119: Access Of Possibly Undefined Property Instance Through A Reference With Static Type Class"

May 4, 2009

I'm kind off oblivious as to what I'm doing wrong here... I have two classes: - Alley - AlleyCat

[Code]...

View 8 Replies

Flex :: Require A Function Parameter To Be A Static Constant Of The Function's Class?

May 22, 2009

Let's say I have a Custom Event Class, and it has several Event types stored in static Constant:

[Code]...

Is there an easy way to validate that the type passed to the Constructor is one of the Static Constants of the Class, without having to check it against each value?

View 5 Replies

Actionscript 1 :: Create Static Function In A Class In It?

Nov 17, 2010

Can i create static function in a class in action script 1 ?

View 1 Replies

ActionScript 3.0 :: Access A Class Var From A Static Function?

Jan 21, 2010

I've summarized my issue in the following [code]...

1119: Access of possibly undefined property mc through a reference with static type Class.

View 9 Replies

ActionScript 3.0 :: Class With Static Function-like Constructor

Oct 15, 2010

I'm currently writing a class where I'd like to call the class constructor without having to instantiate the class itself. Something like this : Class:

[Code]...

trace(testString); //wil trace the text "test test123" Is it possible to somehow achieve this? When I write the costructor method like "public static function ClassName" it fails. Is there any other way?

View 3 Replies

ActionScript 2.0 :: Support Class - Getting Error When Calling Static Function

Feb 3, 2009

I have a support class called ICSNAArrays. It contains only static functions. In my main class file I have imported it and then when I try to call one of the functions I get a compiler error that says there is no method with the name 'ICSNAArrays' I don't understand this. There are no errors importing it. All of the spelling is correct I am 100% sure on that.

View 9 Replies

Actionscript 3.0 :: Create A Global Function And Static Metod In Another Class File

Mar 3, 2009

i want to create a global function in actionscript 3.0 i can do this in flash as2 As3 remove that _global. if i want to create a _global function then want to create a static metod in another class file...?

[Code]....

View 1 Replies

ActionScript 3.0 :: Private Static Properties With Public Static Getters/setters

Oct 22, 2009

how bad is this practice? I am having trouble getting to some stuff so i am taking the easy way out

Code:
private static var _interrupted:Boolean;
public static function setInterrupted(value:Boolean):void{
_interrupted = value;
}

View 1 Replies

ActionScript 3.0 :: Altering A Reference To A Static Var Alters The Static Var Itself?

Aug 25, 2009

Let's say you have the following situation:

1. Static var(an Array) stored in a class.
2. You create a variable reference to the static class in a separate class.
3. Splice some items from the reference variable in the separate class.
4. Trace the static class and the items have been removed from that too.
5. Verify several times.
6. Get confused.
7. Post on Kirupa.

View 3 Replies

Actionscript 3 :: Does Static Methods Need To Use Static Properties?

Dec 28, 2009

If I created a static method. say I decide to call on other methods within that static method. Do those methods I call on need to be static as well? what If I used some of the properties. Not to store data permanently, but just within that process. Do those properties need to be static ??

View 3 Replies

ActionScript 3.0 :: Static Classes And Static Methods?

Feb 21, 2007

Yesterday I found myself wondering, what is the difference between either having a class with methods that are all static, or simply giving your class the static attribute?

View 9 Replies

Actionscript 3 :: Big Performance Difference Between Using Class With Static Functions Vs Instantiated Class?

Mar 22, 2012

I'm wondering if anyone has experience with if there is a big difference in performance in ActionScript 3 between keeping a class with only public static functions, and utilizing those functions often (as in a frame event at 30fps), and in turning the class into a "normal" class of which I instead make an instance and call the functions via the instance instead.

View 1 Replies

ActionScript 3.0 :: Accessing A Class's Static Functions From A Variable Of Type Class?

Feb 19, 2010

I realize this is kind of an odd issue, but I am wondering if there's any way to get Flash to allow me to access a class's static functions using a class variable that points to the class. Example:I create a class called FooClass that has a static function named fooI then create a variable of type Class that points to it

Code:
var class:Class = Class(getDefinitionByName("FooClass"));
However, when I try to call foo() using the variable, it errors saying the function

[code].....

View 6 Replies

ActionScript 3.0 :: Make Function In To A Static Function And Call It From Other Classes

Sep 23, 2009

this is the function i want to turn in to a static function. just dont know how to make it a static function and call it from other classes. i think this would have its own file.

[Code]....

View 2 Replies

ActionScript 3.0 :: Calling A Function From A Private Static Function?

Feb 26, 2010

i'm trying to modify some code and can't figure out what the issue i'm having it. this is the(shortened) code:

public static function Lose():void {
trace("OVER!");
Clock.stop();[code]...

this is the error i get: 1180: Call to a possibly undefined method OverIt.i just want to call a function from inside of the public static funtion.both function are inside this class:

public class Game extends MovieClip {
}

View 4 Replies

ActionScript 3.0 :: What Is Static Class

Mar 29, 2011

I know about static function.What is static class? What is the use of static class? how can i use static class.? Give me a  static class example?

View 5 Replies

ActionScript 3.0 :: Use A Static Class?

Jun 28, 2010

Hi there, i am hoping for some advice on structure/optimisation from some of you experts . I am working on a portfolio system that is modular, each module works in a self contained way and does not require the other modules to function, though they can be 'linked' by having them all reference the same PortfolioData() class.

im happy with how it is working, but i feel there could be a better way to share the datasource between all classes rather than duplicating it and storing a copy in each class.

[Code]...

View 14 Replies

Flash :: Use A Static Function In Actionscript 3.0?

Dec 15, 2009

I would like to do the following:Have a few objects (e.g. 20 of them), each time I mouse over any one of them, it moves up and each time my mouse leaves, it moves down.[code]...

View 3 Replies

Actionscript 3 :: Encapsulating A Static Function?

Jun 11, 2010

i would simply like to encapsulate a function in it's own .as file, but i can't quite get it.

[Code]...

View 1 Replies

Flex :: Static Var In Member Function?

Jun 20, 2011

I would like to know, in Flex 4.5.1, if there is a way to create a static variable in a member function, something like bellow:

public function myFunction():void {
static test:Object = null;
}

View 2 Replies

ActionScript 3.0 :: Function Or Static Method?

Sep 9, 2009

Is it more common to use a function for program utilities or a static method?

[Code]...

View 9 Replies

Actionscript 3.0 :: Static Function And AddChild?

Jul 30, 2009

I have some problems working with "static function"For example:

Code: Select all   public static var someText:TextField = new TextField(); 
public static var FORMAT:TextFormat = new TextFormat("Arial", 12, 0x000000);
public static function myText():void

[code].....

View 8 Replies

ActionScript 3.0 :: Static Class To Component?

Aug 26, 2010

i created One Static Class. This class used to Trim, TrimFront, TrimBack, Replace in string.How can i convert this class to component?

View 2 Replies

Actionscript 3 :: Get All Static Variables In A Class?

Mar 17, 2011

I have this ObjectType class which is a class to help me do something like this:

object.type = ObjectType.TWO
//ObjectType.as
package

[Code].....

View 4 Replies

Flash :: DispatchEvent In Static Class - AS3

Jan 6, 2012

I can't use dispatchEvent in my static class, I was wondering if anyone knew how I can achieve similar functionality or if it's possible at all to call dispatchEvent from my static class? I basically want to inform my action script code in my flash file when functionality in my static class is complete.

View 4 Replies

ActionScript 3.0 :: Creating A Static Class?

Jul 14, 2009

I am trying to create a class out of some code senocular wrote on another forum. The code controls the changing of a display object from one color to another. It's called InterpolateColor.I have managed to create a class out of the original code but I am trying to make the class static so that I don't have to create an instance of it in my controller class... I just want to access it by importing it at the top and then saying something like ActionScript Code:InterpolateColor.interpolate( _myMC, 0xFFFFFF );The problem, I keep getting errors when I try and change the class initialize line to ActionScript Code:static public class InterpolateColorWhat have I done wrong in my translation to a class that is preventing me from accessing this in a static way Here's the whole class:

ActionScript Code:
package com.bee.utils
{

[code].....

View 2 Replies

ActionScript 3.0 :: How To Create A Static Class

Oct 17, 2009

I need to created a static AS3 class to pass variables between modules/ views. For some reason I don't see how to do this in my book or on Adobe. I want a class of "get" and "set" functions.

View 9 Replies







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