Topic: Programming / RemoveMovieclip
on (release) {
trace("on release executed");
this.removeMovieClip();
}
|
Nov 28, 2008
|
Topic: Programming / RemoveMovieclip
on (release) {
trace("on release executed");
this.removeMovieClip();
}
|
|
Nov 28, 2008
|
Topic: Programming / Removing From An Array?
Or just use the function indexOf. var thisIndex:int = array.indexOf( this ); |
|
Nov 28, 2008
|
Topic: Programming / Can I...? You could use the function removeChildAt to remove all of your Objects. To see if you have any Objects left, use the property numChildren. example:
while (stage.numChildren > 0) {
stage.removeChildAt( 0 );
}
|
|
Nov 28, 2008
|
Topic: Technical Support / wrong Icon Size What it looks like now:
And the original Image i’ve uploaded before ( 100*75 )
The image gets slightly scaled down ( to 99*74 ) and then cropped to the size of 93*74. Or is the Upload Game section outdated?
edit i tried it with FireFox and Opera. Both have the same size of 93*74. |
|
Nov 25, 2008
|
Topic: Technical Support / wrong Icon Size i’ve noticed it since the game icons were blurred. Oh… and in the profiles the since is wrong too. Seems like an overall issue. |
|
Nov 25, 2008
|
Topic: Technical Support / wrong Icon Size On “Latest Games” page the size of the game Icons is wrong. They are resized down to 93*74 pixel. On other pages ( like Frontpage ), they have the wrong size too. |
|
Nov 24, 2008
|
Topic: Programming / Is there a Flash IDE upgrade Yes, FlashDevelop has all this features. |
|
Nov 24, 2008
|
Topic: Kongregate / Where Is IT Going?!?!?! My games are exclusive to Kong and they DO have the KongAPI. But the AdRevenue dropped since yesterday to 49% In all the games the API works fine, i’ve Scores on the Scores Tab. edit thx for answer |
|
Nov 23, 2008
|
Topic: Technical Support / Ad Revenue dropped To make it short: I’ve noticed that the % share of one of my games dropped to 49. (yesterday was 50) |
|
Nov 22, 2008
|
Topic: Programming / AS3 timeline control
which one? i didn’t try it, but maybe it should work with this: (parent as Stage).gotoAndPlay(); or (parent as MovieClip).gotoAndPlay(); remember: do NOT use underlines in front of parent. You could try: stage.gotoAndPlay(); But i’m not sure if it would work. |
|
Nov 22, 2008
|
|
|
Nov 22, 2008
|
Topic: Kongregate / Suggestions
sry, but very bad idea. example:
in most cases i could use my savegame. |
|
Nov 17, 2008
|
Topic: Programming / [Kongregate API] AS3 API Integration
Asked few months ago. Something like that was rejected because it’s senseless. The cheater would make a Screenshot and get the badge. |
|
Nov 13, 2008
|
Topic: Kongregate / Whats up with kong, is it being updated? only 16k player online…. yesterday we had 24k and the server was fine. so it isn’t increased traffic/to much visits. |
|
Nov 11, 2008
|
Topic: Kongregate Labs / Wait just a second... CS4 is out?!
Then the shootorial was made ( july 2008 ), cs4 wasn’t released. |
|
Nov 9, 2008
|
Topic: Kongregate / Upload Game - Additional files so, kongregate extract the zip file after i upload it and put all the files into my game folder? thx. |
|
Nov 9, 2008
|
Topic: Programming / Could someone help me with my game? if you use flash cs3just press f1 and search for timer. you will find a “timer class” |
|
Nov 9, 2008
|
Topic: Kongregate Labs / Asking the user to enter their name example? You could use Kong-name instead. Use the KongApi to read the name. |
|
Nov 9, 2008
|
Topic: Kongregate / Upload Game - Additional files do i need to extract the zip file in my game file? |
|
Nov 9, 2008
|
Topic: Kongregate / Upload Game - Additional files Can i upload more then 1 additional file? ( 1 Game File + 2 other Files ). The other question i have… Is it possible to delete an uploaded additional file? |
|
Oct 30, 2008
|
Topic: Kongregate Labs / Error in my code? My ships explode when they fire a missile Since you copied you Missile … did you copy hitTest too? If you check hitTest of Enemy Missile with Enemy Ship and you shoot from inside of the enemy ship → hitTest is true and the ship explode. |
|
Oct 29, 2008
|
Topic: Kongregate Labs / How many competitors are there?
No. |
|
Oct 29, 2008
|
Topic: Programming / Help - Adding Movieclip On Click since your wall is on the stage (i guess), try “stage.addChildAt()” with different depths. |
|
Oct 29, 2008
|
Topic: Programming / Help - Adding Movieclip On Click Use the function “addChildAt()” |
|
Oct 29, 2008
|
Topic: Programming / Updating Map problem. /AS3/ What line is the error? You don’t need to set the Array to a 2D Array. Flash do it for you.
var myTiles:Array = new Array();
for ( ... ){
var myTiles2:Array = new Array();
for ( ... ){
myTiles2[j] = new Tile( ... );
myMap.addChild(myTiles2[j]);
}
myTiles[i] = myTiles2;
}
And you don’t need to import the class Array. I suspect, it’s the line with the new Tile-constructor. |