ActionScript 3.0 :: Have Stage Resize Based On Movie Clip?

Jun 26, 2009

i have a button thats adds a movie clip to the stage...the movie clip height is bigger than the stage. is it possible to have the stage "extend" when you click the button to show the whole movie clip?

ActionScript Code:
addPic.addEventListener(MouseEvent.CLICK, addImage);
function addImage(event:MouseEvent):void{
var mc:MovieClip = new testClip();
this.addChild(mc);
}

kinda like this i guess [URL] when you click on the flash on that page it expands and stuff

View 3 Replies


Similar Posts:


ActionScript 2.0 :: Movie Clip Resize Yscale Based Off Dynamic Text Height

May 26, 2010

I'm using a tweening engine and I need to be able to base the _yscale % of a movie clip off the height of a dynamic text field that is slightly smaller contained within the movie clip. 52 pixels smaller to be exact.I'm very poor at math but I'm guessing so far that some variable needs to be declared to factor the percentage based off the height of the dynamic text field. And I just can't think of how to do that.What I know so far:movie clip height at 100% _yscale = 396 the 'buffer' space above and below the dynamic field = 52.So if my dynamic text field height = 0, my movie clip would be 52 pixels in height. And that percentage in _yscale is 13.1%.I just can't figure out the math for this and how to translate it into ActionScript.

View 2 Replies

ActionScript 2.0 :: No Resize/scaling A Movie Clip On The Scaling Stage?

Mar 11, 2008

I've search through all the threads with "scaling" and "resizing" and can't find the solution.

Basically I have a GUI element on a gallery that I don't want to scale, while the rest of the page is free to resize/scale.

I think I need to add a listener of some sort to the stage, but I'm not sure how to do this.

View 2 Replies

ActionScript 2.0 :: Setting _x Of Movie Clip Based On Another Movie Clip?

Apr 29, 2003

does anyone know the syntax?i want to get this._x = movieclip01._xalthough I do not know the correct syntax.

View 1 Replies

Actionscript 3 :: Align A Clip To The Left Of The Stage On Resize With Flash?

Apr 6, 2011

I'm trying to get my clip to stay at the left of the screen on stage resize, but it isn't working. This is my code:

stage.addEventListener(Event.RESIZE, resizeHandler);
function resizeHandler(e:Event){
circleMenu.x = 0;
}

Obviously that doesn't work, but how do you get the global zero X position. When I resize the window, my clip moves along with it.

View 2 Replies

ActionScript 3.0 :: Resize Window/Movie Clip?

Nov 25, 2010

I have a movie clip that contains a swf file in my .FLA file . How can i enable the movie clip so that when the screen is resized either bigger or smaller, the movie clip enlarges/shrinks accordingly.

View 1 Replies

Professional :: Blur Changes When Resize A Movie Clip?

Oct 17, 2011

In Flash CS3, when I resize a movie clip symbol that has the blur filter applied to it, the amount of blur changes.

View 1 Replies

IDE :: Resize Image Loaded In A Movie Clip?

Nov 17, 2006

I'm trying to resize an image loaded in a movie clip, so that any image I load will always fit correctly in my movie.The script is pretty simple, it reads an xml file where they should be 6 records. Loads the image in the Thumb attribute in on of the 6 containers eg. _root.screen.Event1

Code:

