You need a Grounds Gold Account to post on the NG BBS! If you don't have one, click here to sign up now! It's fast, free, and easy — and opens up tons of great NG features!

Author Search Results: 'Robot-Creations'

We found 411 matches.


<< < > >>

Viewing 1-30 of 411 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 91114

1.

None

Topic: Fullscreen

Posted: 06/04/08 11:30 AM

Forum: Flash

fscommand("fullscreen",true)


2.

None

Topic: Moving on round object?

Posted: 06/01/08 06:17 AM

Forum: Flash

Oh whazz yur prob? The rotation?
onEnterFrame = function(){
_root.mySprite._rotation += rotateVar //Change this var if you press different Keys
}


3.

None

Topic: lag in flash

Posted: 05/29/08 07:35 AM

Forum: Flash

Firefox is very slow. Do you use it? If yes, use IE.


4.

None

Topic: random postion within co-ordinates

Posted: 05/25/08 11:19 AM

Forum: Flash

I explained it with variables, too???


5.

None

Topic: random postion within co-ordinates

Posted: 05/25/08 09:23 AM

Forum: Flash

Whoops sorry:

q>p

_x = random(q-p)+p
_y = random(q-p)+p

Should be correct nao.


6.

None

Topic: random postion within co-ordinates

Posted: 05/25/08 09:21 AM

Forum: Flash

Using your example:

_x = random(450)+100
_y = random(150)+150

With vars "p" and "q":

q>p

_x = random(q-p)+q
_y = random(q+p)+q


7.

None

Topic: Dragging an MC slowly?

Posted: 05/18/08 09:19 AM

Forum: Flash

onEnterFrame = function(){
if(_root.myMC._x < _root._xmouse){
_root.myMC._x+= (_root._xmouse-_root.myMC._x)/6
}
if(_root.myMC._x > _root._xmouse){
_root.myMC._x-= (_root.myMC._x-_root._xmouse)/6
}
if(_root.myMC._y < _root._ymouse){
_root.myMC._y+= (_root._ymouse-_root.myMC._y)/6
}
if(_root.myMC._y > _root._ymouse){
_root.myMC._y-= (_root.myMC._y-_root._ymouse)/6
}
}

Change "6" to whatever you want.


8.

None

Topic: Reducing the size of my swf.

Posted: 05/15/08 01:46 PM

Forum: Flash

Also, if you use many JPG-files, go to the image properties and switch the Quality to medium.


9.

None

Topic: Special effects help

Posted: 05/06/08 11:33 AM

Forum: Flash

I would really do that in Photoshop.


10.

None

Topic: What if Windows

Posted: 05/06/08 11:18 AM

Forum: Flash

Yeah, I ever wanted to drag a triangle around...
Yeah, I love sarcasm.


11.

None

Topic: blurred text

Posted: 05/05/08 12:06 PM

Forum: Flash

Embed it.


12.

None

Topic: new intro

Posted: 05/05/08 09:43 AM

Forum: Flash

Higher FPS, slow the animation(s) down at the end.


13.

None

Topic: Quality sig picture?

Posted: 05/04/08 02:31 PM

Forum: Flash

Lol?
Wjere are pixels? And if you go too 100, and it isn't tip-top, your drawing is crap.


14.

None

Topic: Need A Good Logo!!

Posted: 05/04/08 02:10 PM

Forum: Flash

Yeah, it does. I just tryed it out.


15.

None

Topic: Need A Good Logo!!

Posted: 05/04/08 01:38 PM

Forum: Flash

I could emphasize the "O", too, but that wouldn't make a great effect xDDDDDD


16.

None

Topic: Need A Good Logo!!

Posted: 05/04/08 01:34 PM

Forum: Flash

And, finally, 3D-like.

Need A Good Logo!!


17.

None

Topic: Need A Good Logo!!

Posted: 05/04/08 12:21 PM

Forum: Flash

w00t, version with "productions"

Need A Good Logo!!


18.

None

Topic: Need A Good Logo!!

Posted: 05/04/08 12:19 PM

Forum: Flash

w00t, a logo xD

Need A Good Logo!!


19.

None

Topic: as help

Posted: 05/04/08 12:09 PM

Forum: Flash

Erm, what? xDD Thats shapeflag, not a specific point??? xD


20.

None

Topic: as help

Posted: 05/04/08 09:04 AM

Forum: Flash

onEnterFrame = function(){
if(_root.char.hitTest(_root.star)){
_root.star.unloadMovie();
}
}

Should work, I didn't test it.


21.

None

Topic: What is wrong with this!?

Posted: 04/13/08 01:02 PM

Forum: Flash

You....... There was a virus in it Oo.


22.

None

Topic: Flash For Stupid me

Posted: 04/09/08 08:43 AM

Forum: Flash

Particle effects or just a gradient?


23.

None

Topic: help plz

Posted: 04/09/08 08:42 AM

Forum: Flash

At 4/9/08 08:09 AM, boburmum1 wrote: sorry, i said the wrong thing. what would be the actionscript for menu1. cause the text doeswn't turn to blue when i type it in. what should i do. and i have been reading the tutorials alot. i read at least 7 tutorials before i started the game.

Did you start flash?
=================

A RPG is one of the hardest-to-make game types. Start with simple things.


24.

None

Topic: please help me with blurring

Posted: 04/07/08 01:06 PM

Forum: Flash

Sometimes I wish to throw my head at the desk...


25.

None

Topic: i need AS help

Posted: 04/07/08 10:29 AM

Forum: Flash

Yeah, sorry. CHECK YOUR PM INBOX.
_root.attachMovie("bullet","bul",0)


26.

None

Topic: i need AS help

Posted: 04/07/08 10:24 AM

Forum: Flash

On the stage.


27.

None

Topic: i need AS help

Posted: 04/07/08 10:18 AM

Forum: Flash

Look and learn.

attachMovie() loads Movieclips from the library onto the stage.
Example:
Create the MC "bullet", delete it from the stage, don't delete it from the library. In the MC-Settings-Window activate "Export for ActionScript" and name it "bullet".
Then, code:

_root.attachMovie("bullet",0).
It will load it onto the stage. If you did this, I will tech you the rest. Do that now.


28.

None

Topic: i need AS help

Posted: 04/07/08 10:07 AM

Forum: Flash

Ah, that's really hard for a beginner, do you know the "attachMovie" function?


29.

None

Topic: Calling a group of MCs

Posted: 04/07/08 10:06 AM

Forum: Flash

var i = 1
onEnterFrame = function(){
if (_root["enemy"+i].hitTest(_root.deathObj )) {
trace("DIE")
}
i++
if(i>3){ //CHANGE "3" TO NUMBER OF ENEMIES!
i = 1
}
}

Just name the enemies "enemy1","enemy2" and "enemy3", if you need more, name them the same way and change the code.


30.

None

Topic: actionscript countdown problem

Posted: 04/07/08 09:52 AM

Forum: Flash

At 3/31/08 06:48 PM, MrJackle wrote: Didn't work

I included a picture

Lool, you're the first one who writes Codes on the stage with the text tool xD.
Open the AS Panel by pressing F9, and do what the poster above said- set the variables.


All times are Eastern Standard Time (GMT -5) | Current Time: 07:18 PM

<< < > >>

Viewing 1-30 of 411 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 91114