Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
 
  HOME    TRACKER    Flash




How Do You Get A Link From Flash To Open A Html Page At A Certain Size ?



I cant find any tutorials on how to do it and ive tried looking for java and html ways but they dont work cus i need a html page with a link to the page not a flash page to html page like i have.

Any ideas ?




View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Need Flash To Open Html Page At A Certain Size And No Browser Bar
Hi guys.  Im using Flash 6 for a job and I need to have a button open up a html page.  Problem im having is that I would like flash to make that html page to open up a certain size, and to also get rid of the browsers browser bar.  Is this possible?  If it is can someone give me a script that can do it?  

It needs to work like the foo links on this page.
http://www.rosemariesrestaurant.com/gallery.html

If anyone can help me with this I would appreciate it, and if its not possible please let me know, It will help me to stop scartching my head and start thinking up a new idea.

Thanks
frank

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 Full-size HTML Page Bly Clicking Flash Button.
Hi,

For example:

1--I have a movie playing in my browser with a button on stage.
("A.html" + "A.swf")

2--When i click this button a new browser window must open "FULL SCREEN". ("B.html" + "B.swf" in it.)

3--This browser window ("B.html") must always stay on top of all window's (Like "A.html" and all other window's.)

4--In the full-screen window ("B.html"):
   Movie ("B.swf") has two buttons on stage:
--The first button loads a new movie ("C.swf") in the full-screen page. ("B.html")
--The second button opens a pop-up window. ("pop_up.html")

5--The pop-up window ("pop_up.html") must always stay on top of the full-screen window. ("B.html")


If someone can help me with this i would be very grateful.
I cant find out myself.

Vincent,

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 :-)

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!

Hw To Make A Flash Link Open A New Page In A Pop-up Form?
I want to have a link inside my swf, that opens a new html window, but in a pop up way, so that the browser dont display the search bar, the stop button, refresh button, back and forward etc.

Do you know what I mean? I hope Im being clear !!! thanks in advanced

Html Link And Flash Link On Intro Page
I've noticed that a lot of Flash sites have some kind of detector to see if you have the flash plug in. Is that scripting?
Plus, I see that the intro page of ones site will have an HTML and a FLASH option to choose from to enter the site. Would that be enabled in the publish settings of Flash 5? I am curious to know how that is done because I am designing this young lady's site and she wants the viewers to have the options of HTML or Flash.

Thanks!

Open An HTML Link From Flash Projector(.exe)
i have created a projector in flash 8, for a CD presentation and i have to open an HTML link from flash Projector .exe file on release of a button....
i have no idea How to do it.... :roll:

can any one help me.....

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 A New Link In Html By Clicking Button In Flash
Hi,

I'm facing problem while opening a new html window by clicking button created in flash.

For this i don't want to write single code in flash but want to handle this through the html only.

For this I have used <embed> tag to add swf file in html. but could not add click code in HTML on that button.

Could any one help me out?

Open A New Link In Html By Clicking Button In Flash
Hi,

I'm facing problem while opening a new html window by clicking button created in flash.

For this i don't want to write single code in flash but want to handle this through the html only.

For this I have used <embed> tag to add swf file in html. but could not add click code in HTML on that button.

Could any one help me out?

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.

Can U Open A Html Window From Flash Movie And Specify The Size And Features Of The Wi
Is there anyway I can specify a link to open the window size to 300 x 200 and no toolbar etc from a flash movie, to a html file?


at the mo the button just links as so:


on (release) {
getURL ("http://www.allmini.co.uk", "_blank");
}


cheers

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

Can I Open An Html Page Inside The Flash Movie?
I havn't tryed anything, i thought i would ask here first. Thanks in advance for you help.

Open Independent Html Page In Flash Frame
Hi,

Is it possible to open an html page in a flash movie?

More specifically, I am using geturl ('http://path/to/script', '_self', 'post');

don't think that is exact syntax cause I'm not looking at the script but it's about right.

