Positioning objects(movie clips)!?

Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default Positioning objects(movie clips)!?

    sorry for clumsy english..
    This is site: [url]http://www.nevcos.ru/promo/vorsinka/[/url]. Anybody know about method
    align object(bear, 1000, jacket, gloves and child)?
    How i can make positions objects in flash relatively width of browser.
    For instance, if we modify width, objects in flash displace relatively width.
    One more site: [url]http://www.nokia.ru/lifestyle/winteraction/[/url] (elevator move with
    right side of flash, on the separate layer)
    anybody know?
    Thanks..

    PeterLev Guest

  2. Similar Questions and Discussions

    1. Movie clips
      Need help with something. When using the Actions to show a movie when hitting a button I want to show a movie stopping at the end and you have...
    2. Movie clips loading
      Hello I am having a problem with levels when loading a movie clip. Is there anyway to on clip event it cks to see if a movie is on loaded on a...
    3. Referencing Movie Clips / Objects
      I have a form composed of Movie Clips of type Input Text which all have a unique instance name. I want to be able to call each of those input...
    4. Loading Movie Clips into other movie Clips
      I know I have done this before (or at least something like unto it) but can't find a clear explanation of how to or if it can be done: I have an...
    5. Question regarding controlling and/or loading and unloading external movie clips based on objects _y position.. please HELP!
      Here is the situation... Look here http://www.worthyconcepts.com/Version2/Bars1.html I am loading multiple external movies (right now only...
  3. #2

    Default Re: Positioning objects(movie clips)!?

    your first reference just uses a restricted startDrag() funcion. for example,
    attached to the objects hanging on the line:

    on(press){
    this.startDrag(0,0,this._y,stage.width,this._y);
    }
    on(release){
    this.stopDrag();
    }

    kglad Guest

  4. #3

    Default Re: Positioning objects(movie clips)!?

    Resizing the movies based on the browser width can be a bit tricky, but I'll
    try to explain it.

    First you must setup your flash movie to handle this. Then you need to set
    your movie to play at 100%. You do this in the HTML that calls your movie.


    // This aligns your stage to the top left
    Stage.align = 'tl';
    // This sets the flash movie so that it doesn't scale the contents but instead
    just increases your stage size
    Stage.scaleMode = 'noscale';

    // Create a stage Listener Object that listens for changes in the stages size
    var stageListener:Object = new Object();
    stageListener.onResize = function() {
    // Put you resize code here
    }

    // Assign the listener to the stage
    Stage.addListener(stageListener);


    Hopefully this helps.

    Thanks,
    Danny Patterson

    dpatters8 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139