Newgrounds.com — Everything, By Everyone.

Checking login status…

USERNAME:

PASSWORD:

Logging in…

Logged in as:
.
Logging out…
Inbox My Account Log Out


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: 'Skribble-Style'

We found 65 matches.


<< < > >>

Viewing 31-60 of 65 matches. 1 | 2 | 3

31.

None

Topic: Actionscript codes here!

Posted: 08/06/04 09:32 PM

Forum: Flash

ok is but is ur MC instances name "dan" ? if ur not sure wot an instance name is ill explain it.....

an instance name is used to identify the current MC from others of MC's. You change ur objects instance name in the properties panel.


32.

None

Topic: Actionscript codes here!

Posted: 08/06/04 11:12 AM

Forum: Flash

At 8/6/04 07:10 AM, Stevemyster wrote: im getting pretty pissed off here. im pretty sure its my comp. or thats wat other ppl have been tellling me. neways, im trinyg to make a m.c. follow the m.c. u control around the screen, and when the following m.c. hits the player, to goto and play the next frame. but its just not working. can someone gimme sum help here?


onClipEvent (load) {
velocity = 5;
}
onClipEvent (enterFrame) {
if (_root.man._x>this._x) {
this._x += velocity;
} else {
if (_root.man._x<this._x) {
this._x -= velocity;
}if (this.hitTest(_root.man)) {
_root.gotoAndPlay(2);
}
}
}


there you go. just change "man" to ur instance name for u MC.


33.

None

Topic: Actionscript codes here!

Posted: 08/05/04 10:05 PM

Forum: Flash

Sumone should go through all the posts and document the code and release a document of it or sumthing. Im sure half the reason people dont search is coz they cant be bothered looking through 50% of crap.


34.

None

Topic: prog

Posted: 08/05/04 10:03 PM

Forum: Flash

i am starting out in lightwave and its realy simple to use and produces sum staggering results. check out lightwaves' homepage (newtek.com i think).

u wont regret pirat...... "buying" it. ^.^'


35.

None

Topic: Actionscript codes here!

Posted: 08/05/04 09:53 PM

Forum: Flash

GEEZ!. dont u people read anything? i think in all 140+ pages in this thread theres like 2 walking scripts per page!


36.

None

Topic: madness combat

Posted: 08/05/04 07:58 PM

Forum: General

At 8/5/04 07:57 PM, Ariscis wrote: so tell it to them, we dont really care.

HaHa, nicely said.


37.

None

Topic: ok quick gaming question

Posted: 08/05/04 07:56 PM

Forum: Flash

adding a speed variable isnt realy neccesary at this stage. its not like he'll be adding advanced code anytime soon. And when he dz, by then he would have figured to put a speed variable. ^.^


38.

None

Topic: ok quick gaming question

Posted: 08/05/04 07:45 PM

Forum: Flash

wow so much uneeded events:

onClipEvent(enterFrame){
if(Key.isDown(Key.RIGHT)){
this._x += 5; // walk right
}
if(Key.isDown(Key.LEFT)){
this._x -= 5; // walk left
}
if(Key.isDown(Key.UP)){
this._y -= 5; //walk up
}
if(Key.isDown(Key.DOWN)){
this._y += 5; // walk down
}
}


39.

None

Topic: Actionscript codes here!

Posted: 08/05/04 07:36 PM

Forum: Flash

well making an RPG with each frame containing part of a level would be orite if ur making a small RPG like franks adventure. But if u want to make sumthing bigger look into loading levels from the library with attachMovie. anyway....

ur code is wrong

onClipEvent (enterFrame) {
if (this.hitTest(_root.Robo)) {
gotoAndStop(3);
}
}

also check the ur instance name of ur "Robo" has a capital R and not a lower case r . Remember instances are case sensative.


40.

None

Topic: Actionscript codes here!

Posted: 08/05/04 01:24 PM

Forum: Flash

PunkerFish - u need to use Math.floor, Math.floor returns the floor of the number or expression specified in the parameter x. The floor is the closest integer that is less than or equal to the specified number or expression.

Example:
The following code returns a value of 12:

Math.floor(12.5);

My_own_madness - Look into the "sharedObject" feature.

ouiskipoiski - LoL man just look through the 140+ pages here and u will learn tons.

THE-KRAZYMAN - can u elaborate a little? wot do u mean randomly across the screen?

Newrad - u can have a custom rightclick menu but only in .exe flash movies.

as for the s+click code it would be sumthing like....

onClipEvent(mouseDown){
if(Key.isDown(83)){
//menu code
}
}


41.

None

Topic: Actionscript codes here!

Posted: 08/05/04 01:14 AM

Forum: Flash

i just assumed u wanted to move a character with it, but if u want it to do sumthing else just replace the " this._x" with woteva u want it to do.


42.

None

Topic: Actionscript codes here!

Posted: 08/05/04 01:11 AM

Forum: Flash

At 8/4/04 10:03 PM, Newrad wrote: um i really need help... i am working on a game and i was wondering what code to use to make the A or D button do a sertant thing like if(Key.isDown(Key._____)) for the A and D key also for the rightclick button. um if i dont explain it good enough talk to me on aim please!

no problem u have to use the corresponding ASCII code for the key. A=65 and D=68, so u would just add this to ur MC

onClipEvent (enterFrame) {
if (Key.isDown(68)) {
this._x += 10;
} else if (Key.isDown(65)) {
this._x -= 10;
}
}

hope that helped


43.

None

Topic: Submitting Info And Getting It.Help

