Flasher Archive
[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]
Subject: | Re: FLASH: opening browser from projector |
From: | Raphael KONG |
Date: | Thu, 20 Apr 2000 11:36:52 +0100 |
At 11:43 20/04/00 +0200, Karin Merx & Harry Druijf wrote:
>On 20 Apr 00, at 9:29, Wilbrink, Jos wrote:
>
> > Hi everybody,
> >
> > Can anybody help me out on this:
> >
> > I've got a projector for a digital businesscard, and I need to open a
> > browser from when the customer clicks a button, This works fine with
> > Get URL... But what I want is opening this browserwindow without
> > toolbar, location and not sizeable....
> >
> > Can someone help me out??
> >
> > Thnx.........
>
>Hi,
>
>You could try this one. Between the <head> tags of the targeted
>browser window you want to open put this java script
><script language="JavaScript">
><!-- hide from JavaScript-challenged browsers
>
>function openWindow(url, w, h) {
>var windowprops = "width=" + w + ",height=" + h;
>popup = window.open(url,'remote',windowprops);
>}
>
>// done hiding -->
></script>
OK I will work but add those option if you don't want the BAR :
titlebar=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrol
lbars=no,alwaysRaised=yes,resizable=yes,copyhistory=no
Here is my own function to open HTML window !
function openwindow(url,target,size) {
parameter =
'titlebar=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scro
llbars=no,alwaysRaised=yes,resizable=yes,copyhistory=no,' + size;
NewWin = window.open(url,target,parameter);
}
DarkRAF !
>In the GET URL of your going to be projector file put this script
>On (press)
> Get URL ("JavaScript:openWindow("your.html", "400", "400")")
>
>Fill in the name of your html file but I think you have to take the
>whole path when the file is not in the same directorie.
>And you can fill in your own heigth and width.
>
>Hope this helps.
>
>Regards
>Karin
>
>studio MAINart
>Beeldendekunst, grafisch ontwerp, webontwerp
>Art, Graphic Design, Webdesign
>Karin Merx & Harry Druijf
>http://www.xs4all.nl/~merx
>[our site is UDATED with a flashpuzzle (get puzzled)]
>[Organsite with FLASH4 at http://www.xs4all.nl/~jcrossum]
>
>flasher is generously supported by...
>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> Get the last 100 messages from the flasher list NOW
> http://www.chinwag.com/flasher/last100.shtml
>
> Flash books http://www.chinwag.com/flasher/books.shtml
>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>To unsubscribe or change your list settings go to
>http://www.chinwag.com/flasher or email helpchinwag [dot] com
flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Get the last 100 messages from the flasher list NOW
http://www.chinwag.com/flasher/last100.shtml
Flash books http://www.chinwag.com/flasher/books.shtml
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpchinwag [dot] com
Replies
FLASH: opening browser from projector, Wilbrink, Jos
Re: FLASH: opening browser from projecto, Karin Merx & Harry Druijf
[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]