A Flash Developer Resource Site

Search:

Type: Posts; User: Baby Minion

Page 1 of 13 1 2 3 4

Search: Search took 0.04 seconds; generated 7 minute(s) ago.

  1. Replies
    4
    Views
    24,717

    2012.10.06 update

    UPDATED 2012.10.06

    A lot has changed:

    MediaPermissions object makes asking for permission easy as, well, adding an eventlistener to an object...

    CameraChecker was a pleasant abstraction that...
  2. VizAlign 0.6 release - as3 alignment utility

    https://camo.githubapp.com/293d0b14b4714a6dcbc378ac68fdc1d223bd233b/687474703a2f2f63617461636c79736d6963726577696e642e636f6d2f76697a616c69676e2f6578616d706c65732f56697a416c69676e2d4c6f676f2d63616c6d2d...
  3. Replies
    4
    Views
    1,794

    googled: flex embed events first link:...

    googled: flex embed events

    first link: http://livedocs.adobe.com/flex/3/html/help.html?content=metadata_3.html#159710
  4. Replies
    4
    Views
    1,794

    my understanding is this: it is a flex embed...

    my understanding is this:

    it is a flex embed tag that lets the IDE and the compiler know that this class dispatches this event at some point. This way, in the IDE when you type...
  5. well, i think you are looking for bracket...

    well, i think you are looking for bracket notation access.

    var image1_content:Sprite;
    var activeImageNum:Number = 1;
    var activeImage = this["image" + activeImageNum + "_content"];
  6. Replies
    1
    Views
    1,262

    you would have to store the original x and y...

    you would have to store the original x and y values somewhere. then whenever you want to move it back to the beginning, you can lookup those original values again...

    var origX:Number = 10;
    var...
  7. Replies
    1
    Views
    1,584

    people are not likely to actually download and...

    people are not likely to actually download and sift through your code. try and break out the code that is related to your question and make a simple example of how you are doing it, and why its...
  8. you need to give us more information than that to...

    you need to give us more information than that to help us help you.
  9. my first guess would be that you are not deleting...

    my first guess would be that you are not deleting the numbers, instead you are adding a new line to the text field.

    to find out if you are simply adding a new line (which would push the number up...
  10. Replies
    6
    Views
    1,898

    did you look at what swak wrote? that is the...

    did you look at what swak wrote?

    that is the basic code for loading a file, could you get that to work?
  11. Replies
    6
    Views
    1,898

    you need to give more information ratboy... do...

    you need to give more information ratboy...

    do you not understand how to load the text?
    are you forced with using TLF? (or can you use classic)
    can you not figure out how to overflow text into...
  12. Replies
    1
    Views
    1,166

    simply remove the event listener for roll out...

    simply remove the event listener for roll out once clicked.
    add it back when roll over

    somethign like this: ?

    button.addEventListener (MouseEvent.ROLL_OVER, onMouseRollOver);


    function...
  13. simply, one can almost always make a new flash...

    simply, one can almost always make a new flash builder project, and copy stuff in, and keep trying to get things compiling.

    if you are new to flash builder, good luck, eclipse is big. but anyway,...
  14. Replies
    2
    Views
    1,245

    i use this sometimes: switch (true) { case...

    i use this sometimes:

    switch (true) {
    case micActiity > 90:
    trace ("10");
    break;
    case micActiity > 80:
    trace ("9");
    break;
    case micActiity > 70:
  15. Replies
    6
    Views
    1,898

    seriously, most of what you are looking for is in...

    seriously, most of what you are looking for is in the documentation for as3.

    is the issue how to load the information, or the textfield logic?
  16. if the -- indicates nesting and the nesting must...

    if the -- indicates nesting and the nesting must stay, then no, you cannot get movieclip4 on top of movieclip1 without placing movieclip2 above movieclip1

    you should reconsider your nesting...
  17. Replies
    4
    Views
    1,320

    well unfortunately, there is only so much I can...

    well unfortunately, there is only so much I can extrapolate from the code you have given.

    Is one of those values the actual value you apply to the rotation property of the enemy?
    Are you using a...
  18. Replies
    1
    Views
    1,325

    you should switch two lines in the...

    you should switch two lines in the completeHandler function

    loaderOne.data.clear() should come before loaderOne = null

    also, do you have access to a profiler? you could use that to see if it is...
  19. Replies
    2
    Views
    1,906

    I just wanted to note, that again, my solution...

    I just wanted to note, that again, my solution came from scouring the asDocs online and experimenting with solutions. I doubt many will read this comment, but 90% of my solutions come from looking at...
  20. Replies
    2
    Views
    1,906

    and of course, i find the solution myself shortly...

    and of course, i find the solution myself shortly after i post on a forum.

    well, here is the solution.

    if you care about removing the empty line of text that flash creates when modifying the...
  21. Replies
    4
    Views
    1,320

    are you using different frames in a movieclip to...

    are you using different frames in a movieclip to change the rotation? or is there more code inside the enemy object that translates something to the rotation property?
  22. it would be better if the parent created an...

    it would be better if the parent created an eventlistener for the button and the have the parent handle the action rather than the button itself.
  23. I feel like it should be possible by writing...

    I feel like it should be possible by writing native extensions.

    I have done almost no research on native extensions although lee brimelow has a video on them.

    Theoretically, you can do whatever...
  24. Replies
    2
    Views
    1,906

    [RESOLVED] htmlText and empty lines

    I am having the most frustrating time with htmlText in TextField.

    apparently, if you set the htmlText of a TextField, you always get an extra line at the end.

    Here is what I have found out:
    ...
  25. I ended up creating a base class with an abstract...

    I ended up creating a base class with an abstract function definition. The concept worked great. However it did increase filesize. *edit* Think I'll try just an interface and see how that goes...
Results 1 to 25 of 312
Page 1 of 13 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center