Screen Shots
I have taken a screen shot to put in my movie and when I watch it at 1280x1024 it looks fine but at any other resolution it gets really degraded. what can i do to make it look good at any resolution.
thanks J-
FlashKit > Flash Help > Flash Newbies
Posted on: 11-02-2002, 06:16 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Screen Shots
hey does any one know how to take screen shots of your desktop and where would they be found at?
Screen Shots...
What is the best way to get a screen shot of a Flash MX movie. Id like to retain as much quality as possible. Can it be a jpeg?
Thanks
Screen Shots For Print
This is probably a ridiculously easy thing to do but somehow I have missed it out. & can't find how to do it anywhere.
I need to save to file in .jpg or .tiff format examples of my web pages , how do I get a good quality image from a browser? (Netscape or explorer)
This is quite urgent & I'm hoping someone can help, apologies if this is a glaringly obvious question!
Tutorial Screen Shots?how?
how do the people who make the tutorial get thoes screen shots of the program?
do they take a picture and then they clean it up?
can someone tell how do they do it because i been woundering for about a year or so.
How To Make Screen Shots Look Better?
Does any one have suggestions on how I can make this screenshot look clearer?
http://www15.brinkster.com/paulo4000/mainx/mainx.html
I captured them to jpeg them I tried to bitmap but saw no real difference.
Thanks for your help!
Using Screen Shots In Flash MX
Has anyone had any luck using screen shots in Flash?
I have tried lots of things - .jpg, .gif, .png, cut/past and nothing give me a clear image when I play the movie.
We have developers that want to use screen shots of different applications to create training materials. However, everything I have tried for them is not producing a clear image at playback.
Any help?!?!?!?
Jason
Loading Screen Shots From Another Swf
I am working on a flash project with alot of screen shots, around 500 of them. How can I have the main flash file load up each image from another .swf when it is needed? Click here and go to Armored Core, then go to Nexus, and click on screenshots then parts, I have 21 images there right now but they are in the main file.
How To Get Screen Shots (print Screen)
dear all
i am newbie to AS3 and want to print my screen programmatically using AS3 and Flash Cs3 with FMS3
how can i do that..
any positive and quick response in this regard will be highly appreciated.
a bundle of thanks in advance
Regards
maani janjua
Edited: 04/18/2008 at 01:27:55 AM by maani786
Taking Screen Shots Of A Running Swf?
Anyone out there have any idea how to take a screenshot of a running swf, using actionscript, from inside the swf. Basically, students are going to be working through some problems, and we want to save screenshots when they hit something like a next button, so that we can later analyze their decisions and see what they did right and what they did wrong. I know it's a tough one, any ideas?
Automatic FASTER-THAN-RT Screen Shots?
hi everyone. we have recently received a drive of about 80 movies with at least 5 (sometimes 9) scenes each.. we need to take 12 screenshots from each scene.. is there a tool that can do this randomly at FASTER than real-time??
thanks.
Logan
Laser Shots [HELP]
Good morning, good afternoon and good evening.
i am developing a platform game, but I currently faced the problem of laser shots being fired in the direction of the mouse.
Is there any way of getting the mouse angle and duplicate the clip?
My laser mc is made by a tween inside movieclip. with the laser starting at CenterCrosshair, and ending 800 pixles to the right. with the AS (stop()
there are no GUN movieclips. the laser should be originated at the character alone (character is a blob).
so does anyone know how to duplicate MCs to mouse angles? and to get the mouse angle from the blob at least??
The blob will be moving.. so how does the mouse-angle detection work?
Regards,
TONGXN
Spin Shots?
Hi, I'm 15 and have just started to play table tennis. I have gotten reasonable good already (not national level yet) and i am beginning to experiment with spin shots. If anyone can help tell me how to do them or provide me with any drills to practice spin shots please submit them.
I appreciate all the help thank you so much!
Single Fire Shots - Woohoo
Hi,
I have a gun turret which fires a bullet mc each time the mouse is clicked (mouseUp) would any1 be able to suggest how to restrict the following code so that it only shoots every second? rather as as many times as the user clicks the mouse?
setProperty("", _quality, "BEST");
MovieClip.prototype.rotMouse = function ()
{
var adj = _root._xmouse - this._x;
var opp = _root._ymouse - this._y;
var radians = Math.atan2(opp, adj);
var ang = radians / 3.141593E+000 * 180;
return (ang);
};
d = 0;
_global.shoot = function (speed, mc)
{
++d;
var angle = Math.atan2(_root._ymouse - mc._y, _root._xmouse - mc._x);
bullet = _root.attachMovie("bullet", "b" + d, d);
var xdist = Math.cos(angle) * speed;
var ydist = Math.sin(angle) * speed;
bullet.swapDepths(mc);
bullet.xv = xdist;
bullet.yv = ydist;
bullet._x = mc._x;
bullet._y = mc._y;
bullet._rotation = bullet.rotMouse();
bullet.onEnterFrame = function ()
{
c = new Sound();
c.attachSound("bang");
this._x = this._x + this.xv;
this._y = this._y + this.yv;
if (this._y > Stage.height + this._width || this._y < -this._width || this._x < -this._width || this._x > Stage.width + this._width)
{
delete this.onEnterFrame;
removeMovieClip (this);
} // end if
};
};
numBullets = 5
_root.turret.onEnterFrame = function ()
{
this._rotation = this.rotMouse();
};
_root.turret.onMouseUp = function () {
for (i=2; i<=numBullets; i++) {
shoot(10, this);
}
c.start();
};
really really apprechiate any help
Counting The Shots And Adding Them To A Total In Text File
Im building this game and I want to record all the shots ever made in the game. So I want to store the number in a text file, when somebody starts the game it should read the file and remember the number then start to add 1 to it at every shot. And when the user close the window or goes to another page the new number must be recorded in the text file.
I know how to load from the text(LoadVariable .. etc.) How to turn it to number( x = Number(x)) I know how to add one at every shot.
What I dont know is how to make tha movie to write the number to the file when someone closes the page or goes to another one. I dont even know if this is possible. I am currently working with a script that add 1 to the number in the file at every shot which is not so good for the server
Can anyone help me optimize this?
Thanks in advance!
Problem - Duplicating Movie Clips/bullet Shots
Sorry about the ambiguous title, couldn't think of a good name... anyways...
I have a game, here it is http://img8.exs.cx/my.php?loc=img8&image=game4yy.swf
What I have now (focus on shooting by mouse click) is just a subsitute until I find a better way to do it... Anyways, my problem is as follows... (realize that the code isn't perfect, and has many typos considering I'm writing it from memory right now). I'm trying to get it when you mouse click, it shows the movie clip and the movie clip has an alpha property that decreases slowly, and when it has 0 or less alpha, it is removed. Right now, it only lowers the alpha if there is another shot on the screen. Also, I never added a remove movie clip action, which really boggled my mind , and it still removes the clip.
Anyways, my first idea was use code to lower the apha by making it like this...
code:
onClipEvent(enterframe){
this._alpha-=5
if(this._alpha<0){
this.removemovieclip()
}
}
now, of course that didn't work becuase there was nothing to duplicate. Anyways, right now I have a tween that lowers the alpha, but that doesn't seem to be working. So, I tried to make it so it ONLY lowers the alpha of duplicated clip and removes that when the alpha is less than 0. I tried this but it didn't work. Could anyone help me with that?
Also, could I make it so if the movie clip is on the screen for a designated time, it gets removed? Anyways, help appreciated.
Full Screen Flash Projector Reverts To Windowed When Exiting Screen Saver
I've created a flash projector that displays a companies product catalog on a 50" touch screen plasma display.
It looks great and plays great if I launch the projector and force it to full screen.
However, since this is a plasma, screen burn in is a major issue to contend with.
I've set the Windows screensaver to activate after one minute of inactivity.
The problem is that when the screensaver is exited by a touch, the flash projector that was running in full screen mode is now back in windowed mode so CTRL-F has to be hit to force it to full screen again.
This isn't good.
So, I guess my question is two-fold:
Is it possible to programatically force the projector to full screen mode so that no user intervention is required? (fscommand works on the first launch, but when the screensaver kicks in, all bets are off.)
And/Or
How would I go about creating a timer to activate an internal screensaver and insert it into the actionscript for the XML gallery?
Any help is greatly appreciated.
Thanks,
Rick
[FLASH9- AS2] Full Screen, Keep Scale Ratio, Center Screen
[ X ] Problem solved
Hi everyone
I just came up with something i have some trouble to handle
I've tried a couple of solution but none seems to work perfectly
What I'm trying to do is simple, get my flash to go full screen, but whatever resolution the user has, my flash must centers itself with the biggest proportion possible, and two movie clips goes right and left of it, as if they were borders.
I've been able to do this with a simple png, but i was not able with a movieclip where his dimension changes through time. ( i have a tween, so the mc gets really big even though just my stage is displayed)
Open Browser 100% Of Screen (maximize Not Full Screen)
Hi...
Would anyone happen to know the answer to this ?
Open browser 100% of screen...
In other words i want to maximize the browser window...
Kinda like full screen but they get to keep their browser :P
Does the java command support %'s ?
like..."width = 100%"
Help on this would rule
Full Screen Flash - Screen Center Problem
Hi, I'm trying to use full screen flash, and place my movieclips with actionscript.
It's screwing up the screen center for some reason though, and I can't seem to figure out why...
Here's the screwed up site:
http://www.combinecreative.com/test/mover.html
Here's the code that's on a movable MC:
onClipEvent (enterFrame) {
_x += (_root.logox - _x)/3;
_y += (_root.logoy - _y)/3;
Here's the code I'm using on the main timeline to move the MC's:
_root.logox = Stage.width / 2;
_root.logoy = Stage.height / 2 - 200;
It seems pretty straight foward, but for some reason it's offsetting my screen center...
Any ideas would be great!
Screen Update Lag? Screen Updates During Preview But Not In Browser.
I've got a function that searches an external csv file for some info then returns the results to the screen via a couple of arrays and some other string functions. The csv search takes approximately half a second to a full 2 seconds, depending on where the searched data is located in the csv.
So that user's do not think the app is frozen, I've written some code that disables the input text box and changes its background color. Also, the code changes a status text box's text to "searching".
All of it works fine in the preview window (ctrl + Enter). However, when I export it to html preview (F12) the boxes do not update. The search still works and the results are still returned, but neither box changes. I'm thinking maybe the browser or player is not updating the screen fast enough. Below is some sample code:
this.Search_btn.onRelease() = function()
{
InputName_txt.selectable = false;
InputName_txt.setStyle("backgroundColor", 0x999999);
Status_txt.text = "Searching";
PersonnelSearch (InputName_txt.text);
}
At the end of the PersonnelSearch() function I have code that changes it back. I've tried placing the status code at the beginning of the PersonnelSearch() function but no go. I even tried the following code:
this.Search_btn.onRelease() = function()
{
InputName_txt.selectable = false;
InputName_txt.setStyle("backgroundColor", 0x999999);
Status_txt.text = "Searching";
if(Status_txt.text == "Searching")
{
PersonnelSearch (InputName_txt.text);
}
}
Nothing has worked so far. Is there some sort of screen update lag between the preview speed and the actual browser window speed? To test the pathing, I removed the code in the PersonnelSearch() function that returns the boxes to normal then re-tested. The boxes finally updated in html preview mode, however, they did not update until the PersonnelSearch() function had completed.
Full Screen Flash Page On All Screen Settings
PLEASE COULD SOMEONE HELP
I am NEW to FLASH and am designing a website (www.sk1online.co.uk)
I have designed a website the size of the website is 800x600.
I have published the website with the following settings:
100%x100%
Scale: Exact Fit
Window: Transparentless
When I view the website on a 800x600 screen setting the website appears perfect and takes up the whole screen.
HOWEVER, when I view the website on other settings say 1024x768 the website shrinks and dosnt take up the whole page.
PLEASE LET ME KNOW HOW I COULD PUBLISH THE WEBSITE SO IT FILLS THE WHOLE PAGE ON ALL SCREEN SETTINGS.
I have used the following to no LUCK.
Stage.align = "TL";
Stage.scaleMode = "noScale";
Full Screen Flash - Incorrect Screen Middle
Hi, I'm trying to use full screen flash, and place my movieclips with actionscript.
It's screwing up the screen center for some reason though, and I can't seem to figure out why...
Here's the screwed up site:
http://www.combinecreative.com/test/mover.html
Here's the code that's on a movable MC:
onClipEvent (enterFrame) {
_x += (_root.logox - _x)/3;
_y += (_root.logoy - _y)/3;
Here's the code I'm using on the main timeline to move the MC's:
_root.logox = Stage.width / 2;
_root.logoy = Stage.height / 2 - 200;
It seems pretty straight foward, but for some reason it's offsetting my screen center...
Any ideas would be great! pretty please...
Screen Update Lag? Screen Updates During Preview But Not In Browser.
I've got a function that searches an external csv file for some info then returns the results to the screen via a couple of arrays and some other string functions. The csv search takes approximately half a second to a full 2 seconds, depending on where the searched data is located in the csv.
So that user's do not think the app is frozen, I've written some code that disables the input text box and changes its background color. Also, the code changes a status text box's text to "searching".
All of it works fine in the preview window (ctrl + Enter). However, when I export it to html preview (F12) the boxes do not update. The search still works and the results are still returned, but neither box changes. I'm thinking maybe the browser or player is not updating the screen fast enough. Below is some sample code:
this.Search_btn.onRelease() = function()
{
InputName_txt.selectable = false;
InputName_txt.setStyle("backgroundColor", 0x999999);
Status_txt.text = "Searching";
PersonnelSearch (InputName_txt.text);
}
At the end of the PersonnelSearch() function I have code that changes it back. I've tried placing the status code at the beginning of the PersonnelSearch() function but no go. I even tried the following code:
this.Search_btn.onRelease() = function()
{
InputName_txt.selectable = false;
InputName_txt.setStyle("backgroundColor", 0x999999);
Status_txt.text = "Searching";
if(Status_txt.text == "Searching")
{
PersonnelSearch (InputName_txt.text);
}
}
Nothing has worked so far. Is there some sort of screen update lag between the preview speed and the actual browser window speed? To test the pathing, I removed the code in the PersonnelSearch() function that returns the boxes to normal then re-tested. The boxes finally updated in html preview mode, however, they did not update until the PersonnelSearch() function had completed.
Flash Presentation On 16:9 Screen Or A Wide Screen Plasma Tv
Hi Gang,
I am new to the forum, so big hello to all your hot flash gurus!
I have been given a project where I need to create a flash site, that will be played on full screen on any computer.
However, they also would like to play it on a wide screen tv, like a plasma screen.
When it comes to proportions I am not sure where I should begin.
For example, if I begin the site for a website I could start with 800 x 600, 1024 x 768 these all being the 4:3
If the site works full screen on 4:3 then thats great and thats my goal, but I want to make sure that when I play the flash site on the WIDESCREEN plasma, it doesnt distort.
what I am hoping will happen is that when we run the projector file, the site simple opens, but the box where the site compotents are, simply sits in the middle and there are spaces on the right and left, where its been centred inside the widescreen display.
The second concern is pixel size, I know that the shape of pixels are different on TV screens, to computer monitors, do I need to worry about this? or will the computer that we play the Flash projector file through, on to the PLASMA just sort all that out, as if I was playing the site on a normal computer screen.
Thanks so much for any advice you can give.
FULL SCREEN FLASH PAGE ON ALL SCREEN SETTINGS
FULL SCREEN FLASH PAGE ON ALL SCREEN SETTINGS
PLEASE COULD SOMEONE HELP
I am NEW to FLASH and am designing a website (www.sk1online.co.uk)
I have designed a website, the size of the website is 800x600.
I have published the website with the following settings:
100%x100%
Scale: Exact Fit
Window: Transparentless
When I view the website on a 800x600 screen setting the website appears perfect and takes up the whole screen.
HOWEVER, when I view the website on other settings say 1024x768 the website shrinks and dosnt take up the whole page.
PLEASE LET ME KNOW HOW I COULD PUBLISH THE WEBSITE SO IT FILLS THE WHOLE PAGE ON ALL SCREEN SETTINGS.
I have used the following to no LUCK.
Stage.align = "TL";
Stage.scaleMode = "noScale";
Return To Idle Screen (screen Saver)
I need to know how to make a screen saver screen with Flash. After a certain amount of idle time, the screen returns to an animated holding screen. Please help!
Off Screen Pictures Show Up In The Html Screen
I have been working on swf and now that it is almost fininshed I have been checking how it will look with in a web page.
The problem is the pictures I want to slide off the screen continue to be visible on the html screen. Does that make sense?
In flash the pictures move off the document area (in this case 750X400) but when view in an html page I can still see the pictures as they slide off the bottom edge of the flash area.
Is there any way to keep flash pictures from showing up when they are off the page?
My .swf is scalled 100%X100% with Salign T so that the swf fills the screen left to right and is next to the top edge of the screen. Just the bottom edge of the flash screen is open... and this is where I see the flash pics continue to show even after they should have moved off the screen.
Hope this makes sense. I would appreciate any help on this.
Matt
Page Goes Off Screen W/ Screen.availWidth Command
Hello all. Using this script in a getURL NewWindow command:
'width='+screen.availWidth+',height='+screen.avail Height+’
shoots the edges of the popup off the screen, which looks pretty bad. It's not such an issue with 1024X768 since the page has been designed so no scroll is needed. But with 800X600 one half of the vertical scroll bar is off the page (not good). What can I throw in there to make the page, I dunno, maybe 10 less pixels than the "available width." Or maybe a command that tells the popup to actually fill the available space.
thank you Flashmeisters!
ps, I have a laptop....don't know if my screen is somehow different than a monitor because of it.
Intermediate Gray Screen Seen While Moving From One Screen To Another
I am integrating flash with VC++ using ActiveX.Here when I click on buttons to go to the next screen an intermediate blank screen flashes for a second that looks very odd.In fact for some screens that have many movie clips the blank screen stays there for a few seconds before showing the actual frame. This causes a blinking effect that is not proper.I wish to know why this happens and how it can be removed.
Thanks in advance.
How To Make Flash Screen Saver Always Fit Screen?
hi.
i'm trying to make a screen saver just for the pleasure of myself and a few close friends in my team. i've searched everywhere but have not found an answer to the following problem. although i use this command:
Code:
fscommand("fullscreen", true);
in the first frame of my movie, the screen saver does not fit the screen all around as it should. yes, it does scale to a certain extent, but only according to the dimensions of the original fla, that is, it'll stretch only horizontally or vertically until the stage limit leaving a gap either to the top or sides... and this won't do as my friends have different stage dimensions as me.
so. can someone please tell me what i'm missing? i'm using flashforge to produce the .scr. i've tried with trial versions of a couple of similar converters, but the problem persists. must be something with my .fla settings.
wise words will be much appreciated here!
Full Screen Flash On All Screen Sizes
The problem I have is that I designed a website 800x600 (page size).
When I publish the website in 800x600 screen resolution the website doesn't fit in the whole page (it stretches).
I then designed the website taking up half of the 800x600 page and published it. It viewed full screen on 800x600 screen resolution only and on other screen resolutions it shrinked.
PLEASE LET ME KNOW HOW I COULD VIEW IT FULL SCREEN ON ALL RESOLUTIONS,
HERE IS MY CODE BELOW..
PLEASE COULD YOU SEE WHAT IS WRONG WITH IT:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>index</title>
</head>
<body bgcolor="#000000">
<!--url's used in the movie-->
<a href="<A href="mailto:FAZ@SK1ONLINE.CO.UK"></a">mailto:FAZ@SK1ONLINE.CO.UK"></a>
<a href="<A href="mailto:dhol99@hotmail.com"></a">mailto:dhol99@hotmail.com"></a>
<!--text used in the movie-->
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/...version=7,0,0,0" width="100%" height="100%" id="index" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="index.swf" />
<param name="quality" value="best" />
<param name="scale" value="exactfit" />
<param name="wmode" value="transparent" />
<param name="bgcolor" value="#000000" />
<embed src="index.swf" quality="best" scale="exactfit" wmode="transparent" bgcolor="#000000" width="100%" height="100%" name="index" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</body>
</html>
Getting Screen.width And Screen.height From Javascript
or is there a way in F5 to set these as variables.
I'd like to place a MC 800x600 and set the stage size to something like 2500x2500 and then place the movie full screen no toolbars, but place the moveclip in the center of the screen and it's height still 800x600
anyone ever do this?
with this technique I want to be able to drag dialogs and info boxs off the main MC and set them out side the main MC of 800x600.
to do this I have to set the stage very lage? but I want to keep the clip centered
any ideas
jef
Print Screen / Screen Grab
I'm building a virtual horse racing game in Flash MX. So far, I have the horses running across the screen and the winner is always different.
The next thing is to do a "photo finish" screen after the race. This would visually confirm the winner to the user. The problem is, how do I capture an image of the winning horse as he crosses the finish line and then display it to the user?
Is there a way for Actionscript to trigger a print screen and then I could take this image from the clipboard and display it in the movie?
Screen Size Changes -- Can't Get Full Screen
I loaded a swf file on my homepage. However, it appears small. But when another link -- within a standard HTML page -- is used to go back to the swf page it then appears the larger viewable size. If anyone has suggestions on how to make the entire site viewable larger -- I would sure appreicate it.
Thanks!
Julie
Flash Image Gallery Embed In PHP Click Flash Screen Appear In Middle Of Screen
Firstly Thank you for taking a look at this thread. Secondly i tried searching for this and couldn't find anything
In case you haven't read my intro topic. i am working on an online retail website. It is relatively old and only displays 1 picture of the shoe. I have looked around other websites and some appear to have a flash script, that enables the user to click on the picture and make a grayish box appear in the screen. This small box has thumbnails of the images which can be clicked to be enlarged and also the ability to zoom in a fair amount and move around the picture. Below are some screen shots i have found. Any ideas or suggestions would be very much appreciated
Kind Regards
Delphi
^ This is one i found on a site.. its flash and allows you to click on the smaller thumbnails to bring it to the top. also allows you to zoom in.
^ This is what i meant by Quote: greyish box appear in the screen .
Non-screen-based And Screen-based, I Dont Understand
"If you want to include a preloader (a separate SWF file that loads your primary SWF) with your screen-based document, one way to do this is to create the preloader as a separate SWF file (non-screen-based), and load the SWF file for the screen-based document from within the preloader SWF.
You cannot create a preloader within a screen-based document, because all screens in a document are located on the first frame of the root Timeline, so you cannot call or load other frames."
1st Q. what is a non screen based swf?
2nd Q. what is a screen based swf?
3rd Q. where can i possibly get a preloader code that i can modify?
4th Q. how about the code to load the final movie?
5th Q. can someone explain this to me and the step by step process?
HELP PLEASE!! HELP PLEASE!! HELP PLEASE!! HELP PLEASE!! HELP PLEASE!!
THANK YOU IN ADVANCE GUYS
Full Screen Flash. No Toolbars, Controllers, Just The Flash Page On Full Screen - How
Ive seen this on DVD Roms, Multimedia Roms, Presentation Cds, etc.
People insert their DVD or CDs of their Flash and it plays automatically and at Full screen. There's no Controllers or anything except the one you make in the Flash itself.
There's no browser either. Its like watching a DVD where all you see is just the movie.
Anyone know exactly what this method is called and any tutorials or samples on how to do this with your Flash page.
Thanks
Why Does Full Screen Only Full Screen My Video?
I have a toggle button for full screen:
PHP Code:
private function toggleFS(e:MouseEvent):void
{
if (stage.displayState == StageDisplayState.FULL_SCREEN)
{
stage.displayState = StageDisplayState.NORMAL;
}
else
{
stage.displayState = StageDisplayState.FULL_SCREEN;
}
}
but when I hit it, its focuses on just my video and nothing else. I want to essentially full screen the video, but also the time line with it.
SCREEN
um screen sort of movement like if you have a really big map and say you have a ball that can be moved by the arrow keys say you put a square over the map and fill around the edges so you only see a portion of the map at a time and if the ball goes on the edge the maps moves over a little
and since that made no sence i link you to a site that show what i mean http://www.zanpo.com
Getting Screen Rez
Can someone tell me how I would get the screen resolution for a user, then resize my flash movie accordingly. I'd like my movie to look nice in all screen sizes.
Thanks,
Brian
Screen Res
1st off thanks ViperGeckoFreak for your help.
unfortunately I'm still having problems.
Im using a 4 framed page. left margin, right margin a header (containing a flash nav bar animation thing!) and a main content page. only the header contains a flash a flash anim. What i now want to do is have the header frame display an alternative movie if the screen res is set to 800x600. i have gathered from another post that i need to use the following:
<SCRIPT LANGUAGE="JavaScript">
if (screen.width == '800')
{location.href='800.htm'}
</SCRIPT>
BUT!!!
where abouts in the unknown void of my frame html do i put it?? I cant get the bloody thing to work!!
boohoo
(help please?)
Dee
Fit To Screen
now i knw you can do this, but i am not sure what the code is actually called.
i have 9 web pages all on seperate layers.
the size 800x600, and i need to make sure to resize depending on the resolution of the computer viewing them.
thanx
bfly03
Fit To Screen
Another thing that has been bugging the retard that i am: How do I make sure the format of my pages is the same, regardless of the viewer's screen size?
I designed the site on a tiny laptop but when I had a look at it from someone else's computer (with a massive screen), t just looked so ridiculous because everything was downsized and sort of floating in the middle!!! Awful.
Fit On Screen
Hi
How to you make a 600 by 420 flash movie fit perfectly on your screen
Fit To Screen
Im having a problem with getting my sites to fit screen. The edges are always short of the corners of the screen. Is there a code or is there someting that will make my site fit to screen no matter what computer I pull it up on? Please help. thanks
Fit To Screen?
I'm trying to make flash movie where it's 1024x768, and like most of the middle part is gonna be external HTML pages that load into it. I'd like to make the movie 1024x768, so that when a person with 800x600 looks at it, it won't be larger, and it will fit the screen perfectly. Is there something inside of flash, or some sort of html or javascript code for this to work?
|