ActionScript 2.0 :: Once Image Loaded And Resized Can't Change Alpha
Aug 8, 2004
I am loading two images dynamically I then RESIZE them according to the Stage.width I make a crossfading effect between them. Doesn't work. I get rid of the resizing, works. I need the resizing. I must be missing something, but is there an issue with changing the alpha of resized loaded images?
View 4 Replies
Similar Posts:
Jun 2, 2011
So I'm loading a really big pic in this mx:Image manteinAspectRatio enabled with a height constraint and as usual it doesn't work (Flex is definitely not for me):
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
[code].....
View 1 Replies
Jan 4, 2009
i will like to create an alpha in effect when i load my external jpg, and alpha out when i close it..on this?below are my script
PHP Code:
this.createEmptyMovieClip("container_mc",this.getNextHighestDepth());
var mclListener:Object = new Object();
[code].....
View 5 Replies
Feb 25, 2009
I am having problem making classes to communicate. I have main class which loads external swf that contains one image at this time. I want to change alpha for that image using button (created from library) from main swf. Don't know how, various methods I tried gave various error messages.
View 5 Replies
Aug 11, 2008
i have two swfs. One loads the other.the thing is that i know Stage.onResize works for a swf, as per adobe docs. i want to know that if the swf is loaded into another swf, then resized.. will it fire the onResize event or will it fire only for the main stage/root document ?
View 1 Replies
Apr 8, 2009
- My flash project is resizeable.
- I'm loading SWF files on the main stage.
- I need the X Y coordinates of an elements from the external SWF
The problem is that even though the loaded SWF resizes on browser resize, which thus moves the objects within it, if I perform a Trace command to give the the X and Y position of these resizing objects, they are always the same. Flash seems to be looking at the loaded SFW stage rather than the main stage...How do I find out the X and Y coordintes (relative to the main stage) of a movie clip from an externally loaded SWF that resizes?
View 1 Replies
Dec 13, 2004
I've found the loader component handy in loading JPEGs and scaling them to the specified size. However, I've found it a little annoying that when the image is loaded, sometimes you can see the image in it's original size for a fraction of a second before it's resized to fit the loader.such as the loader only being visible after the image is resized?
View 1 Replies
Dec 17, 2007
why this image...http:[url]....will not load in flash?
View 3 Replies
Aug 25, 2009
mc.loadMovie("01img.jpg",0);
i use a mc load a pic i want the pic can auto fit the mc's width and heigth
View 6 Replies
Aug 2, 2006
Is it possible to change the height and/or width of an MC after it loaded an image (xml)?
I made an upload page for images and a xml file to read the records from the database. So any image size is possible. but it must be like 100x100 pixels (just an avatar kind of size).
Do i need to do that with php or is it possible with A.S. 2??
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
Mar 2, 2011
I am creating an image gallery and the images change but change right back to the original image. I had it working yesterday but today it doesn't work.
[Code]...
View 1 Replies
May 29, 2002
What I want to do is fade one image out while fading another image in. The script that I am using fades one image to alpha 0 then fades the next one in to alpha 100.The script that I am using is this.On first frame of main timeline
back._visible=false;
function goPage(whichWay){
slides.alphaChange=-5;[code]....
This script works fine but I want to modify it.
View 12 Replies
May 9, 2005
I have created a finite menu and it works fine, the only problem is that now I want to have the menu set to 50% alpha and when the user moves the mouse over the menu it gradually increases to 100%
View 14 Replies
Apr 16, 2010
I am trying to dynamically change the alpha value of a set of movieclips on a timer. The timer works but I get an error message from the function. This is the error:
TypeError: Error #1010: A term is undefined and has no properties. at piedacoulisse_timer_fla:MainTimeline/zoom/piedacoulisse_timer_fla:onT ime()[piedacoulisse_timer_fla.MainTimeline::frame1:124] at
[Code].....
View 5 Replies
Apr 26, 2010
Im very new in the flash business and i started making a gallery after this videoi get 2 errors when i write te action code for alpha change. Is it because i use ActionScript3 instead of 2? because i made it with flash CS3.
View 8 Replies
Jul 12, 2010
Basically, I want to change the alpha value on my movieclip. I start my mc with an alpha of .08 (8%).
mc.alpha = .08;
What I then want to do is increment it to .9 (90%) and when it hits that, decrement it back to .08, and then when it hits that, increment it again to .9 etc.
I have tried
if(mc.alpha==.9){
mc.alpha -= .01;
}else{
mc.alpha += .01;
}
View 7 Replies
Jan 20, 2012
From what I understand you can change the alpha value of a textfield to be fully transparent. I would like to have chat output that fades after a while. I was wondering if there was a way to change just a portion of the string inside of a text field to transparent. The textColor does not have an alpha value. I could just use multiple text fields but I would like to avoid doing that if possible for efficiency sake.
View 1 Replies
Jun 18, 2009
I'm making a drawing API for my homepage. My homepage is exclusively created in Flash AS2... But I have a problem with my brush for the drawing API... I would like to change the opacity/alpha value of the brush, with keypress LEFT and RIGHT... But i can't get it to work!
Here is my code:
ActionScript Code:
lineThickness = 0;
selectedColor = "0x000000";
[Code]....
View 0 Replies
Jul 3, 2009
Ok. I am new again so I hope I am describing this correctly. I don't know the best way to do this but this is what I've dreamed up so far: I have a number of movie clips on my screen, all thumbnail sized images, each with an instance name (ex: tw_lifeoftheparty, tw_xmen, tw_xfiles, tw_diehard, etc.).
In each movieclip there are 2 layers: the thumbnail image(bottom layer) and a black border(top layer). The black border is an object named wk_border and isin each of the thumbnail movieclips.
I have given wk_border the same instance name in each thumbnail movieclip "border"
[Code]...
View 5 Replies
Nov 5, 2009
Let me try to explain what I'm doing. I have multiple movieClips (mc_aitkin, mc_anoka, there will be a lot more) on the stage that I want to change their alpha using data from an xml when it loads. I can isolate the info I want and trace it so it shows in output, but I'm not sure how to use it from there.
I've tried to convert the xml data to a number and do an if/else as shown below, but the only output I get is "not" (from a trace). So I'm guessing the if/else isn't recognizing the xml data as a number?
If I can resolve that, the next step will be to apply this function to the large number of mc's I'll have on the stage. Would that be with something like e.currentTarget.alpha = .5; ?? I don't think I can put it in the same changeAlpha function because there the property of 'e' would be undefined.[code]...
View 8 Replies
Jan 18, 2010
How can i change the alpha value of a movieclip through actionscript?
View 1 Replies
May 22, 2010
I want to make a button to change the alpha of an instance but I dont know how to make it.
Thats what I want: When I click the button, then the movie clip appears (alpha 100)When I click the button again, then the movie clip disappears (alpha 0)
View 2 Replies
Sep 24, 2010
I am making a website/online gallery. I have all my buttons assigning a frame number or value eg. [code]...
and then have all different movie clips loading depending on the the 'frameno'
My problem is that i want the button alpha to change when you are on that page. So i am assuming it would be something along the lines of.[code]...
View 9 Replies
May 6, 2004
I've been trying to change an MCs alpha with actionscipt. the movies FPS is 30. Here's the as:
onClipEvent(load) {
var alpha = blue._alpha;
alpha = 50;
var forwardA = true;
var changeA = true;
[Code] .....
Btw, "blue" is the MC that I want to change the alpha of, and this code is on that MC.
View 6 Replies
Feb 26, 2005
how to script a alpha change on roll over!
View 2 Replies
Jun 7, 2003
Is there a way to change Alpha settings on MC using AS? Something like this:
[Code]....
Im trying to duplicate the window effect on this weeks site of the week: [URL]
View 3 Replies
May 7, 2010
I am quite new to actionscript 3 here is what I want to do: When the mouse hovers over a movieclip I want another movie clips alpha to go from 0% to 100% then when the mouse moves off of the movie clip the reverse happens.
View 2 Replies
Feb 26, 2005
I do wonder how to script a alpha change on roll over!
View 2 Replies
Oct 2, 2010
I am working on a project for school using ActionScript 3. I have a matrix created with an animated movie clip. The matrix looks like a bunch of shapes changing size and color on the screen. I would like to have it so when I move my mouse moves over an individual shape in the matrix the alpha will change to be more transparent... like 0.5. I'm sure it would be a mouse move function, but I don't know how to write that part of the code.[code]...
View 16 Replies