ActionScript 2.0 :: MovieClip Size Once Jpeg Loaded
Jun 16, 2005
I am creating an empty movieclip and loading a jpeg into it. The mc does not seem to resize to account for the jpeg's size, also the parent mc (thisClip) which is also created dynamically (with attachmovie), is set at 500 why:
thisClip.createEmptyMovieClip("theJpeg", 2);
thisClip.theJpeg.loadMovie(url);
thisClip.theJpeg.onEnterFrame = function(){
[Code]...
View 8 Replies
Similar Posts:
Nov 9, 2006
How can I get a jpeg that loads with the loadmovie command to fit to the dimensions of a movieclip that is being used as its "place holder"? Also if this image starts off initially at a much larger resolution than the place holder movieclip and therefore has to be shrunk down to start with, what happens when browser window is then resized to a larger window? (i.e the whole flash movie is enlarged). Will the image be stretched from the size it has been shrunk down to or will it still reference that external file? So if the image was larger than the site would ever need it to be would it look the best quality at all times?
View 6 Replies
Jan 31, 2007
I'm trying to create flash app where a single jpeg (person headshot) is loaded into the masked movieclip (same size as passport photo) (using loadMovie), then user can edit the image (drag inside mask, zoom, rotate) and then after pressing a button the app duplicates the EDITED image 4 times - to make sort of headshot sheet.
While I know how to load movie, drag single clip or scale it, I have no idea how to duplicate the movieclip once is edited, to make identical copies of it (scaled, rotated...)If I use duplicateMovieClip it won't work since it won't duplicate the loaded image.
View 3 Replies
Jun 27, 2009
how i can set the size of an external swf i have loaded into a target movieclip ive got the external swf loading into the target ok but its too big.
View 2 Replies
Jan 27, 2005
Im having problems with assessing the size of an image after having loaded it into a movieclip using MovieClipLoader.Im trying to use the onLoadComplete-method to determine when the image is completely downloaded into the imageholder-mc, but Im just getting the original size of the mc, not the image's.[code]
View 3 Replies
Jun 10, 2009
I wonder if any of you can point me in the right direction. In my stage I have a movieclip where I want to load several images with different sizes. This mc called "container" adds the loader to the stage so I'm asking for the loader width and height once has finished loading and then passing these to the width and height of the mc container so it resizes accordingly. But...it doesn't work. Here is my code:
[CODE]
var pic:Loader;var totalImages:int = 10;for (var i:uint = 0; i<totalImages; i++){ pic = new Loader() container.addChild(pic) pic.load(new
[code].....
View 3 Replies
Sep 17, 2011
I have successfully loaded an external swf file into my own one. now what i want is to change the size of the loaded file.
the loaded file is an image and its height:500 and width:500 but what i want is to resize it to 200x200
How can i do that.
here is my code to load external image
var peelawayimage = _root.createEmptyMovieClip("peelawayimage", 7);
var mcImage = new MovieClipLoader();
mcImage.loadClip(_root.video_image, peelawayimage);
View 9 Replies
Jan 27, 2005
Im having problems with assessing the size of an image after having loaded it into a movieclip using MovieClipLoader.
Im trying to use the onLoadComplete-method to determine when the image is completely downloaded into the imageholder-mc, but Im just getting the original size of the mc, not the image's. I using the MovieClipLoader incorrectly somehow?
Code:
var MCL = new MovieClipLoader();
MCL.loadClip("IMAGE.jpg", mc_ImageHolder);
MCL.onLoadComplete = function (targetMC) { // perhaps 'targetMC' should be used?
trace (mc_ImageHolder._width); // outputs mc's original size, not image's size
}
View 3 Replies
Apr 11, 2012
I am developing a ipad game using AS3. Because of the detail of the game, I have to switch between around 5 backgrounds with the size of 4800x1800. Normally, I use the the switch function the turn off the visible of all background movieclips then turn on the one I need, but everytime, I function will work ok for the first time but crack on the second. I have traced and found it is really of the switch visible of the backgrounds. After that, I try to use bitmapdata and redraw every screen starts. But it even worse, crack for the first time I test. Seem it is not ok for the processor to handle such big bitmapdata.
View 1 Replies
Oct 8, 2009
I am creating a flash image gallery, much like flickr. I need the fullsize images to dynamically change size according to browser size /resize. The original images are of various sizes when i load them. I have set the _quality parameter to "BEST" on the clip I load the jpegs into. It actually works pretty smooth, but in between when there is some sharp lines in the image, it looks awfull - the line being cracky and disordered.
View 1 Replies
Jul 2, 2008
how to reduce the file size of JPEGs without compromising the quality. I have a flash ad that has3 screens with photos, but clients needs the .swf file to be under20K. I can only get it down to 28K.I've done the following: * cropped photo down to actual size* used "Save for Web" function in Photoshop
View 2 Replies
Jun 2, 2009
I am creating a website for a wedding and using the photos of the couple on the website. I created designs in Photoshop CS3 with the following settings:Document Size: 6.25" x 8.25" or 1875p x 2475p @ 300pixels/inch To use the image in flash, I used "Save As" in photoshop to convert image into JPEG with "Quality 10 Maximum" setting.I created a Flash CS3 document with the following settings: Document Size: 6.25" x 8.25" or 494 x 550 pixels I imported the JPEG image from photoshop into flash and came in an image much larger than 6.25"x8.25". I resized the image in flash with constrained dimensions to 494x550 pixels and it the text shadows and glow lost its clarity.
TRIAL 1Obviously something was wrong. So, I went back to Photoshop and used the save for web/devices option and saved it as a high quality JPEG. Same result.
TRIAL 2This time, I tried a different trick in Photoshop. I went to Image->Image Size and changed the image resolution to 150pixels/inch and used "Save As" again. I imported it again to Flash and now the image was too small.
How do I match the image "save as" from photoshop to the flash document size so that I dont lose resolution? I used Zoomify in photoshop successfully without losses. Why is it not possible to just import an image to look the same way a JPEG file appears?
View 2 Replies
Aug 12, 2004
how do i know the size of a jpeg image before i load it into a mc ? the point is that I'd like to make a preload for each dynamic image i load
View 2 Replies
Apr 15, 2005
i have a simple xml/flash portfolio script (similar to the one in the xml/flash) tutorial and the problem is my pics are not uniform in size.this is probbaly an easy problem but how would i get flash to create a mc getting the size from either the xml (manually put it in the xml) or automatically get it from the jpeg??
View 1 Replies
Apr 15, 2005
I have a simple xml/flash portfolio script (similar to the one in the xml/flash) tutorial and the problem is my pics are not uniform in size. This is probably an easy problem but how would I get flash to create a mc getting the size from either the xml (manually put it in the xml) or automatically get it from the jpeg?
View 1 Replies
May 10, 2010
I am new to Flash CS5 and I have created a slide show. I am trying to reduce the .swf file size for faster loading. I have been trying to adjust the size using the jpeg quality slider, but it doesn't seem to function whether I set it to 0 or 100 or anywhere in between. Publishing always generates the same size swf file.
View 3 Replies
May 17, 2011
I am trying to apply rotationY/X/Z to an externally loaded image. The problem is that when I rotate the image in '3D', it does not appear. When I apply normal rotation, the image does appear. I have verified that the jpg is loaded, just does not display after rotationY/X/Z. The code below are snippets of my attempts.
PHP Code:
//LOAD IMAGE
public function load_img():void
[code].....
View 1 Replies
Oct 10, 2008
Im quite new to the ActionScript scene so apologies if thisquestion has already been answered elsewhere. I am creating a 2dshooting game, and Im loading multiple images of various enemiesfrom several jpg files, but when I display these on screen heimages have a big black square round them. Now when I amprogramming in another language such as OpenGL, if I wanted to getrid of this I would enable an alpha blending function and set 100%transparency for the black colour which I want to hide. So I loadthe jpeg file and store it in a BitmapData variable, and then Icopy this into a new BitmapData variable with transparency enabledand set to 0x00000000 (fully transparent black). I thought thiswould solve my problem butt no joy. My code is shown below:public class GraphicsLoader extends Sprite {
public var loader:Loader; // The bitmap loader
public var bmp1:Bitmap;
public function GraphicsLoader(path:String)
[code].....
View 4 Replies
May 19, 2009
I have a flash file that loads jpeg files and runs through each on the timeline. I have nav buttons to go back and forth. Here is the problem, all images load on frame 5 and I do this while another image is displayed so that they are loading in the background. I do this so that my initial file size is small, but I can load images in the background making the flash file appear to load quickly and loading other elements after it starts.
So all images load on frame 5, then I go frame by frame until I hit frame 11. If I click one of my nav buttons to go back to say, frame 7, the jpeg is gone and is no longer loaded. How to load jpeg files into the library, or at least, keep them loaded after they have loaded once? I have attached my fla file for reference. I had to rename the extension to eps, but it's a fla file, just rename the extension.
Attachments: hm-slideshow2.eps (1.1 MB)
View 2 Replies
May 9, 2011
way to set the quality of a loaded jpeg the way we're able to set the quality on library item? It's pretty neat to be able to set the smoothing, is there a similar way to set quality?? Is there an approach anyone would recommend for dynamically setting the quality on a loaded image?
var loader:Loader = new Loader();
loader.load(new URLRequest("myImage.jpg"));
addChild(loader);
[Code].....
View 2 Replies
Jan 24, 2009
I was wondering, after looking into loading external images via xml- how you would control the size of those images on resize and on first loading.
Do you define the size of the container mc?
Can you apply the same or similar onresize code as you would when applying it too images on the stage?
View 4 Replies
Jan 6, 2010
why I cannot convert a loaded jpeg to a bitmap.I've found similar posts on this forum but the solutions provided are not working for me. I have a very simple example of what I'm trying to do below:
Code:
private function loadImage():void
{
var imageLoader:Loader = new Loader();[code]...
For whatever reason I get the error:
Code: TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::Bitmap@3a0926d1 to Function.at com.ncnmar.interphaz::People01/loadedImage()
View 1 Replies
Jul 7, 2004
I'm having trouble getting the _width & _height of a jpeg loaded using loadMovie. I'm trying to reposition it (pseudo-registration point) for rotation in a container movie clip. If I use hard-coded numbers, it works fine. However, if I try to position it based on its _width and _height properties, it's no go... in fact, it doesn't even show up on stage.
View 7 Replies
Oct 15, 2007
Is it possible to dynamically load a JPEG image and use it as a tiled background for a fullscreen flash movie?Everything I see online is for bitmaps already loaded in the library.
View 1 Replies
Jul 26, 2011
I have a movie that loads images from an external source based on paths contained within an .xml. As far as I can see, there is no restriction to the size of the loaded image, which are are JPEGs, hence flash will not have these images resized. The images look fine when loaded in Photoshop or viewed separately, but the quality is just awful when loaded within the movie.
I've tried the usual hints like increasing JPEG quality in Publish Settings, but understand that since these images are not imporated into Flash CS5 before compiling, but are instead loaded when the .swf is run, these settings would not have any effect.
[Code]....
View 1 Replies
Sep 25, 2011
Basically, my problem is that I have a movie that loads images from an external source based on paths contained within an .xml. As far as I can see, there is no restriction to the size of the loaded image, which are are JPEGs, hence flash will not have these images resized. The images look fine when loaded in Photoshop or viewed separately, but the quality is just awful when loaded within the movie.I've tried the usual hints like increasing JPEG quality in Publish Settings, but understand that since these images are not imporated into Flash CS5 before compiling, but are instead loaded when the .swf is run, these settings would not have any effect.Does anyon
Code:
stop();
var my_x:Number;
[code].....
View 3 Replies
Jul 10, 2005
I have three buttons, which when clicked load an external file into a movie clip called container. The first jpeg (1.jpg) is loaded into the container when the movie loads and the thumbnail buttons have the files t2.jpg, t3.jpg and t4.jpg loaded. When these are clicked they load 2,3 and 4.jpg respectively into the container. The problem is that I can only have 3 buttons but need to display 4 images. So I want the image that is loaded into the container to swap with the one that is in the button. I can't find any code, either on this forum or on the web, that retrieves the name of a file that is loaded into a movie clip.This is what I need.
Because all the images are named 1,2,3 or 4.jpg and the thumbnails for the buttons are t1,t2,t3 or t4.jpg I should be able to easily write the additional code to change what happens when the button is clicked, because when the picture on the button has changed to what was loaded into the container, the on(Release) code will need to change too.
View 2 Replies
Jun 27, 2008
I'm trying to load images from [URL] but there are strange errors These 2 urls are giving errors...
[Code]....
is this because I can't read from that server ?? I can open the images in the browser...
View 9 Replies
Jan 18, 2010
I'm aware this is possible in AS3, but Im working in AS2... and (to make things difficult) I'm working on an offline application. It is going to be distributed via CD, will run through the application and then save the text inputs (basically an order form) as JPEG (unless it's possible to save to PDF - but as not all computers will have PDF writer I assume this is impossible)Am I correct in thinking I need to utilise the Bitmap Class? I'm using SWF Studio to wrap the application
View 1 Replies
Jun 6, 2003
In FLASHMX i import a jpeg and convert it to a movieclip I give the movieclip an instance name of "MC".
Then i put this script in: startDrag("MC", true); IT DOESNT WORK?
If i put it in Flash5 it works perfectly. The idea is to drag a picture under a mask.
View 3 Replies