Anyway that script is processing some variables, but the bad thing is that it's doing it in a completely different page.  So the user has a hard time getting back to the movie after the processing is done.  I'm trying to figure out a way for this to happen but the user not leave the movie and one way I thought of was to have the page show up on like frame 50 or something.  then I could put a back button in.  So in a nutshell, is it possible to open up yahoo.com (for example) in a flash frame?

tia,
dan

[MX04] Open A New Link In Html By Clicking Button In Flash (no Code In Flash).
Hi,

I'm facing problem while opening a new html window by clicking button created in flash.

For this i don't want to write single code in flash but want to handle this through the html only.

For this I have used <embed> tag to add swf file in html. but could not add click code in HTML on that button.

Could any one help me out?

After Flash Intro Plays How Do I Auto Open Html Page?
I created a splash page in flash but the rest of my site is in html. Once the splash page is finished playing, I want my html index page to auto open. Can anyone help me out.

Which Flash-script To Open HTML-page In Full-screen?
How to convince Flash to open a HTML page in full-screen?
I hope someone will know...
Daniel

Put Html Page Inside Flash? (not Link)
How??

I have seen ppl done this before. They have a normal swf file loaded but when you click on the button (usually portfolio section) it appears a html page or gif image INSIDE the swf file but NOT embedded within the swf.

Help!!!!!!!! It'd be GREAT to know how to do this!

Here is an example of what im talking about:

http://www.niko.hu/


Thank you so much

Flash Link Opening An Html Page
I need to open an html page from a button in a flash app. Also need code to download a pdf from a flash button. Thanks

Link To A Sized Html Page From Flash
I have seen where a flash website will have a button to open up a sized or small html page, in a new browser, for a form or picture. Is there a special hyperlink script to do that?

Link From Html Page To Frame Within Flash Please Help
Hi,
I'm trying to link from a.html to a specific frame of a flash movie sitting on b.html... Does anyone know how to do this? Is it possible, or do I need to "break apart" my original (lengthy) flash movie to make it appear as though the user has gone to a specific frame within the movie?

Thanks in advance for your help!

Button Link From Flash To Html Page
Hello - Trying to re-learn flash... I have a flash intro that has a "Enter" site button that I need to link to the current site - when I link the website through actions it's not working properly - This should be so easy - but I can't get the button in flash to link to a .html page from dreamweaver - there must be a way to do this right? Or should I just place the button beneath the flash movie in dreamweaver?

Thanks for your help!!

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

Link Flash Intro Page To Html Website
I have a Flash animation page that runs for about 20 or 30 sec. Once the animation is done playing I want it to automatically go to the home page of my website. Is there some code that I can use to accomplish this?

thanks in advance,
ar

Flash Link To Specific Place, On An Html Page
i have a flash button and by pressing it i want it to link me to a specific place on an html page, not just the page but say link me to the text in the middle of the page, is that possible and how?

Can You Link From HTML Page Within A Labeled Frame In Flash 8?
IF I have an HTML site and let's say 3 of the buttons I want to go to specific sections in a flash file, is this possible?

Is It Possible To Link From HTML Page To A Specific Flash Frame?
And if so, how do you do it?

Thanks,
Cathy

Link Flash Intro Page To Html Website
I have a Flash animation page that runs for about 20 or 30 sec. Once the animation is done playing I want it to automatically go to the home page of my website. Is there some code that I can use to accomplish this?

thanks in advance,
ar

Link To A Scene/frame In A Flash Movie From Other Html Page
Hi all

i have a HTML with 5 links on it and i have 1 more HTML with swf movie.

How can i control the swf movie from the html page

please remmember that the links and the swf are not on the same page

Please help

thanks

Giving Link To Flash File Through Javascript In Html Page
hi all,
can u please help me to solve the problem.
i am developing one site which includes database programming & flash effects.
I have 10 icons which are stored in database & a bigger images in flash with fade in & fade out effect.

So can i give a link to particular icon which is a jpg image to go to the flash file on a particular frame through html or javascript..

or can i have a javascript loading so i can create 10 flash file for each icon..
& load all file through javascript loading & than on mouse over can i show the mouseover effect..for each icon...
Plsss
help me to solve the problem

thanks a lot...
amrapali

