Games Achievements My Kong Sign In

Comments for Shootorial #3

« Back to Shootorial #3

Larmus

Jan. 01, 2011

Under rating threshold (show) Kool!

+ - !

(1)

Rich112

Dec. 29, 2010

Under rating threshold (show) this is the most amazing free flash lessons that i could find anywhere thanks 5/5

+ - !

(1)

newbie232

Dec. 22, 2010

Under rating threshold (show)

+ - !

(-9)

saras0saras

Dec. 20, 2010

Under rating threshold (show)

+ - !

(-3)

saras0saras

Dec. 20, 2010

Under rating threshold (show)

+ - !

(-4)

oscarzombiekill

Dec. 18, 2010

Under rating threshold (show) my ship wouldnt move for some reason and iput the code exactly right...

+ - !

(0)

Pataway

Dec. 06, 2010

Under rating threshold (show) HELP PLEASE My ship has a rectangular white border so that is appears above the background image and makes it look bad. Sorry to post again but I forget to mention to message me if you have the solution

+ - !

(0)

Pataway

Dec. 06, 2010

Under rating threshold (show) HELP PLEASE My ship has a rectangular white border so that is appears above the background image and makes it look bad

+ - !

(-2)

Mattistrees

Dec. 02, 2010

Under rating threshold (show) I have a question, how do you script so the ship doesn't leave the boundaries? I know a tiny bit of C++ so i was thinking some kind of if loop like if(_x=0) {velocity == 0}. Im a little rusty on the syntax but I was wondering if anybody new the actionscript for something like that.

+ - !

(4)

jako3047

Nov. 28, 2010

Under rating threshold (show) Wow, sure makes a mess when you accidentally declare "shootLimiter" in the missile script. A very nice tutorial indeed, as it shows the basics needed for experimenting. Too bad with the flash trial being 30 days only.

+ - !

(0)

calumpalumpa

Nov. 13, 2010

Under rating threshold (show) mine says there is no method with the name 'root'

+ - !

(0)

NotBobRamen

Nov. 10, 2010

Under rating threshold (show) Actionscript 3 is 900 times harder to make games with because there is not as much functionality with movie clips, that is why it is in actionscript 2

+ - !

(3)

Fultoa

Nov. 03, 2010

Under rating threshold (show) Ok, I have all the code right, and there are no compiler errors, but when I press space, nothing happens, any help on this?

+ - !

(2)

hastingsfc12

Oct. 27, 2010

Under rating threshold (show) ok i spelt shootLimiter wrong now i need to sort out the 30 a sec thingy

+ - !

(0)

hastingsfc12

Oct. 27, 2010

Under rating threshold (show) kk same prob as Kauari now :D

+ - !

(0)

hastingsfc12

Oct. 27, 2010

Under rating threshold (show) please help i have made the missile etc blah blah blah done all the coding but when i test it and press space nothing happens please help

+ - !

(0)

jajaja99

Oct. 23, 2010

Under rating threshold (show)

+ - !

(-15)

hamx

Oct. 21, 2010

Under rating threshold (show) idk how to edit lines on CS5, i meant i do, but they just get longer, must not thicker, or even how to select its tickness, i did it with primitive rectagle tool but i doubt it is the same

+ - !

(-1)

Karuari

Oct. 15, 2010

Under rating threshold (show) My missiles do come out from the tip of my ship but they wont move and my missile class coding is exactly the same as in the picture, what am i doing wrong??? Help me!

+ - !

(0)

Nibri

Oct. 13, 2010

Under rating threshold (show) I keep getting this error. D:\Documents and Settings\Owner\My Documents\Flash\Tutorials\Missle.as, Line 1 The class 'Missile' needs to be defined in a file whose relative path is 'Missile.as'. I've copied and pasted the code directly from the tutorial. It should be working. I'm only on step 4 or 5 and I'm getting this error. Pressing Space will not shoot missles at all. Help?

+ - !

(3)

Olimar72

Oct. 13, 2010

Under rating threshold (show) I'm on page 7 where it says to test our script. I get 2 errors: This statement is not permitted in a class definition. if( Key.isDown(Key.SPACE) ) A class's instance variables may only be initialized to compile-time constant expressions. var missile = _root.attachMovie( "Missile" , "Missile" + _root.getNextHighestDepth() , _root.getNextHighestDepth() ); Please help!!!! I'm using Flash MX. Please send me a shout if you think you know what to do.

+ - !

(-1)

EdoMan

Oct. 09, 2010

Under rating threshold (show)

+ - !

(-21)

Personnel

Oct. 06, 2010

Under rating threshold (show) 5/5 great tut! (no srsly)

+ - !

(31)

Personnel

Oct. 06, 2010

Under rating threshold (show)

+ - !

(-14)

legorlan

Oct. 06, 2010

Under rating threshold (show) Guys... don't attack the tutorial... it's a brilliant resource and saves many hours work learning the basics of flash, oh and @Nathaniel100 yes it does, because that program uses as2.0... kthxbai

+ - !

(4)

Nathaniel100

Oct. 02, 2010

Under rating threshold (show) do these tuts work in macromedia flash professional 8?

+ - !

(-1)

bestur1

Sep. 24, 2010

Under rating threshold (show)

+ - !

(-8)

rosslyn568

Sep. 23, 2010

Under rating threshold (show) check out my shooturial inspired game at http://www.kongregate.com/games/rosslyn568/planet-defender

+ - !

(0)

giamps

