Welcome to TalkGraphics.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Apr 2012
    Location
    SW England
    Posts
    17,809

    Thumbs up The Ultimate Xara Menu Maker...

    ... is YOU.

    This presentation is a small starter pack for you to better exploit the Xara Desktop applications that will handle the NavBar design without any backward compatibility issues. [Provided you are not using later version features]

    The Ultimate Xara Menu Maker is YOU.xar

    Preview the presentation here - http://acorn.xara.hosting/NavBars/.

    I have designed this as the Xara NavBars fail to provide any real flexibility over Fonts and Sub-Menu settings.

    There is no limit. You could use images entirely as your menu; you can arrange it anyhow you like.
    Everything can be done in just the MouseOff/Over layers to provide simple rollover animations.

    Over to YOU.

    Acorn
    Last edited by Acorn; 24 July 2020 at 06:28 PM.
    Acorn - installed Xara software: Cloud+/Pro+ and most others back through time (to CC's Artworks). Contact for technical remediation/consultancy for your web designs.
    When we provide assistance, your responses are valuable as they benefit the community. TG Nuggets you might like. Report faults: Xara Cloud+/Pro+/Magix Legacy; Xara KB & Chat

  2. #2
    Join Date
    Oct 2010
    Location
    South Africa
    Posts
    877

    Default Re: The Ultimate Xara Menu Maker...

    Thanks Acorn will try this - never worked with any code before....

  3. #3
    Join Date
    Apr 2012
    Location
    SW England
    Posts
    17,809

    Default Re: The Ultimate Xara Menu Maker...

    For those who are interested the following Website Body (code) update, stops the inner sub-menu items from flickering as they are now not being closed and opened:
    Code:
    <script>
    var collectionClassName = '.Menu';
    
    
    function open(chain) {
      chain = chain.replace(/\s/g,'');
      var links = chain.split(',');
      var linkage = links.length - 1;
    
    
      $(collectionClassName).not(chain).hide('fast');
      
      $(links[linkage]).slideDown("slow");
      return;
    }
    
    
    $(collectionClassName).hide();
    </script>
    Acorn
    Acorn - installed Xara software: Cloud+/Pro+ and most others back through time (to CC's Artworks). Contact for technical remediation/consultancy for your web designs.
    When we provide assistance, your responses are valuable as they benefit the community. TG Nuggets you might like. Report faults: Xara Cloud+/Pro+/Magix Legacy; Xara KB & Chat

  4. #4
    Join Date
    Oct 2010
    Location
    South Africa
    Posts
    877

    Default Re: The Ultimate Xara Menu Maker...

    Quote Originally Posted by Acorn View Post
    For those who are interested the following Website Body (code) update, stops the inner sub-menu items from flickering as they are now not being closed and opened:
    Code:
    <script>
    var collectionClassName = '.Menu';
    
    
    function open(chain) {
      chain = chain.replace(/\s/g,'');
      var links = chain.split(',');
      var linkage = links.length - 1;
    
    
      $(collectionClassName).not(chain).hide('fast');
      
      $(links[linkage]).slideDown("slow");
      return;
    }
    
    
    $(collectionClassName).hide();
    </script>
    Acorn
    Many thanks Acorn!

  5. #5
    Join Date
    Apr 2012
    Location
    SW England
    Posts
    17,809

    Info Re: The Ultimate Xara Menu Maker...

    Small change (see .
    Change open() anywhere to openSesame() or something other thn open().

    Acorn


    Code:
    <script>
    var collectionClassName = '.Menu';
    
    
    function openSesame(chain) {
      chain = chain.replace(/\s/g,'');
      var links = chain.split(',');
      var linkage = links.length - 1;
    
    
      $(collectionClassName).not(chain).hide('fast');
      
      $(links[linkage]).slideDown("slow");
      return;
    }
    
    
    $(collectionClassName).hide();
    </script>
    Acorn - installed Xara software: Cloud+/Pro+ and most others back through time (to CC's Artworks). Contact for technical remediation/consultancy for your web designs.
    When we provide assistance, your responses are valuable as they benefit the community. TG Nuggets you might like. Report faults: Xara Cloud+/Pro+/Magix Legacy; Xara KB & Chat

 

 

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
  •