A Flash Developer Resource Site

Search:

Type: Posts; User: Mirandir

Page 1 of 20 1 2 3 4

Search: Search took 0.45 seconds; generated 54 minute(s) ago.

  1. Replies
    2
    Views
    344

    I'm not sure if it's a bug or not. But it's the...

    I'm not sure if it's a bug or not. But it's the way it works. What you need to do is put the contents of the movieclip into another movieclip and then set the alpha of that.

    /Mirandir
  2. Replies
    5
    Views
    552

    If you wan't to open the file requesters that...

    If you wan't to open the file requesters that wont work. The esiest way to do this is to use the FileReference object. However that object is only supported by Flash player 8.

    In earlier versions...
  3. The DPI houldn't matter. AFAIK it's only valid...

    The DPI houldn't matter. AFAIK it's only valid for printouts anyway.

    What I've found is that it works if the main timeline is just a single frame. However that makes the preloading of the movie a...
  4. Replies
    1
    Views
    420

    http://www.kirupa.com/developer/mx/full_site.htm...

    http://www.kirupa.com/developer/mx/full_site.htm

    /Mirandir
  5. Replies
    2
    Views
    545

    It's called the "registration point". And...

    It's called the "registration point". And Actionscript always does it's rotation and scaling relative to that point.

    If you need the loaded image to rotate around it's own center you need to use...
  6. Replies
    8
    Views
    462

    I think it's splice() you should use. Slice only...

    I think it's splice() you should use. Slice only creates a new array consisting of the "copies" of the specified elements.

    /Mirandir
  7. Replies
    4
    Views
    446

    Check attachment... /Mirandir

    Check attachment...

    /Mirandir
  8. Replies
    3
    Views
    346

    Don't instantiate the array (new Array) when you...

    Don't instantiate the array (new Array) when you declare the varaiable in the class file. Instead that code should go into the class constructor. If you assign an instance to a var where you create...
  9. It's probably because you need to convert...

    It's probably because you need to convert totalgirls from String to Number.



    complete4 = Number(totalgirls);
    total = 180000;
    if (complete4 == total) {
    gotoAndStop(100);
    }
    frame =...
  10. complete4 = totalgirls; total = 180000; if...

    complete4 = totalgirls;
    total = 180000;
    if (complete4 == total) {
    gotoAndStop(100);
    }
    frame = int(complete4/(total/100));
    _root.Girls.onEnterFrame = function()
    {
    if(this._currentframe ==...
  11. Replies
    4
    Views
    2,282

    http://www.quasimondo.com/archives/000565.php ...

    http://www.quasimondo.com/archives/000565.php

    /Mirandir
  12. Replies
    4
    Views
    681

    Take a look at this:...

    Take a look at this:
    http://www.adobe.com/devnet/flash/articles/adv_draw_methods.html

    /Mirandir
  13. Replies
    25
    Views
    1,698

    Do you use "export for actionscript" on anything?...

    Do you use "export for actionscript" on anything? Or do you have a lot of embeded fonts?

    /Mirandir
  14. Thread: stage center

    by Mirandir
    Replies
    2
    Views
    499

    What do you set Stage.align to? If it isn't set...

    What do you set Stage.align to? If it isn't set the whole movie will be centered as the stage resizes so if you want a movieclip centered on stage you shouldn't need to do anything with it. Unless...
  15. Replies
    10
    Views
    535

    Have you tested the movie uploaded to a server? ...

    Have you tested the movie uploaded to a server?

    Flash 8 has this new "Local playback security" thing. That allows the movie to only access the local files or things over network. The default is...
  16. Replies
    2
    Views
    363

    Hard to say. What doesn't happen that you expect...

    Hard to say. What doesn't happen that you expect to happen. What is "myObject" and "mySubObject"? AS 2.0 Classes or a AS 1.0 "Class" (A function)?

    /Mirandir
  17. Thread: MC creation

    by Mirandir
    Replies
    2
    Views
    416

    When you create your movieclips inside that...

    When you create your movieclips inside that "menucontain" movieclip I assume you change the path used on createEmptyMovieClip. Just remember to change the path on the getNextHighestDepth() too.
    ...
  18. Thread: filereference

    by Mirandir
    Replies
    2
    Views
    456

    No. This is a little silly thing with...

    No. This is a little silly thing with fileReference. No matter if you are trying to load och send things you must go through the server first. So in your case you would first need to send the file to...
  19. Change the code on the dragable movieclip to...

    Change the code on the dragable movieclip to this:



    onClipEvent (enterFrame) {
    if (_parent.DC.hitTest(_root._xmouse, _root._ymouse, true)) {
    this._visible = true;
    } else
    this._visible...
  20. Replies
    6
    Views
    658

    This is the book you should get:...

    This is the book you should get:
    http://www.amazon.com/gp/product/059600396X/ref=pd_kar_gw_2/102-3911303-4683333?%5Fencoding=UTF8&v=glance&n=283155

    If you feel upto learning AS 2.0 get this book...
  21. Replies
    2
    Views
    1,730

    var myNumber = 10; var myHex =...

    var myNumber = 10;
    var myHex = myNumber.toString(16);
    trace(myHex); // Should print "a" in the output panel


    /Mirandir
  22. Replies
    4
    Views
    573

    Well don't use keyframes. Just set the variable...

    Well don't use keyframes. Just set the variable directly on the button.

    Or even better and if possible put the load actions directly on the button. That way you can alter it whitout needing to...
  23. Replies
    4
    Views
    573

    Well that seems like it's lot of messy code. How...

    Well that seems like it's lot of messy code. How is this thing supposed to work? When does the frames change and what makes it goto another frame?

    Where are the if-staments located?

    /Mirandir
  24. Thread: 20 variable

    by Mirandir
    Replies
    2
    Views
    553

    Since flash movies can be scaled I preffer to...

    Since flash movies can be scaled I preffer to call the unit "points" but if the movie isn't scaled in any way then 1 point == 1 pixel.

    /Mirandir
  25. Replies
    2
    Views
    411

    I think you need to put the guide layer into a...

    I think you need to put the guide layer into a movieclip.

    /Mirandir
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