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!

Web Packaging

Status
Not open for further replies.

2343

Technical User
Mar 29, 2001
1
US
Hello,

I have successfully packaged an authorware piece for the web. In using the html code from your web site, I have gotten the packaged piece to run on the web. My question now is how do I get this packaged piece to run full screen or within a new window which does not have any of the standard Internet navigation present. For example, the Back and Forward buttons. I am looking for insight on creating an install.

Reagards,
Cory
Web Based Instructional Designer
Kendle Internation

I have included the html scripting which I am currently using. Where and what am I needing to add to accomplish this task?

<OBJECT ID=&quot;AuthorwareShockwaveControl&quot;
CLASSID=&quot;CLSID:15B782AF-55D8-11D1-B477-006097098764&quot;

=&quot; WIDTH=800 HEIGHT=600>

<PARAM NAME=&quot;SRC&quot; VALUE=&quot;Drug18.aam&quot;>
<PARAM NAME=&quot;PALETTE&quot; VALUE=&quot;background&quot;>

<EMBED WIDTH=800 HEIGHT=600 SRC=&quot;Drug18.aam&quot;

PALETTE=&quot;background&quot; =&quot;application/x-authorware-map&quot;=&quot;
</EMBED>
</OBJECT>
 
Unfortunately, you cannot turn off things like toolbars, etc. if you present the content in an existing window. This is by design, since the user should be in control of their browser window. However, you would have complete control over how the window appears if you create the window. So, what a lot of people do is make some sort of link or hotspot on one page that when clicked on it opens a new window with the parameters you want and loads the page you want.

A javascript example

<script language=javascript>
window.open(&quot;myShockedPiece.htm&quot;, &quot;MyWindowName&quot;, &quot;toolbar=no,resizable=yes&quot;)
</script>
Please note, that there are no spaces in the final parameter for setting the toolbar, etc.


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top