Sep. 10, 2010

Under rating threshold (show) Fantastic tutorial. Only one error in the top "you set theline width to 6 pixel , the width to 8" may be is height..

+ - !

(4)

NoInfluence

Sep. 07, 2010

Under rating threshold (show) I mostly program in c++, java, etc, worked with directx and such, this is a cool intro to flash

+ - !

(2)

Supersnail200

Sep. 05, 2010

Under rating threshold (show) Uh...Faeh: http://www.kongregate.com/games/Kongregate/shootorial-2

+ - !

(1)

KD40

Aug. 31, 2010

Under rating threshold (show) sooo i added this code and am currently at Page 7 of this shootorial, but the bullets do not seem to work? any ideas? class Ship extends MovieClip { var velocity; function onLoad() { velocity = 10; } function onEnterFrame() { if( Key.isDown(Key.DOWN) ) { _y += velocity; } if( Key.isDown(Key.UP) ) { _y -= velocity; } if( Key.isDown(Key.RIGHT) ) { _x += velocity; } if( Key.isDown(Key.LEFT) ) { _x -= velocity; } if( Key.isDown(Key.SPACE) ) { var missile = _root.attachMovie( "Missile" , "Missile" + _root.getNextHighestDepth(), _root.getNextHighestDepth() ); missile._x = _x + 50; missile._y = _y + 2; } } }

+ - !

(2)

partymaker

Aug. 31, 2010

Under rating threshold (show) I dont think this thing works with AS3. Look for Shootorial: ActionScript 3.0

+ - !

(10)

Faeh

Aug. 25, 2010

Under rating threshold (show) Trying to find the background tutorial. it doesn't exist.

+ - !

(0)

12sea21

Aug. 24, 2010

Under rating threshold (show) Important Note!: The higher your "shootLimiter > x" 'x' is, the slower the bullets will be released (the more frames it will have between each bullets).

+ - !

(0)

12sea21

Aug. 23, 2010

Under rating threshold (show) you cant shoot when moving diagonally (Down, left right and up left)

+ - !

(0)

Sparticus117

Aug. 21, 2010

Under rating threshold (show) Would this still work with CS5? Cause I'm stuck on the missiles.

+ - !

(2)

Dyrilo

Aug. 21, 2010

Under rating threshold (show) ok, not what i looked for, but i hope i can use the code to experiment and play around. Right now im mixing frameactons and movie clips. i hope this works

+ - !

(0)

Glugnar

Aug. 13, 2010

Under rating threshold (show) @aquspal it not a game at all so if u dont like this cause its not a game look at the front page instead of coming here and complaining its not a game when it has the word TUTORIAL in it......unless you dont know what that is...in wich case goto a doctor/therapist

+ - !

(43)

unknownbyothers

Aug. 12, 2010

Under rating threshold (show) To the people who made their missiles but can't get them to shoot, did you add the symbol directly on the ship animation? I had the same problem because I didn't follow instructions and made a separate .fla for the missile.

+ - !

(1)

sethia003

Aug. 10, 2010

Under rating threshold (show) I think as a game it is okay But as a tutorial is is awesome! (For beginners like me)

+ - !

(1)

ROCKINGEMO

Aug. 09, 2010

Under rating threshold (show) im using flash cs5 and the missiles wont fly off can anyone help

+ - !

(1)

bonesaw

Aug. 01, 2010

Under rating threshold (show) Strange, I couldn't fire missiles after adding the shoot limiter. Couldn't figure out what was wrong because my code was the same as the screen shot. After playing with the code a bit I changed &&shootLimiter>8 to &&shootLimiter>=8 and it worked. Anyone know if this is related to the fact that I am using CS5?

+ - !

(1)

Kegso

Jul. 28, 2010

Under rating threshold (show) @jrvboffin dude ever heard of ENTER ?

+ - !

(1)

MonsterDemond

Jul. 22, 2010

Under rating threshold (show) If the missile doesn't move like its frozen then just go on to the next step it helped me.

+ - !

(1)

Personnel

Jul. 20, 2010

Under rating threshold (show) if the missile isnt showing up, make sure the missile linkage is the same for the ship shooting the missile and the actual missile movie clip. if it isnt moving, make sure the missile class has the same name as the class under the missile movie clip's class

+ - !

(1)

Personnel

Jul. 20, 2010

Under rating threshold (show) :D using these tutorials, when i started this one, i was able to get the ship to stay in the game!

+ - !

(0)

coporalbiscuits

Jul. 18, 2010

Under rating threshold (show) hmmm...the missiles just arent moving. they show up at the right place and when i press space bar but they dont move

+ - !

(1)

benjabby

Jul. 18, 2010

Under rating threshold (show) i really dont get why people are insulting this thing. it is there best tutorial out there. mabye your game only sucks because you suck at flash. i have learned so much for this tutorial. and if your having problems. Figure it out yourself. the code here is correct. youve obvouosly done somthing wrong. thanx for the tutorial :)

+ - !

(172)

Dracado

Jul. 16, 2010

Under rating threshold (show) Nah, I just fixed the "Missile could not be located" issue with a lot easier way. Turns out in the previous Shootorial it says "Make sure ALL of your files are saved in the same folder." I saved them in different ones, causing an error. I fixed it! :D

+ - !

(0)

  • add a comment
Developers Players Support YouTube TikTok X (Twitter) LinkedIn
Join the conversation Join Discord
Terms Privacy Code of Conduct
© 2024 Kongregate