Actionscript 3 :: Dynamically Draw Circle Preloader Error 1061 When In Document Class
Oct 31, 2011
how to make a dynamic unfilled and filled circle. that will take input from a slider to dertermine how much of the circle is drawn. I wanted to use this for a preloader. Unlike the author I would like to use it inside of a document class. I am getting 1061: Call to a possibly undefined method createEmptyMovieClip through a reference with static type document. and 1120: Access of undefined property circ1. The second is caused from the first. How would I get this to work in my document class?
//original code
// x: circles center x, y: circles center y
// a1: first angle, a2: angle to draw to, r: radius
// dir: direction; 1 for clockwise -1 for counter clockwise
[Code].....
View 1 Replies
Similar Posts:
Jan 24, 2011
I have written a code that shows no errors when checked however I get an error when the movie is tested: message:
[Code]...
View 2 Replies
Mar 13, 2009
I have buils a flash movie using a document class, all works fine. When I load the movie using a preloader all reference to the stage as in stage.scaleMode = StageScaleMode.NO_SCALE; or stage.stageHeight throws a TypeError: Error #1009: I think i undrestand the problem, I am no longer accessing the stage properties. How do i access stage properties from the document class once loaded into the prelaoder?
[Code]....
View 3 Replies
Aug 24, 2009
I have a requirement wherien a semi circle has to be drawn. The circle radius can be chosen/varied by the user. How can i do it dynamicaly using action script.
View 1 Replies
Aug 5, 2010
I've a 1061 problem with a custom class. My class is named lingua here the code: [URL] I've imported it in my main class but when i delcare a variable like this:
Code: var a:String = lingua.getLang(); It gives me a 1061 error that says to me "call to a possibly undefinited method getLang(); Here the main: [URL] The problem stays in the function bottoniLingua at line 155. In fact i've commented the code. but i need those lines because i use them to check the language.
View 4 Replies
Aug 5, 2010
My class is named lingua here the code: http:[url]....I've imported it in my main class but when i delcare a variable like this:
Code:
var a:String = lingua.getLang();
It gives me a 1061 error that says to me "call to a possibly undefinited method getLang();
Here the main: http:[url]....The problem stays in the function bottoniLingua at line 155. In fact i've commented the code. but i need those lines because i use them to check the language.
View 2 Replies
Mar 12, 2009
I've created a button under the SimpleButton class named button1 in Flash CS4. I've set button1 so it exports to AS3. I keep getting an Error 1061 at line 3 of which I have no clue what I'm doing wrong:
Code:
1 import flash.events.MouseEvent;
2
3 button1.addEventListener(MouseEvent.MOUSE_OUT, link1);
4
5 function link1(MouseEvent)
6 {
7var one:URLRequest = new URLRequest("[URL)");
8navigateToURL(one, "_self");
9 }
Error 1061: call to a possibly undefined method addEventListener through a reference with static type Class.
View 3 Replies
Oct 20, 2009
I want to draw a simple circle behind my class both center aligned, but I'm getting problems with the coordenates of my class/movieclip.Here is my class.
public class SM extends MovieClip {
public var auxx:Number;
public var auxy:Number;[code].....
I think that my class/movieclip isn't at (100,50) because when I manually substitute 'auxx' and 'auxy' in drawCircle for 100 and 50, still not ok.
View 7 Replies
Nov 10, 2011
Im getting an error whilst trying to add an event listener to a class of a Button on my stage.
1061: Call to a possibly undefined method addEventListener through a reference with static type Class.
On my stage i have a Button with the instance name stopBtn, this is also exported to an actionscript class called classes.stopBtn (stopBtn.as in a folder called 'classes'). The button is on the first keyframe in the main timeline, in a layer with other buttons on that layer
[Code]...
View 2 Replies
Jan 2, 2010
Error 1061 Call to a possible undefined method addEventListener through reference with static type Class
source:buttonsMenu.addEventListener(Event.ENTER_FRAME, moveMenu);
View 3 Replies
Jul 13, 2010
I got this Error : 1061: Call to a possibly undefined method addChild through a reference with static type Class.
what I'm trying to do :I have create a new class called Graph and make it extends Sprite and add a scroolpane to my stage and make an empty movie clip called content_mc and make the source of the scrollpane equals to content_mc
in the first frame i wrote this code
import Graph;
var graph:Graph = new Graph();content_mc.addChild(graph);
View 4 Replies
Aug 24, 2009
I`m working on a app that you can draw lines.....like circles, rectangles... my problem is when a user draw a circle for example....i wanna be able to paint (change color) inside of this circle. I`ve tried working on Shapes with cacheAsBitmap = true and Bitmaps with BitmapData but it doesn`t seens to work.
View 4 Replies
Nov 1, 2011
I have built a basic preloader that runs in my document class. I'm having trouble with it.I'm guessing its due to what a class can and can not access from the stage?theres 2 problems. the first is that I cant change the keyframe the stage is on from the class. the second is im getting an error 1009 if I comment that out.
package
{
import flash.display.MovieClip
[code]........
View 1 Replies
Jul 15, 2009
I am making a website where one main swf loads several other swf components into it, and the first step is for the loadbar swf to be loaded in.
Code:
package{
import flash.display.MovieClip;
import flash.events.*;
import flash.display.Loader;
import flash.net.URLRequest;
public class MainClass extends MovieClip {
[Code] .....
I am getting the following errors:
Location:
MainClass.as, Line 3
Description:
1046: Type was not found or was not a compile-time constant: loadBar.
Source:
import flash.display.MovieClip;
Location:
MainClass.as, Line 13
Description:
1120: Access of undefined property loadbar.
Source:
loadbar.contentLoaderInfo.addEventListener(Event.C OMPLETE, addLoadBar);
loadBar_mc is an empty movie clip on the main.fla stage which I am using just to position the loadbar.
View 1 Replies
Oct 30, 2011
I have created 1,5mb swf file and I need preloader for it. I don't have any timeline code in it. All written in OOP, based on document class. I grabbed a preloader from my previous projects but this one doesn't work. The output is: "TypeError: Error #1009: Cannot access a property or method of a null object reference at myDocumentClass()"Basically I want to load large swf in my preloader swf or whatever will work. I tried add loaderInfo to my document class but complete event triggered only when everything is loaded, and nothing appear before that. Just a blank screen.
View 15 Replies
Feb 9, 2010
I am using flex builder 3.2, Action Script 3 and develop for Flash Player 10 and am quite new to it. when I call a method of a self defined class, I get the 1061 error (not defined). But the class and the method exist and are public, so what the hell am I doing wrong? Flash Builder is even offering me this method in the auto-completion, so at least the builder knows it... I have already tried cleaning the project (as this is the common source of strange errors when working with java/eclipse),
edit: solved... The problem was that a package had the same name as the variable I used for the class. Very strange error message, thumbs down for this .
View 0 Replies
Oct 13, 2010
I'm running into an instance where I am trying to load a file 'main.swf' using the Loader class and the content of the 'evt.currentTarget.content' points to '[ object Main__Preloader__ ]'. When attemting to trace the content of the loader, I would expect the trace would show similar to '[object Main ]' since the document class for the main.swf is 'Main'. In Safari I can get the file to load and play properly (admitting through a work around) however, on Firefox for mac all that displays is some sort of 'preloader' (which I can assure you I did not create) which looks like so:
Here's the animated sequence:
oooooooooo
I will mention I am using CS5 on a mac and this file works fine when published from CS4 to FP9. I will also mention that the main.swf does contain imported assets from a RSL.
View 5 Replies
Feb 28, 2011
public class Framework extends MovieClip
{
var _loadingSystem:LoadingSystem;
[code].....
View 2 Replies
Sep 12, 2011
I am using AS 3 Flash CS4, WIndows XP SP3. I am unable to use the Mouse.hide(); method in many of my scripts. If I add Mouse.hide() to a preexisting script, I get the following error; line1 1061: Call to a possibly undefined method hide through a reference with static type Class. If I add Mouse.hide():void; to a preexisting script, I get the following error: line1 Label must be a simple identifier Once this has happened, if I then remove ALL lines of script from the file...but leave the Mouse.hide(); [or Mouse.hide():void;], and also remove all objects from the stage, when I run the file, I still get those same errors.
[CODE]...
View 3 Replies
Oct 20, 2010
siteLoader.as, Line 23 1061: Call to a possibly undefined method load through a reference with static type Loader.
[Code]....
View 2 Replies
Dec 22, 2010
in Flash CS3 I've this DocumentClass:
package { import flash.display.MovieClip; public class DocumentClass extends MovieClip {
public function DocumentClass() { trace("document class created"); } }}
This actually works, but I want to have the possibility to re-instance the DocumentClass (because I want to restart a game and the Main class is the DocumentClass).In the first frame I have:
import flash.events.MouseEvent;
btn.addEventListener(MouseEvent.MOUSE_DOWN, restart);function restart(evt:MouseEvent){ var d = new DocumentClass();}
But this code (I simplified my situation, but the result is the same) throws an error:
Error: Error #2136: The SWF file file:///E|/Documents%20and%20Settings/Pepper/My%20Documents/FlashDeve lopment/PepperGame.swf contains invalid data at DocumentClass/restart()/frame1()
What can I do to restart my game by calling the DocumentClass point of entry? Is this possibile?
View 4 Replies
Oct 11, 2011
I got a little class and all works fine. Then I add it in Document Class and puff, Error 1034 happens.
Error #1034: Type Coercion failed: cannot convert
flash.display::MovieClip@2be9dba1 to fl.text.TCMText.
at flash.display::Sprite/constructChildren()
at flash.display::Sprite()
at flash.display::MovieClip()
[Code]...
View 1 Replies
Dec 19, 2010
Message is 1024: Overriding a function that is not marked for override.
what does x and y represent for document class ? should I avoid to use x and y ?
View 2 Replies
Feb 25, 2011
I am working in Flash CS4 with AS3.
I have a TextPage.fla file that contains a dynamic text field (name: PageTitle) as an instance on the stage. In the document class (TextPage) I set the text of PageTitle according to some XML. This all works fine.
I have another fla file, SpecialTextPage.fla, and that also has the PageTitle dynamic text field on the stage.
I now try to have the SpecialTextPage document class inherit from Textpage:
public class SpecialTextPage extends TextPage
{
...
}
but I get a "1120: Access of undefined property PageTitle." error when trying to publish SpecialTextPage. The error location is given as TextPage.as
As a workaround I can just copy the whole TextPage.as file and add in the extra things I need in SpecialTextPage.as but I'd obviously prefer it if I could just extend it.
I got the feeling I am not quite understanding the relationship between flash's objects on the stage and the document class.
View 2 Replies
Aug 9, 2010
I got an error like "Incorrect number of arguments.. Expected 0." when I was trying to make an instance of a user-defined class that I've written in the document class of my project.Here's the line in my document class:private var myNotice:myNoticeClass = new myNoticeClass(this);An untyped parameter is supposed to be the only argument to the constructor method of class myNoticeClass and the constructor is something like this
public function myNoticeClass(ref:*)
{ ......
}
[code].....
View 7 Replies
Aug 29, 2007
Well the shiny new app is now 830K and needs to be preloaded. Simple eh? I've got a preloader that works nicely but I've been trying all day to find a reasonable way to load a swf that was compiled as a document class. My solution was to make a bare bones swf that would preload my main app swf:
[Code]....
View 6 Replies
Dec 14, 2010
I am dispatching an event from one document class and listening for it via another document class.My code in class A.
Code:
this.dispatchEvent(new MYEvent(MyEvent.APERTURE_DONE));
trace("Dispatching APERTURE_DONE");
my code in class B.
Code:
addEventListener(MyEvent.APERTURE_DONE, onDoorsOpen,true);
trace("Lisetning for APERTURE_DONE");
[code]....
My listener is registering before the event is dispatched, based on my output window, however I never get the "Open Doors" trace statement to fire.
View 2 Replies
Nov 25, 2011
coder dudes I need help on some actionscript 3. Im trying to move a piece of code from the timeline into the document class. Here is the timeline code:
import Memory.MemoryGame;
// Add memory game
var memoryGame:MemoryGame = new MemoryGame(this, "settings.xml");
Here is my attempt at moving it into the Document class:
[Code]...
View 17 Replies
May 7, 2011
I have a FLA (say Main.FLA) document class with a child MovieClip on the stage: into the child MovieClip I load other swf files: each of the files contains its own Document Class (every swf is a somewhat independent application, say quizzes and so on).For some reason I must use the Main document class to store data (scores or so) from the child swfs loaded into the Main swf. HOW do I reference the Main class? I can't find a way.[code]and dispatch an Event this way from the loaded swf document class to the Main class:[code]Now, first of all I don't know if this could even work. Secondly, I tried to make it work by adding an event listener to my Main class but id did not work.
View 9 Replies
Feb 11, 2010
I'm trying to make a slide-show that adjusts to the width or height of the stage, and eventually, of the web browser window. I was able to load and resize a picture by writing code on the timeline, but I got the Error #1009 (Cannot access a property or method of a null object reference) when I put this slide show into another movie clip loader (which chooses between different swf pages of the website, with the purpose of keeping the swf file sizes down). By the way, my "slide-show" loads the picture fine. When I use the movie clip loader to load this "slide-show" it works too. Only when I use the Flash Player to open it, it gives me the Error 1009. I looked around on actionscript.org, and everyone seems to be recommending the folowing code (or something like it):[code]
I also ran into some information about document classes and I figure maybe I should be using document classes to make this stuff more modular and reusable. So I put my slide-show code into an .as file, importing all the flash.xxx.* classes, and put it in a package and class and constructor function... in the same directory as my swf file, and set it as the document class to a blank fla file. Then I tested it and all I got was a blank swf. This is without the Event.ADDED_TO_STAGE code. I guess I don't know how to get the document class thingy working either. So my question is, can someone tell me how I can change my slide-show code into a working document class without the Error 1009?r?[code]
View 1 Replies