Ask a Question related to Macromedia Flash Actionscript, Design and Development.
-
maxxi webforumsuser@macromedia.com #1
open browser window
Hi, I'm sure this is very simple, but I'm pretty new to dreamweaver and HTML, so your help would be
much appreciated. What I want is to specify the height and width and other functions like
no scroll bars etc of my web page, much the same as you can with the open browser window
function. As I am wanting to link from a graphic in flash to a quicktime movie played through
dreamweaver.
Any help or pointers to articles would be great.
thanks
max
maxxi webforumsuser@macromedia.com Guest
-
Open pop up browser window
I'm not an experienced web site builder, so trying to find a way to open a new browser window without navigation bars, menus etc. Have used the Open... -
get a ink to open in a new browser window
Is there a way to get publisher to open existing links to new windows? -
Open new web browser window
Can anyone help with the following query. I want to open up a new window from a flash movie when i click on a text box link. The code is as... -
How to get a OPEN/SAVE dialog option window when open Excel from IE browser.
I use the following to open Excel from IE browser, but I don't get a OPEN/SAVE dialog option window. Instead, the Excel opened in the browser... -
Open new browser window
Hello, I want to make a php application, which displays different text in separate windows. I mean for example a new window will open with text... -
Sir Sixx #2
Re: open browser window
Hi,
Ok here is a link
[url]http://www.flashkit.com/board/showthread.php?s=a12862027ee7a8e1d5e06e7d4455f[/url]
4ad&threadid=472936&highlight=popup
This will give you all you need open a pop-up window.
Hope this helps
Mark
"maxxi" <webforumsuser@macromedia.com> wrote in message
news:bfgnli$fvi$1@forums.macromedia.com...HTML, so your help would be> Hi, I'm sure this is very simple, but I'm pretty new to dreamweaver andother functions like> much appreciated. What I want is to specify the height and width andbrowser window> no scroll bars etc of my web page, much the same as you can with the openmovie played through> function. As I am wanting to link from a graphic in flash to a quicktime> dreamweaver.
> Any help or pointers to articles would be great.
> thanks
> max
>
>
>
>
Sir Sixx Guest
-
valblue webforumsuser@macromedia.com #3
Open browser window
I am using this code
on(press){
getURL("javascript:window.open('shirt_side.html',' back')");
}
to open a seperate browser window. Works fine on a mac, but when i test it anywhere is, the new window opens, BUT the original window goes blank and displays the word [object] in the corner.
Why is it doing this, and how do I fix it?
thank you in advance!
[url]www.interval-graphics.com[/url]
valblue webforumsuser@macromedia.com Guest
-
urami_ #4
Re: Open browser window
you need to void the request.> on(press){
> getURL("javascript:window.open('shirt_side.html',' back')");
> }
>
> to open a seperate browser window. Works fine on a mac, but when i test it anywhere is, the new window opens, BUT the original window goes blank and displays the word [object] in the corner.
Void returns nothing , means something like Empty or None or Nothing
YOu can see the Object because the function that made those windows had a return
value that was an 'object'... if you void() it, you wouldn't see that...
Void is use to take the result that some function returns and discard it.
javascript:n_name =window.open('shirt_side.html','back','width=700,h eight=650');void(0);
By the way , if you using just html document w/o parameters like size than why not just directly getUrl
only w/o the javascript function ?
Regards
urami_*
<xmas>
[url]http://flashfugitive.com/[/url]
</xmas>
urami_ Guest
-
ulrichkm webforumsuser@macromedia.com #5
Re: Open browser window
If you are just opening the new URL in a new window and keeping the original content on the other page, try out:
on (release) {
getURL("http://www.yahoo.com", "_blank");
}
ulrichkm webforumsuser@macromedia.com Guest
-
valblue webforumsuser@macromedia.com #6
Re: Open browser window
thank you!
[url]www.interval-graphics.com[/url]
valblue webforumsuser@macromedia.com Guest



Reply With Quote

