ActionScript 2.0 :: Change Popup Size With Flash
Sep 22, 2004
Is there a way to change a popup window size that has an swf embedded in it without loading a new page? here is the example: [URL] click the open window and the pop up opens up at 550 x 402 with an html page. The html page has an embedded swf, flash music player. All to the way to the right, there is a minimize button that will (hopefully) minimize the window to 550x 180 with out disterbing the player. This is my issue. So can it be done without loading an new page and not altering the players progress?
View 6 Replies
Similar Posts:
Sep 22, 2004
Is there a way to change a popup window size that has an swf embedded in it without loading a new page?
here is the example: [URL]
click the open window and the pop up opens up at 550 x 402 with an html page. The html page has an embedded swf, flash music player. All to the way to the right, there is a minimize button that will (hopefully) minimize the window to 550x 180 with out disterbing the player.
This is my issue. So can it be done without loading an new page and not altering the players progress?
View 6 Replies
Jan 19, 2009
I am having trouble finding a post which can tell me how to limit the size of a popup window. I have a swf with buttons in it which I need to open the popups in windows sized width=706,height=500.[code]...
View 3 Replies
Aug 3, 2011
How can I create a fixed size popup window from Flash? When click on the image, it pops up a small window without those browser tool bars.
View 1 Replies
Aug 31, 2010
In my game people shoot at 4 different moving images and get points. Simple right? Well one of the images is a question mark that people can shoot and when they do, I need flash to pause the game timer, pop up a new window, display the multiple choice question in the window and wait for the user to answer. I would also like to be able to customize the size and location of the pop up window!
Then if the question is answered correctly close window award 10 points and continue the game. If the question is answered incorrectly, say wrong and then display the end game results screen. Right now I have it to where it opens a pop up in a web browser and askes the question there. The question is randomly chosen from a file called random.html. But I do not want the game to operate that way. I want the game to open the pop up within flash.
View 8 Replies
Jun 18, 2009
I can only do so much with flash. I am having issues with linking to a video. Here is my question: please refer to [URL] and click on the video link. I have 3 videos that I want people to view when they click on the links:
- SI TU T'EN VAS (2001)
- GWADA (2004)
- JODIA (2008)
I need the links to be able to open a popup window in flash with 320X240 in size.
1- I imported each video in flash (separatly) using the 30rates/frames, progressive dowload from webserver. (the usual).
2- I allready uploaded the videos (.swf and .flv) on the server (godaddy.com)
3- In my main file, I created a button for each one of the links above using the invisible button with their own instances. they are each on a different layer.
View 2 Replies
Jan 3, 2011
Is there any kind of a standard for the location (padding) and size of the usual "ok" and "cancel" buttons on a Flex pop-up dialog box? In another stackoverflow question it was suggested that the approach be host operating system dependent (e.g. Windows vs Mac vs Linux).
View 1 Replies
Jun 2, 2011
I'm trying to create an image gallery with a similar functionality as the Impulse screenshots. I can't post links apparently, so just check a game page and click one screenshot to see what I mean. Basically, when you click an image thumbnail, a popup window appears and resizes to accommodate the picture. Clicking outside the pop-up closes it. There's are also buttons to go to the previous/next image in the thumbnail sequence.My guess is that this pop-up window would have to be an individual swfThe question is how do you open it and make it close when it loses focus. I'm not sure if this is possible with AS3 alone or not, as I failed to find a tutorial on the subject.
cc
View 5 Replies
Aug 21, 2006
build a links page on my flash site to my friend's sites. This seems like it would be easy, but I can't seem to figure it out...Basically the problem is with the popup window size. I don't want their website browser window to cover my site, so I need some sort of script within my flash site to control how big the window size of their site pops up.I found this line of code in my searches, but it doesn't do anything when the button is clicked:
on (release) {
getURL("javascript:openwin('http://www.technofisch.com', 600, 400)");
}
So I'm stuck. I'm also having the same problem with a PDF file. I have my resume as a PDF the pops up when the link is clicked, but I don't know how to control how big this window is, as it is a direct link to the file and no html.
View 3 Replies
Apr 29, 2009
How do you create a fixed size and location of a popup window in actionscript 3.0. I know how in 2.0 but 3.0 is much different.
View 1 Replies
Oct 1, 2004
I was wondering if it's possible that a popup browser window auto resizes to the size of a .swf or a image?
View 2 Replies
Mar 4, 2011
If you create a popup via:[code]It will create a popup and bring it on top of any other visual piece. I have one problem though. This 'popup' needs to stay up even when the user interacts with the background.I would use modal, but I need the ability to interact with the back. Any way to tell the popup manager not to remove the popup when the user clicks off of it?
View 1 Replies
Sep 28, 2011
var tfNum_mc:MovieClip = tl.attachMovie("tfID","tfNum_mc_",tl.getNextHighestDepth());
If I'm to assign the above code to a dragDrop action. Is there a way to change the font size of tfNum_mc_.tf? I've tried;
tfNum_mc_.tf.size = 12;//did not work
var format1:TextFormat( = new TextFormat();
format1_fmt.size = 12;
tfNum_mc_.tf.setNewTextFormat(format1);//did not work
View 9 Replies
Aug 10, 2010
I am trying to change my radiobutton size and label size in pure as3...
searchRB = new RadioButton();
searchRB.name = "search";
searchRB.group = rbg;
[Code]....
View 1 Replies
Nov 3, 2009
I want to reduce the size of Swf using the size mentioned in the object tag of html. Same swf file size can be different for different request.
The problem is this if we reduce the size all control in swf reduced according to the change in swf size. But we want the buttons and one more graphics remain same size for any change in size of swf file. How can we make it ..
View 1 Replies
Apr 8, 2009
I have a flash file with the stage size 800x600Now I change the stage size to 1024x768 but all the constant ( movie clip, images, buttons..) do not fit with the new stage size.
View 2 Replies
May 13, 2011
I created a simple program that displays the current time on the screen.
When I embed this object on a web page, it takes the whole screen leaving a lot of blank space. To avoid this I tried setting the height and width using two methods:
1) I did <embed src="time.swf" **height="100"** **width="100"**>
2) I tried stage.scaleX=.5;
stage.scaleY=.5;
But both of these solutions also decrease the size of my text.
So, my question is that is there a way to decrease the dimensions of the swf file, without scaling the text and other components in flash
View 1 Replies
Feb 18, 2012
I'm totally new to flash, and I'm trying to build a very simple app. I have one as file in which I defined my class which inherent from Sprite, with the name mySprite. I have a fla which is of the mySprite class, and a size of 400x400(I must assign a size when define the fla). my question is, when this flash is launched, I want to read some data from outside (width&height) and change the flash windows size to these specified size. I tried many ways, but can't succeed. Every time the flash is launched, window size is 400x400.
View 1 Replies
Oct 14, 2009
I cannot find any information that if there is possible to change the frame size on flash. Is it possible to change the frame size of aspect ratio on flash?
View 7 Replies
Dec 6, 2011
i created a flash website but the problem is the size is to large to fit on screen i have imbeded buttons, Movies clips, masks, and about 7 different scenes in this 13 mb movie what do i do to make the physicle size of the objects on screen so i can view it on my sceen?
View 1 Replies
Oct 29, 2011
I am trying to scale this video to 640x360. When I change the width and height, the video doesn't get bigger. I tried adding the parameters scale="aspect", scale="exactfit", cale="default". None of them worked.Is there any way to scale this to 640x360?Embed Code:
<object width="416" height="374" classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000">
<param name="allowscriptaccess" value="always" />
<param name="movie"
[code].....
View 3 Replies
Mar 16, 2012
I made a flash application that gets the geolocation of a viewer ( city, state) and I'm trying to figure out how I could make the font smaller to fit in the container that I have it in depending on how big the name of the city is. For example, "Detroit" may fit, but "Los Angeles" may need to be a smaller font.
View 1 Replies
Jan 27, 2011
Is it possible to change Flash applet(SWF) size dynamically? SWF is not embedded in HTML, so no external sizing will be used.
View 2 Replies
Sep 5, 2006
I have seen this on some site, so there must be a way of doing this. How do you dynamically change a flash movies dimension during runtime? For example, the forum nugget is working on I noticed that the height of the flash forum dynamically grows as the thread getslonger...because I can see my browser scroll bars appear. How can this be achieved?? his seems mind buggling to me, because you have to set a flash movies stage dimensions before publishing and the html has the flash dimesions too, so I don't get how this is being done
View 4 Replies
Oct 29, 2011
Im trying to change the size of this video object from 416x374 to 640x500.[code]I tried adding these parameters and none worked: scale="aspect", scale="exactfit", scale="default".From what I understand, this swf is being scaled inside flash using "StageScaleMode".Is there any way to override this and change the embed size?
View 1 Replies
Aug 31, 2011
I am editing my website, a full flash site bought from Template Monsters and it seem there is a problem with screen resolution. When i publish the fla in flash only, it fits the screen exactly with no scroll bar but when i publish in html the flash content is bigger than screen size and menu bar stays outside the screen in the way that i have to scroll down to see menu contents and tabs.In order to make this site more user friendly I have tried to resize the screen to a smaller but seems to be not a good idea. I have also tried to use different .js and includes in order to solve the problem but still not giving the result i am looking for.
View 5 Replies
Jun 19, 2003
How can I change the font size in flash CS5 to show in pixels rather than points?
View 1 Replies
Nov 4, 2005
when i open up one of the links, if i dont close it, but go to open up a different link. the already open window pops back up. i need this window to change due to the new link pressed. the site is [link removed by claudio] click on the prodoct locator to see an example. here is the script for the root->
[Code]....
View 4 Replies
Apr 21, 2009
I am a newbie in Flash CS3. How to resize the width of of a movie clip according to the size the size of dynamic text inside it. I did it by creating a text field 'myText' and then converted it to a MovieClip symbol and named the MovieClip as myClip. The text in myText is assigned at run-time and its width changes according to the text.
I did it as follows:-
myClip.myText.selectable = false;
myClip.mouseChildren = false;
myClip.useHandCursor = true;
myClip.buttonMode = true;
myClip.myText.width = myClip.myText.textWidth + 5;
On doing this I find the clickable area changes according to the size of the text field but the text field doesn't appear at all.
View 1 Replies
Oct 19, 2011
I have a class for MarqueetextField, I am trying to change the text inside a marquee tag and the color of the marquee using as3.
View 2 Replies