HTML code for web startup page

My web-packaged AW 7 piece is delivered to customers with the
AW web player 2004 in the same folder as the piece. The web player
is downloaded from the customer's intranet server using codebase.
The html page, called startup.htm, looks like this (after deleting
a text message):
<html>
<head>
<title>Quality System Training</title>
</head>
<body bgcolor="#0099CC" text="#FFFFFF">
<OBJECT ID="AuthorwareShockwaveControl0"
CLASSID="CLSID:15B782AF-55D8-11D1-B477-006097098764"
CODEBASE="AW_Web_Player/awswaxd.cab#version=2004,0,0,73"
width="150" height="55">
<param name="SRC" value="menu.aam">
<param name="WINDOW" value="onTopMinimize">
<param name="PALETTE" value="foreground">
<param name="DEBUG" value>
</OBJECT>
</p>
</body>
</html>
Because a new piece will run from an LMS, I used One Button
Publishing to create the web page. It runs correctly if the player
is installed. But if I remove the player from the user's PC, the
html page returns "The Authorware 7 WebPlayer is not installed" and
fails to install the player. The page ends with this code:
//Modify this next line with the name of the Authorware file
strURLFile = "menu iso.aam";
//Modify this next line with the width of the Authorware
file
intFileWidth = "1024";
//Modify this next line with the height of the Authorware
file
intFileHeight = "768";
//Modify this next line with the embed type of the
Authorware file
//Acceptable values are: inPlace, onTop, onTopMinimize
strTypeEmbed = "onTopMinimize";
//Modify this next line with the background color
strColorBackground = "#0099CC";
//Modify this next line with the palette
strColorPalette = "foreground";
strURLParams = "";
strURLFull = document.location + "";
intTemp = strURLFull.indexOf("#");
if (intTemp == -1)
intTemp = strURLFull.indexOf("?");
if (intTemp > 0)
strURLParams = strURLFull.substring(intTemp + 1,
strURLFull.length);
strTemp = location.protocol.toUpperCase();
if (strTemp.indexOf("FILE") == -1)
intTemp = location.pathname.lastIndexOf("/");
else
intTemp = location.pathname.lastIndexOf("\\");
if (intTemp != -1)
strURLBase = location.protocol + "//" + location.host +
location.pathname.substring(0, intTemp + 1);
else
strURLBase = location.protocol + "//" + location.host +
location.pathname;
if (strURLParams == unescape(strURLParams))
strURLParams = escape(strURLParams);
if (strURLParams != "") {
strURLParams = "?" + strURLParams;
intTemp = strURLParams.indexOf("%3A80/");
if (intTemp > 0) {
strURLParams = strURLParams.substr(0, intTemp) +
strURLParams.substr(intTemp + 5);
} else {
intTemp = strURLParams.indexOf("%3A80%2F");
if (intTemp > 0) {
strURLParams = strURLParams.substr(0, intTemp) +
strURLParams.substr(intTemp + 5);
strTemp = strURLParams.toUpperCase();
if (strTemp.indexOf("AICC_SID") == -1) {
status = 'Looking for API object';
if (typeof(API) == 'undefined') API = null;
// get the API
fcnGetAPI();
document.write('<object
classid="CLSID:15B782AF-55D8-11D1-B477-006097098764" width="150"
height="50" name="sample">\n');
document.write(' <param name="CODEBASE"
value="AW_Web_Player/awswaxd.cab#version=2004,0,0,73">\n');
document.write(' <param name="SRC" value="' + strURLBase
+ strURLFile + strURLParams + '">\n');
document.write(' <param name="PALETTE" value="' +
strColorPalette + '">\n');
document.write(' <param name="WINDOW" value="' +
strTypeEmbed + '">\n');
document.write(' <param name="BGCOLOR" value="' +
strColorBackground + '">\n');
document.write(' <embed src="' + strURLBase + strURLFile
+ strURLParams + '" palette=' + strColorPalette + ' name="sample"
window=' + strTypeEmbed + ' bgcolor=' + strColorBackground + '
pluginspage="
http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveAuthorware "
type="application/x-authorware-map" width=' + intFileWidth + '
height=' + intFileHeight + '>\n');
document.write(' </embed>\n');
document.write('</object>');
else
document.write('The Authorware 7 WebPlayer is not
installed.');
// -->
</script>
</body>
</html>
So I deleted what appears to be codebase and associated code
from the 2nd page and inserted codebase code from the 1st page. I
deleted this:
fcnGetAPI();
document.write('<object
classid="CLSID:15B782AF-55D8-11D1-B477-006097098764" width="150"
height="50" name="sample">\n');
document.write(' <param name="CODEBASE"
value="AW_Web_Player/awswaxd.cab#version=2004,0,0,73">\n');
document.write(' <param name="SRC" value="' + strURLBase
+ strURLFile + strURLParams + '">\n');
document.write(' <param name="PALETTE" value="' +
strColorPalette + '">\n');
document.write(' <param name="WINDOW" value="' +
strTypeEmbed + '">\n');
document.write(' <param name="BGCOLOR" value="' +
strColorBackground + '">\n');
document.write(' <embed src="' + strURLBase + strURLFile
+ strURLParams + '" palette=' + strColorPalette + ' name="sample"
window=' + strTypeEmbed + ' bgcolor=' + strColorBackground + '
pluginspage="
http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveAuthorware "
type="application/x-authorware-map" width=' + intFileWidth + '
height=' + intFileHeight + '>\n');
document.write(' </embed>\n');
document.write('</object>');
else
document.write('The Authorware 7 WebPlayer is not
installed.');
// -->
And I inserted this:
<OBJECT ID="AuthorwareShockwaveControl0"
CLASSID="CLSID:15B782AF-55D8-11D1-B477-006097098764"
CODEBASE="AW_Web_Player/awswaxd.cab#version=2004,0,0,73"
width="150" height="55">
<param name="SRC" value="menu iso.aam">
<param name="WINDOW" value="onTopMinimize">
<param name="BGCOLOR" value="#0099CC">
<param name="PALETTE" value="foreground">
<param name="DEBUG" value>
</OBJECT>
Now, the web player downloads correctly. But I use the
Internet Explorer browser and my client will want the flexibility
to deliver training from the LMS to Netscape browsers. What code
can I add to make the current page compatible with Netscape as well
as IE?
Thanks.
Jim

Yes you have. Your AW piece communicates with the LMS via the
JavaScript embedded in the launching page.
Mark
James_101 wrote:
> I also have a follow-up question: In removing code from
the html page created by OBP, as described in the original post,
have I caused any problems with the link to the LMS?
>
> Jim

Similar Messages

  • Use html code in web page composer 7.3

    Hi all,
    I have a question about the standard editors of web page composer in 7.3.
    I want to create my own HTML code for the design of the portal page..
    Is it possible to use the code through one of the standard editors?
    At the moment I have created some html pages and store them in the KM content of the portal. Then I make this pages available with the KM Document iViews to use them in the Web Page Composer. The problem now is, that the links to other portal pages doesn't work..
    So is there maybe a possibility to use the html code directly in one of the editors? Or do you know, how you have to define the links to navigate to other portal pages? I tried a href="TBN://..." like the links you get with the Link List Editor, but it doesn't work..
    Thanks in advance for your help!
    Regards,
    Lydia

    Hi,
    now we have the tinyMCE editor, where you can insert and edit html-code. It works fine now for the layout,
    but there are still a few problems with the links..
    In the edit mode there are displayed all km images out of the km. But the images aren't displayed under the portal role, when i publish the page. And all the links like one to a wiki or the TBN links doesn't work, too.
    Can anybody help me further?
    Thanks in advance,
    Lydia

  • HTML code for region position 3

    Hi All,
    Can i get the HTML code for display point: Region position 3.
    My requirement is, i have to apply some background color to all the regions which are placed in region position 3.

    Chandran wrote:
    Hi All,
    When you have a problem you'll get a faster, more effective response by including as much relevant information as possible upfront. This should normally include:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s) (making particular distinction as to whether a "report" is a standard report, an interactive report, or in fact an "updateable report" (i.e. a tabular form)
    For layout and visual formatting issues the APEX version, browser, theme, page and region template, and region/item details are always required.
    Can i get the HTML code for display point: Region position 3.
    My requirement is, i have to apply some background color to all the regions which are placed in region position 3.Region position 3 is determined by the location of the substitution string<tt>#REGION_POSITION_03#</tt> substitution string in the page template. This will vary by version, theme and page template, which is information you have not provided.
    Regions located in region position 3 will probably have existing background colours determined by their region templates. Is the requirement to apply a background colour to individual regions, or a background colour underlying all of the regions?

  • HTML code for adobe forms/formsCentral

    Anyone has the HTML code for any of these forms? I would like to add one of the forms to my website.
    Thx

    Hi,
    FormsCentral has Embed Form feature which enables you add a FormsCentral form to your web site. Please check out the first part of the document on how to embed a form into an html page: http://forums.adobe.com/docs/DOC-1991.
    Thanks,
    Wenlan

  • Can i have html code for date select options (SEARCH HELP)

    Hi frinds,
    I have a BSP Page with input as date.
    Can i have html code for date select options (SEARCH HELP)
    Moosa

    Hi
    Please find the sample code below.
    FROM DATE
          <htmlb:inputField id        = "dd"
                            width     = "45%"
                            type      = "DATE"
                            showHelp  = "X" <- Search help
                            alignment = "CENTER"
                            maxlength = "10"
                            disabled  = "TRUE"
                            value     = "<%= w_FROMDATE %>" />
    TO DATE
          <htmlb:inputField id        = "dd"
                            width     = "45%"
                            type      = "DATE"
                            showHelp  = "X"
                            alignment = "CENTER"
                            maxlength = "10"
                            disabled  = "TRUE"                      
    value     = "<%= w_TODATE %>" />
    Thanks
    kalyan

  • Help with some html code for flash site!

    Got this site>
    http:/www.thedesignport.com
    Site works great! everything is uploaded! What I cant seem to
    get workning is the html code to add a description under the title
    of the website in a google search? Goto google enter "topanga
    mountain school" I'm top spot on the second page but with NO
    description?? have a look at the html code for
    http://www.thedesignport.com
    Have I gone wrong somewhere?? But I've found if you put
    "topanga mountain school pdf" into google ( I have three pdf's on
    the site) My site is Second on the search with a DESCRIPTION of the
    pdf's under the site name?? I dont get it?? Any help would be
    great!

    You're not getting any help here because this is the forum for discussions of the Community Help Client application and Help system in general. For CSS questions, you should probably try something like the Dreamweaver forum.

  • Add html code in web dynpro application

    Hi
    Is there a method to add HTML Code in web dynpro application so that it works same as HTML works in browser
    I have to add a clock in my application How can i do that
    Best regards
    Suresh

    If you're on NetWeaver CE or otherwise use Wb Dynpro for Java 7.2 or higher, you could use the WebWidget control, see http://help.sap.com/saphelp_nw73/helpdata/en/49/bfa3b2e55657bae10000000a42189d/frameset.htm
    Otherwise, I'm afraid your only option is to use an IWDIframe component in your WDJ project, embedding the HTML.. Be carefulo though, the IWDIframe component is deprecated (since each server roundtrip forced a reload of the IFrame it was pretty useless)
    Hope this helps!
    Best regards,
    Robin van het Hof

  • Html-code for showing cover of current issue?

    Has anyone an example of a simple html-code for showing the latest issue?
    All I need is the adress to the image-file.

    There was a problem like that in the WYSIWYG before 7.0.2 as
    described in Using RH7 on my site. However, that was local and the
    patch fixed it.
    I had a completely different problem a while back but wonder
    if the solution might work. Speak to your web guys and suggest
    this.
    Add the AddDefaultCharset utf-8 directive to either the
    Apache config or the site .htaccess file
    It's a long shot. I don't know what other effects it might
    have on your server but the web guys should.

  • Where is the HTML-Code for the Dashboard-Links defined? How to edit it?

    Hello everyone,
    I'd like to know where HTML-Code for the Dashboard-Links (My Dashboard, insert random Dashboardname here, ...) is defined.
    Inspecting HTML-Code via the browser, i'll got the following HTML-Tag:
    an <a'' href="...url"... class="CurrentPortal" name="DashboardBannerLink" title="...">Dashboard-name</a''>
    What i know is, that i can modify portalbanner.css and edit the style of those links.
    But thats not what i want, though. I want to modify the html-code itself, for example change the layout of the table etc, to meet our company's corporate design requirements.
    Thats why i tried to find the terms PortalLink and CurrentPortal within the Message-Database (/msgdb).
    Unfortunately, i got no results.
    As a consequence, I believe HTML for those Links is generated by saw.dll internally and therefore can not be edited.
    Now i need someone to prove me wrong ;)
    Thanks in advance,
    Chris
    Edited by: Chris2010 on 16.08.2010 11:11
    -had to edit the html tag, as the code was turned into a clickable link when i posted the thread

    I still didn't find a solution until now, although i checked almost every xml file, that i was able to find.
    At the moment I am sure, that it would be necessary to edit sawm-Parameter "bannerHtml" to meet my requirements. Now, i dont know whether its possible to edit it or not, since those saw-parameters do not seem to be documented on the web.
    That's the part, i found in dashboardtemplates.xml (Line: 362)
    <WebMessage name="kuiDashboardBanner" translate="no"><!-- Param bannerHtml --><!-- Param dashboardsURL -->
    <HTML>
    <table class="PortalBanner" width="100%" border="0" cellspacing="0">
    <tr>
    <td class="PortalLogo">
    "<\a href="@{dashboardsURL}">
    <img class="PortalLogoImage" border="0" src="fmap:Portal/PortalLogo.gif"/></a>
    "</td>
    <td class="PortalTop" style="vertical-align:top">
    <sawm:param name="bannerHtml"/></td>
    </tr></table>
    <sawm:messageRef name="kuiDashboardMainBar"><sawm:setParam name="product">dashboard</sawm:setParam></sawm:messageRef>
    </HTML></WebMessage>
    -----

  • Embeding HTML code to Flash Catalyst pages

    I know Adobe discontinued FC but i still have a question. I'm planing to add HTML code for calendar page ( i m planing to use google calendar' code) in my FC but i couldnt find enough info how to do. I also created empty layer in PS for calendar page but dont know rest
    I appreciate if you d help me. Thanks

    I found one (http://forums.adobe.com/message/3769044#3769044) but it hasn't been answered yet. I'm not good at ActionScripts yet so seems it s gonna be painful for me. Anyway thanks for the answer Chris, at least at the moment i know the steps that i should do.

  • Does anyone have the HTML code for the Buffy Font

    Does anyone have the HTML code for the Buffy Font?

    1) download one of the Buffy fonts @ font space, just as Hans-Günter wrote.
    2) go to FontSquirrel, and use the web font generator: http://www.fontsquirrel.com/tools/webfont-generator
    3) load up your buffy font, and generate the web font.
    4) download the zip package, and check out the included demo file
    Copy all the font files (all four of them) to your web folder. Then copy the code that looks like this to the top of your css:
    @font-face { font-family: 'FontName'; src: url('FileName.eot'); src: url('FileName.eot?#iefix') format('embedded-opentype'), url('FileName.woff') format('woff'), url('FileName.ttf') format('truetype'), url('FileName.svg#FontName') format('svg'); font-style: normal; font-weight: normal; }
    Check that all file references are set up correct, and use the font name  in your css rules.
    h1 {
    font-family: 'FontName';
    Done!

  • Flip Image - HTML code for InDesign

    I am trying to create a flipping image in a digital edition and I found from the cookbook that there is an HTML code.
    The problem is that when I am clicking on the attachment file "Flip_HTML.zip", appears a white page with a message FILE NOT FOUND.
    Is there any other solution for that?
    Thanks
    Georgia

    Thanks Liam. I am a newbie at all of this and decided to use the widget contact form in muse which has an image verification module but when I test it I get a message that it has to be supported business catalyst captcha module so thought there was a html code for it.
    Thanks for coming back to me so quickly

  • Html code for bc captcha

    Hi
    I want to add a captcha or image verfication to my contact form that I have used from the Muse widget library but I can't find the html code for this, what I can get is the html code for e-mail, captcha and submit? Can anyone help, thanks

    Thanks Liam. I am a newbie at all of this and decided to use the widget contact form in muse which has an image verification module but when I test it I get a message that it has to be supported business catalyst captcha module so thought there was a html code for it.
    Thanks for coming back to me so quickly

  • HTML code for embedding QT file

    Hey QuickTimeKirk, I liked yr last answer and liked yr new proposal even better. So can you tell me the HTML code for embedding a looping .mov file on a website?

    Here's a link that describes the html tags for QuickTime files:
    http://docs.info.apple.com/article.html?artnum=61011
    Here's a link that shows a more modern method required by IE on a PC:
    http://developer.apple.com/internet/ieembedprep.html
    The tag for looping is simply loop="true" (embed tag) and param name="loop" value="true" for the object tag.

  • [ask] html code for linksys wvc200

    guys, i have project for distance learning site. in this project, there is live streaming using ip camera when the lecturer was teach student. i have bought ip camera linksys wvc200, to make this online and become live streaming site, i must have HTML source code for this to place at php. do you guys have the HTML CODE for this?? really urgent, i need it.. please help me, because i am newbie..

    Hi ekopamungkas and welcome to the Cisco Home Community!
    The WVC200 is now being handled by the Cisco Small Business Support Community.
    For discussions about this product, please go here.
    https://supportforums.cisco.com/community/netpro/small-business
    The Search Function is your friend.... and Google too.
    How to Secure your Network
    How to Upgrade Routers Firmware
    Setting-Up a Router with DSL Internet Service
    Setting-Up a Router with Cable Internet Service
    How to Hard Reset or 30/30/30 your Router

Maybe you are looking for

  • Error installing iTunes 11.1.2.31

    While installing the latest version of iTunes (11.1.2.31) on Windows 7, I get a permissions error. The installer claims it doesn't have permission to access the x86 directory for iTunes, so it can't install. It asks me to sign in as Administrator, bu

  • Replacing an external disk that is backed up to a (different) external disk

    I have two external drives connected to my Mac -- one with my whole iTunes library on it and a second for Time Machine. Both the Mac internal drive and the iTunes external drive are backed up by Time Machine to the Time Machine drive. All was working

  • Is it possible to call a C-function from Java?

    Hey! I have some extern variables written in C-language, can i get them into a java-file using java? How to do this otherwise? Can i use Native interface java? Or is that only the opposite way? Thanks Mikael

  • Where do I find the wi-fi security type again?

    I want to extend my AirPort Extreme wifi network using an airport express.  I know my own network name and password (:-) but where do I find the security type again?

  • Auto Updation

    Hi , I have 5000 records in  table of  and  all record have  record no which is assign manually  to all records Employeed1                data     data     data                Recod No 12345                              7     7          7