"jump to" in HTML?

I'm making a document with web content, and that is all working and linking up appropriately. The issue I'm having is that when viewed in the Content Viewer, my jump to links (using "a href" and "a name") have to be clicked twice in order to function, and even then they are not "jumping" smoothly. When viewed on the iPad as a regular HTML file, and on the desktop the code works just fine which leads me to believe it's not a mobile Safari issue; so I believe it must be an issue within DPS.
Is this an unsupported feature? I don't understand why it works differently through the Viewer than if it's just calling forth a local HTML file. Is there perhaps a way to utilitze navto, but within the HTML document? Any insights or suggestions would be really appreciated! 

Thank you for responding, Bob! I was actually able to find this post, http://forums.adobe.com/message/4155119#4155119 which explained the issue I was having, though unfortunately did not offer a workable solution.
Do you know if there is a plan in place to allow for both fixed-positioning and HTML anchors to work together within a Web Content Overlay? Thanks again!

Similar Messages

  • JLabel with HTML visible only for the first time

    I've implemented a really simple applet:
    public class TestApplet extends JApplet {
      @Override
      public void init() {
        try {
          SwingUtilities.invokeAndWait(new Runnable() {
            public void run() {
              JPanel topPanel = new JPanel();
              topPanel.setLayout(new BorderLayout());
              getContentPane().add(topPanel);
              JLabel labelHello = new JLabel("<html>Hello World!</html>");
              topPanel.add(labelHello, BorderLayout.NORTH);
              JLabel labelHelloNoHTML = new JLabel("Hello World - without html!");
              topPanel.add(labelHelloNoHTML, BorderLayout.SOUTH);
        } catch (Exception e) {
          System.err.println("Couldn't initialize GUI");
    }And there are two html pages, both having the same applet and a link referring to each other:
    index.html
    <html>
           <head><title>Applet</title></head>
           <body>
                  <div><a href="link.html">Link</a></div>
                  <div>
                        <applet hspace="0" height="375" align="left" width="600" vspace="0" mayscript="" alt="GetJava" codebase="./"
                        code="com.test.TestApplet" name="TestApplet"></applet>         
                  </div>
           </body>
    </html>link.html
    <html>
           <head><title>Applet</title></head>
           <body>
                  <div><a href="index.html">Link</a></div>
                  <div>
                        <applet hspace="0" height="375" align="left" width="600" vspace="0" mayscript="" alt="GetJava" codebase="./"
                        code="com.test.TestApplet" name="TestApplet"></applet>         
                  </div>
           </body>
    </html>Now when I navigate to index.html the applet shows correctly both labels but in case I jump to link.html the applet shows only the second label i.e. Hello World - without html! . This seems to be specific to Java version 1.6.0_21 and 1.6.0_22, it was working properly in 1.6.0_17. Is anyone else experiencing similar issue or am I missing something?
    Edited by: user13135196 on Nov 25, 2010 4:33 AM
    Edited by: Slavek Tecl on 25.11.2010 13:12

    I am having this exact same issue. I have a JLabel with <html> for superscript in my JApplet. The first time I run my applet it displays fine. All subsequent times (refresh the page, or close the tab then open again) the JLabel with <html> doesn't show. This issue does NOT occur in the Eclipse Applet Viewer, but does occur with Google Chrome9 and IE8.
    I spent forever checking my methods and changing things trying to figure out why all the other labels show. Never would have guessed <html> in a JLabel would make it not display. This is terrible bug. Please fix ASAP.

  • JEditorPane, href tag jump. How?

    Hello folks,
    Currently I am working on a system which will display the user manual on a JEditorPane component. The manual's text is retrieved from databases and a html text is created from the text. I use the JEitorPane.setText(html) to display the html. Now the problem is with the tag jump within the html page. The html page is shown as I want it to be. The page has at the begging:
    <a name="top"></a>
    and at the bottom of it:
    BACK TO TOP
    So user can click on the "BACK TO TOP" to go back to the top of the page.
    The problem is with hyperlinkListener's hyperlinkUpdate method. When I click on the "BACK TO TOP" link on the page, this event handler is called and fillay the "pane.setPage(e.getURL());" part is called. Now e.getURL() returns null. What should I do to get this thing work like I want it to?
        void hyperlinkUpdate (HyperlinkEvent e) {
            if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) {
                JEditorPane pane = (JEditorPane) e.getSource();
                if (e instanceof HTMLFrameHyperlinkEvent) {
                    HTMLFrameHyperlinkEvent evt
                            = (HTMLFrameHyperlinkEvent)e;
                    HTMLDocument doc = (HTMLDocument)pane.getDocument();
                    doc.processHTMLFrameHyperlinkEvent(evt);
                } else {
                    try {
                        pane.setPage(e.getURL());  // L@@K here!
                    } catch (IOException ex) {
                        ex.printStackTrace();
        }Thanks,
    Yoshi

    Try this
    best regards
    Stas
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.text.*;
    import javax.swing.text.html.*;
    import javax.swing.event.*;
    public class Test
    JFrame frame;
    JEditorPane ta;
    public static void main(String args[])
    new Test();
    public Test()
    frame = new JFrame();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    ta = new JEditorPane();
    ta.setEditorKit(new HTMLEditorKit());
    ta.setEditable(false);
    HyperlinkListener lst=new HyperlinkListener() {
    public void hyperlinkUpdate(HyperlinkEvent e) {
    if (e.getEventType()==HyperlinkEvent.EventType.ACTIVATED) {
    String descr=e.getDescription();
    if (descr.length()>0) {
    descr=descr.substring(1);
    HTMLDocument doc=(HTMLDocument)ta.getDocument();
    Element text=doc.getElement(descr);
    ta.setCaretPosition(text.getStartOffset());
    ta.addHyperlinkListener(lst);
    ta.setText("<HTML><BODY><A HREF=#100>test</A><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><A href='' ID=100>100</A></BODY></HTML>");
    JScrollPane scroll=new JScrollPane(ta);
    frame.getContentPane().setLayout(new BorderLayout());
    frame.getContentPane().add(scroll,BorderLayout.CENTER);
    frame.setSize(300,200);
    frame.setVisible(true);

  • How can destroy Java Plug - in when i jump to another page without Applet

    When I jump to another HTML page, that not include <Applet> </Applet> tag, the Java Plug-in does not exit and use system's resource. I don't want it make my computer run slow then I want sutdown the Java Plug-in when I stop the page, that have an Applet.

    Hi dekassequi:
    Sorry if I misunderstood the problem......I've never tried swing set because it requires the JVM plugin. All my applets are non-swing and I've noticed that frequently when I exited the browser, it would be stuck in a never-never land requiring ALT-CTRL-DEL to end the browser's task. By overriding the destroy a the call to system.exit seems to have solved my problem -- if there is any error message in the system console, it is not noticeable because it disappeared instantenousely when the browser's own JVM is used.... Besides, destroy is the last thing an applet does anyway....without looking at Java source code, I can only surmise that that's what it does
    As a matter of fact, I've just tried to write some stupid swing applet but I've noticed that one cannot really script an applet that requires a Sun JVM. Here is a link, perhaps you can take a quick look and see if I'm doing something wrong.
    http://home.attbi.com/~aokabc/test/test2.htm
    BTW, I did notice late last night that overriding the destroy method in an applet that requires a JVM plugin does give an error message in the system console which takes a bit longer to close but you know what, at least it got rid of the console afterward -- otherwise, the console just sit in the tray and ALT-CTRL-DEL can't even get rid of it. In the mean time, I'll simply remove the system.exist(0) and leave a skeleton destroy method and see if the JVM console still sit in the system tray.
    Regards,
    V.V.

  • Can I edit the HTML version of DHTML text?

    Hello,
    I'm having a formatting issue with my drop-down hotspot text that I cannot edit in Design mode. Let me explain my problem:
    I have a bulleted list, 3 bullets, each bullet is a hotspot. Within the hotspot text box, I have numbered procedures in all 3 cases. However, when I view my page (using the eye glasses icon), my numbers have turned into bullets! I don't want this -- I want my numbered procedures in the hotspot text to remain numbered, but since I cannot see the problem in the hotspot text box, I cannot change it. Sometimes, when editing topic text, you can jump to the HTML to fix <span> issues (font changes, spacing. etc.). But, I cannot seem to edit the hotspot text in the same way. Does it reside in a different file from the topic? It's an odd problem...I think this is the first time I'm seeing it.
    Thank you very much for your help!
    TabbyW

    If you highlight one of your DHTML Dropdowns and go in the Truecode (or HTML tab in RH7 or later) you'll see a reference to a tag with something like:
    <a class=dropspot x-use-popup=#POPUP78861142
    Take a note of the popup number (78861142 from the above example) move to the top of the HTML and do a find for the number. You'll find a tag with something like:
    <div class=x-popup-text id=POPUP78861142
    which is the HTML for your dropdown. Look in there to see what is going on. Having your own style wouldn't make a difference unless it is not coded to do what you want ;-)
    The exact HTML code may differ if you are using RH7 or later.
    Read the RoboColum(n) for mutterings on RoboHelp, Technical Communication Suite and technical communication.

  • Using JavaScript & Dynamic Lists - ?? need help

    Hello all! Sorry to post this under an unrelated topic (JSP & JSTL), but there wasn't a JavaScript forum.
    Anyway, before I ask my questions...read the following:
    You'll find the code for my example at the end of this post. Also, I've posted my code as html pages in here...but my original code was in the form of servlets.
    Here's what I wanted to accomplish:
    1) html page has a form with two select lists
    2) select one option from the first select
    3) javascript code takes care of populating the 2nd list with options stored in an array, based on the first selection made in the 1st list.
    4) each <option>'s value is set to the page hello.html
    Piece of cake! That all works, but here's the real issue:
    Let's say you click on an option from the 1st <select> list, which populates the 2nd <select> list with some options. You then click on the 2nd box, select an option, and it jumps to hello.html.
    Now you press the back button - here are some things I observed:
    First, let me note, that for my example, I'm using car makes for the 1st list, and car models for the 2nd.
    * notice that only the 1st select list is still showing the selection you made, but the 2nd one shows nothing. Plus, when you click on the 2nd list, all that is shown is, in my example, "Then a Model". Not the original options that populated this list, when you had selected a car make from the first.
    *also, if you select "Then a Model" in the 2nd, it will error out, because there isn't a link set for that option. I would actually prefer that the page doesn't jump anywhere if "Then a Model" was to be selected. But I can probably fix that later.
    * If you try to select the car make you had previously selected again in the 1st menu, it still shows the same thing in the 2nd. Not the car models that it showed you when you had first run the example.
    *) You can get the model options for, just for example, "Acura" back into the 2nd, but you would have to select Audi or BMW and then select Acura again.
    *) if you select the "Select a Make" option in the 1st, it doesn't display "Then a Model" in the second as I would like. But I can probably fix that later.
    Now, here are my questions:
    1) Does anybody know how I can keep the selections "selected" in the page, when a user comes back to it when they press the "back" button?
    2) Do I have to store the options selected somewhere, so the page "remembers" what was selected?
    3) Would it help if I used session tracking?
    I was told that the problems I've described are because I've implemented a dynamic listbox.
    The value is supposed to be lost if I move to the next page and then click back. Would any of you agree?
    Any ideas/suggestions at all would be very much appreciated!
    ************************ HERE'S THE CODE **********************************
    This is dynamiclists.html I've commented it probably more than necessary for all you skilled JavaScript programmers, but I thought it would help to have an explanation for each piece of code.
    <html>
    <head>
    <script language=javascript>
    //here I create the multi-dimensional array to hold my
    //values for each make and model to be put into the
    //lists
    var cars = new Array();
    cars['Acura'] = new Array('Legend');
    cars['BMW'] = new Array('740i');
    cars['Audi'] = new Array('A4');
    //method used for my onChange event in the first select list (Make)
    //method accepts the value of the selected index
    function createModel(makeName) {
    //variables used for short-cutting to form elements
    //references the form
    var myform = document.selections;
    //Make selection list
    var Make = myform.Make;
    //Model selection list
    var Model = myform.Model;
    //holds the item selected in the first list -- ex. Acura or Audi
    var makeName = myform.Make.options[myform.Make.selectedIndex].value;
    //to be set to a new Option
    var theOption;
    //if Select a Make is selected, clear the Model select list, and just put
    // Then a Model in it
    if(Make.selectedIndex == 0) {
    Model.length = 0;
    Model.length = 1;
    Model.options[0].text = "Then a Model";
    Model.options[0].value="Then a Model";
    // if you select Acura from Make
    if(makeName == "Acura") {
    // fill first position in Model select list with the Then a Model, so the
    // user knows to select a Model after a Make
    Model.options[0].text = "Then a Model";
    Model.options[0].value = "Then a Model";
    // loop through the array elements that match makeName (which for example
    // could be Acura
    for(var i=0; i<cars[makeName].length; i++) {
    // create a new Option for each Model available
    theOption = new Option(cars[makeName], i);
    // put the Model into the Model select list starting at position 1, not 0 because
    // position 0 is taken up by Then a Model that was set above.
    // Thus why I put (i+1)
    Model.options[(i+1)] = theOption;
    // set each Model options link to hello.html, just for now.
    Model.options[(i+1)].value="hello.html";
    }//end for
    }//end if
    // repeat for BMW and Audi
    if(makeName == "BMW") {
    Model.options[0].text = "Then a Model";
    Model.options[0].value = "Then a Model";
    for(var i=0; i<cars[makeName].length; i++) {
    theOption = new Option(cars[makeName][i], i);
    Model.options[(i+1)] = theOption;
    Model.options[(i+1)].value="hello.html";
    }//end for
    }//end if
    if(makeName == "Audi") {
    Model.options[0].text = "Then a Model";
    Model.options[0].value = "Then a Model";
    for(var i=0; i<cars[makeName].length; i++) {
    theOption = new Option(cars[makeName][i], i);
    Model.options[(i+1)] = theOption;
    Model.options[(i+1)].value="hello.html";
    }//end for
    }//end if
    }//end createModel
    // this is for the onChange event in the Model selection list.
    // this takes care of the jump when you click on a Model.
    // you will be taken to hello.html, which has been set in each option above
    function MM_jumpMenu(targ,selObj,restore){
    eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"';")
    if (restore) selObj.selectedIndex=0;
    </script>
    </head>
    <body>
    <form name="selections">
    <select name="Make" onChange="createModel(this.options[this.selectedIndex].value);">
    <option value="Select Make" selected>Select Make
    <option value="Acura">Acura
    <option value="BMW">BMW
    <option value="Audi">Audi
    </select>
    <select name="Model" onChange="MM_jumpMenu('parent',this,0)">
    <option value="Then a Model" selected>Then a Model
    </select>
    </form>
    </body>
    </html>
    ***************************** END OF DYNAMICLISTS.HTML ***********************************
    Here's my simple hello.html
    <html>
    <body>
    Hello to all!
    </body>
    </html>

    I have a html:
    <html>
    <head>
    <script>
    var store = new Array();
    store[0] = new Array(
         'labas11',
         'labas12',
         'labas13');
    store[1] = new Array(
         'labas21',
         'labas22',
         'labas23');
    // Funkcija skirta dedant naujienu
    // irasa formuoti sarasa kuriems vartotojams bus siunciama zinute
    function populate()
         var box = document.forms[0].first;
         var number = box.options[box.selectedIndex].value;
         if (!number) return;
         var list = store[box.selectedIndex];
         if (list.length==null) return;
         var box2 = document.forms[0].second;
         box2.options.length = 0;
         for(i=0;i<list.length;i++)
              box2.options[i] = new Option(list,list[i]);
    function addGroup()
    var box = document.forms[0].first;
         var number = box.selectedIndex;
         if (number>-1)
    document.forms[0].third.options[document.forms[0].third.options.length]=new Option('[G] '+box.value,document.forms[0].third);
    function addUser()
    var box = document.forms[0].second;
         var number = box.selectedIndex;
         if (number>-1)
    document.forms[0].third.options[document.forms[0].third.options.length]=new Option('[V] '+box.value,document.forms[0].third);
    function removeOne()
    var box = document.forms[0].third;
         var number = box.selectedIndex;
         if (number>-1)
    box.remove(box.selectedIndex);
    function removeAll()
    // alert(document.forms[0].third.options[0].text);
    var box = document.forms[0].third;
         box.options.length=0;
    function selectToList()
    //this code selects all the elements in the select field
    for(var i=0;i<document.forms[0].third.length;i++)
    document.forms[0].third.options[i].selected=true;
    alert(document.forms[0].third.options[i].text);
    </script>
    </head>
    <body>
    <form action='servlet/List' method=Post>
    <select size=4 name="first" style="width:200px" onchange="populate()">
         <option value="0">html</option>
         <option value="1">css</option>
    </select>
    <select size=4 name="second" style="width:200px">
    </select>
    <select size=4 name="third" style="width:200px" multiple>
    </select>
    <input type=submit value=spausk onClick="selectToList();" />
    </form>
    <table>
    <tr><td><button onclick="addGroup()"> &#302;d&#279;ti grup&#281; </button></td></tr>
    <tr><td><button onclick="addUser()"> &#302;d&#279;ti vartotoj&#261;</button></td></tr>
    <tr><td><button onclick="removeOne()"> �alinti </button></td></tr>
    <tr><td><button onclick="removeAll()"> I�valyti </button></td></tr>
    </table>          
    </body>
    </html>
    and servlet:
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class List extends HttpServlet
         public void doPost(HttpServletRequest request, HttpServletResponse response)
         throws ServletException, IOException
         { doAction(request,response);}
         public void doGet(HttpServletRequest request, HttpServletResponse response)
         throws ServletException, IOException
         { doAction(request,response);}
         public void doAction(HttpServletRequest request, HttpServletResponse response)
         throws ServletException, IOException
              response.setContentType("text/html;charset=windows-1257");
              PrintWriter out = response.getWriter();
         String[] strArray=request.getParameterValues("third");
              out.print("Value: "+strArray[0]);
    So what is wrong because servlet prints bad value [object]
    Thanks

  • Anyone able to play these files?

    I thought I could play most any streaming media file by now, and I probably can, but there are exceptions:
    http://www.aftenposten.no/webtv/?id=12324
    Are there any multimedia experts here who can play this in Arch? If so, I would be very interested in finding out what I am am missing in my setup...

    MEEP. That site is... agh.
    Anyway, once all the navigation buttons (form submit buttons ) were done loading I jumped into the HTML that was... one gigantic line of text. eep.
    That done, I located the video control (amazingly)... and found that the video is in an iframe. Agh.
    Once in the iframe, I found that the video is actually a WMV; I know of no way to play such a video inside a webpage.
    Your best bet is to position the mouse over the 'Click here to download plugin' white area, point to 'This Frame', select View Frame Source, find the mms:// link inside the page source, and pass this URL to mplayer.
    You could get fancy with scripting, but that would be the easiest solution.
    -dav7
    Last edited by dav7 (2008-12-26 15:11:49)

  • Calling javascript from java

    I am not able get the javascript funtion executed.
    Pl. help me.
    A Javascript function is called from Java by using the showDocument method. A URL is needed with "javascript:" as the protocol.
    [Java applet] import java.applet.*;
    import java.net.*;
    public class inJava extends Applet{
    public void init(){
    String msg = "We will jump to an HTML tag";
    try {
    getAppletContext().showDocument
    (new URL("javascript:doAlert(\"" + msg +"\")"));
    getAppletContext().showDocument
    (new URL("javascript:jumpTo(\"#JUMP\")"));
    catch (MalformedURLException me) { }
    [Javascript and HTML] <HTML><HEAD></HEAD><BODY>
    <SCRIPT>
    function doAlert(s) {
    alert(s);
    function jumpTo(tag) {
    self.location=tag;
    </SCRIPT>
    <APPLET CODE="inJava.class"
    NAME="myApplet" MAYSCRIPT
    HEIGHT=400 WIDTH=10>
    </APPLET>
    <P>
    <A NAME="JUMP">jump here from Java via Javascript</A>
    </BODY>
    </HTML>
    Thanks
    vema

    Vema,
    you cannot go this way. Let me copy/paste the piece of my code:
    JSObject.getWindow( applet ).call( "open", new String[] { /* list of parameters of 'open()' function */ });
    vpanasenko_even

  • The three problems about flex

    1, memory release:
    There are two swf file:1.Swf, 2.swf.After i load 1.swf by
    ModuleLoader,i load 2.swf, but 1.Swf is memory, have not been
    removed, how the release of Memory is out. Remove and use of
    mandatory release, memory or not the release of swaps. How the
    experts handle it ?
    2, focus
    Firefox browser, the first load, how can access to
    focus.every page,the focus will be used, it was made the focus of
    public control Mody, what ideas can make reference to Mody?
    3, navigateToURL
    In the flex, so the two application, respectively a.mxml,
    b.mxml. In a.html, according to the enter key on your keyboard
    through navigateToURL to Jump to b.html, Jump in the process, there
    will be some white, to b.html pages before, I how to remove the
    white, or can be The other change to white color?
    Thanks

    up

  • When is Apple going to start working with ADOBE and let us enjoy some videos and other things on our beloved iPads and iPhones?

    When is Apple going to start working with ADOBE and let us enjoy some videos and other things on our beloved iPads and iPhones?

    How totally clueless can one be?
    Apparently not more than you.
    Adobe has given up on mobile flash for any device. They announced this a while ago.
    They admitted mobile flash is a disaster and are jumping on the HTML 5 bandwagon.
    Adobe has moved on, why can't you?
    http://www.technobuffalo.com/mobile-devices/adobe-announces-the-end-of-flash-pla yer-for-mobile-devices/
    http://latimesblogs.latimes.com/technology/2011/11/adobe-to-end-mobile-flash-plu g-in-development.html

  • PrintScreen() Function Causes EXE to QUIT

    Hi -
    We've been using the PrintScreen() function in a CALC icon to give the participant the ability to print a report that is displayed on the screen.
    We've been able to successfully use it on a number of computers, with the challenge being that an 800x600 screen size prints small on an 8.5x11 inch piece of paper.  In most cases, by changing the page settings on the printer, we can get it to fill the page (depending on the printer and available print setting options).
    Here's the challenge:
    At one site, clicking on the Print Screen button (which contains the CALC and the PrintScreen() funtion) brings up printer settings and in this case it appears the printer may not be set up correctly....the user changes to select a new default printer...and when returning to the Authorware file they click on the Print Screen button again and it quits the Authorware program.
    It's my understanding that the PrintScreen() function will print to the default printer with the default settings.
    In cases where we had no printers at all installed, we get an Authorware warning...but can continue fine and the program does not quit. (It just doesn't print which makes sense.)
    Apparently, they were running the EXE file over a network, so I suggested they put it directly on the hard drive.  They say that the program still quits even if it is run from the hard drive.
    Any suggestions as to what would cause it to quit?
    Here are my thoughts so far:
    1.  Could there be any virus protection software that is considering the attempt to 'PrintScreen' as something 'suspicious' and it's closing the file?
    2. Does the default printer get stored in Authorware's memory somehow while it's running, and the process of trying to change the printer causes it to quit?
    3.  Is there a better way to try to provide a printed report from Authorware than the PrintScreen function?
    Thanks -
    Scott

    I use this feature to jump to an HTML file that is provided with the course.
    When it's time to print, I read in the HTML file with ReadExtFile.
    In the HTML I have already embedded some text that is to be replaced at runtime, with some simple tagging, e.g.
    Congratulations , you have completed the course with a passing score of %
    In Authorware I use replace functions to replace the text with the actual values stored in Authorware, for e.g.
    Html:=Replace("", userName)
    Then I write the HTML file to the user's profile folder, and use JumpPrintReturn to print it.
    The erase the HTML file.
    HTH
    Steve

  • Jump to a Named Anchor when loading an HTML doc

    I have a CollapsiblePanel with a Content Link to a Named
    Anchor in info.html and I thought I could use loadURL() to load the
    page into the Div "thetext" but it does not work. Can Spry Jump to
    a Named Anchor when it loads an HTML doc?
    onClick:
    Spry.Utils.updateContent('thetext',
    '/information2.php#Insurance')
    And I also tried:
    Spry.Utils.loadURL('thetext', '/information2.php#Insurance')
    The Head:
    <script src="SpryAssets/SpryCollapsiblePanel.js"
    type="text/javascript"></script>
    <link href="SpryAssets/SpryCollapsiblePanel.css"
    rel="stylesheet" type="text/css" />
    <script language="JavaScript" type="text/javascript"
    src="Spry_P1_6_10-01/includes/SpryData.js"></script>
    <script language="JavaScript" type="text/javascript"
    src="Spry_P1_6_10-01/includes/SpryEffects.js"></script>

    On 08 Oct 2007 in macromedia.dreamweaver, antonioconte wrote:
    > Does anyone know if and how its possible to jump to a
    named anchor?
    > I need to use the behavior panel to call a page into a
    pop up and
    > jump to an anchor too - is this possible?
    Sure - just make the link to the anchor:
    <a
    href="page.php#anchor"
    onclick="popupscript('page.php#anchor');return false;">
    Open my popup window</a>
    Making the link attribute (href=) the same as the popup
    window means that
    people who are visiting your site with javascript turned off
    will also
    get the information from the page. The 'return false' in the
    onclick
    event means that the href won't fire if javascript is turned
    on.
    Joe Makowiec
    http://makowiec.net/
    Email:
    http://makowiec.net/contact.php

  • Controlling a Spry HTML panel with a Jump Menu

    Hi, I wonder if anyone can help.
    I've implemented a HTML panel within a page to display different page elements and have it working no problem with a simple href and an onClick event but I would like to control what is displayed by using a jump menu (drop down list) - any idea how I can control that to populate the necessary DIV?
    eg: <select name="site" size=1 onChange="hpanel.loadContent(this.href); return false;"> (obviously this doesn't work!)
    Thanks in advance
    Neil

    It works fine, but your pages arent found;
    http://www.thedesignforge.co.uk/clients/elsevier/laure/v2/dollar_rates.html
    See its missing.
    But
    http://www.thedesignforge.co.uk/clients/elsevier/laure/v2/dollar_rate.html
    Exists. So it seems to me you are linking to a incorrect file.

  • HTML Jump produces error

    RoboHelp6 for WORD
    Windows XP
    Creating WinHelp2000 project
    When I create an "HTML Jump" in Word and set the following
    properties, I get the following results:
    1. Display in WinHelp, specify URL - works
    2. Display in Browser, specify URL - error
    3. Display in WinHelp, specify local HTM file - error
    4. Display in Browser, specify local HTM file - error
    There error is always "An error exists in this Help file.
    Contact your application vendor for an updated Help file. (1024)"
    What am I missing?

    Found it.
    Needed to add extensions for the project build for the
    required DLLs. I selected all.

  • HTML Jump Causes Error

    Hi,
    I have my HTML jump set up in a Word Document. I've double
    checked the http: location, and it is correct. When I click on the
    jump in the finished product I get the following error:
    "An error exists in this help file. Contact your application
    vender for an updated help file. (1024)"
    Is this familiar to anyone?

    Found it.
    Needed to add extensions for the project build for the
    required DLLs. I selected all.

Maybe you are looking for

  • HP LaserJet 4MP jobs stopped message

    I realize that many people have had this issue, but I haven't seen my specific situation in the discussions archives, so here goes: My old LW 4/600 died recently. It was connected to my G4 "Pixar" iMac, OS X 10.4.11, via an AsanteTalk bridge Ethernet

  • Add field in an internal table

    Hi There, How to add a field in an internal table created at the runtime using CREATE DATA D1 TYPE TABLE OF (VAR). where say var contains name of a DDIC table. Rgds, deb.

  • SPNego still allowing non Kerberos Logons

    After exhaustive searches and attempts, I thought I had the SPNegoLoginModule installed.  These are the steps that I have followed. 1.     Created a service user in the user directory used by the KDC. 2.     Created the keytab file and transferred it

  • Printing versus Exporting PDF differences

    I'm trying to export a pages version of business cards (Avery5371 format) to PDF so I can have it printed at Staples.  Interesting enough, the results I get differ between using Print>PDF, and export to PDF (which differ by the quality selected).  In

  • Vendor Prepayment - Config settings

    Hi Friends, Could you please list , Vendor Prepayment config steps?? I am configuring it under MM-LIV - Incoming Invoice - Prepayment Regards, Jackie