Frank
24-08-2003, 14:00
I would like to ask how am I suppose to achieve full screen with Javascripts? I once had this script that allow me to make the browser full screen, but I lost it, and I don't know where it is now. Anyone have any idea?
And also I used this script to open a new browser whenever I need one:
<script>
function newWindow(photo) {
photoWindow = window.open(photo, 'Photo', 'width=800,height=600')
photoWindow.focus()
}</script>
And I get a browser with no status bars or icons on the top opened up with this link:
javascript:newWindow('gallery/Photo01.php')
But there is no scrollbar! Any idea on getting the scrollbar to appear? I need this type of a javascript as I am running a flash movie in fullscreen, and I need the new browser to focus on top, and that the javascript link that I need to execute in Flash must allow me to control the source whereby I want to view, even better if I can control the browser size.
Thanks.
And also I used this script to open a new browser whenever I need one:
<script>
function newWindow(photo) {
photoWindow = window.open(photo, 'Photo', 'width=800,height=600')
photoWindow.focus()
}</script>
And I get a browser with no status bars or icons on the top opened up with this link:
javascript:newWindow('gallery/Photo01.php')
But there is no scrollbar! Any idea on getting the scrollbar to appear? I need this type of a javascript as I am running a flash movie in fullscreen, and I need the new browser to focus on top, and that the javascript link that I need to execute in Flash must allow me to control the source whereby I want to view, even better if I can control the browser size.
Thanks.