A Flash Developer Resource Site

Search:

Type: Posts; User: slinky2000

Page 1 of 20 1 2 3 4

Search: Search took 0.52 seconds.

  1. Replies
    15
    Views
    14,483

    Remember the Flashkit bunny?

    Remember the Flashkit bunny?
  2. Replies
    4
    Views
    1,755

    AS 2 try this.... probably the easiest way. I could...

    try this.... probably the easiest way. I could make an onEnterFrame and keep the code all on one frame, but this is quick and easy.
  3. Replies
    4
    Views
    1,755

    AS 2 Could you not just do it on the main timeline? ...

    Could you not just do it on the main timeline?


    buttA.onPress = function()
    {
    gotoAndPlay("playALabel")
    };

    buttB.onPress = function()
    {
  4. Replies
    4
    Views
    2,309

    You are on a long and winding road my friend. ...

    You are on a long and winding road my friend. I've been doing scorm now for 6 odd years now and every day on a different server it behaves differently.

    What scorm version are you targeting for a...
  5. Replies
    4
    Views
    2,309

    So it is actually calling the function...

    So it is actually calling the function "simple_DoFSCommand" in the html file and passing the params.

    So whats not working? Is the scorm LMS not going completed?

    Scorm is quite complex but...
  6. Replies
    4
    Views
    3,597

    I'm pretty sure tell target was deprecated in as2!

    I'm pretty sure tell target was deprecated in as2!
  7. Replies
    5
    Views
    1,363

    try this try and trace it, if it's not...

    try this


    try and trace it, if it's not defined then it's not being passed in properly from flashvars
  8. You are comparing a text field to a String. what...

    You are comparing a text field to a String. what you want to do is compare the contents of a textfield to a string. So......

    if (tf.text == "Y") .....

    Should do the trick
  9. Replies
    1
    Views
    1,599

    I think you are looking for: ...

    I think you are looking for:


    SystemIdleMode.KEEP_AWAKE

    http://download.macromedia.com/pub/labs/packagerforiphone/packagerforiphone_devguide.pdf
  10. Hi there, just saying thanks very much for this....

    Hi there, just saying thanks very much for this. My div was getting cut off because of overflow: auto. Changed to a float and its all fine now :)

    Found via google!

    :cow:
  11. Replies
    5
    Views
    1,806

    SVN sounds about the best thing, we use it in...

    SVN sounds about the best thing, we use it in work alot.
  12. I think you need to look at getDefinationByName()...

    I think you need to look at getDefinationByName()

    so to add a library object from a loaded swf you might use:


    var toLoadClass:Class = Class(getDefinitionByName("toLoadMc"));
    var...
  13. Thanks man, just what I was looking for!

    Thanks man, just what I was looking for!
  14. looks like its a verified bug even using cdata...

    looks like its a verified bug even using cdata tags:

    http://bugs.adobe.com/jira/browse/ASC-3125?page=com.atlassian.jira.plugin.system.issuetabpanels%3Aall-tabpanel
  15. AS3: White space at the start and end inside a node disappearing

    Hi guys, Eg:


    var xml:XML = <foo><bar> hello </bar><bar> hello </bar></foo>;
    trace(xml.toXMLString());

    I get this:


    <foo>
  16. ah right thats man. It seems like my hmtl...

    ah right thats man. It seems like my hmtl browser has been letting me away with this for too long!
  17. but what if I wanted this: myBox.htmlText =...

    but what if I wanted this:


    myBox.htmlText = "<b>well <i>hello</b> world</i>"
  18. Replies
    5
    Views
    5,417

    tried that one already, it's flex dependant so no...

    tried that one already, it's flex dependant so no good
  19. Why does this break the textbox? (2 html tags at once)

    Not exactly high tech:


    myBox.htmlText = "<b><i>hello</b> world</i>"

    the bold formatting never stops!
  20. Replies
    5
    Views
    5,417

    No good, doesn't support numbered lists,...

    No good, doesn't support numbered lists, superscript or subscript
  21. Replies
    5
    Views
    5,417

    as3 html parser?

    Guys I've been looking for one since flash 4 and I'm going to ask again.

    Has anyone got a parser that will take a html string and display it in flash? I need all the basic tags to work

    <b>...
  22. Replies
    1
    Views
    756

    search the movies section or google, this has...

    search the movies section or google, this has been done to death and there is a wealth of tutorials on the internet
  23. Replies
    0
    Views
    679

    Flash8 Font symbol not appearign correctly

    Hi guys, I've a problem, I've a swf with dynamic text. I can't embed it because it has to be localised into many languages. So I'm specifying Arial but not embeding any fonts. For many languages...
  24. Replies
    3
    Views
    608

    Flash8 bizzaro: var l_number1:Number =...

    bizzaro:


    var l_number1:Number = Number("1.13")
    var l_number2:Number = 1.13
    trace(l_number1 - l_number2)


    traces 2.22044604925031e-16
  25. Replies
    3
    Views
    608

    Flash8 Cheers man. Seems to work. wierd one though!

    Cheers man.

    Seems to work. wierd one though!
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