A Flash Developer Resource Site

Search:

Type: Posts; User: AttackRabbit

Page 1 of 20 1 2 3 4

Search: Search took 0.08 seconds.

  1. Replies
    7
    Views
    1,210

    when doing data scraping like this , i would...

    when doing data scraping like this , i would highly recommend using an http proxy monitor tool. I use Charles , however there are others , even the firebug , firefox plug in will work. The monitor...
  2. i don't see how the platform should make any...

    i don't see how the platform should make any difference. You need to download the latest flex sdk , 4. something or other , unzip its contents , to a framework folder either in your specified eclipse...
  3. Replies
    2
    Views
    603

    those objects do not exist in memory until the...

    those objects do not exist in memory until the play head reaches that frame. Unless you scope the object across multiple frame you will not be able to add something as child to something that doesn't...
  4. Replies
    2
    Views
    908

    is it possible , yes i would imagine most...

    is it possible , yes i would imagine most anything is possible. Is it a best practice , probably not. A frame based architecture like that would be nightmarish. Maintaining scope would be difficult ,...
  5. Replies
    5
    Views
    801

    bubbling is not only relevant for mouse events. ...

    bubbling is not only relevant for mouse events.

    Object A extends UIComponent
    contains objects of type
    B extends UIComponent , that are placed in a container sprite , called 'holder'.

    class...
  6. Replies
    5
    Views
    801

    my fault. i didn't think about the duality of...

    my fault. i didn't think about the duality of inheritance. note, setting bubbles to true does not mean all things in the display list , receive this event. Only direct ascendants of the child....
  7. Replies
    5
    Views
    801

    no , bubbles means that if set to true , the...

    no , bubbles means that if set to true , the event will continue to propagate all the way up through the inheritance tree, rather than just the immediate parent.
  8. Replies
    1
    Views
    977

    i didnt look at both examples , but based on the...

    i didnt look at both examples , but based on the first one heres the run down :



    this should be easy enough. You don't need to create the asset in the library , you could also create at run...
  9. i mean , you could say private function...

    i mean , you could say


    private function loadMenu( GUIname : Class ) : void {
    var mcLoader: Class = new GUIname();
    myStage.addChild(mcLoader);
    ...
  10. Theres a whole bunch of information here on how...

    Theres a whole bunch of information here on how to do this.

    http://www.actionscript.org/forums/showthread.php3?p=789609

    I would at the very least explicitly set a root node in your xml...
  11. The name property doesn't appear to be read only...

    The name property doesn't appear to be read only , unless you have objects on the stage at compile time, in which case you will receive an illegal operations message. Meaning , you can set '.name' to...
  12. you wouldn't want to ever call gotoAndPlay on a...

    you wouldn't want to ever call gotoAndPlay on a loader. You also might consider waiting until your swf is loaded before adding anything as a child to the display list. When the swf is loaded , add...
  13. Replies
    3
    Views
    462

    it could be a zillion things. Post your .fla and...

    it could be a zillion things. Post your .fla and ill look at it. Its probably a timing / availability thing seeing as your writing code on the timeline and using timeline masks. Or something is...
  14. Replies
    3
    Views
    603

    yes i can. i dont really feel like typing all...

    yes i can. i dont really feel like typing all that here but take a look at this source :


    http://adamyorkdev.com/js/main.js

    theres a bunch of ajax stuff you can just ignore. The idea is you...
  15. Replies
    3
    Views
    462

    how are you setting these masks ?

    how are you setting these masks ?
  16. Replies
    3
    Views
    603

    I'm not exactly sure what your intentions are for...

    I'm not exactly sure what your intentions are for viewing but sites I have done with large , full screen images , are done like this.


    stage.scaleMode = StageScaleMode.NO_SCALE;
    stage.align ...
  17. Replies
    2
    Views
    508

    Don't distribute the source materials. There's no...

    Don't distribute the source materials. There's no clean , sure fire way to do what you want. Your best bet would be to stick a gpl license in there saying that your retain this code , or portions of...
  18. A null object reference can stem from a whole...

    A null object reference can stem from a whole host of things. What does the rest of your callstack look like ? Are you using an external run time debugger , or just the flash player ?

    The null...
  19. Replies
    1
    Views
    556

    Well there's really nothing to 'make' a movieclip...

    Well there's really nothing to 'make' a movieclip out of. Your slide show is here ,
    ...
  20. Replies
    4
    Views
    402

    I guess it really just depends on what your...

    I guess it really just depends on what your application is. If its some sort of desktop utility then you can use the local shared object to store config values , or you could have the app load and...
  21. Replies
    2
    Views
    393

    whelp you don't need to create gameObjectArray....

    whelp you don't need to create gameObjectArray. You already have one , its your display list. I'm also a big fan on creating containers for appropriate object types. So you could do something like : ...
  22. Replies
    4
    Views
    402

    I use sql and php , or sometimes java , to...

    I use sql and php , or sometimes java , to output xml to a flash application upon request.


    http://www.wampserver.com/en/

    Most domain's are already configured to use these features.
  23. you dont need to say this : var...

    you dont need to say this :


    var bgimage:String = new String();


    var bgimage:String;

    is just fine
  24. Replies
    7
    Views
    8,817

    Also useful for remoting and or external data...

    Also useful for remoting and or external data management is a http proxy monitor. A good one that i use is charles , however i also use firebug. Both can show you the server request and response code...
  25. Replies
    1
    Views
    499

    I worked on a large car manufactures web site in...

    I worked on a large car manufactures web site in 08-09 , and we had full screen swappable background videos , that after undetermined, often varying periods of extended viewing , the browser , most...
Results 1 to 25 of 497
Page 1 of 20 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center