ActionScript 3.0 :: Error Accessing Function After HitTest

Oct 4, 2010

I've been using asGamer's excellent set of game design tutorials to put together a basic 'ship and enemies' shoot 'em style game - my first proper venture into using AS3 and external class files - and I've hit a problem with executing hit test results. To explain: The game uses Engine (the document class), Ship and Enemy classes. Enemies (new instances of the Enemy class) are added to the stage in the Engine class, where they are also stored in an array, enemyList. The Ship fires a Laser, and the Laser class is where we test for a hit on Enemies.

Now, in asGamer's original version he uses the hitTestObject to test for hits, and if a hit is registered, this line
PHP Code:
Engine.enemyList[i].takeHit();
Calls a function in the Enemy class to remove the relevany clip. However, as the hitTestObject includes the bounding box of a clip in its hit test, I decided to use Corey O'Neil's Collision Detection Kit for greater accuracy. The CDK CollisionList class returns an array, the each element of which is a clip with which the target object has collided.

The problem this presents is that rather than using
PHP Code:
Engine.enemyList[i].takeHit();
To deal with a collision, I now use
PHP Code:
collisions[j].object1.takeHit();
Where 'collisions[n].object1' are the movie clips hit.

When I test the game it throws an error
PHP Code:
ReferenceError: Error #1069: Property takeHit not found on com.asgamer.basics1.Laser and there is no default value.
at com.asgamer.basics1::Laser/loop()
Although the movie does not break, and continues to remove destroyed enemies as if there was no problem.

What the problem is with calling the takeHit function via the collisions array rather than the Engine.enemyList array? And perhaps suggest a way to prevent it? I should point out that the 'laser' is in fact a blast that can take out any number of enemies intersecting with the blast radius, which is why I'm using CollisionList to detect hits.

View 6 Replies


Similar Posts:


ActionScript 3.0 :: Error Accessing A Static Function

Nov 22, 2011

i have two classes , and i need to call static function from one class to the other. also when i call this static function i need access the local variable of that class. Class Test2: Quote:

[Code]...

when i run these class i get the following error Test2.as(18): col: 10 Error: Access of undefined property testVar. this function works if i change [testVar] to a static variable , is there any other way to make this function work other than making the [testVar] variable to static?

View 1 Replies

ActionScript 3.0 :: 1009 Error - Accessing Parent Function From Child

Oct 5, 2010

