Welcome to TalkGraphics.com
Results 1 to 7 of 7
  1. #1
    Join Date
    Sep 2003
    Location
    Orlando
    Posts
    1

    Default

    Hi everyone,

    I just bought the Menu Maker from Xara, but I'm having a little bit problem on implementing it in Dreamweaver MX. I insert my menu in a template in Dreamweaver, but when I create new pages from the template, I have to create these in the Templates folder (to make the menu show). If I create it in another folder, then the menu doesn't show (it only shows a empty image or something).

    Does anyone know what's wrong?

    Geir

  2. #2
    Join Date
    Aug 2000
    Location
    Placitas, New Mexico, USA
    Posts
    41,502

    Default

    I'll try to get someone from Xara to respond to this question soon.

    Gary

    Gary Priester

    Moderator Person


    <a href="http://www.gwpriester.com">
    www.gwpriester.com </a>


    <a href="http://www.xaraxone.com">
    The Xara Xone </a>




  3. #3
    Join Date
    Aug 2000
    Location
    Placitas, New Mexico, USA
    Posts
    41,502

    Default

    I received this message from Xara and you should receive a response from them soon.

    <BLOCKQUOTE class="ip-ubbcode-quote"><font size="-1">quote:</font><HR> People have problems with Dreamweaver templates and Navbars. Previous solutions
    have proven to be to complex for the majority of users. Therefore we have written a new guide on achieving this and have sent it to 2 customers that have the same problem

    We will await their feedback before replying in the forum. <HR></BLOCKQUOTE>

    So stand by. Help is on the way.

    Gary

    Gary Priester

    Moderator Person


    <a href="http://www.gwpriester.com">
    www.gwpriester.com </a>


    <a href="http://www.xaraxone.com">
    The Xara Xone </a>




  4. #4
    Join Date
    Aug 2000
    Location
    Belle River, ON, Canada
    Posts
    144

    Default

    ... and I think you'll find that you have to actually edit the html code (and/or scripts) to get the menu to work from other pages.
    I hope this helps.
    --
    Phillip
    --
    Phillip

  5. #5
    Join Date
    Aug 2000
    Location
    Belle River, ON, Canada
    Posts
    144

    Default

    I knew you're always around the forums but I looked at the number of posts you've made and I'm humbled (and grateful) for your presence here. Thank you for all your efforts.
    --
    Phillip
    --
    Phillip

  6. #6
    Join Date
    Aug 2000
    Location
    Placitas, New Mexico, USA
    Posts
    41,502

    Default

    Maybe I'm just full of a lot of hot air and maybe that's why I have so many posts

    Gary

    Gary Priester

    Moderator Person


    <a href="http://www.gwpriester.com">
    www.gwpriester.com </a>


    <a href="http://www.xaraxone.com">
    The Xara Xone </a>

  7. #7
    Join Date
    Sep 2003
    Posts
    5

    Default

    Hello Everyone,

    I just got this reply from Xara support this morning. I guess I'm one of those that they sent this to.

    Hope they dont mind me posting the reply here. The work around for the problem is to use absolute paths (pointing to the scripts) rather than relative path.

    Here it is:

    This really depends on your own abilities as to whether it can be achieved.

    When you create a template and insert a navbar within it, it causes various script elements to be inserted in the template page which reference the location of the JavaScript files used to create and display the navbar. The script elements contain relative links to the location of the JavaScript files

    For example,

    <script webstyle3>document.write('<scr'+'ipt src="xaramenu.js">'+'</scr'+'ipt>');document.write('<scr'+'ipt src="template.js">'+'</scr'+'ipt>');/*img src="template.gif" moduleid="webstyle (Project)\template_off.xws"*/</script>


    Following this, you select to create some web pages which you would probably store in a separate folder in comparison to the template file.

    Having created a page you select to apply a template to the page This causes the script elements to be applied to your web page. Assume your web page is named index.htm Applying the template will cause the script elements to be applied to the page as

    <script webstyle4>document.write('<scr'+'ipt src="xaramenu.js">'+'</scr'+'ipt>');document.write('<scr'+'ipt src="template.js">'+'</scr'+'ipt>');/*img src="template.gif" moduleid="webstyle (Project)\template_off.xws"*/</script>

    Now you select to view your web page index.htm in a web browser. The web browser reads the source code of the web page and attempts to retrieve the file xaramenu.js and template.js from the same folder as where the web page resides as this is what the source code tells it to do.

    However the navbar will not display. This is because the files xaramenu.js and template.js are not in the same folder as the web page.

    To work around this problem, you need to know the published url of where the template file and the other files in the template folder will be published to.

    This will probably be http://www.yourdomainname.com/Templates

    Once you know this information and have uploaded the Template and files within the folder to this location, select to edit the html which makes up your template. Find the code which references the navbars as below

    <script webstyle3>document.write('<scr'+'ipt src="xaramenu.js">'+'</scr'+'ipt>');document.write('<scr'+'ipt src="template.js">'+'</scr'+'ipt>');/*img src="template.gif" moduleid="webstyle (Project)\template_off.xws"*/</script>

    And ammend this to contain the full url of where the files mentioned are located. So the above would become

    <script webstyle3>document.write('<scr'+'ipt src="http://yourdomainname.com/Templates/xaramenu.js">'+'</scr'+'ipt>');document.write('<scr'+'ipt src="http://yourdomainname.com/Templates/template.js">'+'</scr'+'ipt>');/*img src="template.gif" moduleid="webstyle (Project)\template_off.xws"*/</script>

    Then apply the template to your web pages stored in separate folders and the menu would be displayed in the web pages when viewed in a web browser.

    The menu will not be displayed within the editing mode of Dreamweaver. To resolve this problem, lets look again at the code.

    <script webstyle3>document.write('<scr'+'ipt src="http://yourdomainname.com/Templates/xaramenu.js">'+'</scr'+'ipt>');document.write('<scr'+'ipt src="http://yourdomainname.com/Templates/template.js">'+'</scr'+'ipt>');/*img src="template.gif" moduleid="webstyle (Project)\template_off.xws"*/</script>

    In the above example, you see the code img src="template.gif This is being used by Dreamweaver to cause the image of the navbar to be displayed in the normal mode of Dreamweaver.

    We need to change the relative path to the image template.gif to be a full path. Therefore the above snippet would become

    <script webstyle3>document.write('<scr'+'ipt src="http://yourdomainname.com/Templates/xaramenu.js">'+'</scr'+'ipt>');document.write('<scr'+'ipt src="http://yourdomainname.com/Templates/template.js">'+'</scr'+'ipt>');/*img src="file:///c:/template/template.gif" moduleid="webstyle (Project)\template_off.xws"*/</script>

    Alternatively Navigate to the folder on your local computer where this gif file resides. Copy the file and paste it into the folder in which your web pages reside. This will allow the graphic to be displayed within your web pages in the Dreamweaver editor.

    Thank you, trust this helps
    CS

 

 

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •