See Related Forum Messages: Follow the Links Below to View Complete Thread
Open Fixed Size Html Page From Flash Movie
i need to open an html page that is scripted to open at a specific place and at a specific size. the html page also contains an iframe.
ive tried the tutorial written at flashkit :
http://www.flashkit.com/tutorials/Ac...-836/index.php
and it works great when all files are on my pc. but once i upload all files to the web it dosent work.
ive tried contacting the guy who wrote the tutorial but the email doesnt work.
any help would be greatly appreciated.
Open Url Button--i Want To Set Html Page Size
on (release) {
getURL("http://nextamericansuperstar.com/images/alistage.jpg");
}
anybody mind telling me how to include in this code the html page size? i want to make the page fit the image
thanks!
How Do You Open A New Browser With Specific Size In Flash Mx
how do you open a new browser with specific size in flash mx?
I decided to add a flash menu to my website, but one of the links need to open a new browser window with a specific size.
When my menu was in html i used this code:
a href="javascript: void(0)" onclick="window.open('serverstatus.html','shoutbox pal','width=400,height=600,top=100,left=150,screen X=1,screenY=1,scrollbars=no,resizable=no');">
How Do U Open A Browser Window Of A Particular Size From Flash?
G'day,
Hoping someone here can help me - I'm trying to make a button in a flash swf open a html file in a new browser window of a certain size and without the toolbars... I'm assuming i have to call some javascript from whithin flash but i can't seem to work it out.
Thanks in advance to anyone that can help me work this out!
Using Flash To Open A New Browser Window - Exact Size Of Flash Movie?
Hi,
In Dreamweaver, I've previously used the 'open new browser window' behaviour from a link to display my Flash movies, and entered the .SWF filename as the URL to launch (this launches a browser window thatls exactly the size of the movie, no scrollbars, buttons etc). Can I do a similar thing with Flash's 'get URL' command, or does that only go to HTML/HTM files?
Cheers, Skratch
Using Flash To Open A New Browser Window - Exact Size Of Flash Movie?
Hi,
In Dreamweaver, I've previously used the 'open new browser window' behaviour from a link to display my Flash movies, and entered the .SWF filename as the URL to launch (this launches a browser window thatls exactly the size of the movie, no scrollbars, buttons etc). Can I do a similar thing with Flash's 'get URL' command, or does that only go to HTML/HTM files?
Cheers, Skratch
Open A HTML Page In Flash
I'm trying to have it where i press a button in flash movie and it opens a html page in a new broswer window.
Hope someone could help me.
Thanks.
Open A HTML Page In Flash
I'm trying to have it where i press a button in flash movie and it opens a html page in a new broswer window.
Hope someone could help me.
Thanks.
Need Flash To Open HTML Page
I need my flash movie to open a html page. I have a "button" in my flash movie and I understand how to make it open in a "_blank" page but I would also like to open it with no status bar/ no address bar/ no tool bar. All I want is the navigation bar so the user can press "back"
Does anyone know how to accomplish this?
Open Html With Specific Size With Flash Button
Hi everyone!
well I need some help here...I have this flash presentation which ends up with 6 buttons. These buttons when clicked I want that they display an html document.
Up to there I am fine, the problem is here...I want that this html page may have a specific size, no scrolls, no bars apart from the title bar, not resizable.
I put this script on the flash button in this flash presentation:
on (release) {
getURL("javascript:window.open('wake.html','','hei ght=711,width=953,toolbar=no,scrollbars=no')");
}
and then in the html document where I put the flash file I insert in the head this tag:
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
open.window(theURL,winName,features);
}
//-->
</script>
What happens is that when clicking flash button 2 html pages open (one with the things I specified, and another one in blank)
What is wrong?? Which script should I use??
thank you all!!
zanda
How To Open An Html Page Fullscreen From Flash
I am trying to get a flash button to open full screen with the titlebar still on top. I was able to get it to work when I am using an html button, but I cant get it to work using flash.
here is what I have.
AS:
on (press)
getURL("javascript:openBrWindow('http://www.whiskeyparknorth.com/whiskeyparknorth/index.htm','winFeatures')");
}
Javascript:
function openBrWindow(theURL,winName,features) {
window.open(theURL,winName,features);
}
var winFeatures;
var w = 800, h = 600;
var popW = 800, popH = 600;
var leftPos = (w-popW)/2, topPos = (h-popH)/2;
if (document.all || document.layers) {
popW = screen.availWidth;
popH = screen.availHeight;
}
if (checkBrowser("IE")){
if (screen.width <= 800){
//show scrollbars
winFeatures = 'width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos + ',directories=no,location=no,menubar=no,scrollbars =yes,status=no,toolbar=no,resizable=no';
} else {
//no scrollbars
winFeatures = 'width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos + ',directories=no,location=no,menubar=no,scrollbars =no,status=no,toolbar=no,resizable=no';
}
}
if (checkBrowser("NS6")){
if (screen.width <= 800){
//show scrollbars
winFeatures = 'width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos + ',directories=no,location=no,menubar=no,scrollbars =yes,status=no,toolbar=no,resizable=no';
} else {
//no scrollbars
winFeatures = 'width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos + ',directories=no,location=no,menubar=no,scrollbars =no,status=no,toolbar=no,resizable=no';
}
}
Can anyone help.
Thanks
A Script That Will Open A Different Html Page From Flash
Hello everyone,
My question this is pretty simple, even though I don’t have the right answer…
In need a script that will open a different html page from flash – which is at a certain size (let’s say: 780X540 Pixels) somewhat like the behavior for dreamweaver (open browser window) and with the option of “resize handles”
How do I do it from flash? Script?
Many thanks
Ed
How To Open An Html Page Fullscreen From Flash
I am trying to get a flash button to open full screen with the titlebar still on top. I was able to get it to work when I am using an html button, but I cant get it to work using flash.
here is what I have.
AS:
on (press)
getURL("javascript:openBrWindow('http://www.whiskeyparknorth.com/whiskeyparknorth/index.htm','winFeatures')");
}
Javascript:
function openBrWindow(theURL,winName,features) {
window.open(theURL,winName,features);
}
var winFeatures;
var w = 800, h = 600;
var popW = 800, popH = 600;
var leftPos = (w-popW)/2, topPos = (h-popH)/2;
if (document.all || document.layers) {
popW = screen.availWidth;
popH = screen.availHeight;
}
if (checkBrowser("IE")){
if (screen.width <= 800){
//show scrollbars
winFeatures = 'width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos + ',directories=no,location=no,menubar=no,scrollbars =yes,status=no,toolbar=no,resizable=no';
} else {
//no scrollbars
winFeatures = 'width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos + ',directories=no,location=no,menubar=no,scrollbars =no,status=no,toolbar=no,resizable=no';
}
}
if (checkBrowser("NS6")){
if (screen.width <= 800){
//show scrollbars
winFeatures = 'width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos + ',directories=no,location=no,menubar=no,scrollbars =yes,status=no,toolbar=no,resizable=no';
} else {
//no scrollbars
winFeatures = 'width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos + ',directories=no,location=no,menubar=no,scrollbars =no,status=no,toolbar=no,resizable=no';
}
}
Can anyone help.
Thanks
How Do I Open An Html Page With A Flash Button?
I'm building a website with a flash navigation. I want to know how to use the buttons on my flash movie to open a web page. I am using the geturl
method something like buttonname.onPress{geturl(webpage, frame, "")}
please excuse the syntax, I'm new to this. Anyway I am not getting a response from the button, also the site uses frames. the flash movie is in the top frame and the buttons should open the requested pages in the main or bottom frame. Any help would be appreciated. Thanks.
Open Html File With Specific Size With Flash Button
Hi everyone!
well I need some help here...I have this flash presentation which ends up with 6 buttons. These buttons when clicked I want that they display an html document.
Up to there I am fine, the problem is here...I want that this html page may have a specific size, no scrolls, no bars apart from the title bar, not resizable.
TAKE A LOOK OF WHAT HAPPENS!! CLICK BELOW!
when you get at the end, click WAKE (IS THE ONLY THING DONE BY NOW)
www.radicalsurfex.com/paginas/intro.html
I put this script on the flash button in this flash presentation:
on (release) {
getURL("javascript:window.open('wake.html','','hei ght=711,width=953,toolbar=no,scrollbars=no')");
}
and then in the html document where I put the flash file I insert in the head this tag:
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
open.window(theURL,winName,features);
}
//-->
</script>
What happens is that when clicking flash button 2 html pages open (one with the things I specified, and another one in blank)
What is wrong?? Which script should I use??
thank you all!!
zanda
Html Page Size Define From Flash?
is it possible to define that window size from within flash? i dont know how to set the html to open at a specific size from within dreamweaver, and i though maybe someone might know a code in flash that will tell the page where the swf is inserted in to change the size upon load.
thanks
Open Specific Browser Size From An .exe?
Ok all you flash wizards out there, save me from biting off more than i can chew 8-) I need to link some html files from my flash .exe but can i stipulate the parameters for the first browser page i want to be opened from clicking the link button? Because it is CD-Rom based, I am having difficulties opening a browser window other than what the User has as a default size browser - whatever size it was when they last used it. I need to open into a specific size window, i have tried the get url and fs commands, but to no avail. Even tried some redirecting from the first browser page open that then opens a correct sized page, and closes itself. But when it does that, certain versions of IE ask if the user wants to close that page - which I don't want it to :-(
Any ideas, any inspiration, any miracles, please let it be a noob question with an easy answer.......
A Full Screen Html Page That Doesnt Re-size The Flash Swf
Is there a way to get the swf centered inside of a html fullscreen popup window?
The code below is what I want to accomplish, but it only works for a projector file. I need to launch my project in a browser.
Thanks for the help.
PHP Code:
on (release) {
stage.scaleMode = "noScale";
fscommand("fullscreen", "true");
loadMovieNum("your_file.swf", 0);
}
Embedding Flash Movies In An HTML Page Without Browser Warning...
Hi guys...I have been using Flash for some time now....My problem is how to embbed a flash swf movie file in an HTML or XHTML page without the browser warning the user that this web site is trying to install ActiveX content on her or his computer....Almost all professional sites does not display a warning message in the browser...So how can I do this???
Open New Fixed Size Browser Window
Help, I want to be able to open a new browser window but also specify the size.
I'm currently able to launch/open a new browser window but I can't specify the size.
HELP I Have A Javascript To Open Up A Browser The Right Size But It Opens 2
HELP
ok im using flash mx and building a website.
i made a button so that when you click it a pop-up appears. Im using javascript to make this happen so it is exactlt how i want it but whenever i click on it the 1 i wanted to pop up works fine but theres another window that had all my code in the address. does nebody know what im doing wrong or how to fix it!!!
my code for the button:
on (release) {
getURL ("javascript:NewWindow=window.open('http://www.wilsonindexing.8m.com/indented. html','newwin','width=600,height=900,left=350,top=
0,toolbar=No,location=No,scrollbars=No,status=No,r
esizable=No,fullscreen=No'); NewWindow.focus(); void(0);");
}
Thanx for all replies
-nanascalala
How To Open Browser Window With A Specific Size?
In the index.htm are a intro in flash, when it finish the user click enter and then a pop up window open with the site.
I want that the pop up, dont have status bar, or search bar, only a window with a specific size?
Where i can find some tutorials for that? Any help?
Thanks!
Open New Browser W/ Page Dimensions
i have a swf file that i want to launch several different swf files in new browser windows with a set size. i know it is javascript but i cant get it to work. it is stressing me as my web page has come to a halt.
thankyou
How To Open Result Page In Same Browser
Hello,
I have made the code
on(release){
loadVariablesNum("http://www.domainname.com/product_listing.php","this","POST");
}
and want to open product_listing.php with same browser, it's opening it now new window.
Anyone have idea please suggest me.
Amyanet1
Click A Button To Open A Fixed Size Browser
I want to make a button to open a new new URL in a new browser without the top navigation buttons like "Back", "Stop", "Refresh" buttons found in a browser.
what is the scripting like?
thanks.
Open New Browser Instance From Swf (not Embedded In Web Page)
Probably simple but I just can't get it. I have searched here for a solution but couldn't find one so...
I have an swf file with a single button going to google. I want a new browser instance every time I click the button. I have tried _Blank but it still opens up in the same window.
Any clues appreciated.
Thanks
R
How Do I Open A _blank Page (URL) To A Specific Size Window?
Hello Everyone,
I was hoping someone might be able to let me know if it is possible to open a web page, with action script, to a specific size. I have no problem with this code opening to a _blank page but the resize is not working. Below is the AS I use to open the page which gets the URL info from an XML file.
_global.thumbPress = function(obj) {
getURL(Large[obj.ID], "_blank, width=790pxheight=620px")
};
I tried different ways to add in the size info but when the browser opens to a blank page the page size opens to the size of the monitor. Can Action Script resize a browser window to the specific size that I want. I know java script can accomplish this task.
I appreciate any help to my issue.
Thanks in advance.
[CS3]Open Browser Window At Fixed Size (ACTION SCRIPT VERSION NO JS)
I am sure this has been covered a zillion times but I'm having trouble with doing searches on this site today for some reason.
I have an AS that will open a new page at a fixed size, no JS needed in the html head, just the AS applied to a button but it only works when the publish settings are set to FlashPlayer 7, AS 2.0.
I need it to work in FlashPlayer 8, AS 2.0. How can I make that happen?
Code:
on (release) {
getURL ("javascript:NewWindow=window.open('http://www.google.com','newWin','width=610,height=600,left=0,top=0,toolbar=yes,location=yes,scrollbars=yes,status=yes,resizable=yes,fullscreen=No'); NewWindow.focus(); void(0);");
}
I have attached the FLA file.
Changing Size Of Swf According To The Size Of Html Page
hi experts
I want to change size of my swf according to the size of html page in which it opens
such that if page size is 1024 by 768 then swf should scale to that size
if its 700 by 500 also sw should change its size is this possible
i want this so that my animation start fro m edge to edge of page
i basically dont know how to do this has been trying various options for last week no luck
there is 100% option for swf which scales swf size to 100% of page but it does not give edge toedge of page
can anybody help
Open Swf In A Html Browser ?
Ok !! First i created a flash projector for a cd-rom !! i would like to know how i can open a swf file in a html page with special height and width for the html page ( like a pop up)!!!
i tried using this :
on (release) {
getURL("javascript:window.open('myfile.swf','hello ','width=300,height=200')", "_blank");
}
but it wont work !!! can anybody help me please ?
Link To Open Html At Set Size
Hi
I need to open a html file from a button in flash. How can I open the window at a specific size (ie 600 x 400)
The url resides in the same folder as the swf.
Thanking you
Miffy :-)
I'm Calling Html From As3 But How Do I Have The Window Open At A Certain Size
function callLink ( pEvent:MouseEvent):void {
var url:String = "aw01.html";
var request:URLRequest = new URLRequest(url);
try {
navigateToURL(request, '_blank'); // second argument is target
} catch (e:Error) {
trace("Error occurred!");
}
}
p1btn.addEventListener(MouseEvent.CLICK, callLink);
it works fine. but how do i make aw01.html open in a window thats width=600 by height=400
pls show me how thanks
Remove Toolbars Of Browser When Open The Html
Sorry about such stupid question. But I'm just getting started.
Am using Flash MX & I want to make an html that open in full page mode, i mean I don't want Internet Explorer shows anything other than my page, I don't want toolbar, or address or anything. But I want to know how can I do to disable al this toolbars in explorer when opening the page
Chromeless Windows That Open On Movie Load Or Load Of Html Page (Flash Ad Kit)
Hi guys,
I was wondering if someone could help me out in creating these flash ads that appear out of nowhere. I see them mostly on rediffmail, yahoo and about.com.
I know how to create a popup window on button click, but how you do that without a button.
There's another dimension of ads nowadays. They are the transparent ads. They really look cool. Could someone with this knowledge pleeeeeeeeese help me out. I urgently need to create these ads.
Regards,
designable
Chromeless Windows That Open On Movie Load Or Load Of Html Page (Flash Ad Kit)
Hi guys,
I was wondering if someone could help me out in creating these flash ads that appear out of nowhere. I see them mostly on rediffmail, yahoo and about.com.
I know how to create a popup window on button click, but how you do that without a button.
There's another dimension of ads nowadays. They are the transparent ads. They really look cool. Could someone with this knowledge pleeeeeeeeese help me out. I urgently need to create these ads.
Regards,
designable
|