Skip to main content
Whispering_genius0D44
Known Participant
November 27, 2012
Question

Seamless Tabbing for Captivate 6

  • November 27, 2012
  • 1 reply
  • 1575 views

Does anyone know the code for seamless tabbing in Captivate 6?  I have tried using the ones I've found in this forum, as well as some other ones, but none seem to work.  It appears that particular code was for 5.5 or earlier.  HELP!

This topic has been closed for replies.

1 reply

Anjaneai_Srivastava
Adobe Employee
Adobe Employee
November 29, 2012

Hi there,

Try this, Open your Published .HTML file in Notepad--

Locate the lines where you have s.addparam and add the following code and save it --

so.addParam("SeamlessTabbing", "false");

Relaunch the file in Web Browser.

Thanks,

Anjaneai

Whispering_genius0D44
Known Participant
November 29, 2012

I have done that and it does not work

/*

                                                Normally the SWF is embedded in the body (as in the SCORM templates). In AICC

                                                we want the parents' onLoad() to be called first and then the SWF be embedded

                                                */

                                                function EmbedSWF()

                                                {

                                                                trace("In EmbedSWF");

                                                                strURLParams = "?AICC_SID=23de4a4d-d5f6-4789-86a2-d657d8261214&AICC_URL=http%3A//cloud.scorm.com/ScormEngineInterface/ProcessAiccRequest.jsp";

                                                                var so = new SWFObject(strURLFile + strURLParams, "Captivate", "1440", "900", "10", "#CCCCCC");

                                                                trace("SWFObject URL:"+strURLFile + strURLParams);

                                                                so.addParam("quality", "high");

                                                                so.addParam('SeamlessTabbing". "false");

                                                                so.addParam("name", "Captivate");

                                                                so.addParam("id", "Captivate");

                                                                so.addParam("wmode", "opaque");

                                                                so.addParam("bgcolor", "#f5f4f1");

                                                                so.addParam("menu", "false");

                                                                so.addParam("AllowScriptAccess","always");

                                                                so.addVariable("variable1", "value1");

                                                                so.setAttribute("redirectUrl", "http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash");

                                                                so.write("CaptivateContent");

                                                                document.getElementById('Captivate').focus();

                                                                document.Captivate.focus();

                                                                trace("Captivate focused!");