ActionScript 2.0 :: New Blank Window With No Toolbar And Fix Size

Feb 11, 2009

I have create a flash website, but I have create the forms in HTML and PHP. So I need to link the button to them. I done that but, I don't know how make it for no toolbar and fixed sixe.[code]

View 2 Replies


Similar Posts:


ActionScript 2.0 :: Noresizable Window, No Menu And Toolbar?

Jul 1, 2009

it possible to open using "getURL" command noresizable browser window, with no menubar and notoolbar.

View 2 Replies

Open A Blank Window?

Jun 22, 2011

I have some script I am using for a flash menu. Each button opens to the html file and has script telling each page the down state for each button when clicked. I am trying to use the function below to open a new window and it won't work with the other scripting.[code]...

View 3 Replies

Possible To Add Blank URL Window Dimensions To Button?

Sep 25, 2010

I've just finished working on an extensive HD intro for my website, which is in 1280x720 resolution.

At the moment, my site has a splash page with 3 buttons on it:
B1) opens the site in fullscreen mode
B2) opens the site in normal window mode
B3) opens a new browser window linking to my intro

Here's the AS code I'm using for my intro button:
Actionscript Code:
intro_btn.onRelease = function() {
getURL("[URL]", "_blank");};

I'm wondering if there is a way to somehow specify in that code segment what dimensions I'd like the new window to have? I know this can be accomplished in JavaScript with something like this:
Actionscript Code:
<a href="javascript:void(0)"onclick="window.open('[URL]','height=1280, width=720,scrollbars=no')">intro</a>

I've already tried putting the intro on it's own separate HTML page, but because of resolution and other background contrast issues, I've found that it undoubtedly looks best in a window that is resized to its specific dimensions, rather than having extra space around the edges, top, and bottom.

View 3 Replies

ActionScript 3.0 :: Opening A Url In A Blank Window

Dec 8, 2011

I have a button called bt07 and I would like when you click down this button to open an url in a blank_window (for exemple [URL]) I wrote this code below but I don t know how writting the code to open the url?

//mouse downbt07.addEventListener(MouseEvent.MOUSE_DOWN,auSurvolSurbt07);function auSurvolSurbt07(e:Event){bt01.gotoAndStop(1);bt02.gotoAndStop(1);bt03.gotoAndStop(1);bt04.gotoAndStop(1);bt05.gotoAndStop(1);bt06.gotoAndStop(1);bt07.gotoAndStop(2);

[Code].....

View 1 Replies

Professional :: Way To Open A Blank Window?

Aug 30, 2007

I have some script I am using for a flash menu. Each button opens to the html file and has script telling each page the down state for each button when clicked. I am trying to use the function below to open a new window and it won't work with the other scripting.

on(release) { getURL("http://www.flash-here.com",  "_blank");
}

[code]....

View 5 Replies

ActionScript 2.0 :: Get These Links To Open In A New/blank Window (xml)?

Oct 9, 2009

i found this code somewhere, and have used it for a site, but the links open on the same page and i cant find an option to have them open in a different target window.AS code:

Code:
// The first step is to activate the XML object
headlineXML = new XML();

[code]......

View 2 Replies

Professional :: Build A Flash That Auto-adjust Its Size To The Browser Window Size?

Jun 8, 2010

I am trying to build a flash that auto-adjust its size to the browser window size, while leaving the content of the flash itself top-centered in the screen.I have found this solution [URL].. on How to keep centered stuff in this exact case so i am pretty confident i will be able to adjust that script to do what i want.
 
Now my problem is that if i put my content inside the movie-clip (centerrectangle) with all the animation require, link and other stuff, the movieclip (center rectangle ) never have the exact same center, thus making the script go wild trying to always adjust the location to the variable size of the movie clip.

[Code]...

View 9 Replies

ActionScript 3.0 :: Build A Flash That Auto-adjust Its Size To Browser Window Size?

Jun 8, 2010

I am trying to build a flash that auto-adjust its size to the browser window size, while leaving the content of the flash itself top-centered in the screen.

I have found this solution [url].. on How to keep centered stuff in this exact case so i am pretty confident i will be able to adjust that script to do what i want.

Now my problem is that if i put my content inside the movie-clip (centerrectangle) with all the animation require, link and other stuff, the movieclip (center rectangle ) never have the exact same center, thus making the script go wild trying to always adjust the location to the variable size of the movie clip...

I need it to stay exactly at the same position whatever the size of the movie-clip. [code]...

View 0 Replies

ActionScript 2.0 :: Making The Document Size Dynamic With The Window Size?

Aug 7, 2008

Im looking to make the flash file dynamic so that when someone changes the window size the flash file expands with it and some of the items contained move also.

View 3 Replies

ActionScript 3.0 :: Output Window Is Blank In Authoring Mode

Oct 5, 2009

has anyone ever had a situation where the flash CS4 Output window is blank; it should have several trace statements, and at least 1 error; furthermore the Compiler Errors window is blank; I know there is an error some where ( I updated my papervision3d yesterday ), so I should see some error messages, and the trace statements - but everything is blank;

View 2 Replies

Window Size - User To Be Able To Expand The Browser Window ?

Mar 30, 2009

i've made a flash movie in res 600 * 300, now i want to keep this res don't want the user to be able to expand the browser window or change the res or anything how do i do this?

View 9 Replies

ActionScript 3.0 :: URL Request - Blank Work Open The Link In A New Window

Jul 13, 2009

just as the title says, _blank opens the link in a new window, _self does nothing could the issue be related to testing locally?

[Code].....

View 13 Replies

Flex :: Air HTMLLoader Blank Pop Up Window When Flash Content Is Loaded?

Jun 25, 2009

