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: 'Hoeloe'

We found 3,685 matches.


<< < > >>

Viewing 3,361-3,390 of 3,685 matches. 156111 | 112 | 113 | 114 | 115119123

3,361.

None

Topic: Official Ng Screensaver Voting!

Posted: 05/07/06 02:47 PM

Forum: General

(>oo)> <( oo )> <(oo<) KIRBY!!!!! LOLZ!!!!!


3,362.

None

Topic: Official Ng Screensaver Voting!

Posted: 05/07/06 02:46 PM

Forum: General

try using a point system, every time an entry is voted 1st, it gets 5 points, 2nd it gets 4, 3rd it gets 3, you get the idea. and the 5 with the most points at the end win? how about THAT!!!!!


3,363.

None

Topic: Official Ng Screensaver Voting!

Posted: 05/07/06 02:44 PM

Forum: General

Nooo!!! sum1 vote mine! it RULEZ!!!!!


3,364.

None

Topic: Official Ng Screensaver Voting!

Posted: 05/07/06 02:12 PM

Forum: General

nooooo!!!!!!


3,365.

None

Topic: Official Ng Screensaver Voting!

Posted: 05/07/06 02:10 PM

Forum: General

kmon ppl, vote mine, its gd


3,366.

None

Topic: Official Ng Screensaver Voting!

Posted: 05/07/06 02:01 PM

Forum: General

can you keep posting to tell us who is 1st, 2nd, 3rd + so on? that would be useful :P


3,367.

None

Topic: Official Ng Screensaver Voting!

Posted: 05/07/06 01:56 PM

Forum: General

1.My Entry 1
2.Hired
3.CowsCanFly2
4.s_a_n_d_m_a_n
5.JD77


3,368.

None

Topic: The Hidden Secret To Flash

Posted: 05/07/06 09:17 AM

Forum: Flash

ty using ultimate tutorial 2, but make sue you export with flash 6


3,369.

None

Topic: Could This Get Sponsered?

Posted: 05/07/06 09:12 AM

Forum: Flash

Weren't you supposed to post the NG screensaver competition voting thread?


3,370.

None

Topic: i got the art but

Posted: 05/07/06 09:02 AM

Forum: Flash

the wheel wont turn in the gif because it was in a movie clip. (Gif only exports _root) and to TheHappySheep, that wasn't the starter of this topic, lolz


3,371.

None

Topic: AS: Elastic mouse follower

Posted: 05/07/06 07:22 AM

Forum: Flash

BTW, sexy_fetus, it's spelt feotus


3,372.

None

Topic: i want some pepole to make movie

Posted: 05/07/06 03:51 AM

Forum: Flash

i can animate almost anything, except people. I can only do blob people for that (like madness)


3,373.

None

Topic: someone help me please!

Posted: 05/07/06 03:49 AM

Forum: Flash

... or clicking on a blank frame and pressing F5


3,374.

None

Topic: Portal Awards

Posted: 05/07/06 03:44 AM

Forum: Flash

they talk the truth! i got front page with no awards and a score of 3.46!!!


3,375.

None

Topic: A Stolen Flash! - The Reanimator

Posted: 05/07/06 03:43 AM

Forum: Flash

try making your links work...


3,376.

None

Topic: Help with a game

Posted: 05/07/06 03:41 AM

Forum: Flash

try AS: Main


3,377.

None

Topic: Making transparent backgrounds?

Posted: 05/07/06 03:39 AM

Forum: Flash

if you copy paste from paint, for some reason it will group the bitmap, so press ctrl + b and then trace it


3,378.

None

Topic: Jumping

Posted: 05/07/06 03:37 AM

Forum: Flash

look on ultimate tutorial 2, that works, but make sur you export it in flash 6, you can do that by clicking file>publish settings>flash and change version to flash player 6, hope this helped


3,379.

None

Topic: Official Ng Screensaver Competition

Posted: 05/06/06 12:49 PM

Forum: Flash

I hope i win... anyway, how amny screensavers win exactly? is it just one, or 5, or 10 or whatever?


3,380.

None

Topic: AS: Key Codes

Posted: 05/05/06 02:02 PM

Forum: Flash

problems with that:
1. you cant copy paste the code
2. there is a difference between the upper and lower case letter codes, that only does the upper case, i have done both
3. it doesn't matter if that was better than my post, my post was still better than the other post, nuff said


3,381.

None

Topic: As: Main

Posted: 05/05/06 11:53 AM

Forum: Flash

can someone make an AS: level editor using strings and stuff? i can make the level, but when i copy the code, it changes my array into a variable, any help?


3,382.

Happy

Topic: Official Ng Screensaver Competition

Posted: 05/02/06 03:57 PM

Forum: Flash

i made a second screensaver now :PWOOT! LINX R REEL!


3,383.

Thinking

Topic: AS: Freaky Effect

Posted: 05/02/06 01:49 PM

Forum: Flash

AS: Main, the one thread TO RULE THEM ALL!
AS: Duplicated Movie Clips
AS: Frame Functions
------------------------------------------
---------------------------------------

