A Flash Developer Resource Site

Search:

Type: Posts; User: k/smaert

Page 1 of 9 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    5
    Views
    546

    Thanks, CDATA works super. Now I only have...

    Thanks, CDATA works super. Now I only have problem with the <b> tag which makes all the text between <b> and </b> disappear. I have tried with <strong> which has no effect. Any suggestions?
  2. Replies
    5
    Views
    546

    using gives the same result

    using <span> gives the same result
  3. Replies
    5
    Views
    546

    HTML tags in xml renders incorrect

    I have some HTML formatted text saved in XML which I load into Flash. The XML node loads fine and looks like this:



    But when I access this node's childNodes it looks like this:



    A comma...
  4. Replies
    5
    Views
    662

    You could check out http://www.zoomify.com/flash/...

    You could check out http://www.zoomify.com/flash/ . They sell a component that would solve your problem. It's quite easy to use.
  5. Replies
    2
    Views
    334

    getURL("mailto:name@server.com");

    getURL("mailto:name@server.com");
  6. Replies
    1
    Views
    429

    you can use setInterval to change the alpha value...

    you can use setInterval to change the alpha value of the clips until they reach the desired value. remember to cancel the setInterval when you get there.

    also you could use this extension...
  7. Replies
    23
    Views
    1,709

    you can use Sound.position to track how much of...

    you can use Sound.position to track how much of the soundclip that have been played. and then start again with Sound.start at the position where you stopped the clip. note that Sound.position uses...
  8. Replies
    8
    Views
    761

    just place it on the main stage if that's where...

    just place it on the main stage if that's where the button is located
  9. Replies
    8
    Views
    761

    what you want to do is easier if your buttons...

    what you want to do is easier if your buttons actually were movieclips, but here's one suggestion to your problem if you prefer to have buttons as buttons.

    in the up-frame of the button place a...
  10. Replies
    1
    Views
    421

    a problem i've encountered all too many times...

    a problem i've encountered all too many times myself. usually i end up using a combination of hitTest, onRollOver/Out. if you know the coordinates of your clip you can maybe use Mouse._x / _y to see...
  11. i use a php script that searches all the files...

    i use a php script that searches all the files names in a specific folder and passes them on to flash. it goes like this:

    flash:


    var directory = "images/";
    var lv = new LoadVars();...
  12. i don't think you can dynamically load images or...

    i don't think you can dynamically load images or movies into Library so if the user has diasabled cache i guess he/she will just have to consume more bandwith :)
  13. you can use css and z-index to layer flash movies...

    you can use css and z-index to layer flash movies and html. also you should look into how you publish your flash movie. you can make them transparent using different window modes. look in publishing...
  14. Replies
    2
    Views
    419

    easiest way to replace characters is to use the...

    easiest way to replace characters is to use the String.split function and then putting the string back together again after having replaced the characters. ..

    to find the 3rd letter use...
  15. Replies
    3
    Views
    447

    i guess doing what you want would be better...

    i guess doing what you want would be better accomplished using php, but you could use flash as an interface
  16. Replies
    1
    Views
    362

    looks like i have to html the code to bypass the...

    looks like i have to html the code to bypass the flashkit filter



    this.createTextField("my_txt", this.getNextHighestDepth(), 10, 10, 160, 22);
    my_txt.html = true;
    my_txt.htmlText = "<a...
  17. Thread: Zoom effect.

    by k/smaert
    Replies
    3
    Views
    528

    i use zoomify ( http://www.zoomify.com ), but...

    i use zoomify ( http://www.zoomify.com ), but then again it's not for free.
  18. Replies
    3
    Views
    5,942

    i don't know of any way to do it with html nor...

    i don't know of any way to do it with html nor javascript or anything else. i was hoping someone could come up with a creative workaround...i guess it will end up being browser specific
  19. Replies
    3
    Views
    5,942

    getURL and open in new tab

    is there any way to use getURL and have the link open in a new tab (opera, firefox).
  20. Replies
    6
    Views
    1,001

    thanks for clarifying that, my mistake

    thanks for clarifying that, my mistake
  21. Replies
    3
    Views
    406

    you can pass variables to a movieclip when you...

    you can pass variables to a movieclip when you use the attachMovie. try something like this:

    this.attachMovie("movieName", "instanceName", this.getNextHighestDepth(), {variable1:somedata,...
  22. Replies
    4
    Views
    485

    works fine on my computer

    works fine on my computer
  23. Replies
    3
    Views
    406

    i never use buttons myself. movieclips do the...

    i never use buttons myself. movieclips do the same and more. why don't you make the button into a movieclip and use attachMovie when the other button is pressed....

    or you could use a combination...
  24. Replies
    6
    Views
    1,001

    you can only duplicate static movies. dynamically...

    you can only duplicate static movies. dynamically loaded movies created with attachMovie or createEmptyMovieClip can not be duplicated
  25. Replies
    3
    Views
    567

    your script looks ok to me. is it enabling the...

    your script looks ok to me. is it enabling the buttion again that doesn't work?? you could have a _root.current_button that holds a reference to the button that is currently pressed.
    ...
Results 1 to 25 of 211
Page 1 of 9 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center