A Flash Developer Resource Site

Search:

Type: Posts; User: Zuiplap

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    439

    render text as HTML

    is it possible to dynamicly change the color of the text..

    I have a dynamic textField named "output", but for some reason the <font color> tag doesn't work..

    _root.output = "<font...
  2. Thread: Depths problem

    by Zuiplap
    Replies
    2
    Views
    365

    Strange. When i tried it yesterday, it didn't...

    Strange. When i tried it yesterday, it didn't work, now it works.. ow well, thx
  3. Thread: Depths problem

    by Zuiplap
    Replies
    2
    Views
    365

    Depths problem

    is there any way to reset the depth of a movieclip? Is there something like a setDepth(int) method? I know there is a getDepth().

    I have a movieClip on depth 4, is something like...
  4. Replies
    7
    Views
    516

    ok, the output is correct, but if i try:...

    ok, the output is correct, but if i try:
    Card1._y = 60 the movieclip attached to it remains at _y = 0.. but the _y of card1 changes.. it seems that the movieclip isn't really attached to card1.. ...
  5. Replies
    7
    Views
    516

    You're right.. I had attachMovie(naam, naam +...

    You're right..
    I had
    attachMovie(naam, naam + "_mc" , diepte, this);
    this._x = x;
    this._y = y;
    in stead of
    this._x = x;
    this._y = y;
    attachMovie(naam, naam + "_mc" , diepte, this);
  6. Replies
    7
    Views
    516

    It still doesn't work.. I think the movie...

    It still doesn't work.. I think the movie attaches itself to something other than the 'Kaart-object'.. Shouldn't i use prototype or something to inherent the methods of a MovieClip to get it to work?
  7. Replies
    7
    Views
    516

    Why isn't this working

    _global.diepte = 1;
    kaartNaam = new Array("Ace of Spades", "2 of Spades");
    Kaart = function(x, y, naam)
    {
    attachMovie(naam, naam + "_mc" , diepte);
    this._x = x;
    this._y = y;
    ...
  8. Thread: Combobox

    by Zuiplap
    Replies
    0
    Views
    353

    Combobox

    how do i get the value of a combobox item?
    (i want the value of the item displayed in the combobox..)
  9. Replies
    0
    Views
    351

    ComboBox problem..

    I have a combobox with values:
    1, 2, 3, 4, 5..



    test = myCombobox.getValue(); //this will refresh every 0.1s
    //so test will be dynamic

    now the problem is...
  10. Replies
    6
    Views
    666

    this version will check every number.. so if the...

    this version will check every number.. so if the random generated numbers would be:

    0 1 2 3 4 5 6 7 8 9

    and the user would enter

    9 1 2 3 4 5 6 7 8 0

    it would give: "you've remembered 8...
  11. Replies
    6
    Views
    666

    hmmm. guess you can't upload any swf files..

    hmmm. guess you can't upload any swf files..
  12. Replies
    6
    Views
    666

    and here is the swf file.. you can always...

    and here is the swf file..

    you can always contact me at kenneth_venken@hotmail.com
  13. Replies
    6
    Views
    666

    ok this is what i came up with..

    ok this is what i came up with..
  14. there is a background effect.. don't you worry...

    there is a background effect.. don't you worry ;), but probably not what he meant...
  15. Replies
    4
    Views
    1,775

    why would you wanna do that?? Flash is...

    why would you wanna do that??
    Flash is vector-based so it will be much smaller than the animated gif..
  16. is this what you mean?? if you have any...

    is this what you mean??
    if you have any questions, feel free to ask them
  17. Replies
    1
    Views
    344

    this is probably not the best way.. make the...

    this is probably not the best way..
    make the first picture a movieclip, name it Picture1 (Properties, instance name)

    than make your preloader: (preferably a different scene)
    (actions in main...
  18. could you give an url so i know what you mean..

    could you give an url so i know what you mean..
  19. Replies
    2
    Views
    433

    i'm not completely sure this will work.. ...

    i'm not completely sure this will work..

    actions of the button (Right-Mouse-Click on button --> actions)


    on(release){
    getURL("http://my_url/my_pdf_files/pdfFile.pdf", _blank);
    }
  20. Thread: preloader

    by Zuiplap
    Replies
    2
    Views
    463

    preloader

    a friend has a site and would like to make a preloader..
    the problem is that this site is in html.. is it possible to make a preloader in flash that checkes how much of a html page is loaded (jpeg,...
  21. Replies
    9
    Views
    533

    :) made it myself...

    :) made it myself...
  22. Replies
    9
    Views
    533

    sorry for that.. my mistake language =...

    sorry for that.. my mistake



    language = System.capabilities.language;

    if(language == "en"){
    actions for the english version
    ...
    }else if(language == "nl"){ // see...
  23. Replies
    9
    Views
    533

    I never used it myself, and i'm no experienced...

    I never used it myself, and i'm no experienced user..

    but i think something like this will work:

    [CODE]
    language = System.capabilities.language;
    if(language == "en"){
    []
  24. Replies
    28
    Views
    2,545

    Made it to 8, trying that one.. (if anybody wants...

    Made it to 8, trying that one.. (if anybody wants to solution for 7, just ask)
  25. Replies
    9
    Views
    533

    System.capabilities.language

    you can use System.capabilities.language to get the language of the user..

    See actionScript dictionary for more details
Results 1 to 25 of 41
Page 1 of 2 1 2




Click Here to Expand Forum to Full Width

HTML5 Development Center