I have a flex Air program that loads external content with the HTMLLoader.Now for some reason whenever I load a page that has any flash content a blank system window pops up outside of my program. It's completely blank, all white with min, max and close buttons.If I close it any flash content I loaded stops working. For the life of my I can't figure out what's happening and there's no messages in the console and no title for the window.

private var webPage:HTMLLoader;
private function registerEvents():void
{

[code]......

View 3 Replies

ActionScript 2.0 :: Calling A Mailto: Function - In IE It Is Opening A Blank Window Too With Outlook?

Aug 4, 2011

I am calling a mailto: function like this below:

ActionScript Code:
on (release) {
getURL("mailto:myEmail@mysite.com", "_blank");
}

Now problem is, in IE it is opening a blank window too with outlook.

View 4 Replies

ActionScript 3.0 :: Stage Size = Window Size?

Jun 28, 2009

is possible to dynamically change the dimensions of my flash stage depending on the size of the browser window ?

Very important, I don't want to stretch any element. Just make the background bigger.

View 6 Replies

ActionScript 3.0 :: Stage Size And Window Size

Jun 28, 2009

is possible to dynamically change the dimensions of my flash stage depending on the size of the browser window ?

Very important, I don't want to stretch any element. Just make the background bigger.

View 10 Replies

ActionScript 2.0 :: Window Size The Same Size Of The Pic When Viewed?

Feb 9, 2004

i have a list of pics, inside the swf file, what i want is when i press the button of any pic, to open new window "JavaScript" i think, but i want the window size the same size of the pic when viewed.

View 2 Replies

ActionScript 2.0 :: Browser Window Size - Put A Movieclip With Tools At The Bottom Of The Window In The Center With Tools Icons

Jan 24, 2010

I want to put a movieclip with tools at the bottom of the window in the center with tools icons, it should have fixed posiiton so that user can scroll the main window having it always on prompt. I think I need the browser window size properties to do somenthing as this. Is there a way to get them?

View 0 Replies

IDE :: Do Not Want To Change The Swf Window Size?

Feb 4, 2009

i mean..i dont want my user to maximize or minimize the file..like u ppl must have seen the softwares setups..their window file size cannot be changed.

View 1 Replies

ActionScript 3.0 :: SWF 100% Of Window Size?

Sep 15, 2010

I want my SWF file to fill the window. I set the height and width to 100% and the scale param to "noscale". It looks great except that when I resize the window vertically, the contents of the SWF file center vertically so theres a gap between the content and the top of the window.

View 2 Replies

ActionScript 2.0 :: Specify The Size Of The New Window When It Opens?

May 21, 2009

I currently have a website that has a photo gallery. The home page has a link to the actual photo gallery. I'm using the (getURL) to open the photo gallery in a new window, however the new window opens up to the same size as the home page. I would like to shrink down the window size of the photo gallery so the user can still see some of the home page behind the new window.

I know javascript can take care of this problem, but I was wondering if there is a way to do it with Flash? I just need to specify the size of the new window when it opens.

View 9 Replies

CS3 Open A New Fixed-size Window?

Apr 7, 2010

I can't seem to find any info on how to do this. Here is an example of what I am trying to do: [URL]

View 1 Replies

Open Link In New Window, Specified Size?

Jul 7, 2010

Pretty simple- just trying to have a link in my .swf open in a new window, with a specified size.

I have done this before but can't seem to remember/find a tutorial... well besides one on kirupa that didn't seem to work for me.

I believe the method I used before involved putting some code on the page you were linking to...

View 1 Replies

ActionScript 2.0 :: Customize Size Of New Window?

Dec 9, 2011

I have a button which when clicked opens a new window. The code is a frame action in the timeline. Short of putting some javaScript in the page that opens, I am unable to set the width and height of the new window. Here's my code

Actionscript Code:
import flash.external.*;var newWindow:String;street_btn.onPress = function () {newWindow = String (ExternalInterface.call ("openWindow", "http://www.unseenproductions.net/images/street/index.html", "win","height=1000,width=700,toolbar=no,scrollbars=no"));};

I've tried defining width+height immediately following the link in the string, but no matter where I put it the window size is unaffected.

View 1 Replies

ActionScript 3.0 :: Defining Pop Up Window Size?

Aug 5, 2009

How do I define the window size of the opening window if I have something like this:

function ClickHandler(event:MouseEvent):void{  var req:URLRequest = new URLRequest("something.html");  navigateToURL(req, "_blank");}

View 7 Replies

Assign A Specific Window Size?

Aug 18, 2009

I applied the following action script to a button in a flash movie, the action script reads(address changed to protect the innocent):

on (release) {
getURL("http://www.webaddress.com/Product/Video.html", "_blank");
}

[code].....

View 1 Replies

ActionScript 3.0 :: Make A Pop-up Window With A Set Size?

Dec 9, 2009

I want to make a pop-up window which pop up when a button is pushed. And I need to set the size of the pop up window to 900 x 700... I found a tutorial on the net on how to do it but it dosen't work,

function jspopupWindow(event:MouseEvent):void {
var desiredURL:URLRequest = new URLRequest("javascript:NewWindow=window.open('page.html','newWin','wi

[code].....

View 5 Replies

Flash :: Get Browser Window Size?

May 16, 2011

Can I get the obtain the size of the browser window in AS3?The best method I've found is to get the size with Javascript and send it to Flash as a FlashVar. One limitation of this method is that it doesn't give the current size if the window is resized.Is there a pure Flash way to do this?

View 2 Replies

As3 :: Obtain The Size Of The Browser Window?

May 16, 2011

Can I get the obtain the size of the browser window in AS3?

The best method I've found is to get the size with Javascript and send it to Flash as a FlashVar. One limitation of this method is that it doesn't give the current size if the window is resized.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved