Reposition On Resize Window
could someone show me how this cool effect works? (repositioning on rescaling the window) http://www.hybridworks.jp/
KirupaForum > Flash > Flash 8 (and earlier) > Flash MX
Posted on: 01-19-2005, 12:28 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Reposition On Resize Window
could someone show me how this cool effect works? (repositioning on rescaling the window) http://www.hybridworks.jp/
Resize And Reposition
does anyone have a script, or at least a pointer, that changes a movie clip size and position, but it has to be whatever the change of size and position, it has to finish at the same time.
for example from origWidth=50 and origX=100 then change to newWidth=100 and newX=200 or from origWidth=30 and origX=60 then change to newWidth=300 and newX=250 has to be in exactly 500 milisecond.
sort of like when you tween using the timeline. only i need it to be scripted.
i hope my question can be understood.
thanks
Reposition On Resize
Hello,
I was looking ata few sites that load full scren and dynamically position flash in the middle (like puma.com). I found this site http://www.relientk.com/ that does this where it loads one move full screen and repositions another .swf(I assume) maybe a _MC in the middle so on resize it replaces the movie n the middle(within flash) I was thinking you may also be able to scale this based on resize as well. Has anyone done this? does anyone no how to re-position on resize. I was thinking steps to be done in AS (guess)(human version of code) on resize Get current size Subtract (size of current movie) = whats left Place movie(or target its loaded into) at 1/2 of what' left Therefore putting it in the middle.
Any advice would be helpful.
_DB
Menu Reposition On Browser Resize
I want to have my .swf menu sit at the very top left or bottom center (either/or) of my browser window, even if I resize the window. However I want the content to load in the center of the browser window even after resizing.
how is this done?
I've already found some discussions here, but non that actually worked when I put them to practice.
help?
-R
Vertical Resize Does Also Reposition Swf In Html
i've got me a strange problem. Inspired by Hoss Gifford i started implementing his AS2 (do away with flash scroll bars example) in my AS3 application.
This works if you click on "wonen", "werken" or "winkelen" BUT the swf respositions itself within this new height (1200px). Original height is 1000px.
check it out.
http://www.due-volte.nl/jay/ndp
Reposition Content On Browser Resize
Does anyone have any idea how this is done http://www.rigsbydesign.com/ when you resize the browser window the contant repositions itself smoothly? any help much appreciated it's been bugging me for ages!
Reposition MCs Based On Browser Resize
I could use some help on doing this?
I tried to find a thread that answers this question but so far none with positive results.
For example what I would like to do is reposition particular movie clips when a browser window is resized.
I.E. make one movie clip always stay on the bottom middle and another always stay in the center.
Reposition Contents On Browser Resize
i.m attempting to reposition the contents of my swf on the resize of browser window with a tween class - the contents are situated around the perimeter of movie.
how would i go make the adjustment here
tage.align = "TL";
Stage.scaleMode = "noScale";
Stage.addListener(dash);
dash.onResize = function()
{
this._x += ((Stage.width/2)-this._x)/5;
this._y += ((Stage.height/2)-this._y)/5;
}
http://www.rigsbydesign.com
http://www.dunwoodie-architectureand...co.uk/main.php
anyone have a working example?
Resize And Reposition Dynamic Image...
This has been addressed in several topics within the forum, but not quite like what I need...
I'm currently building an application that allows users to "import" uploaded images into the FUI and move them around to place them where they want. I have three seperate sections where they can do this and each section has a different maxWidth and maxHeight... What I'm trying to accomplich is to be able dynamically bring the image in resize it so that it fits within the _root.maxWidth and _root.maxHeight, while constraining the proportions, THEN I need it to be be placed (if needed) within the boundry of the section they are importing the image to...
I'm grabbing the image via the tree component and continuing from there... here is my code.
ActionScript Code:
myTreeDataProvider = new XML();myTreeDataProvider.ignoreWhite = true;myTreeDataProvider.load("tree_source.xml");myTreeDataProvider.onLoad = function() { myTree.dataProvider = myTreeDataProvider;};myTreeListener = new Object();myTreeListener.change = function(eventObject) { // the selected node var theSelectedNode = eventObject.target.selectedNode; // the label of the selected node var theSelectedNodeLabel = theSelectedNode.attributes.label; var theSelectedNodePath = theSelectedNode.attributes.imgPath; // add a status message to the status message text area component loadMovie(theSelectedNodePath, "thumbnailDisplay"); if (theSelectedNode.hasChildNodes()) { } else { statusTxt.text = "Loading Image..."; }};var tempImageBoxHolder;var tempImageBoxHolderHolder;// add the event listenersmyTree.addEventListener("nodeOpen", myTreeListener);myTree.addEventListener("nodeClose", myTreeListener);myTree.addEventListener("change", myTreeListener);insertBtn.onRelease = function() { _root.currentAccess.imageArea.gotoAndStop(1); tempImageBoxHolder = _root.currentAccess.attachMovie("imageBoxHolder", "imageBoxHolder"+String(tempLevel), tempLevel); tempImageBoxHolder._x = iBoxX; tempImageBoxHolder._y = iBoxY; tempImageBoxHolderHolder = tempImageBoxHolder.attachMovie("imagePlaceHolder", "imagePlaceHolder"+String(tempLevel), tempLevel); loadPath = tempImageBoxHolderHolder; loadMovie(thumbnailDisplay._url, loadPath); var mclListener:Object = new Object(); mclListener.onLoadInit = function(loadPath:MovieClip) { if (_root.currentSection eq "header") { trace("im the header section"); } else if (_root.currentSection eq "content") { trace("im the content section"); } else if (_root.currentSection eq "footer") { trace("im the footer section"); } maxHeight = _root.totalHeight; maxWidth = _root.totalWidth; if (tempImageBoxHolder._height>maxHeight) { tempImageBoxHolder._height = maxHeight; tempImageBoxHolder._yscale = tempImageBoxHolder._xscale=100; tempImageBoxHolder._y = 0; } else if (tempImageBoxHolder._width>maxWidth) { tempImageBoxHolder._height = maxWidth; tempImageBoxHolder._xscale = tempImageBoxHolder._yscale=100; tempImageBoxHolder._x = 0; } newX = tempImageBoxHolder._x+tempImageBoxHolder._width; newY = tempImageBoxHolder._y+tempImageBoxHolder._height; trace(newY); if (newX>maxWidth) { tempImageBoxHolder._x = 0; } else if (newY>maxHeight) { tempImageBoxHolder._y = 0; } }; var image_mcl:MovieClipLoader = new MovieClipLoader(); image_mcl.addListener(mclListener); image_mcl.loadClip(thumbnailDisplay._url, loadPath); _root.a = thumbnailDisplay._url; _root.browseImage._visible = false; _root.theTarget.image = true; _root.imageBtn.selected = true;};cancelBtn.onRelease = function() { _root.currentAccess.imageBoxCount--; _root.currentAccess.imageArea.gotoAndStop(1); _root.browseImage._visible = false;};this.myTree.setStyle("indentation", -1);
if you feel that the code could be simplified, or reorganized, please help me out in the process... thanks so much!
Reposition Thumbnails On Event.RESIZE
hello guys, im planning on creating a portfolio gallery ala theFWA grid style. i dont have a problem creating thumbnails in grid dynamically. the only thing that i cant solve is as soon as the stage is resized, the thumbnails will reposition based on the screen size.
any help as3 gurus?
Thanks!
Reposition Menu If I Resize Fullscreen Flashsite
With a help from renderhjs I managed to do a fullscreen flash site with movieclips that reposition if I resize the window of my browser (mozilla, explorer).
You can check his as here:
http://board.flashkit.com/board/show...9&postcount=16
I want to make a menu that always repositions to the bottom left (or preferably right) corner like here:
http://www.dariocapizzi.com/
http://expo.f6creations.com/
I used folowing as on 1st frame of swf:
Stage.scaleMode="noScale";
screen = new Object();
screen.w = 850;
screen.h = 450;
list_resize = new Object();
list_resize.onResize = function () {
var pos = get_pos(0,Stage.height-mc_sample_a._height/2);
mc_sample_a._x = pos.x;
mc_sample_a._y = pos.y;
}
Stage.addListener(list_resize);
get_pos = function(x,y){
return( {x:int((screen.w-Stage.width)/2+x) ,y:int((screen.h-Stage.height)/2+y )});
}
Movieclip mc_sample_a goes to the proper position only if I resize the browser, just like I wanted in the first place.
But I seem to have problems to command this movieclip to go to the bottom left corner at the first place(it stays on the same place as I put it on the stage). To get a closer idea what I mean you can check out what I've done so far:
http://cut.si/full/fullpage.html
PLease help!!
Resize Reposition A Square Movie Clip
Can someone lead me in the right direction...
Recently I've been so focused on the design and direction of projects that I've let my scripting fade away.
I'd like to get my hands on a tutorial or pre fab movie that is easily customizable (meaning all I need to do is enter values) for the following.
I want to be able to resize and reposition a square on stage by clicking on various buttons... The buttons being the menu and the square being the "presentation stage." I've seen it done plenty of times and find it elegant and smooth the way it eases in. I actually made one of these from scratch using AS in a nutshell book earlier this year, but right now I cant find it.
The one thing I have completely forgotten is how I made it actually do a "bounce" effect meaning the box would grow a little more than it had to and ease down to the size and the same in reverse, when it has to shrink the size of the box, it would shrink it a little more than needed and then go up in size til it reached the requested size.... Making the overall visual effect bounce like....
If anyone can point me to a sample I can break down or something to make my life here easier I would be so grateful
Flash Reposition Base On Browser Resize
Hey guys,
I've been looking at this site: http://hybridworks.jp
What is really interesting is that based on resizing the browser window, the Flash content will dynamically reposition itself to the center.
I understand the part how the flash content will align itself centered in the browser based on the dragging BUT HOW does it know (at the point where you release your mouse button after dragging) when to reposition itself?
Is there some sort of listener involed?
Any thoughts to this?
THanks!
Evil~
Flash Reposition Base On Browser Resize
Hey guys,
I've been looking at this site: http://hybridworks.jp
What is really interesting is that based on resizing the browser window, the Flash content will dynamically reposition itself to the center.
I understand the part how the flash content will align itself centered in the browser based on the dragging BUT HOW does it know (at the point where you release your mouse button after dragging) when to reposition itself?
Is there some sort of listener involed?
Any thoughts to this?
THanks!
Evil~
How To Reposition Sprites After Resizing The Player Window?
Difficult one to describe this, but here goes:
We are developing a standalone app in Flash CS3. Part of the app involves placing graphic spites over specific strings of characters in text (to mask them). It is a client requirement that the player window/app can be resized by the user from the default 800x600 and that screen can be printed. All is fine until:
1. the player window is resized
OR
2. the screen is printed
In both cases the graphic sprites lose their alignment with the text they are masking - even if the aspect ratio is maintained. (With print, it only shows on paper.)
For case 1. resizing, is there any way to trap the completion of the resizing action (e.g. MOUSE_UP) with StageScaleMode set to NO_SCALE? If I can do this, I would then be able to: a) set StageScaleMode to SHOW_ALL so that the app fills the resized window - which is what we want; and b) call existing code to then reposition the graphic sprites over the text. However, although setting StageScaleMode to SHOW_ALL after resizing works with test code called from a mouseEvent (temp hack using MOUSE_MOVE), if StageScaleMode is then set back to NO_SCALE immediately afterwards in the same handler (as it would have to be to get future resizing events) SHOW_ALL doesn't have any effect - the switch seems to be happening too fast to be processed. How would I overcome this?
The only workaround I have currently is to constantly call the sprite repositioning code from an Event.ENTER_FRAME handler and have the StageScaleMode set to NO_SCALE - this works but the masked characters do show as the window is being resized. And there are processor load concerns. Any thoughts anyone? Better solutions or approaches?
For case 2. printing, I am considering using draw() to capture an image of the screen and then print from this. Is this the best way to proceed?
Any help gratefully received.
Mark
www.jonMoat.co.uk
www.L2.co.uk
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
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 Resize
I'm going mad here! - I know this is probably really simple but i have a flash movie and i want the links to pop up in a new window of a defined size - i also want to turn off resize and get rid of the toolbar and scrollbar.
If anyone can help me Id be really grateful! :-)
Thanks - Dan (dan@introspection.f2s.com
Window Resize?
hi!
I need a script who attached to a button can open a window for me with the specified dimensions, no command bars, and at a specific position on screen.. any ideeas?
THNX!
Resize The Window
does anyone know how to do that java effect where it resizes the window while its open. What I was hoping to do was add on an extra 50 pixels to the right side of the screen. But I don't mean instantly get bigger. I mean in a sliding motion.
Window Resize
i'm opening a new window for a flash button >on butt>on (release) {
getURL("javascript:NewWindow('site.htm','::::::::: :HEYDEN INTERIEUR::::::::::','700','400','no')");
}
in the new window ><SCRIPT LANGUAGE="JavaScript">
<!--
function NewWindow(url, windowName, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl +',scrollbars='+scroll+',resizable';
win = window.open(url, windowName, winprops);
if (parseInt(navigator.appVersion) >= 4) {
win.window.focus();
}
}
// -->
</SCRIPT>
so far so good BUT...
when that new window is opened it is still posible te resize(maximize) that window >>IWANT TO MAKE IT IMPOSSIBLE TO RESIZE (MAXIMIZE) THAT WINDOW!!!!
can somebody help me with the scripting??
r3sp3ct
3nvoy
Don't Want To Resize Window In .exe
I know how to set the movie's StageMode to "noScale", but how do I make the actual window of the .swf or the .exe non-resizable (not HTML)?
Thanks a lot in advance!
Olga
Resize My Window Please
Hi everyone, Im not sure weither this is actionscript-question, so please exuse me if it isn't; I have made a flash file, exported it and now i want it to show up on a webpage. (is there any other sulution than integrating it into a html page?) Well when I place the flash movie inside dreamweaver, it's fixed to the site, but what I want is the effect that I got when I tested the movie inside of flash; a borderless window that you can resize but that will NOT stretch the grafic itself.. Again if this is not an flash question I apologize, but I don't know any other forums yet, and im quite lost with this one.. Thanx alot in advance, JR
(using flash mx 2004 by the way )
Help To Resize A Window
Hi people! i have a question from Spain, i want to open a new URL
from a flash movie but with a fix size (x=500, y=500)and i donīt know how the script should be. Can i do it just from flash or should i rewrite the code in the new URl too?
Can someone help me???
Thanks!
Ciao
Hi, Why Does My Pic Get So Big And Resize With The Window?
Hi, im ney here this is my first post and i plan to be pretty active in these forums but im having a problem. when i make anything in flash everything apears to b fine... but when i make a window bigger like the square on the top right of each window the image or animation resizes with it and i dont want that
for example
http://i14.photobucket.com/albums/a3...232/adsads.swf
any one know why its doing this and how i can make it stay one size the real size of this should be 500x286
thanks
Resize Window
Can I get my swf file to resize to different monitors?
Window Resize Help...
Ok so I am working on this site ( http://www.nearly.net ) I've gotta set up a sub window that opens up for street team info link at the bottom and I do and it works. The only problem is now that it works the way the java script does it's thing causes my flash security settings to go off reading www.nearly.net is trying to read from nearly.net and that is kinda killing me because I can't see why it differetiates even though the files live in the same folder. I've found a section on macromedia's site for setting up permissions to allow the communication through an xml doc, but I'm not really getting it totally. Can anyone show me a way to have a window come up and have a code that resizes the window that is native to the page so that I don't have to deal with the sub window link and the security issue?
Resize Window
I'm trying to link a button on my site that opens another window above the current page. I'm trying to make the new window smaller, so you can still view the page you were on. I know how to make the button, I'm just having trouble with the action. can anyone help? thanks!
Window Resize
Hi
in flash how do i open a link with the window being re-sized to the content.
i.e in dreamweaver i would usually use behaviours - open page - size etc...
help is much appreciated
si
Resize Window
okay, i'm adding a contact form on my flash site, using brave net, because i'm to poor to pay for service that supports php.
so, what i have is a contact button on m flash site, that opens a new window with the form on it,
what i want to do is resize the window, so its not a full window,
how can i do it with java script?
there is no html for the page that has the contact button, so i don't know how to resize the new window,
anyone know what to do?
Resize Window
okay, i'm adding a contact form on my flash site, using brave net, because i'm to poor to pay for service that supports php.
so, what i have is a contact button on m flash site, that opens a new window with the form on it,
what i want to do is resize the window, so its not a full window,
how can i do it with java script?
there is no html for the page that has the contact button, so i don't know how to resize the new window,
anyone know what to do?
Resize Window
i am not sure if this the right forum or what forum to use. if it doesn'r belong say so and i will post it anywhere else
here goes;
is there a way to connect the size of a flash to the html window so that if the html is resized the flash resizes with it. and if so is there a way to constrain the proportions. so that something that is 3:2 stays in that proportions.:
Window Resize Between Movies?
I was watching a flash movie the other day..then all of a sudden....
the window STRETCHED (it didnt just appear...the window actually stretched out to accomodate the larger movie)
it went from a 400x600 to a 700 by 5xx
what the hell?!
and I just realized...the into to my webpage is 400x600 and my actual webpage is 720x520...help me!!!!
how do I do this marvelous thingy?!
+-- Resize Window On The Spot ---+
Hey... anybody seen DevLab's resizing window on the spot functionality? Instead of bringing up a new window with a different size, they have it so the windows resize in front of you. This is Swift 3d devlab.
Does anybody know how to do this?
Thanx.
Nasi
Dynamic Window Resize
I've seen some websites that resize a pop-up browser window in realtime. is this javascript or actionscript?
Pop-up Browser Window And Resize
I'm using flash mx-
There are plenty of ways to resize a pop-up window using javascript. I'm looking for a way to call or input the script in flash mx...
Here's what I'm wanting to do....
on this page- www.integritypoolstx.com (gallery page)
I want the user to be able to click on the thumbnails for a larger image. I want the larger image (440x295) to come up in a window that is 440x295. No adress bar, status bar, scroll,... nothing- just a window for ther picture... and resize
can any one help me with this prob. I know it has got to be simple!!
Thank in advance!
Window Resize Script
Flash 5
I'm looking for a relatively easy way to auto resize the browser window right from the index page - not from a link.
I've used the resize window action within GoLive
but it dosnt work well, even with the lastest generation of ie. That is becuase you need to insert a delay to fool ie. I was unable to do this.
I've tried cutting and pasting from sites like 2advanced but theres always to much other crap to separate from the code I need.
Could somebody help or refer me to a place where I can
get this code?
Thanks
Auto Resize Window To Max
i'm trying to get my main page which contains a flash movie on it to resize to max. size depending on resolution of the screen. now i have a behavior to open a new window with no border and no scroll off of my splash screen(welcome) that opens(RT332) window.
i cann't seem to figure out if you need to attach it to the behavior on the splash screen. or attach it to the mainpage html.
could some one fill the blank in for me.
thank you in advanced
REsize Window Button
I am working on an online seminar project, and it breaks down like this:
Basically it is a slideshow seminar that is timed with a voice narration. Now my boss wants me to place a button that will allow the flash to resize to a larger window. I have the link to the movie set up on a webpage, and there is a javascript in there to make the flash fill a pop-up html page. Can anyone tell me how to make a button double the size of the window the swf is displayed in?
Thanks all
Launch New Window W No Resize Or Nav
Hi,
Anybody out there know how to have a button launch a new window at a fixed size with no resize and no web browser navigation bar up the top?
I just can't figure this one out.
Can it be done entirely in flash or is there some html to insert?
please help!
Window Resize Question?
Hi All,
Can anyone tell me if this is possible? I know that you can control a pop up window (size, position) from flash. Is it possible to control the dimensions of a window that the swf is actually playing in.
For example if I had a movie playing in a window and it starts off square, but at some point in the movie I need the window to change to a landscape rectangle (without just reloading the movie/window) how can I do it?
Does anyone know or has anyone actually done this?
Diggz
RESIZE Screen To Fit Window?
I'm sure this must be very simple and I'm missing something but can someone give me a hand please
I have put up a site for a friend and he's happy with it but unfortunately he's viewing it on a 17" monitor and say's it doesn't all fit on. I produced it on a 19".
Is there an action script that I can use in the first frame to resize automatically to the viewers screen????
Many thanks for any replies in advance.
Aaron
Resize To Fit Browser Window? 'elp
Hello Flash Munkees
I'm sure this must be very simple and I'm missing something but can someone give me a hand please
I have put up a site for a friend and he's happy with it but unfortunately he's viewing it on a 17" monitor and say's it doesn't all fit on. I produced it on a 19".
Is there an action script that I can use in the first frame to resize automatically to the viewers screen????
Many thanks for any replies in advance.
A
Resize Window Question
I am wondering if there is a way to have the flash window resize after I have a new html page popup. Basically, I would like the window to snap to say, 800 x 200, after i tell it to open a new page, and have the new page open and align under the newly resized window. It this even possible?
Window Resize Problem
Hi, This is my problem:
I have a flash movie with a document size of 100 * 130
I need to resize to 100*70, but if I do that in the properties-window, only the upper part of the movie is kept.
The fact is that I need the lower part, and can't find a way to get it.
Please help me.
Thanks
Resize Browser Window
I have a link in my flash movie that would open another movie. I was loading it into another movieclip, but that was causing problems, so now I want to open it in an entirely new browser window that is sized to match the swf
I was using:
on (release) {
getURL ("java script:NewWindow=window.open('http://page. htm','newWin','width=500,height=400,left=0,top=0,t
oolbar=No,location=No,scrollbars=Yes,status=No,res
izable=No,fullscreen=No'); NewWindow.focus(); void(0);");
}
but on both ie and mozilla firefox the window wasnt resized and the swf wasnt playing. I would apreciate if some one could point out my stupidity, and give me a hand.
|