ActionScript 2.0 :: ScrollRect And Browser Resizing - Panning Doesn't Go With It
May 28, 2008
I'm trying to make a full browser webpage that utilizes the scrollRect type of class to pan around a movieclip that contains other movieclips and so on. The problem I run into is that when the browser window is resized that panning doesn't go with it. So panning to all the edges becomes impossible. I've tried a bunch of different stage resizing techniques but none of them give any good results. Here's the actionscript I'm currently working with:
[Code]....
View 4 Replies
Similar Posts:
Oct 29, 2006
I have two pieces of code, that won't work together.First: this makes a hitTest on an mc to make it run on rollover:
Code:
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
if (this._currentframe<this._totalframes) {
nextFrame();
[Code]...
Each work seperately, but they won't together. How do I get around this?
View 7 Replies
Sep 28, 2008
[URL] for the image panning tutorial and forumers.
My aim/goal is to get this effect. The background will fit to any resized browsers without scaling up + image edge will still somehow stay within the stage/browser.. but i got problem with it when i publish my swf as html.
this is my setting in the html tab:
dimensional set to: percent [100x100]
scale set to: no scale
flash alignment set to: center in both
my end result is not good.. i dunno is it my AS or the setting.. hope the kind gurus here can take a look.. i had attach my fla [flash 8].
View 1 Replies
Oct 8, 2009
I am wanting to create a website that uses fullbrowser SWF scrolling similar to [URL] I have found a few example of scrolling images using masks and stuff but I am wanting to scroll a swf where I can click on objects and interact with them.
View 10 Replies
Oct 2, 2011
I would like to create a panning tool similar to the attached. I looking for something very simple, I would like to be able to scroll the large image from left to right using a smaller inset browser.
View 1 Replies
Oct 27, 2010
The title essentially is the question, how do I open the .swf without the browser's control bar junk? and maximize the window?
View 2 Replies
Jan 23, 2009
I have a stage of 600x400 and in the publish settings I chose this same width and height (with pixels dimension, and scale: No Scale).And when I load the swf in a browser:
[URL]
It resizes the swf stage size.(I know this because I have a value which is positioned according to the stage width/height, and also because if I choose an opaque windowless I can see that it is bigger than I want it to be)Am I loading the .swf wrong?
View 2 Replies
Feb 10, 2010
I saw this site in another post and I've noticed this becomming the trend in photo galleries. [URL]When you drill down and open up a photo, the photo resizes with the browser while the rest of the movie elements expand without resizing. I'd love to know how this is done.
On a side note, it used to be impossible to resize a photo cleanly in Flash. Is something being done here or is it just improvements in Flash players?
View 4 Replies
Jun 9, 2011
Basically I am working on a project which I have coded using HTML, HTML5, CSS and JavaScript. The issue I have is that I want a flash object/animation to show on the first page. Now despite resizing the file within the HTML it seems that within Firefox and IE it sets a default size and doesn't fit the screen.
When tested on Safari it seemed to work fine but just doesn't show as intended on Firefox and IE.
Below you can a find a link to get a better understanding of what I mean.
[URL]
View 1 Replies
Feb 14, 2006
i need to dinamically resize some swf in flash 8 but the only code i found on internet for resize swf's stage is for an old version (6 or maybe 7)i tried to use in flash 8 but i guess for security issues it just don't work
View 2 Replies
May 11, 2009
i have 2 movieclip in my flash file. 1st one is the background which i want to resize full accoding to the browser.
2nd one i don't to resize it should be in the same size accept the 1st movieclip.
i tried 100% window from the publish setting but it resizing both the movieclip.
View 1 Replies
Feb 12, 2010
i've a problem with the resizing to the browser of a swf. I preload this swf that have in one layer a movieclip that contains the main animation and in the above layer this actionscript:
[Code]...
Does the resizing actionscript is loaded when the preload load the swf "main.swf"? Because it seems no. In fact when the preload end its process and load main.swf the code in the first layer (the above code i've posted here) for resizing it and adapting to the browser page seems that it's not working. seems that it jump that code.
View 8 Replies
Sep 21, 2010
I've some problems with my flash website I've a photo as a background and I need to stretch that image on browser window without scale. I need that the image was expanded on all window of a browser and proportionally changed together with change of a window of the browser.I've been set 100%x100% in Publish settings and padding=0,margin 0 in body style in dreamweaver. I have been using
stage.addEventListener(Event.RESIZE, resizeListener);
function resizeListener (e:Event):void {
trace("stageWidth: " + stage.stageWidth + " stageHeight: " + stage.stageHeight);
[code].....
View 6 Replies
Dec 4, 2011
I'm about 99% done with a site I'm working on and the client just hit me with a low blow.The designs that I got from their designer were a certain dimension, so I built the site with the assets based on those dimensions and now that I'm nearing the end of the project, the client seen the site on their 13 inch macbook and freaked out "everything looks too big!" is what they said. Is there a way to resize assets based on browser size without having to go in and do too much modifying? I tried looking this up, but I got a bunch of Event.RESIZE responses which I don't think I'm looking for that.
View 3 Replies
Apr 21, 2009
I am building a flash site for my own photography business and the site is designed in such a way that it will scale from 1200x720 down, but never up. So on the biggest monitor, the biggest this should get is 1200x720.
I am having an issue where after you resize the page down smaller than the biggest, i the main container of the content "mainStage" is too small, and even after maximizing the window, it is still stuck on a small size.
-- if you refresh the page with the window at ANY size, it works PERFECTLY.
-- if you resize the browser without refreshing the page, you will reproduce my issue.
I have uploaded the page here to be seen. [URL]
-- Here is the source for this. [URL]
i really want to get this resizing dynamically to work before i work on the rest of the page.
View 13 Replies
May 15, 2010
i am making flash website in AS3 and i have i problem with resizing.I tryed a houndrit codes, classes, examples, tutorials bud nothing worked correctly.In main timeline a have two movieclips first is as a background and second as wholesite. I dont want to resize Background. I want to resize WholeSite movie clip only. It will resize to browser resolution. But width and height stay constrain - width go resizing with height. Here is my FLA: http:[url]....and here is test of that site: http:[url]....
View 3 Replies
Apr 11, 2009
Is there a way to detect when a browser resize has completed? I have a function I want to execute once when the browser has finished resizing, but putting it in my resize function causes it to get called multiple times.
View 2 Replies
Sep 12, 2008
I am building a website and want it so that when the user clicks a hyperlink it opens a new browser window that is 700 x 400 when it is opened.URL...
View 1 Replies
Aug 19, 2009
I have flash content online that is 1024x800 px but need it to resize/scale dynamically if the browser window is resized or someone with a browser height of less than 800 visits the website.
Been looking at stage.resize and event.resize but can't figure them out. Also have looked at swfobject and swffit (not actionscript I know) and can resize my content to a specific size using swfobject but not dynamically.
View 4 Replies
Sep 29, 2009
I want to do something very similar to the resizing effect on this website. [URL]. Basically if you resize the browser, it seems like it's programmed to only display/load/transition in the images once the user lets go of the mouse and the browser is done moving. I would like to know if there is a Resize on mouse release event or a work around to do this. Currently my images keep refreshing every time you drag/resize the browser screen, before you let go of the mouse. So basically while your dragging the browser window size to different size it keeps reloading and updating the images. I want it to reload and update the images once the user is done dragging and resizing the browser.
View 5 Replies
Feb 16, 2005
the Samsung site was posted over in the kool sites section: [URL]
View 2 Replies
Feb 27, 2009
I'm using the code below to resize a mc so that it fits a full screen browser even when its resized. Its working fine but...
How do you make the mc (bga) resize in proportion. At the moment it squashes & stretches
// ***Stage aligned top left
Stage.align = "TL";
// *** Stop the stage from scaling with the browser window.
[Code]....
View 2 Replies
Aug 6, 2009
I just wanted to know how to stop my flash site from resizing to the size of whoevers looking at its browser? I just want it to remain as it's set size.
View 1 Replies
Oct 20, 2009
I want to load an external swf to the background and then have it resized proportionally according to the browser window so it can fill up the whole screen.
View 2 Replies
Mar 4, 2010
I have an SWF file embedded in a larger html page.There's a fair bit of communication between javascript and actionscript so I'm using both ExternalInterface.call and ExternalInterface.addCallback in the actionscript code.Communication is all fine, except for one (common) situation on IE.If the user clicks within the SWF file and then resizes the browser window, calls from javascript to actionscript fail to work.Actionscript can still call up to javascript, but no return.If the user clicks inside the SWF, then somewhere else on the page, then resizes the window, nothing breaks.[code]All of those attributes are the callback function names.This happens with both IE7 and IE8, but FF is fine.
View 1 Replies
Apr 21, 2011
I am trying to create a flash website, my document size is 1024 X 766 pixels. My goal- when I publish it and view it in the browser, when I resize the browser window I DO NOT WANT the website to scale up/down accordingly.At the moment my flash website is scaling according to the resizing of the browser window which is causing awful aliasing to my logo (jagged edges).The logo is 250 x 50 and I don't want the logo to change size while resizing the browser window. And at the moment the logo is growing or shrinking when changing the browser window.
View 4 Replies
Nov 24, 2011
Just want to find out something... I have a .swf video file which I open with the normal Adobe Flash player 10. What happens is that when I open that file in a smaller screen resolution there's some parts missing (cuts it off around the edges).
How can I resize the content to fit in any screen resolution?
View 1 Replies
Oct 20, 2009
I want to load an external swf to the background and then have it resized proportionally according to the browser window so it can fill up the whole screen. Could anyone point me to any online tutorials or show me how to do it?
View 0 Replies
Sep 20, 2010
I'm working on a kind of coverflow layout and I'm using an XML file to house my links and information about those links. in my ActionScript, I'm using getURL to point to the link the user clicks and open the link in a new window using the following script:
getURL(infostruc[current - 1].artLink, "_blank");
I need to have the new window open up to a specific size (1014x714), but I'm not sure how to write the AS for this kind of action since I'm calling the link from an external file.
View 1 Replies
Dec 12, 2010
When I open up the html in a browser, the image spills off the screen. But if I adjust the broswer by dragging a corner of the window, the scaling starts working and everything fits great. Everytime I load the page or reload it though, it goes back to the default of spilling off the screen. So, it mostly works... unless you don't adjust the broswer manually.Here's the html code:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Title</title>
[code]....
View 4 Replies