I was trying to do a blur effect, but i came across this in a failed attempt, first, make a picture (any will do, as this will move everything in the flash), then on the frame, add this script, it is explained in the script:

onLoad = function(){//functions are a useful way of simulating onClipEvent's without using a movie clip
i = 1;// sets a variable called "i" to 1
}
onEnterFrame = function(){
i ++;// "i" adds 1
_root.duplicateMovieClip("root"+i,1000+i);
// duplicates _root
["root"+i]_alpha = random(101); // gives the new duplicate a random alpha
["root"+i]_x = random(200)- 100;// gives it a random x
["root"+i]_y = random(200)- 100;// gives it a random y
["root"+i]_xscale = random(200);//gives it a random width
["root"+i]_yscale = random(200);//gives it a random height
}

kewl, no?


3,384.

None

Topic: Official Ng Screensaver Competition

Posted: 05/01/06 05:31 PM

Forum: Flash

just a suggestion


3,385.

None

Topic: AS: Platform Placing

Posted: 05/01/06 04:46 PM

Forum: Flash

ok the first two pieces of code(player + platforms) are explained in Ultimate tutorial 2,
the third code i can explain however as i wrote it:
onLoad = function(){ //the same as onClipEvent(load)
i = 1; //sets i
power = 100; //sets power
placing = false; //sets placing to false
}
onMouseDown = function(){ //same as onClipEvent(mouseDown)
placing = true;//sets placing to true
}
onEnterFrame = function(){ //same as onClipEvent(enterFrame)
if(placing){ // if placing is true
if(power >0){ // and power is bigger than 0
i ++; // i adds 1
_root.plat.duplicateMovieClip("plat"+i,100
0 + i); // duplicates plat
_root["plat"+i]._x = _root._xmouse;
_root["plat"+i]._y = _root._ymouse;// plat duplicate moves to the mouse position
_root["plat"+i]._alpha = power; // the less power you have, the less visible the platforms are
power --;// power decreses by 1
}
}
}
onMouseUp = function(){//same as onClipEvent(mouseUp)
placing = false;//sets placing to false
}

this basically means that if the variable placing is true, then a platform will appear at the mouse's x and y, and that you can hold down and drag to place many platforms

HAPPY NOW?????


3,386.

None

Topic: AS: Key Codes

Posted: 05/01/06 04:40 PM

Forum: Flash

this is a better resource for key codes


3,387.

None

Topic: Official Ng Screensaver Competition

Posted: 05/01/06 04:07 PM

Forum: Flash

i have an idea, how about we get the top 10 or summat, and use the random screensaver idea?


3,388.

None

Topic: AS: Key Codes

Posted: 05/01/06 04:00 PM

Forum: Flash

i didnt no about keyboard class, i just thort this wud be a good resource for key codes


3,389.

Happy

Topic: As: Main

Posted: 05/01/06 03:58 PM

Forum: Flash


3,390.

Happy

Topic: AS: Key Codes

Posted: 05/01/06 03:57 PM

Forum: Flash

AS: Main RULEZ!

Key Codes are very useful. they allow you to perform actions on key presses that arent accsable through Key. eg. if(Key.isDown(Key.LEFT)){
To use them, replace both the key (on above example this is LEFT) AND the Key. so for left click, this would be:if(Key.isDown(1)){

Below is a list of many useful key codes, and some wich are almost completely useless ;P:
10/13 = enter
32 = space
33 = !
34 = "
35 = #
36 = $
37 = %
38 = &
39 = '
40 = (
41 = )
42 = *
43 = +
44 = ,
45 = -
46 = .
47 = /
48 = 0
49 = 1
50 = 2
51 = 3
52 = 4
53 = 5
54 = 6
55 = 7
56 = 8
57 = 9
58 = :
59 = ;
60 = <
61 = =
62 = >
63 = ?
64 = @
65 = A
66 = B
67 = C
68 = D
69 = E
70 = F
71 = G
72 = H
73 = I
74 = J
75 = K
76 = L
77 = M
78 = N
79 = O
80 = P
81 = Q
82 = R
83 = S
84 = T
85 = U
86 = V
87 = W
88 = X
89 = Y
90 = Z
91 = [
92 = \
93 = ]
94 = ^
95 = _
96 = `
97 = a
98 = b
99 = c
100 = d
101 = e
102 = f
103 = g
104 = h
105 = i
106 = j
107 = k
108 = l
109 = m
110 = n
111 = o
112 = p
113 = q
114 = r
115 = s
116 = t
117 = u
118 = v
119 = w
120 = x
121 = y
122 = z
123 = {
124 = |
125 = }
1 = left click
2 = right click

of course, there is a key code for every key on the keyboard, but i couldnt be bothered to figure them out ;P hope this helps


All times are Eastern Daylight Time (GMT -4) | Current Time: 12:17 PM

<< < > >>

Viewing 3,361-3,390 of 3,685 matches. 156111 | 112 | 113 | 114 | 115119123