A Flash Developer Resource Site

Search:

Type: Posts; User: moagrius

Page 1 of 20 1 2 3 4

Search: Search took 0.22 seconds.

  1. Replies
    10
    Views
    4,778

    sorry - didn't mean to be short - i'm just...

    sorry - didn't mean to be short - i'm just slammed this week with pre-holiday deadlines... i'll check back on those when i get a minute, maybe this weekend
  2. glad you got it working. sorry i haven't had...

    glad you got it working. sorry i haven't had time to put together the restructured version i mentioned - i've been swamped. i might be able to find some time later this week, but at least you're...
  3. Replies
    10
    Views
    4,778

    the first one wouldn't, but the second one might...

    the first one wouldn't, but the second one might - give it a try on something simple first and see what happens
  4. ok... your problem is you're not starting the...

    ok... your problem is you're not starting the slideshow (startShow()) unless you have as many successful loads as the total number of XML nodes, but you're only increasing the counter on success. ...
  5. i've got it download, so feel free to remove it. ...

    i've got it download, so feel free to remove it. i probably won't have a chance to do anything with it until this evening tho
  6. it's hard to debug blind. can you upload your...

    it's hard to debug blind. can you upload your source file package (incl. xml and images)?

    doesn't have to be complete, but enough to work with...
  7. Replies
    10
    Views
    4,778

    actually, you may want to keep the arrays and...

    actually, you may want to keep the arrays and just rebuild as i demo'ed...

    the problem with this:


    for(var i:int=0;i<container.numChildren;i++){
    if(someCondition)...
  8. Replies
    17
    Views
    1,724

    nvm

    nvm
  9. encodeURIComponent is intended to encode a part...

    encodeURIComponent is intended to encode a part (component) of a uri string. it takes special characters - like slashes - that shouldn't be passed as part of a URI. used on that string, it'd...
  10. Replies
    17
    Views
    1,724

    it sounds like you need to hire a developer. i'm...

    it sounds like you need to hire a developer. i'm not saying that to be rude, but if you don't know how to edit text files, search, or what the Flash IDE is, i really don't think you're going to have...
  11. apparently my_textX_array is an array of...

    apparently my_textX_array is an array of numbers... you were trying to assign the x value, so i assumed it was display objects.

    try changing this line in the missingImage function:

    ...
  12. i obviously don't have the rest of your package,...

    i obviously don't have the rest of your package, so i can't test this, but in theory it should work. the changes i made are marked with a comment starting like so:


    // *FK* whatever...

    i also...
  13. loaderInfo.parameters should be available...

    loaderInfo.parameters should be available immediately. you shouldn't need to wait for a complete event (not even sure that'd be heard).

    i'm guessing your problem is with the SWFObject syntax. ...
  14. Replies
    10
    Views
    4,778

    you've got a few problems there. to start,...

    you've got a few problems there. to start, you're removing the bullet a bunch of times - once for each enemy in the inner loop, then once more in the outer loop. and, after it's removed the first...
  15. if you're not using classes, you don't need...

    if you're not using classes, you don't need private/public - what you have for the missingImage function is fine.

    but - something else is going to give you a problem. that event is going to fire...
  16. Replies
    6
    Views
    636

    hmm i don't use the IDE much (er... at all), but...

    hmm i don't use the IDE much (er... at all), but i don't think you can create anything like that. but maybe i'm wrong and someone else will post a happier answer : )
  17. Replies
    4
    Views
    1,185

    localconnection is used to communicate between...

    localconnection is used to communicate between multiple swiff files that don't share a common swiff parent - usually between multiple swiffs housed in an html document.

    to play an FLV, i assume...
  18. Replies
    6
    Views
    636

    maybe i'm totally misunderstanding what you're...

    maybe i'm totally misunderstanding what you're describing, but i don't think that was in AS2 either...
  19. Replies
    3
    Views
    2,829

    i answered your question in the first part of my...

    i answered your question in the first part of my reply.

    for AS2, properties have an underscore before the name. your code says "rock.x" - it should be "rock._x" - notice the underscore. i'll...
  20. Replies
    6
    Views
    636

    it sounds like you want to view an external image...

    it sounds like you want to view an external image in the flash IDE - which is not possible.
  21. Replies
    3
    Views
    2,829

    in AS2, it's _x and _y ...

    in AS2, it's _x and _y


    onClipEvent(enterFrame){
    trace(rock._x);
    trace(rock._y);
    }

    in AS3, it's .x and .y (like you have). however, there is no onClipEvent in AS3, so you...
  22. Replies
    5
    Views
    706

    as mentioned, i had to make some assumptions - i...

    as mentioned, i had to make some assumptions - i presumed all assets were present on the stage, and not nested. if there's any deviation from that, you'll need to make changes to the math to...
  23. put the...

    put the my_loader.contentLoaderInfo.addEventListener on the line before or after the existing line of the same...


    var my_url:String = my_images[i].@URL;
    var my_loader:Loader = new Loader(); ...
  24. Replies
    3
    Views
    798

    :thumbsup:

    :thumbsup:
  25. you could so something like this: ...

    you could so something like this:


    my_loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, missingImage, false, 0, true);
    // later...
    private function...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center