A Flash Developer Resource Site

Search:

Type: Posts; User: TenchyCho

Page 1 of 3 1 2 3

Search: Search took 0.19 seconds.

  1. Yeah, I know.... many hours later I got something...

    Yeah, I know.... many hours later I got something to sort of work.... so, eventually I'll get the result I want. Was just hoping for a quicker way.
  2. Simple way of loading a var from a file and replacing it with an updated version?

    Hi, I would like to have flash (as3) to save a var to a text file located on my server so everyone can reach it from their client swfs. I also need to know how to update this variable by loading...
  3. Never mind, problem solved, I just rewrote...

    Never mind, problem solved, I just rewrote everything and did it in an entirely different way so I then could more easily manage things :)
  4. Need help with removing attached movieclips

    Hi, I'm creating a highscore list like this:

    function loaderCompleteHandler(e:Event):void {
    var scoreXML:XML=new XML(e.target.data);
    var playerResult:MovieClip;
    var pX:Number=86;
    var...
  5. Gonna try Scoreoid I just found.

    Gonna try Scoreoid I just found.
  6. Anyone know of a free working highscore system for Adobe air iOS?

    I used to use Mochi Leaderbords before starting coding Adobe Air games for iPhone and Android. As the Mochi API doesn't have mobile support I had to find something else and found Playtomic. Playtomic...
  7. Replies
    3
    Views
    943

    Nvm, got it....

    Nvm, got it....
  8. Replies
    3
    Views
    943

    ok, I know lat:String ="1234" would work, but...

    ok, I know lat:String ="1234" would work, but that's not what I want. lat is actually the number of "myMC.x".
  9. Replies
    3
    Views
    943

    textfield == a number problem

    Arghhh, I'm going crazy over here. In AS2 it's NOOO problem, but in AS3 it just throws errors.

    What I want to do is to check if a variable is == to something they type in a textfield.

    I have a...
  10. I've had several problems with tweenlite. One is...

    I've had several problems with tweenlite. One is probably the one you have.

    While it's tweening, you can't properly access the item being moved, and after it's done tweening, in alot of cases you...
  11. Replies
    2
    Views
    2,193

    Solved.... needed to use "var Enemy:MovieClip =...

    Solved.... needed to use "var Enemy:MovieClip = this["Enemy"+i]"
  12. Replies
    2
    Views
    2,193

    Why doesn't the var Enemy work? It traces Enemy1,...

    Why doesn't the var Enemy work? It traces Enemy1, Enemy2...

    for (var i:int = 1; i <= 23; i++) {
    var Enemy=["Enemy"+i]
    var box:MovieClip=MovieClip(Circle.SizeableCircle["box"+i]);
    var...
  13. Replies
    2
    Views
    2,193

    Optimization pls

    I got 23 boxes (box1, box2...) inside two movieclips (Circle.SizeableCircle). I need to bring all these to the front, using localToGlobal. This brings box1 to the front (or whatever it's called):
    ...
  14. Replies
    0
    Views
    3,552

    TouchEvent problem, please help

    Hi. So I have this ship on the stage and 2 buttons. One button is Left, other is Right. When I press and hold left, the ship rotates left, and when I press right it rotates right. If I release any of...
  15. Ok, thanks :) Will prolly run into problems,...

    Ok, thanks :)

    Will prolly run into problems, but this is a start at least.
  16. Can Flash Builder and Flex stuff be used in Flash IDE?

    Hi, I'm pretty decent with coding in AS3 in Flash IDE (5.5), but some things I need to do only have tutorials done in Flash Builder and/or Flex, so I wonder if I made the stuff I needed in Flash...
  17. Replies
    0
    Views
    3,374

    Facebook connection using Flash IDE

    Hi,

    Ok so for many months now I have still been trying to find a decent tutorial on how to make a connection with Facebook using AS3 and the Flash IDE.

    I must of tried over 50 tuts by now and...
  18. Replies
    2
    Views
    1,770

    Optimization needed

    I got several things in my code that is repetetive, but they do have some stuff in them that is different compared to the other equal looking parts, so I don't know how to shorten the code.

    Anyone...
  19. Replies
    18
    Views
    4,292

    Ok, I've done like this so I can at least tell...

    Ok, I've done like this so I can at least tell what box it last hit:


    var lastBox; // had :String here first but got an error: "Scene 1, Layer 'Layer 1', Frame 1, Line 23 1119: Access of possibly...
  20. Replies
    18
    Views
    4,292

    Indeed! thanks :) var boxes:Array=;...

    Indeed! thanks :)


    var boxes:Array=;
    addEventListener(Event.ENTER_FRAME, loop);
    function loop(e:Event):void {
    for (var i:int = 0; i < boxes.length; i++) {
    if...
  21. Replies
    18
    Views
    4,292

    Ye, I had a dot there first, but got an error so...

    Ye, I had a dot there first, but got an error so removed it to not get any more errors... without dot it traced hello and worked..... but with dot now it works aswell..

    so, the reason it always...
  22. Replies
    18
    Views
    4,292

    Ok, if going by your first example of the three,...

    Ok, if going by your first example of the three, making my code like this:

    var boxes:Array=[box0,box1,box2,box3,box4];
    addEventListener(Event.ENTER_FRAME, loop);
    function loop(e:Event):void {...
  23. Replies
    18
    Views
    4,292

    It's so weird. This code produces no erros and...

    It's so weird. This code produces no erros and the trace is made successfully:

    var boxes:Array = [box0, box1, box2, box3, box4];
    addEventListener(Event.ENTER_FRAME, loop);
    function...
  24. Replies
    18
    Views
    4,292

    Hmm, the "if" has been removed without me...

    Hmm, the "if" has been removed without me noticing in the examples after my first post... it needs to be in there :). And with an "if", doesn't the property name have to have ( ) around it?
  25. Replies
    18
    Views
    4,292

    Ah, right, now I've learned some more stuff :),...

    Ah, right, now I've learned some more stuff :), nice.

    The reason why I had parantheses around the propertyname was because I thought you suggested that:


    So, if I try to loop from 0-10 when...
Results 1 to 25 of 55
Page 1 of 3 1 2 3




Click Here to Expand Forum to Full Width

HTML5 Development Center