Advanced HTML Document use

Ok, I'm using an HTML Document in my Java Applet Jabber client. Currently I'm using an HTML Document for the chat area. What I'm lacking is the ability to turn html on/off or put in text that contains actual HTML without parsing it out.
I've tried replacing the < and > 's with > and < but to no avail. This simply removes the hats or whatever they're called and everything between them completely from the content of the document. I've tried using the whitespace attribute of css which also did not work. I've tried 'pre' tags, and I've tried closing the html tag and re-opening it. I tried changing the content type of the document. None of these have worked, they simply remove the html or the entire text altogether. I'm guessing I either have to modify the parser or play with the actual objects of the html.
Here's how I'm inserting the html(this is the only way I could get it to work).
int start = doc.getLength();
chatPane.setCaretPosition(start);
inserter = new HTMLEditorKit.InsertHTMLTextAction(null,"<font color='"+nameHTMLColor+"'>"+from+"</font><font color='"+messageHTMLColor+"'>"+Static.decodeChat(message, htmlEnabled)+"</font>",HTML.Tag.BODY,null);
inserter.actionPerformed(new ActionEvent(chatPane,ActionEvent.ACTION_PERFORMED,null));
int end = doc.getLength();
chatPane.setCaretPosition(end);
Thanks for your time.
--Zephryl                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

hehe... I did, "I've tried replacing the < and > 's with > and < but to no avail." Sorry, the forum decoded the escapes.

