Launch applet from html from ff/ie/chrome but breaks chrome when xhtml

The following will work as an html file. However I place the body into a jsf xhtml file. Chrome complains: "TypeError: Object#<Document> has no method 'write' " The deployJava.js doesn't work in pc based safari in any case - but direct <applet> works for html file. Any idea how to resolve?
Monty
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<script src="http://www.java.com/js/deployJava.js"></script>
<script type="text/javascript">
try {
// launch applet
var attributes = { code:'aa.fx.applet.NewJApplet',  width:640, height:480} ;
var parameters = {jnlp_href: 'newJnlpTemplate.jnlp'} ;
deployJava.runApplet(attributes, parameters, '1.6');
} catch(x) {
alert(x);
//]]>
Edited by: 845430 on Mar 17, 2011 8:13 PM

I'm guessing you'll get better answers on a Chrome forum, since Chrome seems to be the culprit.

Similar Messages

  • Launching applet in html

    Hallo,
    I'm launching my applet vie jnlp-file. But I need to create code to dynamically generate page launching applet with parameters. My jnlp-file:
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <jnlp codebase="http://192.168.20.71/MyApplet" href="launch.jnlp" spec="1.0+">
    <information>
    <title>MyApplet</title>
    <vendor>rafal</vendor>
    <homepage href=""/>
    <description>MyApplet</description>
    <description kind="short">MyApplet</description>
    <offline-allowed/>
    </information>
    <security>
    <all-permissions/>
    </security>
    <resources>
    <j2se java-vm-args="-Djava.security.policy=applet.policy -Xms32m -Xmx500m" version="1.6+"/>
    <jar eager="true" href="MyApplet.jar" main="true"/>
    <jar href="lib/jai_codec.jar"/>
    <jar href="lib/jai_core.jar"/>
    <jar href="lib/mlibwrapper_jai.jar"/>
    </resources>
    <applet-desc height="768" main-class="MyAppletMain" name="MyApplet" width="1024">
    <param name="DbUrl" value="http://192.168.20.71/MyApplet"/>
    <param name="PictureURL" value="http://192.168.20.71/MyApplet/GetPicture"/>
    <param name="Modalities" value="CT,MR,CR,SR,US,NM,XR,DX,XA,IO,DR,RF"/>
    </applet-desc>
    </jnlp>
    I have an example that launches an applet with following script:
    <script src="http://java.com/js/deployJava.js"></script>
    <script>
    var attributes = {
    codebase: [applet codebase],
    code: [class to launch],
    archive: [JAR file with the applet],
    width: [applet width],
    height: [applet height]
    var parameters = { [applet parameters] };
    var version = [JDK version];
    deployJava.runApplet(attributes, parameters, version);
    </script>
    How should I fill the attributes to be able to launch my applet? The format of parameters-attribute is for me unknown, how to pass more then one parameter?
    The applet uses addidional jar-files, how to include these into this script? Is there another way to start applet?
    with regards
    Rafal Ziolkowski

    rafzio1 wrote:
    ..What's wrong?1) First of all, put all this crap with JNLP files, the deployJava.js and JSPs aside for a while. (a)
    2) Develop a plain old HTML file for the applet.
    3) Configure the Java Control Panel to pop open the Java Console when it encounters an applet.
    4) Ensure your code does not [swallow exceptions|http://pscode.org/javafaq.html#stacktrace] *(<- link)* at any point.
    5) Try and load it in the HTML and [copy/paste the Java Console output|http://pscode.org/javafaq.html#exact] *(<- link).*
    6) If you can make that HTML available for us to see, post the URL. If not, at least copy/paste the HTML, and please include it in code tags so it is easy to read.
    a) OK - none of those are crap, but they are extra complications above and beyond what you need for some basic testing.

  • Loud fan like noise coming from 2012 Macbook Pro 15 inch but gets quieter when my palm is placed on the right side of the trackpad.

    Hey,
    I just got a Macbook Pro 15 inch. It is the preconfigered one with higher specs. I noticed that there is a loud fan like sound coming from my laptop. The strage part is, when I place my hands on it to typle, specifically the right hand. The sound gets cut to be about half as loud. I don't notice the sound when I am in class when there are people talking and the air is on in the room, but when I am in the library it is really loud. Does anyone know what this might be. All of my friends older Macbooks are dead silent.
    This is not the buzzing or clicking sound that you can hear from a hard drive, it sounds almost like a computer fan, and it does it from the second the computer is turn on, to the second it is turned off or put to sleep.

    33SuperSport33 wrote:
    Hey,
    I just got a Macbook Pro 15 inch.
    You are still under warranty.  Call Apple Care. 
    #1 - You have 14 days from the date of purchase to return your computer with no questions asked.
    #2 - You have 90 days of FREE phone tech support.
    #3 - You have the standard one year Apple warranty.
    #4 - If you've purchased an AppleCare Protection Plan, your warranty last for 3 years.   You can obtain AppleCare anytime up to the first year of the purchase of your computer.
    Take FULL advantage of your warranty.  Posting on a message board should be done as a last resort and if you are out of warranty or Apple Care has expired.

  • I embedded some HTML code into adobe Muse but not displaying when the pages are Exporting to HTML

    I embedded some HTML code into adobe Muse and when I published the remote site on business catalyst the (Add This widget) HTML code shows up but when I exported the site to HTML pages and view the index page in the browser (Safari, Chrome, Firefox) the (Add this widget) HTML code wouldn't display on any of the pages. I've used this code before on other Muse sites not sure what could have happened. Thnx!!!

    Hi,
    Please take a look at this post for a similar discussion : Re: When i export my muse website my youtube video links stop working. Why is this?
    Regards,
    Aish

  • Can't pass parameter from HTML form of multipart/form-dta type to JSP

    I am using request.getParameter(passed variable name) to pass data from HTML form to JSP with no problem. WHen I try to pass data from HTML form of multipart/form-dta type to JSP as following:
    < form enctype="multipart/form-data" name="theForm" method="post" ACTION="http://titan.ssd.loral.com:7778/ifs/jsp-bin/ifs-cts/stringsecond.jsp">
    The passed value is null. Why?
    How can I pass data successfully from this form to JSP?
    How can I pass data from JavaScript to JSP?
    Thank you

    I am using request.getParameter(passed variable name)
    to pass data from HTML form to JSP with no problem.
    WHen I try to pass data from HTML form of
    multipart/form-dta type to JSP as following:
    < form enctype="multipart/form-data" name="theForm"
    method="post"
    ACTION="http://titan.ssd.loral.com:7778/ifs/jsp-bin/if
    -cts/stringsecond.jsp">
    The passed value is null. Why?because the jsp most likely does not handling of POST parameters like this.
    How can I pass data successfully from this form to
    JSP?jsp's are not meant to read such amounts of data. this (= uploading) is a typical task for a specialized servlet. there you have full control over input and output. if you need to, you can still forward to a jsp after processing in the servlet.
    How can I pass data from JavaScript to JSP???? i'm not sure what exactly you mean. normally you put it into an url and submit it.
    robert

  • JEditorPane can't handle POST from HTML form?

    I posted this before but i never got an answer so i'll try again :-)
    Im running a tomcat server were i have a jsp script that uploads files to the server. What i need to do to is to use a regular java application for the rest of the "project" im working on.
    And i can get the JSP page to be displayed properly using JEditorPane but i cant get the html FORM POST in the JSP to execute... i dont know if theres some limits in JEditorPane or if im just using the wrong type of approach on this one.
    This is the server
    http://chilly-schrimp.kicks-ass.org/uploadbean/SimpleUpload.jsp
    (only works if my computer is turned on)
    Heres the code:
    =======================================================================
    import javax.swing.*;
    import javax.swing.event.*;
    import java.io.*;
    public class JSPtest {
    public static void main(String[] args) {
    JEditorPane pane = null;
    try {
    pane = new JEditorPane("http://chilly-schrimp.kicks-ass.org/uploadbean/SimpleUpload.jsp");
    catch (IOException ex) {
    ex.printStackTrace(System.err);
    System.exit(1);
    pane.setEditable(false);
    // Add a hyperlink listener.
    final JEditorPane finalPane = pane;
    pane.addHyperlinkListener(new HyperlinkListener() {
    public void hyperlinkUpdate(HyperlinkEvent ev) {
    try {
    if (ev.getEventType() == HyperlinkEvent.EventType.ACTIVATED)
    finalPane.setPage(ev.getURL());
    } catch (IOException ex) { ex.printStackTrace(System.err); }
    JFrame frame = new JFrame();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setContentPane(new JScrollPane(finalPane));
    frame.setSize(350,400);
    frame.setVisible(true);
    =======================================================================
    any suggestions??
    thanx
    /eric

    I am using request.getParameter(passed variable name)
    to pass data from HTML form to JSP with no problem.
    WHen I try to pass data from HTML form of
    multipart/form-dta type to JSP as following:
    < form enctype="multipart/form-data" name="theForm"
    method="post"
    ACTION="http://titan.ssd.loral.com:7778/ifs/jsp-bin/if
    -cts/stringsecond.jsp">
    The passed value is null. Why?because the jsp most likely does not handling of POST parameters like this.
    How can I pass data successfully from this form to
    JSP?jsp's are not meant to read such amounts of data. this (= uploading) is a typical task for a specialized servlet. there you have full control over input and output. if you need to, you can still forward to a jsp after processing in the servlet.
    How can I pass data from JavaScript to JSP???? i'm not sure what exactly you mean. normally you put it into an url and submit it.
    robert

  • Launching Web Start Program from an Applet?

    Hi,
    I need to launch web start program from an applet.
    How can I do that?
    I have tried opening a new web page pointing to the jnlp file from an applet. But, that does not seem to start the web start.
    Thanks in advance
    rg

    I am new to this so may be my questions will appear stupid to a pro, but this is an erro I am getting at compile:
    Can't make static reference to method java.lang.Process exec(java.lang.String) in class java.lang.Runtime.
         Runtime.exec("test.exe");
    What could be the problem?
         ^

  • Help. How do you TAB from HTML component to applet (and back) ?

    How can one tab between applets in a browser, and from an applet to an HTML component?
    For example, I have the following in my page in decending order:
    an HTML text field,
    an applet containing two components,
    and another HTML text field.
    When focus is on the first HTML text field pressing TAB should shift focus to the first component of the applet, the next TAB press shifts focus to the second component of the applet, and the next TAB press shifts focus to the other HTML text field. Then another TAB press cycles back to the first TEXT field.
    I can handle the tabbing within the applet using the FocusManager, but how can I get the applet to receive focus on a TAB from the browser, and once the applet has focus, how can I give focus back to the browser when a TAB occurs from my last applet sub-component?
    At the moment a user has to click on the applet before he can tab in it, and then click outside it to tab in the html again.
    Any help appreciated, as I cant find any reference to how to do this apart from other people asking the same but getting no replies.
    Thanks,
    Menno

    I see what you are saying. Either use javascript with LiveConnect or go all applets.
    What we are actually doing at the moment is trying to componentise using small applets passing data via InfoBus. So I guess we could use only applets as you suggest. Either with getAppletContext, or we could have a data item on the InfoBus which contains the name of the required in-focus applet, and all applets listen to see if it is their name, and if so request focus.
    I'm suprised applets are not tab-able between by default. I would have thought this was a common requirement.
    I'll look into LiveConnect as well, and let you know how we get on.
    Cheers,
    Menno

  • Launch jar from html!!!

    Ok everyone i am running into deep problems from the time i have been trying to launch this pure java application jarfile from the html browser. Everythin works fine except for Mozilla firefox in Linux. firefox somehow doesnt recognise the system default for opening jar files(unlike its windows counterpart). Since we cant specify a command line(java -jar) for default opening as in the case of browsers like konquerer, i have to manually locate the .exe file which will launch the jar file. But again java.exe(inside the correspondin JRE) doesnt work, so i dunno which exe file to use for launching the jar file.
    A similar problem is observed in mac which has firefox as the default browser. there, we dont even have an option of opening the jar file directly and on clickin the jar file link from html , the browser pops up a window for only downloading jar file into the system. This doesnt serve the purpose as the whole idea is to launch the jar file directly
    Any kinda help for both the above problems will be deeply appreciated!!!

    When you say "new flex window" are you talking about the Flash Projector running on the desktop?

  • HTML from Applet

    How can we call HTML page from applet.
    My requirement is when a button or a menu option in an applet is clicked, a HTML page should be opened.

    Maybe you can find the answer here
    http://forum.java.sun.com/thread.jspa?threadID=792441
    http://java.sun.com/docs/books/tutorial/deployment/applet/browser.html
    Satanduvel

  • Setting Java Runtime Parameters from HTML

    I am launching a java program from HTML, using java plugin 142_08, and I need to set -xms and -xmx in the java plugin from the HTML that is launching the program. Is this possible to do? It is used by many various people, so it won't be easy to go into everyones computer and manually set these params.
    Any ideas?

    There will soon be a solution available for this problem. There is an early access program for the "6uN" consumer-focused release of Java at http://jdk6.dev.java.net/6uNea.html . Build 08, which should be out in a few days, will contain as an option a new implementation of the Java Plug-In which supports what you want. You will need to go into the Java Control Panel, Advanced Tab, Java Plug-in node, and enable it, then exit, to turn on the new plug-in. At that point you will be able to write in your applet tag
    <param name="java_arguments" value="-Xmx128m"></param> for example. It has the same notion of "secure" command-line arguments as Java Web Start; using "non-secure" command line arguments requires a signed applet, but unsigned applets can utilize secure command line arguments and system properties. More documentation will be available on the new Java Plug-In soon.

  • Error Launching Web Analysis Report from the Hyperion Workspace

    Hi Everyone
    When launching the report as a HTML from the Workspace, the output flashes briefly on screen
    The view in the content pane disappears to leave a blank screen.
    When I Select View | Refresh. The following result is returned "Web Analysis Information" -1
    I have set the report in start up preferences. And Web Analysis preferences set to open as HTML
    After logging on again the following error is shown " An attempt to open "Actual vs Budget" Failed
    Show Details displays: this.getFocusRoot() is nullor not an object
    The reports all display correctly when launched from the Web Analysis studio
    Any ideas will be greatly appreciated
    Thanks
    G
    Web Analysis Version
    Server Information
    Version: 11.1.1.0.0.724
    Class Version: Java HotSpot(TM) Server VM
    VM Version: Java HotSpot(TM) Server VM
    VM Vendor: Sun Microsystems Inc.
    Java Vendor: Sun Microsystems Inc.
    Java Version: 1.5.0_11
    OS Name: Windows 2003
    OS Version: 5.2
    Total Memory: 66519040
    Free Memory: 22975320
    Locale: English (United States)
    Client Information
    Version: 11.1.1.0.0.724
    Class Version: Java HotSpot(TM) Client VM
    VM Version: Java HotSpot(TM) Client VM
    VM Vendor: Sun Microsystems Inc.
    Java Vendor: Sun Microsystems Inc.
    Java Version: 1.5.0_12
    OS Name: Windows 2003
    OS Version: 5.2
    Total Memory: 34766848
    Free Memory: 10688504
    Locale: English (United States)

    Hi Ian,
    Thanks for the advise but I have looked into your possible solution and referred to the Web Analysis user guide. I have a number of reports and when selecting the Design for HTML option - a number of objects are valid and should be displayed in the workspace.
    After creating reports from scratch - with valid objects - the problem still persists.
    Unfortunately, I don't think this provides a solution to the problem.
    Cheers
    G

  • Problem while calling java function from html

    when i tried to call a java function from html i'm getting an error
    object don't support this property.
    what could be the reason.
    This is my html.
    I got this from this forum only.
    My applet is accessing the system property "user.home".
    I ran it in IE
    <DIV id="dvObjectHolder">Applet comes here</DIV>
    <br><br>
    <script>
    if(window.navigator.appName.toLowerCase().indexOf("netscape")!=-1){ // set object for Netscape:
         document.getElementById('dvObjectHolder').innerHTML = " <object ID='appletTest1' classid=\"java:test.class\"" +
    "height=\"0\" width=\"0\" onError=\"changeObject();\"" +
              ">" +
    "<param name=\"mayscript\" value=\"Y\">" +
    "<param name=\"archive\" value=\"sTest.jar\">" +
    "</object>";
    }else if(window.navigator.appName.toLowerCase().indexOf('internet explorer')!=-1){ //set object for IE
         document.getElementById('dvObjectHolder').innerHTML = "<object ID='appletTest1' classid=\"clsid:8AD9C840-044E-11D1-B3E9-00805F499D93\"" +
              " height=\"0\" width=\"0\" >" +
              " <param name=\"code\" value=\"test.class\" />" +
         "<param name=\"archive\" value=\"sTest.jar\">" +
              " </object>"
    </script>
    <LABEL id="lblOutputText">This text will be replaced by the applet</LABEL>
    <BR>
    <input value="Javascript to java" type=button onClick="document.appletTest1.fromJavaScript()">

    I tried this example using the repy given to an earlier post.
    But its not working with me.
    What i did in addition was adding plugin.jar to classpath to import netscape.javascript.*;
    Let me add some more details
    1) I'll add the stack trace
    2) my java progrma
    3) batch file to sign the applet.
    1) This is the stack trace i don't know whether u will undertand this
    load: class test.class not found.
    java.lang.ClassNotFoundException: test.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.FileNotFoundException: C:\FastranJava\AppletObject\bin\test\class.class (The system cannot find the path specified)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(Unknown Source)
         at java.io.FileInputStream.<init>(Unknown Source)
         at sun.net.www.protocol.file.FileURLConnection.connect(Unknown Source)
         at sun.net.www.protocol.file.FileURLConnection.getInputStream(Unknown Source)
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    Exception in thread "Thread-5" java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletException(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    2) Java Program
    import netscape.javascript.*;
    import java.applet.*;
    public class test extends Applet
         private JSObject win;
         private JSObject outputLabel;
         private boolean buttonFromJavaClicked=false;
         checkJavaScriptEvent evt=new checkJavaScriptEvent();
         public void init()
              try
                   evt.start();
                   win=JSObject.getWindow(this);
                   outputLabel=(JSObject)win.eval("document.getElementById('lblOutputText')");
                   outputLabel.setMember("innerHTML", "<center><h1>From Init<br>Your Home directory" + System.getProperty("user.home") + "</h1></center>");
              catch(Exception e)
                   e.printStackTrace();
         public void fromJavaScript()
              buttonFromJavaClicked=true;          
         public void fromJavaScript2()
              System.out.println("Started Form JavaScript2");
              try
                   String strLbl="<center><h1>From JavaScript<br>Your Homedir:" + System.getProperty("user.home") + "</h1></center>";
                   outputLabel.setMember("innerHTML", strLbl);
              catch(Exception e)
                   e.printStackTrace();
         class checkJavaScriptEvent extends Thread
              public void run()
                   while(true)
                        if(test.this.buttonFromJavaClicked)
                             System.out.println("OK buttonfromjava is true");
                             test.this.buttonFromJavaClicked=false;
                             fromJavaScript2();
                        try
                             Thread.sleep(3000);
                        catch(Exception e)
                             e.printStackTrace();
    3) Batch file
    del *.cer
    del *.com
    del *.jar
    del *.class
    javac -classpath ".;C:\Program Files\Java\jre1.5.0_06\lib\plugin.jar" test.java
    keytool -genkey -keystore harm.com -keyalg rsa -dname "CN=Harm Meijer, OU=Technology, O=org, L=Amsterdam, ST=, C=NL" -alias harm -validity 3600 -keypass password -storepass password
    jar cf0 test.jar *.class
    jarsigner -keystore harm.com -storepass password -keypass password -signedjar sTest.jar test.jar harm
    del *.class

  • PDF from html

    I have a large volume of html (currently PDF'ing to around 250 pages) that is generated dynamically.
    My question is a simple one but it's driving me to distraction.
    How can I control the formtting in the resulting PDF. I'm not asking for anything complex here. I want 12pt body text and everything else relative sized based on em size.
    I've tried setting font-size:12pt in body and in a content wrapper div. I've tried it in embedded style sheets and in style attributes.
    I've tried create from html in Acrobat 11 pro, print to pdf, save as pdf in chrome and webkit html2pdf on the server. in each case the font is resized to whatever Acrobat thinks is the best fit.
    So, yesterday my output was at 11.5pt today it's 12.5 although both are rendered identically on screen and firebug and chrome dev tools both show the text to be set to 12pt prior to output.
    I suspect that the culprit here are images and that acrobat 'for my convenience' is automagically resizing to get what it thinks (wrongly) is best fit
    Any ideas?

    I get what you are saying, but I have no choice over source. The info is an export from a Content Mangement System - several hundred individual web pages that are consolidated into a single lump of html. The native CMS export to word and export to PDF are both very poor for anything other than single pages.
    I was hoping to avoid XSL, but accept that it may be my only option - it's years since I've wrestled with that particular nightmare - hopefully there are some tools to make it easier now and I have never created a pdf from xsl formatted xml.
    On your second point, yes, once a pdf is created then its font size is fixed, no problem there. The issue is that I can't see any way to fix the size at the point of creation and really, that's the crux of this request - I just want to be able to say to Acrobat that the base font size for this document is 12pt.
    Practical example - I run an export yesterday - the body font size is set to something like 11.5pt by Acrobat (despite iit being set to 12pt in the css) but I can live with that as long as it's consistent. Tomorrow, I run it again. A user has added a new image (or any width-settable element) to a page that is maybe 60pixels wider than the pervious largest and the body text throughout the pdf is now 10.5pt.
    I understand that this is Acrobat trying to be clever and scaling the text to accommodate the largest element, but I'd much rather tell it to respect the css and truncate or scale the element that doesn't fit - that would be so much easier to troubleshoot

  • How do I launch a software demo from within a Captivate 6 presentation?

    I'm trying to figure out the best way to weave together a presentation which leads into a full screen software demo - back to the presentation and into a full screen training session.  I have all of the separate peices completed but I can't see a simple way to do it. 
    I'm imagining there must be a way to insert a button which launches the (SWF, html, exe file) sofware demo and another button I can insert into the demo which will take me back to the correct page in the presentation.  I just can't see how to apply that as a command.
    Any help would be gratefully received.

    Rod,
    A couple of suggestions from a fellow Rod:
    Don't set your publish folder to be the same location as your project CPTX files.  Your folder will get very messy and make it much harder to find what you want.  Keep your project source files in one folder and point your published files at another folder reserved for that purpose.
    Make sure your publish folder location has been set up as a trusted location in your Flash Global Security settings.  Google for info about it if you are a newbie. Lots of info on the web.  Bottom line is that without Flash Security set up properly, lots of stuff (especially links) won't work.
    Never have spaces in your publish file names.  You can set the output filename in the publish dialog.  You need to remember that your content is quite likely to end up on a web server, and web filenames should never have spaces because it can break links.
    Always use all lowercase for all filenames.  Windows servers won't mind mixed case filenames, but if your content happens to land on a different type of web server one day, then the mixed case can cause broken links.
    Publish your project (without the spaces and with lowercase name) at least once to the output folder if you are creating a new folder there. And then copy any video files, SWFs, PDFs or other stuff that will need to be called by your published content into the publish folder location so that it will be available for linking.
    I know Adobe says you can point the links at the CPTX file and Captivate is supposed to work out that you are actually wanting to link to the output file it will publish, but quite frankly I find it more reliable to just link to the HTM file.  If that HTM file and the SWF/JS etc that it needs to call are in a different folder from the file you are linking from, then you need to set up a RELATIVE LINK, not an ABSOLUTE LINK.  If you don't know what these are and how to create them properly, Google for info again.  The web is full of good tutorials about linking.

Maybe you are looking for

  • Facebook and twitter for ios 4.2.1?

    hi, i need help for install facebook and twitter in my ipod touch 2G IOS 4.2.1

  • ICloud Deleted  Local Contacts From Address Book

    Okay, so I tried setting up an iCloud account so a family member could receive texts and messages via iChat. That was the original goal. I successfully set up an account, but iChat does not allow me to login via the iCloud account that I had set up.

  • BAPI_REQUISITION_CREATE with automatic ticking of Goods Receipt Indicator

    Hi, We're experiencing a problem with BAPI_REQUISITION_CREATE. We use this BAPI in our Purchase Requisition (PR) upload program. After successful run of the program it generates a PR number. When we try to look at the PR using ME53N, the default valu

  • HELP, SQL report

    I created a SQL Report,the report asked me if i would like to add a search feature, i said yes, the search function queryies ID numbers 1-50, when i run the application and ask for id number 4; the query responds to id # 4,14, 34,and 44. If i'm askin

  • LOV in multirecord block

    Hi all, I have a multi record which has a text item. A LOV is attached to this text item. The LOV fetches values from a table. eg., emp table. Assume that the emp table has the following values, smith jack allen james. Now when i call the LOV in the