Giving Link To Flash File Through Javascript In Html Page
hi all,
can u please help me to solve the problem.
i am developing one site which includes database programming & flash effects.
I have 10 icons which are stored in database & a bigger images in flash with fade in & fade out effect.

So can i give a link to particular icon which is a jpg image to go to the flash file on a particular frame through html or javascript..

or can i have a javascript loading so i can create 10 flash file for each icon..
& load all file through javascript loading & than on mouse over can i show the mouseover effect..for each icon...
Plsss
help me to solve the problem

thanks a lot...
amrapali

Can You Have HTML Link That When You Rollover Plays A Flash Movie In Page?
bascially as the title

I have 4 main links on webpage, when you rollover one I want a flashmovie to play, then on rolloff i want it to playout??

can this be done.... I dont want to use all flash on page due to this only happening on 2-3 pages + google cant see links as easily....

cheers for any help

Flash Link To Label In Separate File, On Different HTML Page?
I know this sounds insane... but I have to separate the navigation from a Flash file, place both .swf's into HTML and still be able to control the timeline in the main movie... the reason is that this site has other pages that need just the navigation.. I don't know if this is even possible but it can't hurt to ask...

The ultimate goal is to: Link from a Flash file, to a specific frame on the timeline of another Flash file, which is embedded in another HTML page! (omg)

Does anyone know if this is possible, and how to use AS Functions (or something)? Perhaps use of JavaScript too?

Way too advanced for my level of expertise. Hope someone here has a solution or can tell me if it's even possible.

thanks everyone!

Open Link In A Specific Size Window?
Hey all. I have a simple button that I would like to open a new window. The thing is that I want the new window (Just a simple HTML page) to open at a specific size. How would I go about this? Thanks in advance for any help!

Jay

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);
}

Link Won't Open In Current Page, AS2/CS3
Hello,

first post and it's really stupid...but I can't get it to work!!!
Basically whenever I put a link in Flash to another URL, the page always opens in a separate window. How do I change this?

Thanks!

x

Html Link Controling Flash Movie On Single 2 Frame Page
Scenario:
On a 2 frame dreamweaver page, left frame containing html link and right frame containing a flash movie.

Question:
How can the html link (lt frame) make the flash movie (rt frame) goto and play a particular frame within the movie?
(All taking place on same page, as described in scenario)

hope someone can help...

Linking From Flash Menu Link To Ext. HTML Page Inside A DIV LAYER
I have a page that combines Flash and HTML in Dreamweaver 8. I have my links menu generated in Flash MX 2004. My desire is to have a link (when clicked from the Flash swf menu file) bring in a new html page into an existing LAYER of the same Dreamweaver document. Is this possible? My idea is to not have to reload all the other elements of the page, just the items on the one layer with new content. I know how to do this if the page were all Flash, but this is for an html page using the LAYER div tag.
Thanks for your help
Craig

Hi Everyone Help W/creating A Link To Open A Multiple Page Pdf
Hi there, I'm hoping someone can help me on this. I'm creating a website and need to create a link (on a button or text) that will allow the user to download a 300+ page pdf catalog that I created in Adobe Acrobat. I would like the catalog to open in Adobe Reader. If anyone can help me it would be MUCH appreciated! Thanks

Making Button On Release Open New Page To Link...?
hi all!

i've got a movie clip that i am using as a button. it is instance named b1. i want that button to open up a new page from a link. the link will be:
a href="http://www.mysite.com."

so how would i do this?

right now my button script is:
b1.onRelease = gallery;
function gallery() {
_root.loadMovie("gallery.swf");
}

thanks so much!
p.s.
i fear i have asked this before but lost my linky!

Making Button Upon Release Open New Page From Link...?
hi all!

i've got a movie clip that i am using as a button. it is instance named b1. i want that button to open up a new page from a link. the link will be:
a href="http://www.mysite.com."

so how would i do this?

right now my button script is:
b1.onRelease = gallery;
function gallery() {
_root.loadMovie("gallery.swf");
}

thanks so much!
p.s.
i fear i have asked this before but lost my linky!

Copyright © 2005-08 www.BigResource.com, All rights reserved