Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Full screen presentations, no browser

Status
Not open for further replies.

Iluvatar

Technical User
Feb 28, 2001
14
MX
Hi everyone!.
Here's a question somebody may have already asked before.

I'm trying to make a presentation, no browser required, using window's projector but I'd like it to be full-screened, no menu bar, nor title bar. This easyly done by pressing CTRL-F while projecting the presentation, but it is obvious at this point that I'd like to save this step for my targeted users. So how do I do this?.

Thanks in advance.

Iluvatar.
 
on frame 1, add this action script:

fscommand ("fullscreen", "true");

or add this to button:

on (release) {
fscommand ("fullscreen", "true");
}


If you change the "true" to "false" then it does the opposite





roda B-)

Learning is like rowing against the current. As soon as you stop, you start going backwards.
 
Ahhhh..... I think you need to use JaveScript on the HTML page to do that (could be wrong though). I think there might be something in the FAQ's. roda B-)

Learning is like rowing against the current. As soon as you stop, you start going backwards.
 
is an example of a swf file in fullscreen mode...here is the javascript they use...I do not have a clue what they do with the scripting internal to the swf file.

<SCRIPT LANGUAGE=&quot;JavaScript&quot;>
<!--
{
var aw = screen.availWidth;
var ah = screen.availHeight;
var frmnav = aw * .09079;
var frena = aw * .0378;
var hsp = ah - 61;
var fw = aw - 23;
var fh = parseInt(hsp - (frmnav + frena));
var flashmovie = '/flash/gulf_intro_c.swf';

document.write('<OBJECT classid=&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot; codebase=&quot; ID=00 WIDTH='+fw+' HEIGHT='+fh+'>');

document.write('<PARAM NAME=movie VALUE=&quot;'+flashmovie+'&quot;><PARAM NAME=quality VALUE=high> <PARAM NAME=wmode VALUE=transparent> <PARAM NAME=scale VALUE=exactfit> <PARAM NAME=bgcolor VALUE=#000000> <PARAM NAME=align VALUE=absmiddle>');

document.write('<EMBED src=&quot;'+flashmovie+'&quot; quality=high wmode=transparent scale=exactfit bgcolor=#000000 WIDTH='+fw+' HEIGHT='+fh+' TYPE=&quot;application/x-shockwave-flash&quot; PLUGINSPAGE=&quot; align=absmiddle></EMBED></OBJECT>');

}

// -->
</SCRIPT>
Ya' Gotta Love It!
sleepyangelsBW.jpg
 
Thanks all you guys!, every solution worked out pretty well.

Iluvatar.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top