A Flash Developer Resource Site

+ Reply to Thread
Results 1 to 3 of 3
  1. #1
    _global.chosenson="flash"; chosenson's Avatar
    Join Date
    Jul 2002
    Location
    BIG APPLE
    Posts
    716

    sizing dynamic loaded images

    I am dynamic loading images to a blank mc on stage. Everything works fine with the script I am using. My problem is I am concerned about loading large images to a specific size. I would like all images when loaded to not be more than w 400 or h 300. I have tried setting the mc _width and _height property to those figures using _root.mcLode1._width = 400; ..._height = 300; but when I do this nothing is there. I have tried an if statement; if the width or height is greater than then _xscale-=5;/_yscale -= 5; This kind of worked but only after the picture loaded to large and then was reloaded again and again till it met the test.

    Below is the script I am using to load the images:


    picture = ["1.jpg", "2.jpg", "3.jpg", "4.jpg"];
    MovieClip.prototype.pressMe = function() {
    this.onRelease = function() {
    _root.mcLode1.loadMovie(this.subNav.text);
    _root.mediaTxt.text = this.subNav.text;

    };
    };

    Thanks
    If you have a question, need some help, email me:chosenson

    It's always the simplest things that escape the complex mind!

    always be just

  2. #2
    Senior Member pellepiano's Avatar
    Join Date
    Feb 2000
    Location
    Stockholm, Sweden
    Posts
    15,150
    You put the fixed dimensions ON the movieclip that you are loading images into.

    onClipEvent(load){
    this._width=400;
    this._height=300;
    }

    -Pelle Piano
    // Image Gallery
    www.studiobild.com
    // Photo Blog
    http://talesofthepixel.blogspot.com

  3. #3
    _global.chosenson="flash"; chosenson's Avatar
    Join Date
    Jul 2002
    Location
    BIG APPLE
    Posts
    716
    I tried what you posted. but like I said in the first post, with that script no picture shows.
    If you have a question, need some help, email me:chosenson

    It's always the simplest things that escape the complex mind!

    always be just

Posting Permissions

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




Click Here to Expand Forum to Full Width


HTML5 Development Center