A Flash Developer Resource Site

Search:

Type: Posts; User: dennie

Page 1 of 4 1 2 3 4

Search: Search took 0.16 seconds.

  1. Replies
    2
    Views
    586

    Thanks that did the job.:smoov:

    Thanks that did the job.:smoov:
  2. Replies
    2
    Views
    586

    Can't see ï in dynamic textbox

    I have a dynamic textfield and an external xml file. But when I load the text, some characters cannot be shown, for example ï. The characters look like a sqaure. I have this problem with every font....
  3. Thread: Can't see ï

    by dennie
    Replies
    3
    Views
    1,258

    device.

    device.
  4. Thread: Can't see ï

    by dennie
    Replies
    3
    Views
    1,258

    Can't see ï

    I have a dynamic textfield and an external xml file. But when I load the text, some characters cannot be shown, for example ï. The characters look like a sqaure. I have this problem with every font....
  5. Okay try this: This is a whole different...

    Okay try this:
    This is a whole different approach but it works.
    Make an empty mc outside the stage.
    Add this code to all your buttons:


    on (rollOver) {
    _global.ro = 1;
    }
  6. You can solve the "square problem" by making a...

    You can solve the "square problem" by making a hotspot:
    - Go to the buttonedit window, with the up-frame etc.
    - Make a new layer
    - Draw a sqaure on the new layer
    - Make sure that the sqaure...
  7. Yep you are right. I forgot about loading.:(...

    Yep you are right. I forgot about loading.:(
    Sorry for that.
    I am just too tired:)
  8. To place your loaded movie at the stage use this...

    To place your loaded movie at the stage use this code:


    //here is the code to load the movie home.swf in the target infotarget
    on (release) {
    loadMovie("home.swf", "_root.infotarget");...
  9. Okay I know what is wrong. It is because it is...

    Okay I know what is wrong. It is because it is text and somehow text won't "alpha", I don't know why.
    Because your text isn't dynamic you can do this. Break the text in the button apart ("ctr+b")....
  10. Okay what you should do is this: Just make it an...

    Okay what you should do is this:
    Just make it an alpha tween without a mask. Then it should work.
  11. Can you post an example. Because I don't get it.

    Can you post an example. Because I don't get it.
  12. Waiiiiiiiiiiiiiittttttttttinnnnnnnnnnngggggggggg.....

    Waiiiiiiiiiiiiiittttttttttinnnnnnnnnnngggggggggg.....

    Or the bug is really hard to fix or they found some other bugs and fix that also.
  13. Replies
    2
    Views
    573

    tried this??? on (release) { ...

    tried this???


    on (release) {
    MovieClip.attachMovie("others", "m_others", 999);
    m_others._x = 82.8;
    m_others._y = 82.1;
    }
  14. Replies
    2
    Views
    499

    Why don't you use this syntax? //this lives...

    Why don't you use this syntax?


    //this lives in a Frame Action in main Timeline
    for (i=1; i<3; i++) {
    faName = "fa"+_root.nav.curFrame+"_";
    fas = new Array(faName+1, faName+2, faName+3); ...
  15. Replies
    3
    Views
    461

    It is possible.

    I would use MySql, because it is free it is fast it is easy and it can handle a lot of datatraffic.
    And about the flash thing, It is possible to get all the info from the database, but remember it...
  16. Another week and we have been waiting a month....

    Another week and we have been waiting a month. Isn't time to tell us when we can expect the new player. How long do I have to tell my clients it will be repaired.
  17. Replies
    15
    Views
    929

    I got it to work!

    Change nothing at your movie accept the code at the first frame of the root:


    // The prototype for the button
    Button.prototype.onP = function (FuncPres,FuncRel) {
    this.onPress = FuncPres;...
  18. Can you again post some code, because I don't get...

    Can you again post some code, because I don't get the problem. It is probably me, thinking too hard:)
  19. Replies
    15
    Views
    929

    I made this up I hope it can help you: //...

    I made this up I hope it can help you:


    // The prototype for the button
    Button.prototype.onP = function (FuncPres,FuncRel) {
    this.onPress = FuncPres;
    this.onRelease = FuncRel;
    }
    // declare...
  20. Replies
    4
    Views
    481

    This is a link I got from flashguru. Perhaps...

    This is a link I got from flashguru.
    Perhaps this can help you a little bit further.
    here
  21. Replies
    5
    Views
    571

    Thanks. I have never done that before. And I...

    Thanks.
    I have never done that before. And I will never do it:)
  22. Replies
    3
    Views
    549

    I think this will help you out;) function...

    I think this will help you out;)



    function GoToURL() {
    value = cb.getSelectedItem().data
    gotoAndStop(value);
    }

    cb.setChangeHandler("GoToURL");
  23. Replies
    9
    Views
    681

    I think I miss something like this: if...

    I think I miss something like this:


    if (_root.getBytesLoaded() == _root.getbytestotal) {
    gotoAndPlay("da_site");
    }
  24. Just load your movie into a MC. And then you can...

    Just load your movie into a MC. And then you can put everywhere on the stage.
    Like this:

    MyMC.loadMovie("test.swf");
    MyMC._x = 200;
    MyMC._y = 200;
  25. Replies
    9
    Views
    681

    Could you post your code please??

    Could you post your code please??
Results 1 to 25 of 94
Page 1 of 4 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center