Posted: 07/10/04 11:18 PM

Forum: Flash

try looking at www.flash-db.com they have and email thing for flash. also u wont be able to pull it off just in flash, u will need sum PHP/Perl/CGI as well.


44.

None

Topic: Making movie clip follow another

Posted: 06/20/04 02:44 AM

Forum: Flash

ah woopz didnt read ur post right :P

what do u mean in a straight path??


45.

None

Topic: Making movie clip follow another

Posted: 06/20/04 02:43 AM

Forum: Flash

attach this to the mc that will foloow ur guy::

onClipEvent (load) {
velocity = 2;
}
onClipEvent (enterFrame) {
if (_root.man._x>this._x) {
this._x += velocity;
} else {
if (_root.man._x<this._x) {
this._x -= velocity;
}
}
}

just name the thing to be followed "man"


46.

None

Topic: 2 frames, one scroll bar

Posted: 06/15/04 11:08 AM

Forum: Programming

If you choose not to use frames then put the navbar on every page in the exact same layout...

yah i know that but like ive tried using : _self, _root, _parent, _ , _blank on my navigation buttons and they all pop up a new window, and i want it to just keep the page and load a different page.


47.

None

Topic: Newground Artist showcase thread

Posted: 06/15/04 05:22 AM

Forum: Flash

teH Zombie. done in like 10-20minutes

[img]http://www.hostingeveryone.com/bigtree/zombie.jpg[/img]


48.

None

Topic: 2 frames, one scroll bar

Posted: 06/15/04 04:47 AM

Forum: Programming

well then how can i make my flash nav bar load the html page into the same browser (ie: not poping up a window with the link)


49.

None

Topic: 2 frames, one scroll bar

Posted: 06/15/04 03:29 AM

Forum: Programming

hey guys, wonder if u can help me out.

ive got 2 frames in my website right, one with my flash navigation and the other with my pages to be loaded into.

now when i load a page the scrollbar comes up but it only scrolls like the bottom 20cm, is it possible to scroll the navbar as well as the page, giving the effect of no frames???

i hope that mde sence

thanx in advance


50.

None

Topic: Anyone Want A Script?

Posted: 06/04/04 09:02 AM

Forum: Flash

oh, hahaha guess i should read the whole post next time ^.^


51.

None

Topic: Anyone Want A Script?

Posted: 06/04/04 05:31 AM

Forum: Flash

give us an example of ur AS skills. to see how good u are :D


52.

None

Topic: jazza here- writers for hire

Posted: 06/04/04 05:16 AM

Forum: Flash

post-apocolyptic action about a group of rebels that uprise against there robot oppressors.


53.

None

Topic: help with my site

Posted: 06/04/04 04:50 AM

Forum: Flash

ok, is there anyway to use this in flash, i hav no idea how to incorperate HTML into flash.

href="#" onClick="MM_openBrWindow('http://www.host.com/blah/flashmovie.swf','fallup'
,'width=400,height=300')"

??any help??


54.

None

Topic: help with my site

Posted: 06/03/04 06:02 PM

Forum: Flash

also what did u mean u couldnt use brackets? u were using them.


55.

None

Topic: help with my site

Posted: 06/03/04 05:57 PM

Forum: Flash

i need a script for flash. iznt that only for HTML??


56.

None

Topic: Barriers

Posted: 06/03/04 04:18 PM

Forum: Flash

what u need is sum hitTest, and its everywhere dude, EVERYWHERE. personaly i dont realy know much about hitTest.

but go to the games development section on flashkit.com and theres the longest thread ever on hitTest.

its called "The Elusive hitTest Explained" that should help you out.


57.

None

Topic: help with my site

Posted: 06/03/04 04:09 PM

Forum: Flash

hey man thanx for the site, unfortunately, thats not exactly wot im looking for. if i use that then i will have to place a different piece of html code for each swf file. wich would make the script hell long, there should be an easier way out there sumwhere.

thanx again dude


58.

None

Topic: What do you prefere in flash games

Posted: 06/03/04 03:30 PM

Forum: Flash

silverspeed im sure u were poking fun at him, lol but u actualy hav a good idea. use all types of gameplay. combine shootemup,adventure,rpg,strategy, platform and others into one game but different sections.


59.

None

Topic: help with my site

Posted: 06/03/04 03:22 PM

Forum: Flash

hey pplz, i dont post here much but i need sum help with my site. i asked at flashkit but they didnt do shit. so hope sum pplz here can help.

i need it so that when a button is pushed, it loads an external swf into a new browser window.

i tried using that javascript popup generator from flashdb and i just replaced the" http:// " with " file:// ". but that didnt work.
btw i dont want to load up a html with the swf in it, i just want the swf to load up in a new window.

hope u can help. thanx

Skribble


60.

None

Topic: Newgrounds

Posted: 08/11/03 05:30 PM

Forum: General

[QUOTE]Sprites movies are great!! You whiny little... its not like it was instantaneous either, it takes a good frickin' while to make sprite movies, and they offer endless possibilities!![/QUOTE]

wtf are u one about man, they offer endless possiblities???? the sprites hav like 3 different positions. stand walk and attack. how the fuck can u make sumthing exciting out of that. not to mention that they look shit, u havta sit 8metres away from ur screen to see a vague image of the things. Who wants to stare at a patch of pixels.

Skribble


All times are Eastern Daylight Time (GMT -4) | Current Time: 12:33 AM

<< < > >>

Viewing 31-60 of 65 matches. 1 | 2 | 3