A Flash Developer Resource Site

Search:

Type: Posts; User: gSOLO_01

Page 1 of 20 1 2 3 4

Search: Search took 0.45 seconds.

  1. You should use an ArrayCollection instead of an...

    You should use an ArrayCollection instead of an Array. The binding triggers on assignments to the variable, not changes to the variables properties.

    For clarification do you want to combine the...
  2. Express Install?

    Express Install?
  3. Yes, with a FB 2 license you will be able to...

    Yes, with a FB 2 license you will be able to continue to use FB 3 beta
  4. Replies
    2
    Views
    768

    Use array notation: this["input" + i].visible...

    Use array notation:

    this["input" + i].visible = false;
  5. For just starting out, I don't think there would...

    For just starting out, I don't think there would be anything too significant that couldn't be taken between versions if you needed to. Also, you could continue to use the new sdk if you couldn't...
  6. Flex 3 and Adobe Integrated Runtime (Apollo) Betas Available

    Adobe has a bunch of new goodies available now on labs. Check the links for more info.

    Flex 3 Beta. Flex 3 already?! Yup and there are a bunch of new features packed into this one.
    ...
  7. Replies
    9
    Views
    1,785

    You could probably get away with a reference to...

    You could probably get away with a reference to Application.application.viewStack. A better approach however, would be to pass a reference to the ViewStack to the component.

    A quick example:
    ...
  8. Replies
    9
    Views
    1,785

    You would just set the selectedIndex or...

    You would just set the selectedIndex or selectedChild property in the buttons click handler.

    <mx:Button click="viewStack.selectedIndex = 1;" label="Navigate to Second"/>
    <!-- viewStack is the id...
  9. Since the last value is 0 you're going to end up...

    Since the last value is 0 you're going to end up with scale = 1 regardless of the previous values.

    What are you trying to do here? Animate the scaling?
  10. Thread: localToGlobal

    by gSOLO_01
    Replies
    3
    Views
    2,294

    var newp : Point = square.localToGlobal...

    var newp : Point = square.localToGlobal (clickPoint);

    No need to use the new operator.
  11. Replies
    4
    Views
    2,496

    Just to note that attributes, text nodes &c are...

    Just to note that attributes, text nodes &c are XMLLists. There are a bunch of instances however, where they are automatically toString ()-ed.
  12. Replies
    3
    Views
    1,875

    ex1 for (var a : uint = 0; a

    ex1

    for (var a : uint = 0; a < subtopics_number; a++) {
    var test : SubTopicButton = new SubTopicButton (a);
    test.name = "test" + a;
    addChild(test);
    }

    removeChild (getChildByName ("test1"));
  13. Thread: GetVariable?

    by gSOLO_01
    Replies
    4
    Views
    2,474

    I think the GetVariable he's talking about is the...

    I think the GetVariable he's talking about is the JavaScript function. But ya, I'm not quite clear on what is trying to be done here.
  14. Thread: GetVariable?

    by gSOLO_01
    Replies
    4
    Views
    2,474

    What is 'an external interface'?

    What is 'an external interface'?
  15. Replies
    5
    Views
    2,164

    Check out these guides: ...

    Check out these guides:

    http://www.adobe.com/devnet/flex/quickstart/using_item_renderers/

    http://www.adobe.com/devnet/flex/quickstart/using_data_providers/
  16. Replies
    2
    Views
    1,938

    You need to wait for employees to be created. ...

    You need to wait for employees to be created.

    Something like:


    <mx:Application
    xmlns:mx="http://www.adobe.com/2006/mxml"
    creationComplete="trace (employees)">

    Or create a creation...
  17. Replies
    5
    Views
    2,164

    I would use XML personally, but a simple parsed...

    I would use XML personally, but a simple parsed string would do as well. With XML, all you would have to do is set the dataProvider of the grid. In any case, here is a long winded AS3 sendAndLoad...
  18. Replies
    5
    Views
    2,164

    I think you may have to be a bit more specific as...

    I think you may have to be a bit more specific as to what you want to do. You can access url params/flashvars in an MXML Application through the Application.application.parameters object.
  19. Replies
    4
    Views
    1,364

    Ya, not having check syntax is a bit annoying but...

    Ya, not having check syntax is a bit annoying but tis a limit in the preview version.

    For Flex, as long as your class is referenced somewhere in the workspace, it will auto 'check syntax' for you.
  20. Replies
    2
    Views
    566

    I believe they are in the process of updating...

    I believe they are in the process of updating things. In the meantime, try googles cache.

    See if this works:...
  21. Replies
    2
    Views
    409

    If you need help testing something feel free to...

    If you need help testing something feel free to put up a link or ask a question. But don't post pay content. Thanks.
  22. Replies
    85
    Views
    24,108

    There will not be a patch to Flash 8 to support...

    There will not be a patch to Flash 8 to support FP 8.5 &c. There will however be an early Alpha released of the next version of Flash at the time that Flex 2 is released; this will be available for...
  23. Replies
    24
    Views
    2,207

    I believe that's what tonypa wanted to see an...

    I believe that's what tonypa wanted to see an example of...
  24. Replies
    24
    Views
    2,207

    Use JPEGEncoder:...

    Use JPEGEncoder: http://www.kaourantin.net/source/JPEGEncoder.as

    While this may help to obfuscate your code &c, in the end it's still just embedding the resource in the swf which will more than...
  25. Replies
    5
    Views
    1,005

    Might you be saving to a network or perhaps have...

    Might you be saving to a network or perhaps have an AntiVirus that has to scan the file when it changes &c?
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