Its a bit strange really, I have a Main class that has 2 children, Child1 has a variable goldCount that needs to be parsed to Child2 via the Main class (directly doesn't work either so far) Child1 has this function:

Code:
public function Getgoldcount():Number {
return goldCount;
}

[Code]....

View 2 Replies

ActionScript 3.0 :: Accessing An Instance Of Parent Movieclip For HitTest?

Dec 13, 2009

I have a stage with instances of bauble_mcs on it that are attached by the document class of the main timeline (can someone tell me what the right term is here? I don't know what I call the main time line in AS3).I then have instances of snow_mc attached by the same class. Inside the snow_mc I want to test to see if it is hitting any bauble_mcs but I don't know how!

inside snow_mc I am trying:

PHP Code:

if(this.hitTestObject(this.parent.bauble_mc)){
}

to which flash says:

1119: Access of possibly undefined property bauble_mc through a reference with static type flash.displayisplayObjectContainer.

View 1 Replies

ActionScript 3.0 :: HitTest Works But Also Returns Error

Sep 5, 2009

Perhaps I should leave well enough alone, but it bugs me that my hitTest gives me an error message even though it seems to work as intended. I have two movieClips running side by side. The second clip, the hitTest object is actually in an array that I keep pushing every second.

[Code]...
 
I have tried to trace cars[i].name and it returns "instance XXX" instead of what I would have expected, which would have been something like cars1, cars2, etc... If that is creating the error, I don't know how to fix it. I have thought also that perhaps the array itself is being referenced, but again I wouldn't know how to change it.

View 11 Replies

HitTest Function Not Working With Attachmovie?

Oct 5, 2009

I can't seem to get the hitTest to work for my script shown below. I have tested using movieclips created on stage during design time and made to collide during run-time. hitTest works fine in this situation.
 
But if I use the attachmovie command and create a movie on stage during run-time, that clip cannot hitTest with other movieclips. The hitTest simply doesn't work.

The script below is basically, to create instances of enemymc, and it will fall vertically, hitting a movieclip target_mc which is placed during design-time.

var enemyTime:Number = 0;
var enemyLimit:Number = 20;
onEnterFrame = function()
{

[Code].....

View 3 Replies

ActionScript 2.0 :: Using HitTest Function With Several Objects?

Apr 16, 2007

I want to make a hitTest functions that detects if a object is hitting any of several objects. Is there a way to do this? I thought I could do this with a array and for loop. But I think that will use to much CPU when this is loaded every frame. Is there any other way?

View 1 Replies

ActionScript 3.0 :: Flex Bitmapdata Hittest Bug (Error #2005)?

Oct 11, 2010

sometimes I get this extremely nasty bug:

Code:
ArgumentError: Error #2005: Parameter 0 is of the incorrect type. Should be type BitmapData.

[code]....

View 3 Replies

ActionScript 3.0 :: Flex Bitmapdata Hittest Bug (Error #2005)

Feb 22, 2012

sometimes I get this extremely nasty bug:

Code:
ArgumentError: Error #2005: Parameter 0 is of the incorrect type. Should be type BitmapData.
at flash.display::BitmapData/hitTest()

This is the line where I get this error:

Code: if (player.bitmapData.hitTest(player.point, 255, tempUpgrade.bitmapData, tempUpgrade.point, 255))

I have absolutely no idea what went wrong. My object (tempUpgrade) is generated inside of a manager-class. There I can define the look of it and it gets cached. The image I use is a spritesheet (png) that's embed inside of my library-class. The spritesheet is splitted into appropriate pics via a CacheTileSheet-class.After that process they get thrown inside of an array because I need the bitmapData for pixel-perfect collision detection. Of course this is not the complete code so if someone needs more please let me know.

[Code]...

View 6 Replies

ActionScript 1/2 :: Use The HitTest Function To Check For Collisions

Apr 17, 2009

I know you use the HitTest function to check for collisions, but how would I do that the moment a movie clip is dynamically created. So the moment the clip is created it would check if it is overlapping another clip. Also, does it matter if the clips are at different depths?

View 1 Replies

ActionScript 2.0 :: Make E To HitTest F To Get Something Else Function But They Won't Work?

Sep 6, 2011

Lets say that I got movieclips A,B,C,D in my scene and E,F which only come into scene when A hitTest B and C hitTest D.I was able to make the A+B and C+D hitTest functioning properly. But when E,F came into the scene, I tried to make E to hitTest F to get something else function but they won't work.# note that there is some short animation before E & F come into scene.I am pretty sure all the instance names are named properly.

View 5 Replies

ActionScript 2.0 :: HitTest Function Only Working On Y Axis

Oct 14, 2003

Go to [URL]. My hitTest function only works on the y-axis. This is the code....
onClipEvent (enterFrame) {
// _root.speed = speed;
if (Key.isDown(Key.UP)) {
speed += 3;
} if (Key.isDown(Key.DOWN)) {

View 1 Replies

ActionScript 2.0 :: HitTest Function Only Works On Y Axis

Oct 14, 2003

My hitTest function only works on the y-axis
This is the code....
onClipEvent (enterFrame) {
// _root.speed = speed;
if (Key.isDown(Key.UP)) {
speed += 3;
[Code] .....

View 1 Replies

ActionScript 2.0 :: Get The HitTest() Function To Test If A Certain Symbol Is Hitting Another?

Mar 31, 2010

How do i get the hitTest() function to test if a certain symbol is hitting another symbol, but, only if drawn parts of the symbol are touching, not thier outer bounds.

View 1 Replies

ActionScript 2.0 :: [AS2] Looping Function - Using HitTest(); With Movieclips Within Arrays

Apr 28, 2007

[Code]...

NOTE: The following text is my problem and observations, if you afraid to read it all, my problem is easily guessable within the code go ahead and crack at it without my explanation :-p I'm having some trouble with using hitTest(); with movieclips within arrays. I wanted to build a function that checks the hitTest of Movieclips in arrays because the array is dynamic and it would run more efficient and faster this way.

As you may notice it doesn't check just the movieClip in the array, but a movieclip 2 scopes within it. I feel that this is my problem. I noticed in my debugger that that mc doesn't show up, but i put an onLoad event on it to trace its existence when loaded and it shows up fine. I wonder what I'm doing wrong.

View 2 Replies

ActionScript 2.0 :: Create HitTest Function That When Two Mcs From MovieC Array Hits Eachother

Mar 30, 2010

I want ask u how can i create hitTest function that when two mcs from movieC array hits eachother they can change their colour. Both of them.

View 3 Replies

ActionScript 2.0 :: Activating The HitTest - Passing The Objects Name As A Parameter Through A Global Function

Jun 16, 2004

I'm having troubles activating the HitTest, passing the objects name as a parameter through a global function. Let's say there is the following function on the main timeline:

[Code]...

View 3 Replies

Flex :: Security Error Accessing Url In It

Feb 15, 2011

I am very new to flex, i have created a simple login page in flex and created a webproject in Eclipse having a jsp page. i have put that jsp page in tomcat webapps. Now when i run an application of login from FlashBuilder it runs fine as i have given the ip e.g [url]... and passing it as a url in HttpService and it worked fine. but when i put my login.swf file in webapps same in that folder where that jsp resides and un e.g [url]... it displays the page but when i click on the login button it gives me with this error "Security error accessing url"

View 2 Replies

ActionScript 3.0 :: Error 1009# With Accessing?

Aug 22, 2011

Well I have a problem with accessing my components within a movieclip I've cooked up all the code for my gameplay to work fine, which it does, but when I add all of these components to within another movieclip and try and access them from there(using dot notation), they cease to work. It has a 1009# error also. The game components (e.g. players, background ect) are within the double player map.

[Code]...

View 6 Replies

ActionScript 3.0 :: Error With Accessing Dynamic Textfield

Apr 5, 2011

I have made a textfield i m trying to access that from my class but it shows error[code]...

View 3 Replies

ActionScript 3.0 :: Get Error: No Such Table When Accessing SQLite With AIR

Oct 14, 2011

[URL] I build the program in Flash Builder 4.0, the program created a database file 'data.db'. I can find the file: "C:Documents and SettingsOOiApplication DataSQLiteArticleLocal Storedata.db", and open it in SQLiteSpy, I can see the three tables with data....
  
I created an AIR program within Flash CS 5.5, and put the lines of code on the 1st frame:
 
import flash.data.SQLResult;
import flash.filesystem.File;
import flash.data.SQLConnection;

[code].....

View 3 Replies

Flex3 :: Security Error Accessing YouTube Api

Jul 28, 2011

[code]Now, the above code works fine for some people using our software while others are experiencing the following error ( in faultHandler() ):[code Again, the error happens to some people and not for others.Have I missed something? Would it be a machine / browser specific problem? As a sanity check the above code works with the same .swf file in chrome, ie, firefox and safari.I have read about the crossdomain.xml and don't think that is the issue as YouTube have that defined.Finally, all users (intranet app) are using IE and the same version of flash.I have been pulling my hair out the past 2 days and asking the question over and over again "Why is it only happening for some users and not for other users?"

View 2 Replies

Flex :: Web Services - Security Error Accessing URL

Sep 11, 2011

I had this error in a Flex Application that I couldn't figure out. Every time the app attempted to access the Web Service it returned the error Security Error Accessing URL.

View 1 Replies

ActionScript 3.0 :: Error Accessing Property Of Loaded Swf?

Oct 11, 2010

I am getting the following error when I importmy swf onto my main stage: TypeError: Error #1009: Cannot access a property or method of a null object reference.

at FtScrollBar/set useMouseWheel()
at ButtonsMenu_fla::buttonsScrollingMenu_1/ButtonsMenu_fla::__setProp_sb1_buttonsScrollingMen u_ScrollBarComponent_1()
at ButtonsMenu_fla::buttonsScrollingMenu_1$iinit()[code].....

On it's own the carousel works fine, it's only when I import it that it throws an error, all of the components within the carousel work fine (the images are highlighted on mouse over, the onclick code for the thumbs runs the right functions) it's just the scrolling that doesn't work.I've tried removing the references to stage from the loaded swf but I still get the same errors.I'm fairly new to flash but I'm finding the error messages to be fairly unhelpful at the best of times, I've attached the swf I'm trying to load in in a zip

View 1 Replies

ActionScript 3.0 :: Accessing Sub Function In A Class?

May 2, 2009

why can i access the first function in a class with

PHP Code:

import test.test
var test:test = new test();

but I cannot access the second or third function in the same manner? they seem to be seperte entities within the class definition.

can access

PHP Code:

public class NetStreamex {
public var connection:NetConnections = new NetConnections();
public function NetStreamex():void {
connection.createNetConnection("rtmp://localhost/test/1");

[Code].....

View 9 Replies

ActionScript 3.0 :: Accessing Variables From Outside A Function

Jul 25, 2011

[Code]....

I want to use the variable var_page3_title for dynamic text boxes in movie clips further on down the timeline. Of course I don't want to repeat this code for every textbox so my question is, how to I access the variables from the function loading();

View 2 Replies

Actionscript 3 :: Hack SWF By Accessing One Of Its Function

Mar 27, 2011

In my SWF, I have a function that automatically runs at a certain time.The user must not run that function or change a timer variable, so is he able to do it with some work ?

View 2 Replies

ActionScript 3.0 :: Accessing Variables Outside Function

Jun 23, 2010

I need to access the contents of a variable that is filled inside a function, but is declared outside the function.. [URL] says that if you declare the variable outside of the function the variable should be accessible even when its content is filled by a function. I have declared the imgs variable at the start, outside the function, as an array. After that the function retrieves a string from the URLLoader and splits that string into to the imgs array/variable.

[Code]....

View 2 Replies

ActionScript 3.0 :: Accessing Variables From Outside A Function?

Jul 25, 2011

I have this code on the main timeline:
var loader:URLLoader = new URLLoader();
loader.dataFormat = URLLoaderDataFormat.VARIABLES;
loader.addEventListener(Event.COMPLETE, loading);

[Code].....

I want to use the variable var_page3_title for dynamic text boxes in movie clips further on down the timeline. Of course I don't want to repeat this code for every textbox so my question is, how to I access the variables from the function loading();

View 5 Replies

ActionScript 3.0 :: Accessing A Combobox From Within A Function?

Dec 24, 2009

I have a combo box defined inside a function and want to access it from a function that is called on the OnChange event of the combo box.combo1.addEventListener(Event.CHANGE, chkAnswer);How do I access combo1 from function chkAnswer? In other words, what is the equivalent of this.value in as3?

View 1 Replies







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