Similar Messages

  • Using .xsl in javascript for portal .html (document iview)

    Hi,
    I prepared .html document has javascript code in it.
    Javascript code uses activex object to process .xsl for xml operation.
    I used html document in document iview but problem occured.
    I think activex object cause the problem or i gave wrong address  for xsl document.
    If i place xsl document in same folder with html document, how can it be addressed (xsl path)?
    Is there sample html document using javascript code that uses xsl and activex object in it?
    And is it tested as document iview with no problem?
    Thanks.

    I just completed designing a website for my restaurant using Dreamweaver 8. I included my menu as part of the website and now wanted to print it for customer use in the restaurant. The document is in html format.
    You can only print your source code from Dreamweaver. I don't have DW8 installed anymore, but i think it's: File > Print (or Print Code).
    If you want to print how it looks with the HTML rendered, then print it from a browser.
    HTH,
    Randy

  • Could not parse well-formed HTML 4.01/XHTML 1.0 document using JDOM

    Hi All,
    I am having difficulty reading two well-formed HTML document using JDOM when running offline (not on the Internet). The first few lines of these documents are listed below:
      1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
      2 <!-- saved from url=(0044)http://www.mongabay.com/igapo/zipcodes/CA.htm -->
      3 <HTML xmlns="http://www.w3.org/1999/xhtml"><HEAD><TITLE>Cities and Towns in California starting with A - Zip codes United States of America</TITLE>
      4 <META http-equiv=Content-Type content="text/html; charset=UTF-8">
      5 <META
      6 content="california, cities, towns, villages, list, zipcodes, postal codes, us, ca"
      7 name=keywords>
      8 <META
      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3 <head>
      4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
      5 <meta name="keywords" content="8024, california, postcode, map, america, postal code, alabama Hills, Adelaide, Aberdeen, la, la, california" />
      6 <meta name="description" content="93545 zip code for Alabama Hills, Adelaide and Aberdeen (LA), California (CA) with map and local information." />
    The Java snippets that references these documents (local files) is as follows:
    1      public static void main(String[] argv) 
    2       {
    3            File zipcodefile = new File("C:\\TEMP\\Zipcodes Listing for California.txt");  // former
    4            //                                                     or
    5            File zipcodefile = new File("C:\\TEMP\\Zipcodes Listing for California  - 93545 - Los Angeles, CA.txt");  // later
    6            try
    7            {
    8                SAXBuilder saxBuilder=new SAXBuilder("org.apache.xerces.parsers.SAXParser");
    9                // saxBuilder.setValidation(false);
    10              org.jdom.Document  doc = saxBuilder.build(zipcodefile);
    11              System.out.println(doc.getContent());
    12              System.out.println(doc.getDocType());
    13              ....( i ) This program would does not work even while it was running on-line (has Internet access). The execution process would exit on line 10 but not sure whether it completes it or not. Don't understand why though?
    ( ii ) What is the difference between the two files as far as the format goes? I thought HTML 4.01 is equivalent to XHTML 1.0? In other word, they are already well-formatted and so they can be parse directly by an XML parser such as Xerces. In other word, it is not necessary to use tool such as Tidy to convert to clean up missing tags?
    ( iii ) why are the tags in the former file in capital? Do parsers in general distinguish tags in capital compared to lower case?
    I am very new to XML parsing and would appreciate some guidances.
    Thanks a lot,
    Jack

    Hi,
    I am following a possible solution (http://devdiary.motime.com/post/471628/Why+implement+your+own+EntityResolver?) on how to redirect references to entities within an XML document to a local file but do not understand why it is not picking up the parsing file (former). Below is a complete change of ZipcodeTidy2JDomParser to include my own EntityResolver:
    1  public class ZipcodeTidy2JDomParser {
    2     public static void main(String[] argv) {
    3         try {
    4             File zipcodefile = new File("C:\\TEMP\\File zipcodefile = new File("C:\\TEMP\\Zipcodes Listing for California.txt"); // former
    5             SAXBuilder saxBuilder = new SAXBuilder(false);
    6             saxBuilder.setEntityResolver(new EntityResolver() {
    7             public InputSource resolveEntity(String publicId, String systemId) {
    8                 try {
    9                     if (systemId != null && systemId.endsWith(".dtd")) {
    10                         return new InputSource(getClass().getResource("E:\\Temp\\Software Development\\Download\\Forum\\html-loose.dtd").openStream());
    11                     }
    12                 }
    13                 catch (IOException e) {
    14                     e.printStackTrace();
    15                 }
    16                 return null;
    17               }
    18             });
    19             InputStream is = new FileInputStream(zipcodefile.getName());
    20      //     InputStream is = new FileInputStream(zipcodefile);
    21             Document document = null;
    22             try {
    23                 document = saxBuilder.build(is);
    24     //          document = saxBuilder.build(zipcodefile);
    25             }
    26             catch (JDOMException e) {
    27                 e.printStackTrace();
    28             } catch (IOException e) {
    29                 e.printStackTrace();
    30             }
    31             finally {
    32                 if (document == null) return;
    33             }
    34             System.out.println(document.getContent());
    35             System.out.println(document.getDocType());
    The output from running ZipcodeTidy2JDomParser is:
    java.io.FileNotFoundException: Zipcodes Listing for California.txt. (The system cannot find the file specified)
            at java.io.FileInputStream.open(Native Method)
            at java.io.FileInputStream.<init>(FileInputStream.java:106)
            at java.io.FileInputStream.<init>(FileInputStream.java:66)
            at JDOMXPath.ZipcodeTidy2JDomParser.main(ZipcodeTidy2JDomParser.java:19){code}
    Could any see where this issue is coming from?
    The author of the same thread suggest that line 5 should add an extra parameter (SAXBuilder saxBuilder = new SAXBuilder(false, "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd"). However, the SAXBuilder constructor does not accept the second paramter. Any ideas?
    Many thanks,
    Jack                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Problem in loading external HTML content using SpryHTMLDataSet in Firefox

    I have a very simple placement of the contents of an HTML DIV within a subsidiary HTML file (statespecificassets.html) into a main HTML document, using SpryHTMLDataSet in Dreamweaver CS4.
    The relevant bits of code in the main HTML doc:
    In the header:
    <script src="../../SpryAssets/SpryData.js" type="text/javascript"></script>
    <script src="../../SpryAssets/SpryHTMLDataSet.js" type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    var ds1 = new Spry.Data.HTMLDataSet("../../statespecificassets.html", "NN_Data_s3a");
    ds1.setColumnType("column0", "html");
    //-->
    </script>
    And at the point of inclusion of the external DIV:
    <div spry:region="ds1" class="StackedContainers">
             <div spry:repeat="ds1" class="RowContainer">
                <div class="RowColumn" style="background-color: #D7DF21;">{column0}</div>
             </div>
          </div>
    The problem: This works fine in Safari 4.0 on a Mac, and IE7 on a PC. It doesn't work in Firefox 3.0.11 (latest version) on Mac or PC: In firefox the reference content simply doesn't load. The only way I can get it to work in Firefox is if I place the main HTML doc and its subsidiary reference HTML file in exactly the same directory/ on the same level, and adjust the script reference accordingly ( var ds1 = new Spry.Data.HTMLDataSet("statespecificassets.html", "NN_Data_s3a"); ) ...But I can't/ don't want to alter my directory structure, because multiple files in other directories will need to use the reference file.
    Is there some other way of making it all-browser compatible -- possibly by adjusting a relevant bit of code in SpryHTMLDataSet.js in the Spry Assets? .. I've attached the SpryHTMLDataSet.js file for reference.
    Thank you to any kind soul who might have the nous to solve this.

    This is the latest version of SpryHTMLDataSet: http://labs.adobe.com/technologies/spry/preview/SpryHTMLDataSet.js
    Check out if works for, if not, please provide us with a online url.

  • Unable to open HTML documents saved with Firefox 3.0.6

    After downloading complete web pages using Firefox, I am unable to open the html document using Firefox in Linux (it is no problem with Opera). I consistently receive this Firefox error message:
    File Not Found
    The file /home/richard/Documents/ . . . cannot be found. Please check the location and try again.
    * Could the item have been renamed, removed, or relocated?
    * Is there a spelling, capitalisation, or other typographical error in the address?
    * Do you have sufficient access permissions to the requested item?

    Next you give Steve Jobs more money as he intended.

  • Opening HTML file using a Jbutton

    can anybody tell me how can I open an HTML file using a Jbutton.
    I have a help button on my menu of my GUI. I wanna open a html document using the help (jbutton)
    thank you

    call this class in your button action
    import javax.swing.JInternalFrame;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    import java.net.URL;
    import java.net.MalformedURLException;
    import java.io.*;
    import javax.swing.text.*;
    import javax.swing.JOptionPane;
    import javax.swing.BorderFactory;
    import javax.swing.border.*;
    import javax.swing.JDesktopPane;
    public class Taa extends JFrame implements HyperlinkListener{
         public JEditorPane hh;
         public JScrollPane ss;
    *Taa default constructor
    *@param Nothing
    *@return Nothing
    *@thorws nothing
    *@see descon
    public Taa(){
    //set top left image in the gui
    setIconImage(Toolkit.getDefaultToolkit().getImage("buttons/help.jpg"));
    try{
         File f=new File("Here you can put your html"such as"Help.htm");
         String s = f.getAbsolutePath();
         s = "file:"+s;
         URL url = new URL(s);
    hh=new JEditorPane(s);
    hh.setEditable(false);
    hh.addHyperlinkListener(this);
    catch (MalformedURLException e) {
         System.out.println("Malformed URL: " + e);
    catch (IOException e) {
         System.out.println("IOException: " + e);
         ss=new JScrollPane(hh);
         getContentPane().add(ss);
         setBounds(232,0,490,500);
         setResizable(false);
         show();
    *Implementation of HyperlinkEvent
    public void hyperlinkUpdate(HyperlinkEvent e) {
         if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) {
         linkActivated(e.getURL());
    *this method activate link
    *@param URL the URL
    *@return Nothing
    protected void linkActivated(URL u) {
         Cursor c = hh.getCursor();
         Cursor waitCursor = Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR);
         hh.setCursor(waitCursor);
         SwingUtilities.invokeLater(new PageLoader(u, c));
    *this class load help files
    class PageLoader implements Runnable {
    *Taa default constructor
    *@param Url the url,Cursor c
    *@return Nothing
    *@thorws nothing
    *@see descon
         PageLoader(URL u, Cursor c) {
         url = u;
         cursor = c;
    public void run() {
         if (url == null) {
              // restore the original cursor
              hh.setCursor(cursor);
              Container parent = hh.getParent();
              parent.repaint();
         } else {
              Document doc = hh.getDocument();
              try {
              hh.setPage(url);
              } catch (IOException ioe) {
              hh.setDocument(doc);
              getToolkit().beep();
              } finally {
              // schedule the cursor to revert after
              // the paint has happended.
              url = null;
              SwingUtilities.invokeLater(this);
         URL url;
         Cursor cursor;

  • How to parse a html document?

    I am trying to parse an html document that I load from a url over the internet. The html is not well formed but thats ok. The problem is the document builder throws an exception because the document is not well formed.
    Can I parse a html document using the document builder?
    Please note that I set validating to false and the parse still has a fatal errror saying <meta> tag must have a corresponding </meta> tag.
    I am using code like the following.....
    DocumentBuilderfactory = DocumentBuilderFactory.newInstance();
    factory.setValidating(false);
    DocumentBuilder db = factory.newDocumentBuilder();
    doc = db.parse(urlString);

    The html is not well formed but thats ok.No, it isn't.
    "Validation" means checking that the XML conforms to a schema or a DTD. Don't confuse that with checking whether the XML is well-formed, which means whether it follows the basic rules of XML like opening tags have to have matching closing tags. Which is what your message is telling you -- your file isn't well-formed XML.
    So sure, you can parse HTML or anything else with an XML parser, just be prepared to be told it isn't well-formed XML.
    If you want to clean up HTML so that it's well-formed XML, there are products like HTMLTidy and JTidy that will do that for you.

  • Using "advanced HTML"

    My apologies if this is in the wrong section. I am extremely
    new to Dreamweaver (and this particular forum). My prior experience
    is primarily with FrontPage 2000. I am trying to recreate my
    newspaper site — currently in FrontPage on a PC — in
    Dreamweaver on a Mac. I am recreating the pages from scratch rather
    than trying to open the FP pages in DW, as I suspect the code from
    FP is rather bloated.
    We have two things we like to place on the front page: a
    dynamic weather "sticker" from wunderground.com and an Amber Alert
    dynamic sticker that changes automatically when an alert goes out.
    In FrontPage, I place the supplied HTML as a component using the
    Advanced HTML feature, but I have not figured out how to apply this
    in Dreamweaver. I can get the stickers to show up on my page while
    I'm editing it in Dreamweaver, but they don't appear when I preview
    the page in Firefox.
    FWIW, in FrontPage, I can see the current weather sticker as
    I'm editing the page, but can't see the Amber Alert sticker until
    it previews in the browser. Any assistance or explanations would be
    most welcome!

    I don't know if this will help explain anything, but here is
    the HTML code I was given to recreate the weather sticker. I'm just
    not entirely sure how to implement it correctly.
    <!-- Start WxSticker -->
    <table cellpadding="0" cellspacing="0" style="width:
    271px; background-color: #FFF; border: 1px solid
    #999;"><tr><td colspan="2"><div style="height:
    35px;"><a href="
    http://www.wunderground.com/US/IL/Astoria.html?bannertypeclick=htmlSticker"><img
    src="
    http://banners.wunderground.com/weathersticker/htmlSticker1/language/www/US/IL/Astoria.gif "
    alt="" height="35" width="271" style="border:
    0px;"></a></div></td></tr><tr><td
    style="vertical-align: top;"><div style="width:
    101px;"><div style="height: 22px;"><img src="
    http://icons-aa.wunderground.com/graphics/smash/htmlsticker/html_linkT.gif"
    width="101" height="22"></div><div style="font-family:
    Geneva, Arial, Helvetica, sans-serif; font-size: 10px;
    background-image: url(
    http://icons-aa.wunderground.com/graphics/smash/htmlsticker/html_linkBG.gif);
    text-align: left;"><div style="padding-left: 10px;"><a
    href="
    http://www.wunderground.com/history/airport/KMQB/1972/1/1/PlannerHistory.html?PlannerFront Page=1&bannertypeclick=htmlSticker">Plan
    your trip</a></div><div style="padding-left:
    10px;"><a href="
    http://www.wunderground.com/radar/radblast.asp?ID=ILX&region=b4&lat=40.22734833&lon=-90.35 280609">Local
    Radar</a></div><div style="padding-left:
    10px;"><a href="
    http://www.wunderground.com/US/IL/Astoria.html?bannertypeclick=htmlSticker">Detailed
    Forecast</a></div><div style="height:
    12px;"><img src="
    http://icons-aa.wunderground.com/graphics/smash/htmlsticker/html_linkB.gif"
    width="101" height="12"></div></div><form
    action="
    http://www.wunderground.com/cgi-bin/findweather/getForecast"
    method="get" target="_blank" style="margin-top: 10px;
    margin-bottom: 0px; text-align: center;"><input type="hidden"
    name="bannertypeclick" value="htmlSticker"><div><input
    name="query" type="text" value="Find Weather"
    onFocus="this.value=''" style="width: 85px;"></div><div
    style="padding-top: 5px;"><input name="GO" type="submit"
    value="GO" style="width: 50px; background-color: #008; color: #FFF;
    font-size: 12px; font-weight: bold; border-top: 1px solid #CCC;
    border-left: 1px solid #CCC; border-right: 1px solid #000;
    border-bottom: 1px solid
    #000;"></div></form></div></td><td
    style="vertical-align: top;"><div style="height:
    139px;"><a href="
    http://www.wunderground.com/US/IL/Astoria.html?bannertypeclick=htmlSticker"><img
    src="
    http://banners.wunderground.com/weathersticker/htmlSticker2_cond/language/www/US/IL/Astori a.gif"
    alt="" height="139" width="170" style="border:
    0px;"></a></div></td></tr></table>
    <!-- End WxSticker -->

  • Wanting to open a HTML document in users default browser using Menu Items

    I have a couple of Menu items that I want to open up various HTML documents.
    menuHelpItem.addActionListener(new ActionListener()
         public void actionPerformed(ActionEvent evt)
    });I've seen a couple of 'solutions' to people asking about opening files, but none even compiled never mind ran. It's in my parent program, and any solution needing to throw IOException (lots of things annoyingly seem to) that'll mean the listeners need to which never seems to work. Even if it did though, the class would have to and so would all the others. Messy.
    Best I've done is open up a new JEditorPane based on the url of the HTML files, but this is definately not good enough as the font, layout, links are all screwed and if I could fix it, it would no doubt take longer than I have.
    So basically, say you have a button, how do you make it open "resources/SearchHelp.html"?

    "http://www.google.com"; //
    Interesting. I changed my code to this:
    private void showHelp(String url)
         try
              String[] cmd = new String[5];
              cmd[0] = "cmd.exe";
              cmd[1] = "/C";
              cmd[2] = "rundll32";
              cmd[3] = "url.dll,FileProtocolHandler";
              cmd[4] = PronunciationDictionary.class.getResource(url).toString();
              Process process = Runtime.getRuntime().exec( cmd );
         catch (IOException e)
              JOptionPane.showMessageDialog(this, "Unable to load help file. Please try again.", "Help - Dictionary A'la Lewis", JOptionPane.INFORMATION_MESSAGE);
    }and I printed out PronunciationDictionary.class.getResource(url).toString(); before trying it and that worked fine. I click on the buttons but nothing happens, no error which is good, but nothing else either, which is bad. I thought maybe I was just doing it wrong, so I tried replacing it with just http://www.google.com but same thing, nothing happened at all.

  • While reading PDF document using Speak Screen option, iBooks doesn't turn pages automatically

    I have been using the speak screen option in iOS 8 to read books and pdf documents in iBooks app. iBooks app turned pages automatically and kept on reading the screen till i updated my phone to iOS8.3. Now, the app stops reading the screen once the page is completed. I have to stop my vehicle, unlock phone, open iBooks app, swipe down with two fingers. It's irritating.
    Earlier, I have read dozens of books and pdf documents using this function while doing exercise or routine tasks. now it's not possible unless someone helps.
    Thanks for your support in advance.
    Mukesh

    @Mukeshnnms
    Unfortunately, I am having precisely the same issue since updating to iOS 8.3 with my iPhone 5s.
    I just filled out a bug report here > https://www.apple.com/feedback/iphone.html, which I've often read on these forums is the best way to get some resolution. I don't know if you read the list of "fixes" for 8.3 or not (here: iOS 8.3), but, it includes the following:
    "Fixes an issue in Speak Screen where speech will not start again after pausing"
    So...apparently, in fixing THAT problem, they broke something else. At least for some of us...
    <Note to self: WAIT even longer than usual to do updates, read about bugs first.>

  • Preview of HTML document in KM Navigation iView

    Hi all!
    I need your help. I would like to create layout set which would be able to display tree on the left side and preview of HTML document on the right side of content area. If I click on HTML document in the tree I need to see his preview. I thought that I can resolve this by "Explorer and Preview" profile. But unfortunely it doesn't work. Has someone any experience with the profile? Or can someone advice to me how create new layout set?
    I found this links, but they didn't help me much.
    http://help.sap.com/saphelp_nw04/helpdata/en/4e/02573d675e910fe10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/96/248cd68f23774fb74dfc18a2994d8f/frameset.htm
    Thank you in advance for any reply!
    Regards
    Zbynek

    Hi Saurabh,
    Using the presentation settings in Details can sometimes
    be tricky since it remembers the context of which iView
    called it. Make sure you open the details out of the iView
    in which you want the customizations to be in effect.
    Otherwise, changing it in the configuration is a
    bit more straightforward in its effects.
    Regards,
    Darin

  • Creating a new document using XQuery

    Hello everyone,
    I wondered if there was a way to create a new document using XQuery. What I am trying to do is to run a query on XML file and try to print the results in HTML for viewing purpose.
    The HTML is spitted out on DOS prompt. Instead I wanted to write that HTML to a file on disk. Is this possible with the XQuery tools provided by Oracle?
    Thanks in advance for all the help
    K

    Folks,
    Kinda answering to my question. Just send the DOS output to some file. Pretty Simple huh!
    Thankyou anyways
    K

  • HTML document

    Sorry, I am extremely new to actionscript. I have a little
    background in 2.0 but I am totally clueless about 3.0. All I want
    to do is make a button open a html document in the same window the
    .swf is in. I know that in 2.0 this would be: (or something like
    it)
    on (press) { geturl("blah.html")}
    I cannot figure it out in 3.0 though. First off, CS3 won't
    even let me put an action script in a button by selecting the
    symbol. That is how I used to do it in 8. Whenever I select the
    button it tells me action script can't be applied to that object.
    It will only let me put actionscript on the frame itself.
    Can anyone tell me what to do to get it to open an html
    document in the same window? I found the "navigateToURL ()" but I
    cannot figure out how to use the event dispatcher.
    Sorry for being so ignorant.

    First, you cannot place code on an object in AS3. Knowing
    where to place your code is the very first place you need to start
    when learning ActionScript. The next is variables, operators,
    conditionals, and events. Assuming you have a bit of grounding in
    AS2, all you'll need to brush up on is events, and how getURL is
    not done the same way anymore.
    Info on getURL in AS3 is here:
    http://kirupa.com/forum/showthread.php?p=1908351&highlight=geturl#post1908351
    Info on Events in AS3 is here:
    http://www.senocular.com/flash/tutorials/as3withflashcs3/?page=3#events
    I would also suggest you give yourself a good AS3 tutorial in
    the basics, to properly advance your knowledge of the fundamentals.
    There is a great tutorial on Senocular.com which is a good starting
    point:
    http://www.senocular.com/flash/tutorials/as3withflashcs3/

  • HTML Document: How to open in IE window without frame?

    Dear SDN members,
    We have created some HTML help documents for our ESS users. We added an icon to the different ESS WD iViews and when clicked, these icons link to the HTML file with the help text in it.
    Please see what I mean in the next screenshot:
    http://tweakers.net/ext/f/pq1y8uVy7mICDwDLU0LS4Foz/full.jpg
    My question is: How can I make sure that when the icon is clicked, the HTML document is opened in a new IE window, but without frame? So no toolbars, address, etc.
    Does anyone have an idea? Any help will be highly appraciated an points will be awarded.
    Thanks in advance and best regards,
    Jan Laros

    BUMP. Any suggestions?
    Ihave managed to fix this using JavaScript in a KM text document. This Script links to an HTML document with the correct texts. In the script I can give the properties of the popup, but this is not working on our QAS systems with Reverse Proxy and SSL configured. Any help is highly appreciated.
    Best regards,
    Jan
    Edited by: Jan Laros on Mar 4, 2008 2:24 PM

  • How to insert Transition object into html document

    Hello Friends,
    I am trying to insert Transition object ( downloaded from
    Extension) into HTML document.
    I tried Insert -> HTML -> Head Tags -> Transitions,
    but after doing all this I am not able to insert
    this extension in my document.
    As I am beginner to Dreamweaver, Can anyone pls. help me out?
    I am using Dreamweaver 8.
    Do I need to select <img> tag before inserting
    Transition Object?
    Pls. pls. help me out.....
    Waiting for reply.
    Thanks in advance for your help.

    When I used to do tabs I would set up a page that was as wide as the tab sheet including the tab, then add text frames in each tab position.

Maybe you are looking for