for (i=0; i < 6; i++){
MyEvent = Event[i].attributes ;
_root.screen["Event"+i].Title.text = MyEvent.Title ;

[code]....

It works but not as expected. It looks like only the container is scaled down not the image really.

View 6 Replies

ActionScript 2.0 :: Resize Movie Clip OnRelease?

Oct 8, 2003

I am trying to create a script that resizes my Movie Clip in a smooth motion.

View 4 Replies

IDE :: Resize External Swf Movie To Stage Size?

Feb 5, 2009

What i try to do, is to make a "wrapper" in Flash, in which other swfs could be embedded. (passing the URL of the external SWF by URL) to attach a link to the swfs. (ClickTag - Issue, maybe someone knows this).In the HTML - Code this would look like this:

Code:
<embed src="wrapper.swf" ...>
<param name="filename" value="path-to-external-swf.swf"/>
<param name="clickTag" value="http://www.example.com"/>

The SWF "wrapper.swf" should load the "path-to-external-swf.swf" an puts a onClick - Event on the whole area.That works just fine, BUT The loaded external SWF should always fit to the stage size (like 100% width and 100% height) .My code looks like this:

Code:
// Variables should be passed by URL
_root.filename = "http://example.com/animation.swf";
_root.clickTag = "http://www.example2.com";[code]....

Code:
mClip._width = Stage.width;

When i click on the swf, the movie fits exactly to the stage width...

View 1 Replies

ActionScript 3.0 :: Bitmap Movie Clip Container Resize

May 5, 2009

I'm using the following code to load a .jpg into a movie clip container the problem is I need the container to be a specific size I tried loader.content.width = 50; and loader.content.height = 50; the height part works but the width doesn't work my image just expands beyond the stage width.How do i set the size of the movie clip container?I don't care if the image gets distorted i have a resize script for the images before they are loaded into flash.[code]

View 1 Replies

ActionScript 2.0 :: Resize A Dynamically Created Movie Clip?

Jan 22, 2009

So I have a movieclip that I am dynamically adding to the stage when a user clicks a particular button. There are multiple button that each result in the movieclip getting attached to the staged and scaled to a different particular size. Instead of attaching a new instance of the movieclip every time a button is clicked, I only want to attach a new movieclip the first time one of the buttons are clicked and then scale the dynamically added movie to the size specified in the functions for all of the subsequent button clicks. To be clear, I want to attach the movieclip on the first click and then scale it for all of the subsequent clicks.

Here is the code I am using for the buttons:

ActionScript Code:
stop();
videosBTN.onRelease= function() {

[Code]....

View 4 Replies

ActionScript 2.0 :: Resizing Movie Clip Does Not Resize Text?

Jan 29, 2009

Imagine I have a movie clip on the main timeline that has text in it. If I use the free transform tool on this clip, it resizes the movie and the text within.

However, if I resize the clip using AS2 e.g. clip._height = x; then the clip is resized but the text isn't.

Is there an easy way of achieving the effect that the transform tool has using AScript or do I have to set all the text params separately when I resize the movie

View 1 Replies

ActionScript 2.0 :: Resize And Move A Movie Clip With It Dynamically?

Oct 27, 2004

I'm looking to resize and move a movie clip with Actionscript and Easing. [url]...

View 14 Replies

ActionScript 2.0 :: Movie Clip Position On Browser Resize?

Mar 20, 2008

why isn't this working?

Code:
Stage.scaleMode = "noScale";
var myListener:Object = new Object();
myListener.onResize = function() {

[Code]...

I want the movie clip to be at the bottom right corner or the stage at all times when the browser is resized. The name is the clip is bottom right piece. The flash movie takes up the whole browser with no scale. The movie clip is always over or under the point in space its suppose to be. When i trace the value or the movie clip's _x... its the same as the Stage.width... but it doesnt portray that visually on the stage...

View 2 Replies

ActionScript 2.0 :: Movie Clip Resize On Full Screen?

Jun 9, 2008

Dear members and experts in Kirupa forum, first I apologize because I only join this forum just to ask this question . I already come across some flash forum but can't get the answer to my problem. If somebody from this forum come up with a solution, I may have myself a frequently visited forum. It works, of course... but that's not the problem.The problem occurs when I want to have button scrBtn that can toggle between Full Screen view and normal view.It is obvious that the image that I loaded in the movie clip will get pixelated.That's why when I click the scrBtn button here is the script:

Code:
scrBtn.onRelease = function(){
if(Stage.displayState == "fullScreen"){

[code]....

View 14 Replies

Make A Movie Clip Based On Blank Object?

Jun 21, 2009

Is there a way to make a movie clip based on a blank object?the way i usually make one is by drawing a rectangle and making it a movie clip.

View 1 Replies

Professional :: Preloader Based On A Single Movie Clip?

Jan 6, 2010

Is there a way to have a pre-loader based on a single movie clip, instead of on the entire SWF size? This movie clip may have a single graphic, but the entire movie has a slideshow with more images to display...but rather than making my visitor wait for the entire site to download before they see anything, I'd like to have it so when that graphic is loaded, it displays while the rest of the movie finishes loading. And there would be a preloader that shows the progression of the single movie clip.

View 3 Replies

Play Frame In Movie Clip Based On Time Of Day?

Apr 29, 2009

So what time trying to do is play a specific frame in the movieclip based on the time of day:

PHP Code:

onClipEvent (enterFrame) {
var myDate = new Date();
var hour = myDate.getHours();

[code]....

but when I change to "gotoandPlay" the movieclip just loads from the beginning frame and seems like it doesnt check the time.

View 7 Replies

IDE :: Fade A Movie Clip Out Based On The Proximity Of The Mouse?

Apr 29, 2007

Is there a way to fade a movie clip out based on the proximity of the mouse? Basically if my mouse is greater than 100 pixels away from a movie clip, I want the movie clip to fade to 0 and stay invisible.

View 4 Replies

ActionScript 3.0 :: Duplicating Movie Clip Based On Xml Data?

Nov 11, 2009

I got a flash file which reads xml data and based on total data I need to duplicate movie clips and show them horizontally. Till now i have read the data and displayed it but dont have idea how to display them horizontally.

Code:
i = 0;
level = 100;[code]....

I have done this till now, it duplicates the movie clip but when i want it to change its x coordinate it shows error

**Error** Symbol=mc_contentHolder, layer=Action, frame=1, Line 20: There is no property with the name 'x'.
newClip.x = 328;

Total ActionScript Errors: 1, Reported Errors: 1

View 7 Replies

ActionScript 2.0 :: Rotate A Movie Clip Based On Time?

Feb 11, 2010

Basically what I'm trying to do is make a sundial-style clock animation. I'm using AS2 in Flash CS4. I'm still quite new to Flash so my AS know-how is slightly limited...

I want to get the time from the user's computer (I'm using getHours) and make a line (movie clip) rotate to a certain angle based on the hour. Eg. 1pm = 13 degrees, 2pm = 26 degrees and so on. This is the script I have so far and all it seems to do is rotate the movie clip to 90 degrees.

[Code]...

View 3 Replies

ActionScript 2.0 :: Movie Clip Resize And Position Relevant To Browser?

May 27, 2010

I want to make something like this:

[URL]

The movie clip containing the photo resizes based on the size of the browser window, and the other two movie clips are positioned based on the outside edges.

View 1 Replies

Actionscript 2.0 :: Resize Movie Clip While Scaling Its Contents Proportionally

Mar 4, 2010

I have set a movie clip with instance name if "body" to resize automatically based on the size of the browser window using:

body._x = Stage.width / 2;
body._y = Stage.height - 44;
body._height = Stage.height - 149;
body._width = Stage.width-20;

(that code may not actually have any relevance?)

What I'm wanting to happen is that when the "body" movie clip changes size, I want the objects within it to be scaled proportionally (keeping the x:y ratio the same). The result that I'm wanting will result in the contents (as a whole) being proportionally scaled to the height (because it will always be the smaller dimension in my case) of the current size of the body mc.

I've uploaded my .fla so you can see what im working with. The red square is the body that i've managed to scale but I have not yet added anything within it. (I have tried but it's contents distort when the body is resized)

View 1 Replies

ActionScript 2.0 :: Movie Clip Resize Not Working When Image Is Loaded

Oct 25, 2007

I'm having some strange luck in building an image slide show.I load the image paths into an array from an XML page and then step through the array elements w/ forward and back buttons.I have an empty image clip on the stage where I create an empty movie clip inside each time a new image is loaded.I load the image into the second movie clip like this:[code]Now, 98% of the time this works perfectly, but there is some certain times where the image resizing is completely ignored and the image gets loaded as it's normal size.Can anyone see why the image sizing get's ignored in some instance?

View 1 Replies

ActionScript 2.0 :: Moving Movie Clip Based On Mouse Position?

Aug 11, 2009

I'm creating a slideshow gallery in flash and am basically there now except for one bit...

have a look here [URL]

The slider at the bottom for the thumbnails moves ok but I want it to stop at the last slide. I

I can manage to code it based on the mc's _x value

i.e if (mc._x < -200){ //do nothing }

but this creates a dead stop and I want a gently slow down like if you were to navigate from thumb 8 back to 1.

all of my coding at the moment uses the mc's x value in relation to the mouse's distance.

The code I have currently set on the slider is:

Code:
onClipEvent (enterFrame) {
if((_root.slidesQTY>6)&&(_root._ymouse>460)){
if(this._x<0){

[Code]....

how I could add another if statement that doesn't halt the animation as it hits the last slide but creates a smooth slow down?

View 0 Replies

ActionScript 2.0 :: Play Movie Clip Frame Based On X Value Of Mouse

Jan 15, 2011

On Scene1 I'm trying to add some script that will continuosly recognize what the x axis value is and if it is greater than 600 it is supposed to play frame 1 of the movie, and if it is less than 600 than it is supposed to play frame 10. The code I'm using seems to work, but only at the initial startup of the movie. How do I modify this code to have it continually updating the shoot movie based on where the mouse is at on the movie?

[Code]....

View 1 Replies

ActionScript 2.0 :: Make A Movie Clip Animate Based On Boolean Value?

Jun 29, 2011

I'm trying to make a movie clip animate based on a boolean variable.

so that if boolean a is true, I want the movie clip to play frame 1. if boolean is false, play frame 2. I tried using an onClipEvent but it doesnt want to work.

View 0 Replies

ActionScript 2.0 :: Movie Clip Positioning Based Off Textfield Width?

Aug 13, 2006

I have a text field on the left and a movieclip butted up to the right of the text field. How can I move the movieclips position left or right based on the text fields width?

View 3 Replies

ActionScript 2.0 :: Load A Random Movie Clip From The Library To An Empty Clip On The Stage Called (bg_graphics)?

Oct 20, 2004

I want to load a random movie clip from the library to an empty clip on the stage called (bg_graphics). the clips in the library are called (green, blue, yellow).

View 5 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved