This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2012-01-30 14:20:35

maxskywalker
Scratcher
Registered: 2008-01-27
Posts: 1000+

Can Anyone Help Me With This?

I'm working on an FPS-type flash game, and I'm getting compiler errors from my addChild area, I think.  Can anyone help me fix this?  It's linked to the stage.

Code:

package 
{
    import flash.display.MovieClip;
    import flash.events.Event;

    public class game extends MovieClip
    {

        public function game()
        {
            import flash.events.Event;
            import flash.display.MovieClip;

            stage.addEventListener(Event.ENTER_FRAME, tick);
            stage.addEventListener(Event.ENTER_FRAME, addShadow);
            //stage.addEventListener(Event.ENTER_FRAME, addNeoshadow);
            var timer:uint = 0;

            function tick(event:Event):void
            {
                timer +=  1 / 24;
            }

            function addShadow(event:Event):void
            {
                if (timer >= 4.8)
                {
                    if (rand(3) == 3)
                    {
                        addChild(enemy);
                    }
                }
            }

            function rand(limit:Number):Number
            {
                var randomNumber:Number = Math.floor(Math.random() * (limit + 1));
                return randomNumber;
            }
        }

    }

}

Please help, and thanks in advance!

Offline

 

#2 2012-01-31 10:05:54

maxskywalker
Scratcher
Registered: 2008-01-27
Posts: 1000+

Re: Can Anyone Help Me With This?

B•u•m•p

Offline

 

#3 2012-01-31 15:26:44

maxskywalker
Scratcher
Registered: 2008-01-27
Posts: 1000+

Re: Can Anyone Help Me With This?

Does anyone on this forum even KNOW Actionscript 3.0?

Offline

 

#4 2012-01-31 15:29:28

fruitmanninja
Scratcher
Registered: 2012-01-25
Posts: 500+

Re: Can Anyone Help Me With This?

maxskywalker wrote:

B•u•m•p

Cool!  big_smile

Offline

 

#5 2012-02-01 08:26:29

maxskywalker
Scratcher
Registered: 2008-01-27
Posts: 1000+

Re: Can Anyone Help Me With This?

fruitmanninja wrote:

maxskywalker wrote:

B•u•m•p

Cool!  big_smile

*facepalm*

Offline

 

#6 2012-02-01 09:52:23

Magnie
Scratcher
Registered: 2007-12-12
Posts: 1000+

Re: Can Anyone Help Me With This?

Could you post the error?

Offline

 

#7 2012-02-01 09:54:04

veggieman001
Scratcher
Registered: 2010-02-20
Posts: 1000+

Re: Can Anyone Help Me With This?

Don't know Actionscript, sorry  hmm
Wish I could help


Posts: 20000 - Show all posts

Offline

 

Board footer