A Flash Developer Resource Site

Search:

Type: Posts; User: Atarsh

Page 1 of 7 1 2 3 4

Search: Search took 0.07 seconds.

  1. Thread: [Complete] maze

    by Atarsh
    Replies
    7
    Views
    2,217

    [Complete] maze

    Hey All,
    this is a maze game I made with a friend a while ago,
    You have to navigate the maze without bumping into walls.
    Use the arrow keys to turn.
    Hope you like it, It's here
  2. Replies
    6
    Views
    2,627

    This will be a great time to meet Flash debugger....

    This will be a great time to meet Flash debugger. compile your file using the debugger (ctrl+shift+enter) then you can see what is the object which is null, which is probably the kontakt on this...
  3. Is it possible this code runs before your swf...

    Is it possible this code runs before your swf completely loaded?
    because if I use this code instead of yours it works perfectly:

    package{
    import flash.utils.setTimeout;
    import...
  4. Replies
    6
    Views
    2,627

    do you have any code on the frame to which you...

    do you have any code on the frame to which you gotoAndStop()?
  5. Replies
    4
    Views
    2,096

    your code works fine for me - is it possible that...

    your code works fine for me - is it possible that you are missing instance names for clips on stage?
    If that's not the case, it may be helpful to include the contents of the error messages you get.
  6. Replies
    1
    Views
    506

    the sentence you quoted says what to do if no...

    the sentence you quoted says what to do if no movement was detected.
    so in your case, what you wanna do is something like:

    if ( !_motionTracker.hasMovement ) {
    yourClip.play(); // yourClip...
  7. Replies
    6
    Views
    517

    apparently you are trying to use a variable which...

    apparently you are trying to use a variable which does not have a value. try running your file using the Flash debugger - this way the error will contain the exact line number where the problem...
  8. Replies
    4
    Views
    613

    try setting the request.method, I remember I once...

    try setting the request.method, I remember I once had something which worked one way but didn't work the other.
  9. Replies
    9
    Views
    508

    I'm not sure I understood what you're looking...

    I'm not sure I understood what you're looking for.. but here goes:
    Say you want to attach 5 clips to the stage. make sure you have them linkaged as, say, "Monster". then a way to attach all of them...
  10. Replies
    10
    Views
    3,151

    detect right cursor click in AS2: if...

    detect right cursor click in AS2:

    if (Key.isDown(2)) {
    trace("right click ");
    }
    left click is onMouseDown or maybe using the same condition with 1 or 3, I can't remember.
  11. You can tamper with the text file a little - get...

    You can tamper with the text file a little - get the PHP to first write the number of elements it has, or the final ID value, then loop by that and not by ID.
    Anyway - working with XML is so much...
  12. That's because you can't do that :) You can try...

    That's because you can't do that :)
    You can try putting the music on the inner timeline for development-time, then if you realy can't have it there remove it.
  13. Hey, First of all I don't know why would you...

    Hey,
    First of all I don't know why would you need two frames.
    Actions located on frame 2 will not be carried out while you see frame 1 anyway. You can have it all in one frame - don't forget to...
  14. Replies
    3
    Views
    2,192

    Hey, on catalog.fla, check the publish...

    Hey,
    on catalog.fla, check the publish settings: is it possible you checked "omit trace actions" before the last publish?
  15. Replies
    4
    Views
    865

    Yeah, I know the gpx is an unfinished issue - not...

    Yeah, I know the gpx is an unfinished issue - not my best side, to say the least.
    I originaly drew it myself in Flash, but I didn't realy know how to create the animations and get them to look good,...
  16. Replies
    4
    Views
    865

    [Finished] Maze in 3D

    Hey Guys,
    I just finished this one, It's a 3D maze where you have to use arrow keys in order to turn at the correct time as the maze is moving towards you.
    What do you say?

    here
  17. assuming you place everything on stage in...

    assuming you place everything on stage in authoring time - use the targetPath thingy.
    anyway, it should be something like
    this._parent.stuff.gotoAndStop("someFrame");but the this._parent piece is...
  18. Replies
    6
    Views
    2,421

    SharedObject can keep data from the previous tine...

    SharedObject can keep data from the previous tine it was displayed, I can't think of a way to make it stop an swf file from loading.
    Maybe if you specify a little further what your'e trying to do...
  19. Thread: [mx04]

    by Atarsh
    Replies
    2
    Views
    531

    You can not do this with Flash only, you will...

    You can not do this with Flash only, you will need some ASP / PHP / the likes.
    Flash is client side, it can not modify files on your server.
    You will also need a server with writing permissions...
  20. Replies
    4
    Views
    502

    I'm missing something: You say you want to allow...

    I'm missing something: You say you want to allow the user to double click anywhere on the stage, but you assign the doubleclick check to a button (button_btn). Then you say you want the main timeline...
  21. Replies
    5
    Views
    542

    If you name the dust clips with running numbers...

    If you name the dust clips with running numbers (i.e. dust0, dust1, etc) you can on an interval generate a ranodm number and attach the coresponding clip. something like

    function addClip() {
    ...
  22. Thread: font,size

    by Atarsh
    Replies
    3
    Views
    486

    check out the methods and properties of TextField...

    check out the methods and properties of TextField class on adobe's Flash reference.
  23. Come to the Future: use LoadVars, then use its...

    Come to the Future: use LoadVars, then use its onLoad event.
  24. Replies
    2
    Views
    463

    Not enough information... your animation is in...

    Not enough information... your animation is in code? on frames?
    If you fade in a text field, is it a dynamic TF? if so, do you embed font outlines?
  25. Replies
    2
    Views
    329

    Hey, If your image is inside the swf file than...

    Hey,
    If your image is inside the swf file than no, but if you load it dinamically (loadmovie, moviecliploader, etc) then if one knows the address where it is located, one can link to it.
Results 1 to 25 of 165
Page 1 of 7 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center