Linking to html files

Is it possible to copy a website built in Dreamweave (all the html files and images) into the folder my Muse site is in and create a link in my muse site to
this website?

What Im about to describe is difficult but I will do my best. First the company I work for has two web sites: one is the companies web site (the one I'm building in Muse), the other is a web site we provide for
our customers (built in Dreamweaver). The Dreamweaver site is basically just an online catalog without my companies name on it that our customers can call as there own site. They can use this site to sale our
products as there own. Ok, now currently-live on the web now the Dreamweaver site exists and the my companies site that is currently-live on the web now was built in flash. What I have done with the Flash
based site that "is working", is copied all the Dreamweaver files into the websit folder that contains the companies flash site, directed it to the start of this catalog with a link in this folder. So if someone does a search
for the Dreamweaver sites "name",  it doesn't show that it is linked to the companies site. The company wants this catalog on there site as well , they just don't want the two sites linking by name of the Dreamweaver site. So, if this makes some sort of sense to you, what I'm trying to do now is rebuild the "companies site" in Muse to reach a wider mobile audience and accomplish the same thing that's happening now. I'm currently
"in Muse" linking to the catalog that was built in Dreameaver that was put in the flash folder that is live now and when I publish it temporarily through Business Catalyst it works. However, I've redesigned the catalog in Dreamweaver site and I'm not sure how to link it now without tying it to the actual Dreamweaver site. I've dropped all the files into the Muse folder like I did before in the flash folder and linked to the first page of the catalog (html file) and when I click on the linke it opens with no images. I'm thinking there is a way since I've achieved this with flash. Just don't know if its a Business Catalyst thing and would work if I upload it live through the other web hoster via FileZilla or if I'm linking it wrong.
I think Vinayak Gupta might just have the solution for me by route of FTP. Just wanted to know if this would work before I lunched it live. I will re-read the other option he made via thru Muse and try that as well.
Still trying to figure out the PDF hang up as well.

Similar Messages

  • Multiple HTML-files in one stack / link another HTML-file in a stack

    Hi,
    I want to integrate a webapp (html/js) into a stack of a dps-folio. All the HTML works fine ... all no problem, but at clicking the first link on the initial HTML-document the next (local) HTML-File is opened in a slider with a "ready"/"Fertig"-bar at the top. But I want, that all html files are seamlessly loaded in the same view.
    At this point i found: http://help.adobe.com/en_US/digitalpubsuite/using/WS67cb9e293e2f1f60-8ad81e812b10bfd837-80 00.html and i made the file "NativeOverlays.config" and moved it to the described location. After that, the behaviour was correct in the desktop-preview-app of the DPS, but it still fails on the iPad-Adobe-Viewer.
    How can i link between HTML-files without any interuption or sliding?
    Thank you!
    Christian

    Hi Tim,
    Thanks for replying. I have looked for "PDFBookBinder class" in xml publisher user guide for ver 5.6.2. I didn't get any reference of this text. Can you please guide me to a tutorial/link where i can get more information about this class.
    Also, i originally thought of similar to your second logic, as my design basis. Oracle process generates the xml file in output directory which i can get. What i didn't get is how do i "pick them up and merge" using publisher. Also, is there way to do this merging process using pl/sql ? Can you please give little more information on your second approach.
    My original plan of action is that i will create a report set in which i will call oracle seeded report for all 7 payrolls in a sequential manner. Then using the child requests of the report set i will get to 7 xml files generated by seeded oracle process. Then the piece i am not sure of , i will use those 7 files to generate a single xml file having payroll name as tree top for each output. Once single xml is ready, i can easily design a template and register the process to generate output as Excel.This process will not require me to actually change any data or do any calculation. It will only reformatting the feilds we see and abiity to see all 7 payroll at one time rather then entering these numbers manually into an excel to do analysis.
    Please provide your feedback, if you think above plan is not feasible or need corrections.
    Best Regards,
    Ankur

  • How can i get all links from html file ?

    I tried some code:
    List<string> metas = new List<string>();
    string text = "";
    string mys = "";
    public List<string> LockedThreads(string filename)
    HtmlWeb web = new HtmlWeb();
    HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
    doc.Load(filename, Encoding.UTF8);
    var metaTags = doc.DocumentNode.SelectNodes("//meta");
    if (metaTags != null)
    foreach (var tag in metaTags)
    if (tag.Attributes["name"] != null && tag.Attributes["content"] != null)
    text = tag.Attributes["name"].Value;
    mys = tag.Attributes["content"].Value;
    var linksOnPage = from lnks in doc.DocumentNode.Descendants()
    where lnks.Name == "a" &&
    lnks.Attributes["href"] != null &&
    lnks.InnerText.Trim().Length > 0
    select new
    Url = lnks.Attributes["href"].Value,
    Text = lnks.InnerText
    foreach (HtmlNode node in doc.DocumentNode
    .SelectNodes("//a/@href | //img/@src"))
    metas.Add(node.Name);
    In the var linksOnPage i'm getting all the links but some of them not only links for example the first item i see:
    [0] = { Url = "/", Text = "&nbsp;&nbsp;&nbsp;&nbsp;" }
    Then the second item:
    [1] = { Url = "http://rotter.net/cgi-bin/forum/dcboard.cgi?az=login", Text = "התחבר" }
    Next i want to add another loop or variable that will contain only the links after im src for example:
    <img
    src="http://mysite.com"
    border="0"></a></TD><TD
    ALIGN="right"
    VALIGN="TOP"
    WIDTH="55%">
    So to get only http://mysite.com
    So in the end i will have two Lists:
    First List will contain all links from the html file.
    Second List only links that are in img src

    Ok i'm using regex now and i can get the links i need:
    List<string> metas = new List<string>();
    List<string> metas1 = new List<string>();
    string text = "";
    string mys = "";
    public List<string> LockedThreads(string filename)
    string[] fall = File.ReadAllLines(filename);
    foreach (string hh in fall)
    if (hh.Contains("http://rotter.net") && hh.Contains("locked")||
    hh.Contains("locked_icon_general") ||
    hh.Contains("locked_icon_anchor") ||
    hh.Contains("icon_anchor") ||
    hh.Contains("locked_icon_fire") ||
    hh.Contains("locked_icon_sport")||
    hh.Contains("locked_icon_camera")||
    hh.Contains("locked_icon_movie"))
    Regex linkParser = new Regex(@"\b(?:https?://|www\.)\S+\b", RegexOptions.Compiled | RegexOptions.IgnoreCase);
    foreach (Match m in linkParser.Matches(hh))
    metas.Add(m.Value);
    So now in the metas i have in this case two links.
    For example the first link is from this block in the file:
    The link i got is : http://rotter.net/forum/Images/hot_icon_anchor.gif
    And this is the right link from this block but now how do i get the text from this block and how i connect how do i know that this text belong to the link ? I need to add this text from this block to a new List. Before all that i counted on my own lines
    and got the text but that's a bad idea.
    I need somehow to get: שרשור תשדירי בחירות מרוכז:
    To get the text between the ToolTip',' and the second ',' but not from all the html file only in places of this two links i extracted.
    <TD ALIGN="RIGHT"
    VALIGN="TOP">
    <body onmousemove="overhere()">
    <a onmouseover="EnterContent('ToolTip','שרשור תשדירי בחירות מרוכז:','<u><span style=color:#000099;>כתב: menahem בתאריך: 03.03.15
    שעה: 08:51</span></u><br>1.<br>http://youtu.be/utUaqyiRkJ8<br><br><br>...'); Activate();"
    onmouseout="deActivate()"
    href="javascript:void(0)">
    <img src="http://rotter.net/forum/Images/hot_icon_anchor.gif"
    border="0"></a></TD><TD
    ALIGN="right"
    VALIGN="TOP"
    WIDTH="55%">
    <FONT CLASS='text15bn'><FONT
    FACE="Arial">
    <a href="http://rotter.net/cgi-bin/forum/dcboard.cgi?az=read_count&om=187966&forum=scoops1"><b>
    <font color="red">שרשור תשדירי בחירות מרוכז:</b>
    </a></font></TD>

  • In JEditorPane the links in HTML file are not working

    hi,
    I am using JEditorPane to dispaly HTML file.
    In the html files there are some links to some other pages.
    The JEditorPane is showing the links but it didn't work when i click.
    Is there any Events which i have to add?

    Try posting in the Mac Number forum.
    https://discussions.apple.com/community/iwork/numbers
    Also, specify the version of Numbers you are using.

  • Modify colours of some links in html file

    Hi,
    Can anyone give me some idea how to go about reading a html file , identifying links and changing the colours of these links thru a java program ?
    Thanks

    adadfsdff

  • Trouble linking to html file

    I have an html file on my desktop, which is a sample of a Web banner I wrote. When I drag it into a safari window, I can view it fine. It animates and all is well. But when I make a link to that same file and try to click on the hyperlink on the live page, it gives me an error and nothing happens.
    .swf files render fine under the same conditions.
    Any ideas?
    Thanks.
    dan

    But when I make a link to that same file and try to click on the hyperlink on the live page, it gives me an error and nothing happens.
    What does the error say? Where is the "live page" and where is the file you are linking to -- both on a server somewhere or both on your machine?

  • Broser propose me to download the link as html file inspite of move to links page.

    I try to enter my enternet bank. In all other brosers I push login and automaticly reciev OTP password on my cellphone. In FireFox, the broser propose me to download html file called "otp_enter" when I click login. I dont reciev OTP password and I cant login.
    Video:
    http://www.youtube.com/watch?v=PF_XmAzCmCQ&feature=youtu.be

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"

  • How can I link more HTML files to one menubuilder file

    Hi,
    I have the following problem which hopefully one of you can
    help me solve.
    With menubuilder I just made a menu to run on a stand alone
    CD. This menu contains links to 5 individual training modules that
    are movies in HTML format.
    After some searching in this forum I found out that I should
    use the save file with project option to keep the links when moving
    the entire project to a separate CD.
    No my problem. To make this CD work I need to copy all files
    into the main directory. But each individual training modules has,
    except from the title, the same under laying files. Copying them to
    one main directory overwrite all and leaves me with one module that
    is started from 5 different links.
    Hopefully I explained my problem clearly and is there
    somebody that can help me with this.
    Kind regards
    Erik

    Hi Erik
    For starters, Captivate does not create movies in HTML
    format. It always creates them in .SWF format. Are you possibly
    noticing the fact you can create an additional HTML page used to
    display your .SWF movie and assuming the movie is in HTML format?
    Is this Captivate 1 or Captivate 2? I ask because you are
    talking about "the same underlying files".
    One suggestion I would make is to totally forego MenuBuilder
    in favor of Jesse Warden's Captivate Player.
    Developer
    Center Article
    Player
    Update Page
    Cheers... Rick

  • Can .chm files link to .html files?

    Hi,
    I'm using RoboHelp X5 and cannot find a way to link from a
    .chm file to an .htm page. It seems like it should be simple,
    but.....
    Is this a known issue, software limitation, or am I missing
    something? Any tips would be greatly appreciated!
    Thanks,
    :) Kathy

    Kathy,
    A couple of items.
    In linking to an external .htm file it is useful to use the
    parser function to find it. This is documented in the Help Workshop
    help file. I've never had any trouble with using it for external
    files.
    Secondly, the compiler is fickle and wants to be smarter than
    you so if you link to an external file it just might include that
    file in the compiled project, thinking you want it there. Of
    course, you don't. You just put it in the project directory to test
    it. So, what you get is a version of your .htm file compiled into
    the help, which defeats the purpose of having it external so it can
    be edited outside of the help. I think this is a Microsoft design
    flaw, but someone might think it is a great feature.
    John

  • Validating links (xrefs) to HTML files

    I use (unstructured) FrameMaker 7 and WebWorks to create an HTML help system, thereby creating HTML files. I have another help system that is displayed in the UI that links to the help system files. Currently, I manually maintain the UI files, writing in HTML and manually verifying the links.
    I'd like to use FrameMaker to manage the second help system. I'd like to be able to validate my links to the HTML files. I can't figure out how. I've tried Hypertext markers like this:
    gotolink /help/topics/Login.html
    (and that path does indeed exist)
    And I've tried this format:
    message URL file:/help/topics/Login.html
    Frame tries to validate the first format but stops when it determines that file is not a Frame file. Frame doesn't seem to validate the second format.
    Is there a way to validate links to HTML files? Sorry if this is a clueless question...

    Well ... I've just checked some source files of mine, and can now confidently say that I linked to external files with the message openfile command, which then leaves the PC to work out what application to use for the file you're pointing to.
    Here's an example: message openfile ../eBooks/gateway.fb2 provides a link to an .fb2 file, and since I have a program on my PC to read .fb2 files clicking on the link opens the file in the correct application. message openfile proposal.htm opens proposal.htm in my default web browser.
    With the message openfile command, FrameMaker cheerfully accepts any target file you try to specify. For a quick check that you've specified the target correctly, hold down Ctrl and Alt before clicking on the hyperlink: the cursor changes to a pointing hand when you're over an active link.
    Oh, and before each three-monthly release of my biggest documentation set I used to create a list of hypertext markers (Special > List of ... > Markers, then Hypertext) to give me a single file where I could click diligently on each link and make sure it was correct.

  • How to validate all hyperlinks, including links in pdf files?

    Dreamweaver's link checker only checks links in html files. Is there's a Dreamweaver plug in I could use to check links (all kinds of links) in pdf files on my site?  I haven't been able to find one and would appreciate suggestions. Thanks.

    Not a DW extension but look at Xenu's Link Sleuth.
    Nancy O.

  • Unable to Display Background Graphic From HTML File Generated from AI File

    I am trying to figure out if this is a MAC OS X or Safari issue. I have already a message into the author of the plug-in as well as created a posting on the Adobe Forum.
    I am following a tutorial on Lynda.com called "Design the Web: Illustrator to Animated HTML5 Canvas." I am using a plug in called Ai2CanvasMac with Adobe Illustrator, It essentially generates an HTML file from an Illustrator file. The Illustrator file has an embedded PNG file as a background image and a small vector graphic in front and centered. After the plug-in generates the HTML file, it automatically opens the file up in the browser. This is where I am getting mixed results.
    Safari: The small vector does appear and in the center where the embedded background should appear. But the background image isn't displaying, only a white background is showing.
    Firefox and Chrome: The page is totally blank. Not even the vector graphic appears.
    It will work with two different approaches.
    1. If I edit the source image web links in HTML file and use links from any graphics I find off the web. That works fine. The images are displayed in the browser window.
    2. If I embedded PNG images from my desktop into the Illustrator file and generate the HTML file. That works fine too.
    Does anyone have any ideas as to why I can't the graphics to display properly in the browser without doing this workaround?

    Hi,
    Ex. 1 - If the Index file is in the same directory, called "test"
    tales/numbers.jpg
    Ex. 2 - If the image is in a subdirectory, called "test1" within "test"
    test/test1/numbers.jpg
    img src="test/test1/numbers.jpg"
    Regards
    Ayyapparaj

  • Getting links and its names from a html file

    Hi everyone
    My problem about the a getting links with name from a html file. For example
    &#304;n a web page in this site ?SUN? when use click SUN the browser open http://java.sun.com
    &#304; want both of them, so the links and name. I can succeeded the get link but i don t know how to get the link name.
    For example :
    <B>setRightComponent(Component)</B>
    &#304;n this code segment i want to get B tag. But how i don t know. To get A tag i used this code
    List result = new ArrayList();
    try {
    // Create a reader on the HTML content
    URL url = new URI(uriStr).toURL();
    URLConnection conn = url.openConnection();
    Reader rd = new InputStreamReader(conn.getInputStream());
    // Parse the HTML
    EditorKit kit = new HTMLEditorKit();
    HTMLDocument doc = (HTMLDocument)kit.createDefaultDocument();
    kit.read(rd, doc, 0);
    // Find all the A elements in the HTML document
    HTMLDocument.Iterator it = doc.getIterator(HTML.Tag.A);
    while (it.isValid()) {
    SimpleAttributeSet s = (SimpleAttributeSet)it.getAttributes();
    String link = (String)s.getAttribute(HTML.Attribute.HREF);
    if (link != null) {
    result.add(link);
    it.next();
    &#304; can use B tag but i don t know hot to get its value because it has no prefix such as HREF....
    i am sorry if i use a bad explanation style or incorrect word.

    import java.io.*;
    import java.net.*;
    import javax.swing.text.*;
    import javax.swing.text.html.*;
    class GetLinks
        public static void main(String[] args)
            throws Exception
            // Create a reader on the HTML content
            Reader reader = getReader( args[0] );
            // Parse the HTML
            EditorKit kit = new HTMLEditorKit();
            HTMLDocument doc = (HTMLDocument)kit.createDefaultDocument();
            doc.putProperty("IgnoreCharsetDirective", Boolean.TRUE);
            kit.read(reader, doc, 0);
            // Find all the A elements in the HTML document
            HTMLDocument.Iterator it = doc.getIterator(HTML.Tag.A);
            while (it.isValid())
                SimpleAttributeSet s = (SimpleAttributeSet)it.getAttributes();
                String href = (String)s.getAttribute(HTML.Attribute.HREF);
                int start = it.getStartOffset();
                int end = it.getEndOffset();
                String text = doc.getText(start, end - start);
                System.out.println( href + " : " + text );
                it.next();
        // If 'uri' begins with "http:" treat as a URL,
        // otherwise, treat as a local file.
        static Reader getReader(String uri)
            throws IOException
            // Retrieve from Internet.
            if (uri.startsWith("http:"))
                URLConnection conn = new URL(uri).openConnection();
                return new InputStreamReader(conn.getInputStream());
            // Retrieve from file.
            else
                return new FileReader(uri);
    }

  • How Do I Use the Help Tag/Help Path in LabVIEW to Link to a Specific tag in an HTML File?

    Is there any way to point user to a tag in an HTML file when he click "Click here for more help" ?
    Message Edited by zou on 03-08-2007 02:38 PM
    George Zou
    http://webspace.webring.com/people/og/gtoolbox
    Attachments:
    a.png ‏18 KB

    George,
    I believe you are correct in saying that there is no way to link directly to a specific anchor tag within an html file from the context help.
    I would encourage you to visit our Product Suggestion Center if this is a feature you would like to recommend that our R&D team consider for future versions of LabVIEW.
    Is it possible for you to create a .chm file?  Or perhaps you could have some kind of "table of contents" at the top of your .html help file.  This would require an extra click by the user but may be an option for you.
    Regards,
    Simon H
    Applications Engineer
    National Instruments
    http://www.ni.com/support/

  • Adding worksets/iview as links to an html file utilised in a KM Doc iview

    Hi,
    I have developed a home page using the KM Document iview, which utilzes an html page in path to document.
    Now, On this home page, I want to display the links of worksets.
    Example: On Clicking the link--> Leave Management(a workset), it should open the leave management and its sub part iviews as Leave Cancel, Leave Status etc.
    Is it possible to display them on the same screen when the user clicks them? If it is possible, how to go about it?
    I tried using
    http://<portalserver:port>/irj/index.html?NavigationTarget=ROLES://<pcd location>
    in the html file, but on clicking this link, instead of the workset, the whole portal page is loaded in a sub-window.
    I don't have the option of creating a custom overview page in the back end; that's why following this approach.
    Any inputs on this would be helpful?

    Thanks Prashant,
    Level 1 of the problem is solved.
    Now I want When I click on the workset iview link,
    It should open another workset iview in which the iviews are displayed as links.
    Page 1
      (Workset Iview1)Clickable                                                    Workset Iview2 Clickable
    When workset iview1 is clicked, it should go to a page
    Link 1(an iview) Link 2(iview2) Link 3(iview3) and so on
    how can I achieve this?

Maybe you are looking for