Recent posts by skyboy on Kongregate

Subscribe to Recent posts by skyboy on Kongregate

9 hours ago ago
avatar for skyboy skyboy 186 posts

Topic: Kongregate / Remnants of Skystone Alpha Testers Wanted

haha, love the name, i’m in

 
Oct 12, 2008
avatar for skyboy skyboy 186 posts

Topic: Technical Support / Mozilla fire fox

they added a 5 second ad infront of games, adblock blocks the ad and javascript that make chat and the game visible (chat loads, but is hidden)

 
Oct 12, 2008
avatar for skyboy skyboy 186 posts

Topic: Technical Support / Keys sticking without the keyboard sticking HELP PLZ!!!

he said it wasn’t the keyboard and that is was only a game which he didn’t mention… someone find a vague stamp for this thread

 
Oct 11, 2008
avatar for skyboy skyboy 186 posts

Topic: Off-topic / Awesome screenshots

I Win.  You Lose.

 
Oct 9, 2008
avatar for skyboy skyboy 186 posts

Topic: Programming / SSF2

this doesn’t belong here.

 
Oct 8, 2008
avatar for skyboy skyboy 186 posts

Topic: Technical Support / Game and chat not showing up

actually, it blocks the ad and directly related javascript that changes hidden to show, also the div that contains the game is not written, however chat is loaded but hidden by the above problem, but i use javascript injection to correct this… how this isn’t practical for the average user

 
Oct 8, 2008
avatar for skyboy skyboy 186 posts

Topic: Programming / Flash game that can get user stats from Kongregate?

if you do it right you can get all the info you need…and are you talking about my page? 74.215.38.9 (though it’ll be down till i get home)

 
Oct 8, 2008
avatar for skyboy skyboy 186 posts

Topic: Programming / Need a flash lesson

if you can’t focus long enough to read a sticky, then you are going no where with flash

 
Oct 8, 2008
avatar for skyboy skyboy 186 posts

Topic: Programming / Saving Progress!

you need to save those.



var so:SharedObject = SharedObject.getLocal("userHighScore");
so.data.Name = _root.Name;
so.data.credits = _root.credits;
so.data.level = _root.level;
//etc.
so.flush();



and then load them



_root.Name = so.data.Name;
_root.credits = so.data.credits;
_root.level = so.data.level;



and if that still doesn’t work, you need to check that everything is spelled right and no capitalization errors

 
Oct 6, 2008
avatar for skyboy skyboy 186 posts

Topic: Programming / Problems with subbmiting my game.

min dimensions for games are 450×450, i think, might be 350×450

 
Oct 6, 2008
avatar for skyboy skyboy 186 posts

Topic: Programming / on (dragOver)- hitTest problem

a movie clip with two frames and using onenterframe to check for hits at the frame rate would be my solution

 
Oct 5, 2008
avatar for skyboy skyboy 186 posts

Topic: Off-topic / Girls are Evil!


for whole thread
[/sarcasm]

 
Oct 5, 2008
avatar for skyboy skyboy 186 posts

Topic: Off-topic / Girls are Evil!

 
Oct 5, 2008
avatar for skyboy skyboy 186 posts

Topic: Technical Support / Can I upload PHP Files?

php files are not parsed on kongregate because they do not use php and do not have it installed on any of their servers

 
Sep 30, 2008
avatar for skyboy skyboy 186 posts

Topic: Off-topic / friends or girl friends

uhh… don’t tell, your friend may be sore for awhile, but if you’ve been friends that long then you’ll stay friends

 
Sep 30, 2008
avatar for skyboy skyboy 186 posts

Topic: Technical Support / Animated avatar problems

it doesn’t matter, 90% of all gifs are torn apart by kong

 
Sep 25, 2008
avatar for skyboy skyboy 186 posts

Topic: Kongregate / Holy Crap, New Navigation

elaborating on phillystink’s idea… a meter that show kong’s rating from 0 to 100 would be interresting, and having the users vote on the rating

 
Sep 22, 2008
avatar for skyboy skyboy 186 posts

Topic: Kongregate / Kongregate needs more buttons

umm… exactly what did he/she/it say?

 
Sep 22, 2008
avatar for skyboy skyboy 186 posts

Topic: Programming / How do you debug Statistic API?

check here

 
Sep 21, 2008
avatar for skyboy skyboy 186 posts

Topic: Kongregate / Holy Crap, New Navigation

it’s nice, however, you may want to look into allowing people to choose either the new or old theme, defaulting, of course, to the new one, maybe allow a customizable menu in the extra space between help and search, or all of them… storing that information in either cookies or with the rest of the profile info, the latter being the best choice

 
Sep 7, 2008
avatar for skyboy skyboy 186 posts

Topic: Off-topic / Help with Geometry?

lol, well, four angles, two are 11 each and being that small they have to be on opposite sides, leaving 338 out of 360, so… i dunno, but i think it’s 169

edit: are we even talking about angles?

 
Sep 7, 2008
avatar for skyboy skyboy 186 posts

Topic: Off-topic / Help with Geometry?

wouldn’t it be 169? or am i like just way off?

 
Sep 7, 2008
avatar for skyboy skyboy 186 posts

Topic: Off-topic / Help with Geometry?

uhh… good luck pink!

 
Sep 3, 2008
avatar for skyboy skyboy 186 posts

Topic: Kongregate / Lose the chat window

A little bit off topic, but as mentioned countless times before, having a way to JUST chat would be nice. One can dream, I suppose.

that dream is more than halfway here, it works, and works well. just need to run it by the admins and clarify somethings to make it fully functional chat (game rooms included… maybe even highscores)

 
Sep 2, 2008
avatar for skyboy skyboy 186 posts

Topic: Programming / Pause Menu Help

you need to have the functions fun only if the game isn’t paused with an if statement, and on a button:

on(release){paused=!paused}
of course defining paused as a boolean value and defaulting it to false elsewhere