Space Appearing Above Movie When Window Resized
I'm trying to make a flash menu bar for the top of my website, but I want it to scale for different window sizes, so I've set it be 100% of window width. However, when you view the page and reduce the window size, a blank space appears above and below the bar as it resizes around the middle of the movie- how do I make it stop? Is there a way to keep the bar at the top as it resizes?
Thanks for all advice!
FlashKit > Flash Help > Flash Newbies
Posted on: 12-12-2001, 08:48 AM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Space Appearing At Bottom Of Site?
Maybe someone can help me figure this situation out. I know I've posted this question before and I thought I had rectified it.
No such luck.
On load in of my site, if the user scrolls to the site floor (absolute bottom) a space is present<<<this I don't want. When the site is refreshed, the space is no longer present.
I'm lost.
I've constructed the site by setting up a table which holds 3 swf's stacked on top of one another. On either side of these swf's are gif's used to transition into the background color. The bottom swf was sized in a way that I thought would push the bottom of the file beyond the viewers range <<<not working out that way.
Anybody have a clue how to address this?
Here it is!!!
Pop-up HTML Window (cannot Be Resized)
greetings,
how i can make a button that when clicked a pop-up window will appear but u cannot resize it?
in a HTML site i would do like this:
Code:
<script language="JavaScript">
<!-- Begin
function openWindow(winname,str,name)
{
winname = window.open(str,name,'scrollbars=yes,width=750,height=600,resizable=no')
}
//-->
</script>
but i dunno in flash...please help!
thanx
Opening A New Resized Window?
I was trying to use the following code:
function kkHandler(e:MouseEvent):void{
var url:String = "javascript:window.open('flashplayer.html','preloa der','width=750,height=550');";
var request:URLRequest = new URLRequest(url);
try {
navigateToURL(request, '_blank');
} catch (e:Error) {
trace("Error occurred!");
but I keep getting a sandbox error and can't figure out a way around it.
Can anyone help?
Thanks.
Scrolling Window Messed Up When Resized
Allright I've got a background that goes from light blue to dark blue, bottom to top, and I have it move down in a motion tween to give the effect of a sunset, mk.
And I've also got a path along the bottom that moves left, both are bigger then my selected canvas size of 350x300, but when the image is resized you can see the parts of my symbols that are supposed to be off of the canvas... how can I fix this very tacky and annoying problem? please help
Thanks,
Adma
Foo.send() To Open In A Resized Window
Is there a way I can get the method .send() in loadVars to post its data in a new window that can be resized, locked in position, min and max buttons removed etc. It would be sort of like combining the two functions below:
Code:
my_lv.send("setscore.php", "_blank", "POST");
getURL("javascript:NewWindow=window.open('setscore.php','newWin','width=750,scrollbars=1,resizable=1,height=600,left=100,top=100,screenX=100,screenY=100, location=0');NewWindow.focus();void(0);");
Opening A Resized Window From Flash
Hi there.
I am trying to open a window from a link in Flash, the window has to be resized and with no menu, address, scroll, bars etc etc.
I know this can be done as I've seen other sites doing it. I presume it'd have to be done through the "expert" actions, but I can find no info on it anywhere.
Any ideas?!?
In case you are interested, the link will be to open a full size image from a thumbnail. Would it even be possible to create a page such as /images.php?image=*** and have the window auto resize to the image loaded into the dynamic page and also lose the additional elements to the window?
Many Thanks
Günter
How To Open Resized Window From Flash
what is the best method to open a resized and repositioned window from flash that has no scrollbars, address bar, etc ?
And also that doesnt get blocked as a popup in IE.
Scrollbar Auto-resized With Window Size
My first post here! I did a search on this first but didn't find a solution...
I would like to be able to have the bottom button of a scrollbar, remain clickable at the foot of a page. Such that, if the window is resized, the scroll bar will also resize with it (the bottom button of the scroll bar remains there).
To show you exactly what I mean, the following site does exactly what I am trying to achieve: (look bottom right)
http://www.skyworksinc.com/
Many thanks in advance for any help. Please try to keep the instructions relatively clear, I wouldn't consider myself an extreme expert. Many thanks.
Apollo11
Reposition Gallery When Window Is Resized, See Code / HELP
there is a code that will reposition to the center of stage when window is maximized etc. problem is i dont know how to incorporate into the gallery.
please someone look at the code and please help!
Code:
mainListener = new Object();
mainListener.onResize = function() {
_root.containerMC.pos = [Stage.width/2-_root.containerMC._width/2, Stage.height/2-_root.containerMC._height/2];
};
Stage.scaleMode = "noScale";
Stage.align = "TL";
Stage.addListener(mainListener);
_root.containerMC.onEnterFrame = function() {
this._x += (this.pos[0]-this._x)/6;
this._y += (this.pos[1]-this._y)/6;
border._x = this._x;
border._y = this._y;
};
you can see my full code here, it is working but it stops and then nothing, and it wont reposition right away to the center..... and border is not moving with it....
please help!!!
Code:
spacing = 10;
containerMC._alpha = 0;
MovieClip.prototype.loadPic = function(pic) {
_root.containerMC._alpha = 0;
this.loadMovie(pic);
_root.onEnterFrame = function() {
var t = containerMC.getBytesTotal(), l = containerMC.getBytesLoaded();
if (t != 0 && Math.round(l/t) == 1) {
var w = containerMC._width+spacing, h = containerMC._height+spacing;
mainListener = new Object();
mainListener.onResize = function() {
_root.containerMC.pos = [Stage.width/2-_root.containerMC._width/2, Stage.height/2-_root.containerMC._height/2];
};
Stage.scaleMode = "noScale";
Stage.align = "TL";
Stage.addListener(mainListener);
_root.containerMC.onEnterFrame = function() {
this._x += (this.pos[0]-this._x)/6;
this._y += (this.pos[1]-this._y)/6;
border._x = this._x;
border._y = this._y;
};
border.resizeMe(w, h);
delete _root.onEnterFrame;
}
};
};
MovieClip.prototype.resizeMe = function(w, h) {
var speed = 3;
this.onEnterFrame = function() {
this._width += (w-this._width)/speed;
this._height += (h-this._height)/speed;
if (Math.abs(this._width-w)<1) {
this._width = w;
this._height = h;
_root.containerMC._x = this._x-this._width/2+spacing/2;
_root.containerMC._y = this._y-this._height/2+spacing/2;
_root.containerMC._alpha += 5;
if (_root.containerMC._alpha>90) {
_root.containerMC._alpha = 100;
delete this.onEnterFrame;
}
}
};
};
thanks
Open Link In New Resized Window Hellp
hi! i was wondering if someone could help me out with this flash related question ...
when someone clicks a link, how can I make the link open a new, re-sized window where the stuff appears, instead of just putting a "_blank", how can I also get flash to resize the window?
if thats not possible, how can I incorporate javascaript or something in flash?
thanx a lot! really 'preciate it
Reposition Gallery When Window Is Resized, See Code / HELP
there is a code that will reposition to the center of stage when window is maximized etc. problem is i dont know how to incorporate into the gallery.
please someone look at the code and please help!
Code:
mainListener = new Object();
mainListener.onResize = function() {
_root.containerMC.pos = [Stage.width/2-_root.containerMC._width/2, Stage.height/2-_root.containerMC._height/2];
};
Stage.scaleMode = "noScale";
Stage.align = "TL";
Stage.addListener(mainListener);
_root.containerMC.onEnterFrame = function() {
this._x += (this.pos[0]-this._x)/6;
this._y += (this.pos[1]-this._y)/6;
border._x = this._x;
border._y = this._y;
};
you can see my full code here, it is working but it stops and then nothing, and it wont reposition right away to the center..... and border is not moving with it....
please help!!!
Code:
spacing = 10;
containerMC._alpha = 0;
MovieClip.prototype.loadPic = function(pic) {
_root.containerMC._alpha = 0;
this.loadMovie(pic);
_root.onEnterFrame = function() {
var t = containerMC.getBytesTotal(), l = containerMC.getBytesLoaded();
if (t != 0 && Math.round(l/t) == 1) {
var w = containerMC._width+spacing, h = containerMC._height+spacing;
mainListener = new Object();
mainListener.onResize = function() {
_root.containerMC.pos = [Stage.width/2-_root.containerMC._width/2, Stage.height/2-_root.containerMC._height/2];
};
Stage.scaleMode = "noScale";
Stage.align = "TL";
Stage.addListener(mainListener);
_root.containerMC.onEnterFrame = function() {
this._x += (this.pos[0]-this._x)/6;
this._y += (this.pos[1]-this._y)/6;
border._x = this._x;
border._y = this._y;
};
border.resizeMe(w, h);
delete _root.onEnterFrame;
}
};
};
MovieClip.prototype.resizeMe = function(w, h) {
var speed = 3;
this.onEnterFrame = function() {
this._width += (w-this._width)/speed;
this._height += (h-this._height)/speed;
if (Math.abs(this._width-w)<1) {
this._width = w;
this._height = h;
_root.containerMC._x = this._x-this._width/2+spacing/2;
_root.containerMC._y = this._y-this._height/2+spacing/2;
_root.containerMC._alpha += 5;
if (_root.containerMC._alpha>90) {
_root.containerMC._alpha = 100;
delete this.onEnterFrame;
}
}
};
};
thanks
Window Be Able To Be Resized, Dragged, Duplicated, Closed And If Possible Minimised
hello
i am wondering if this is possible to be done
i want to make this window below (refer to the picture below)
http://therevenge.elementfx.com/window.jpg
be able to be resized, dragged, duplicated, closed and if possible minimised
this window will have content of all types in it from video to text, and wish not to lose the functionality of the items in side of the window
hopefully this is possible to be done
i have flash cs4 and it seem to have a mind of its own
could u help me out with tutorials or with code examples on how i could do this
the help would be greatly appreciated
Zynischen
Full-screen Swf Wont Auto-resize Until Browser Window Is Resized
Hello All,
I posted me test here at http://www.urbanlinx.com/Test.swf.
I have 4 MCs in the movie. A header, content box (center), footer, and background image.
When the browser is scaled the background scales in proportion to the widow and keeps its aspect ratio.
My problem: when the clip is first loaded, the background does not resize until the browser is manualy resized by the user.
Is there some code I can add that will check the window size before the movie loads?
My code is attached.
stop();
Stage.scaleMode = "noscale";
Stage.align = "tl";
Stage.addListener({onResize:reposition});
function reposition() {
var header = _root.myHeader_mc;
var bg = _root.image_mc;
var content = _root.myContent_mc;
var footer = _root.myFooter_mc;
var nPos;
nPos = getNewPosition(header);
header._x = nPos.x;
header._y = 0;
nPos = getNewPosition(content);
content._x = nPos.x;
content._y = nPos.y;
nPos = getNewPosition(bg);
bg._x = nPos.x;
bg._y = nPos.y;
nPos = getNewPosition(footer);
footer._x = nPos.x;
footer._y = Stage.height - footer._height;
};
function getNewPosition(mc) {
var newX = Math.floor((Stage.width - mc._width) / 2);
var newY = Math.floor((Stage.height - mc._height) / 2);
return {x:newX, y:newY};
};
reposition();
Stage.scaleMode = "noScale";
//Auto Resize
stageListener = new Object();
stageListener.onResize = function() {
backgroundResize(_root.image_mc);
};
Stage.addListener(stageListener);
//Background Resize
function backgroundResize(image) {
var imageHeight = 400;
var imageWidth = 700;
var wRatio = Stage.width/imageWidth;
var hRatio = Stage.height/imageHeight;
//Larger Ratio
if (wRatio>hRatio) {
var ratio = wRatio;
} else {
var ratio = hRatio;
}
//Resize
if (Stage.width<=imageWidth && Stage.height<=imageHeight) {
image._width = imageWidth;
image._height = imageHeight;
} else {
image._width = imageWidth*ratio;
image._height = imageHeight*ratio;
}
}
backgroundResize(_root.image_mc);
Special thanks in advanced.
PS: if you know a way to accomplish this with cleaner code, the help would be greatly appreciated... if it is already good code... thanks to all the people in the community who taught me :)
Edited: 11/27/2007 at 11:29:30 PM by illtrax
Pop Up Window Appearing With Huge Border
I am not sure if this is a flash or javascript issue but when the automatic pop up window appears it does so with a large white border.
Here is the javascript code (from an online code generator)
<SCRIPT LANGUAGE="JavaScript">
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=215,height=250,left = 404.5,top = 259');");
}
// End -->
</script>
</head>
<body onLoad="javascript:popUp('walker.html')">
</body>
and the embedded flash movie code (movie measures 215px wide x 250px high) :
<body bgcolor="#ffffff">
<!--url's used in the movie-->
<!--text used in the movie-->
<!-- saved from url=(0013)about:internet -->
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="
Complete Movie Needs To Be Resized
please forgive me for posting a question that's already been asked numerous times. to minimize wasting your time I did search the forums but the problem I ran into was just me getting more confused.
my question, I have made a complete flash site and found that I need to resize it. is there any easy solution to resize everything (objects, text, etc) without manually resizing everything one by one? Any help would be much appreciated. Thanks.
Resized Movie Is Pixelated
Hi everyone - I used some software to record screen movements (so you can create a software demo) - the software creates a SWF file which I placed on the stage.
In some cases, I want to show the movie at a reduced size (i.e. 33%). When I resize the movie and then preview it, the image is pixelated and unclear.
I believe this is due to the resizing.
Are there any good solutions?
I need to use the movie at various sizes including 100% through the timeline.
Thanks
Settings Window Appearing Blank In Flash Player 7 On Linux
Hi everyone,
I have a very strange issue. Not sure if it's something related to my Machine. I have Flash Comm application which i would like to test on Linux but most of the text in the application is not appearing. Even the settings window is appearing blank on my machine in Flash Player. Please check attached jpg file.
My machine config are:
Linux Fedora Core 5.
Flash Player 7
Browser Netscape 7.2 and Firefox 1.5.
Can anyone help me in identifying the cause of trouble? Is it OS specific or Player specific problem?
Thanks,
Vivek
Text Doesn't Fit When Movie Resized
Through HTML, I have a movie being resized in a table based on the user screen resolution - in this case either 800x600 or 1024x768.
In the movie, I am using dynamic text fileds calling out to a .txt file. At 800x600, the dynamic text fits in the text field properly, but once resized, the text size slightly increases, or something, and the text no longer fits the text box perfectly.
Anyone have any suggestions regarding this.
Thanks,
Repositioning Content When A Movie Is Resized
I was reading the technote at moock's technote and I was trying to have a horizontal line going across the screen. And resizing as the screen resizes.
Can it be done using attachMovie?
Any ideas?
Can Flash Movie Be Dynamically Resized?
Can Flash movie be dynamically resized? What I mean is the swf movie embedded in an HTML file for example takes on a different size, length, for example.
Say the original size is 800 (w) x 600 (h) px when the movie starts. now user has clicked a link and the next MC that's loaded into the original movie is taller because of a lengthy text area, say 800 (w) x 900 (h) px. Can the original movie be resized, if it doesn't fit the screen then the browsers scrollbar can be used.
Thanks for any ideas.
Loading Resized Border Into Another Movie
Hi!
There is a code for the effect of resizing border in this tread:
http://www.kirupaforum.com/forums/sh...ad.php?t=51430
Has anybody here loaded the picture+border (output of the code) into another movie through loadMovie?
Thanks for helping with this.
mx-guest2004
Loading Resized Border Into Another Movie
Hi!
There is a code for the effect of resizing border in this tread:
http://www.kirupaforum.com/forums/sh...ad.php?t=51430
Has anybody here loaded the picture+border (output of the code) into another movie through loadMovie?
Thanks for helping with this.
mx-guest2004
Flash Movie Sliding As Browser Is Resized
Hi,
Im sure everyone has seen this : www.hybridworks.jp (hot!). Anyway I've seen this done on a few sites now as was wondering how . . . when the browser is resized, the flash movie sliiiides to the center, very slick. I was wondering what technique is used and could someone please explain how to do it?
Thanks, any help much appreciated
When The Browser Is Resized, How Do I Make The Movie Resize?
When the browser is resized, how do I make the movie resize?
I made this page here:
http://www.LineDetail.com/fullscreen.php
in the HTML parameters, I put width 100% and height 100% and in the .swf file I have:
Stage.scaleMode = "noScale";
Stage.align = "TL";
That helps make my objects not get stretched out, and the align code to help position my items.
Now, I notice if I were to shrink or make my browser stretch out. The swf doesn't resize on it's own to fill the space when larger or resize when you shrink the browser width/height. I've been told to use a listener, but I have no idea how it works, I've tried putting in scripts with no luck.
If you have a 2.0 script or can help me here I'd appreciate it!
Thanks,
-Line
Little Space At The Left Side Of New Popup Window
i followed the steps from the tutorial http://www.flashkit.com/tutorials/Ac...-708/index.php
but now my question is;
when i put the swf file in the popup.html then theres always a little space at the left site.
how can i get rid of this?
http://www.au-crew.de.vu
then click on movies plz and you will see...
thx
Pop-up Window With Flash Leaving White Space
I have a link on a web page that pops up a window containing my .swf. That works fine using Javascript, but why is there white space in the top and left areas of the pop-up? My .swf is getting cut off! The pop-up window size is 680 x 380 and so is the .swf file. Here is the HTML of the pop-up window:
(html tag omitted)
<OBJECT classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
WIDTH="680" HEIGHT="380" id="main11" ALIGN="">
<PARAM NAME=movie VALUE="main11.swf"> <PARAM NAME=loop VALUE=false> <PARAM NAME=menu VALUE=false> <PARAM NAME=quality VALUE=high> <PARAM NAME=scale VALUE=exactfit> <PARAM NAME=bgcolor VALUE=#FFFFFF> <EMBED src="main11.swf" loop=false menu=false quality=high scale=exactfit bgcolor=#FFFFFF WIDTH="680" HEIGHT="380" NAME="main11" ALIGN=""
TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
</OBJECT>
Any suggestions?
Thanks,
Lou
How Do You Get An Accurate Info About Images In A Resized Movie Clip?
Hello all,
I am trying to develop a best practice for my department. We create onilne ads. Recently our higher ups have changed our ads sizes so we have had to go back through our ads(336x850) and change them to 300x600. Not a proportional change. We thought that by nesting the layers of the original ads inside of a Movie Clip we at least resize the either the height or the width when we brought the Movie Clip into the new file size(300x600). Saving a bit of time.
Now my problem is that the images don't look as good when they are scaled down. I tried to find the new scaled size by selecting the image inside the movie clip. So I could edit the original bitmaps, but the new size in the info palette (W,H) doesn't reflect the scale down. It still shows the original size. Is there anyway to have the pic's info accurately reflected when editing images inside a movie clip? Sorry about being so long winded and any help would be greatly appreciated.
Movie Not Appearing
Hi guyz. I have a problem with my flash movie. It appears fine on my computer, even when I am playing it from the server. But when I am trying to view it from my work's computer or my client's computer, it's just a white box. Nothing comes up. Hope you can help me.
Here's the link
http://dimitristest.4000webs.com/
Please help me!
Movie Appearing Over My Borders
When i save my movies then view them i can see where i went outside the stage with my drawing how do i stop this being seen.
Movie Clip Not Appearing/?
I have a rather large (i guess, its 100 jpgs) movie clip. Whenever i try to drag it from the library to the stage, i get the hour-glass mouse (meaning my computer is doing SOMETHING) but when its done nothing is there, just the stage. I test movie, and i have 100 frames of black until the next scene. Wha....?
EDIT: the clip plays just fine in the preview window in the library panel.
-Fate
Lines Appearing On Movie
Hi,
I have created a fairly simple movie which looks fine when i'm designing it, but when i test it, or embed it in a webpage thin horizontal lines appear next to some of the buttons..i have tested the movie on a few machines and the lines appear on them all.
Does anyone know why this might be happening? Any help would be appreciated.
Cheers.
Movie Clip Not Appearing
I'm new to AS3 and I'm getting completely confused.
I have two .as files with 2 classes, Map and Grabber. A function in Map is called by the .fla because it is the document class. The function creates all the blocks then does some other functions that I know work. The trouble comes when it calls a (buildclaw) in the second class (Grabber). The code is executed but the MovieClips it "addChild"s (centerpole) is not added. If I use exactly the same adding code in the map function it works why is this?
Attached is the files if you need them.
Grabber:
ActionScript Code:
package{
import flash.events.*;
import flash.display.*;
import flash.utils.*;
import flash.geom.*;
import flash.text.*;
import flash.net.*;
import flash.ui.*;
public class Grabber extends MovieClip{
public var poles:Array = new Array(); // create an array for the poles
public var leftgrabberstatus:int;
public var rightgrabberstatus:int;
public var amountofpoles:uint = 5;
public var amountofpolesvisable:uint = amountofpoles;
public function buildclaw(){
for (var j=0; j < amountofpoles;j++){
trace('Makes poles');
var centerpole:platform_tile_white = new platform_tile_white;
addChild(centerpole); //put it on the screen
centerpole.gotoAndStop(1); //give it the right frame
centerpole.x = 30;
centerpole.y = 30;
poles.push(centerpole); //put it in an array
}
trace(poles);
}
}
}
Movie Navigation Not Appearing?
Hi there,
Ok so, I have these two .fla's where one is working http://www.peugeot.com.au/peugeot/au.../vid3high.html and one that isn't working http://www.peugeot.com.au/peugeot/au/clientdocs/asp/minisites/rwc2007/vid4high.html
You can see that the nav is missing from vid4... but for the life of me I can't see what the difference is between the two .fla's...?? (attached)
I'm also not sure why when you just preview the .swf's that these create, you can't see the nav, but when it's uploaded in an html page you can...?
Needless to say, I didn't build this I've just been asked to fix it...
Any help/suggestions would be greatly appreciated!
Button Not Appearing In Movie
HI, i have made a movie clip, which is the up state for a button, i made another mc which is the over state for the same button. when i drag them onto the stage everything is good, it all appears as it should. but when i test the movie parts of the button are missing???
does anyone know why this happens, what do i need to do to fix this???
thanks for your help (again)
Help With .txt File Not Appearing In Loaded Movie
I am sure this is a simple fix for an experienced AS programmer (which I am not). The news.fla file I attached loads a html file (news.txt) into a dynamic field. It works fine when I play the file alone. But I have a larger movie that when I click a button in that movie I want it to load this swf file in. When that happens it doesn't display the html file anymore.
If someone could please take a quick peak at my code and give me a recommendation I would really appreciate it. I just don't know what else to try.
Thanks so much!!
George Dailey
Text Not Appearing In Flash Movie..
I am building a banner for a website..when i do test movie in Flash the text is there and it's also there when i upload the movie but when i just double-click on the file and it plays in Flash Player the text is not there..
any ideas?
thanks
Text Not Appearing In Flash Movie..
I am building a banner for a website..when i do test movie in Flash the text is there and it's also there when i upload the movie but when i just double-click on the file and it plays in Flash Player the text is not there..
any ideas?
thanks
Scrollpane Problem: Movie Clip Appearing Outside Of Box
For a site I'm working on, I need a bunch of text buttons that will change other aspects of the site when clicked. I put them into a movie clip, put a scrollpane on the project, and it worked... kinda. The scrolling works, but my movie clip can still be seen outside of the edges of the scrollpane. I have no idea how to fix it so that only the stuff inside the scrollpane is visible. Can anyone help?
Movie Clip Not Appearing On Mask Layer
Hey.. I have a number of text boxes and button instances that are susposed to load onto mask layers - but they're no where in sight.. does anyone have any insight?
Things That Are Off Stage Are Appearing In My Main Movie
Hi
I'm loading an external swf file into my main movie, however i have two lines sliding in on the external swf file, they start off stage and then slide onto the stage area. But when i load this into my main movie, the lines are appearing even when they are off stage???
Does anyone know why this is?
Why Is My Flash (swf Movie) Keeps Appearing On Top Of All My Layers On A Site?
i do not know exactly how to describe this so i've put a sample on a site.
site
the layer with the flash movie is arranged at the bottom of my other layers in dreamweaver yet when you click on the image the lightbox that appears seems to be under that swf movie..
please help me how to put the flash movie to appear always at the bottom below all others.. a code maybe..
i have never created a site before and im on an experimenting stage so i could learn all i can.. please do help me..
..thank you guys!!
Multiple Movie Clips Randomly Appearing
I am trying to create something in which a movieclip tweens across the screen horizontally, once spacebar is clicked. In a certain interval i want the same movieclip to be duplicated, but on a different position on the yaxis, and then to tween across. I want this to happen for upwards of 150 or so times.
Thanks.
|