Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 3 of 3
  1. #1
    Join Date
    Feb 2003
    Posts
    27

    Menu Bar - Page Jumps

    Just getting my head around the menu bar, which I'd like to use as the basic page navigation for a resource I'm building.

    Trying to get the scripting right, so that if a user clicks on a menu bar item, the right page is loaded

    e.g.

    if e_101 then
    Page.Jump("Notes 1 Enterprise - Introduction");
    elseif e_102 then
    Page.Jump("Notes 1 Enterprise - Examples");
    end

    When I preview the page, the menu bar items don't jump to those two pages.

    Can anyone see what I'm doing wrong?

    Jim
    ----------------------------------
    www.tutor2u.net
    UK Online Learning Resource of the Year

  2. #2
    Join Date
    Jul 2002
    Location
    Just South of Reality
    Posts
    778
    Jim

    try the e_ID reserved variable...

    Code:
    if e_ID == 101 then
       Page.Jump("Notes 1 Enterprise - Introduction");
    elseif e_ID == 102 then
       etc.
    ...and it should be in the 'On Menu' tab of the pages...

    hth

  3. #3
    Join Date
    Feb 2003
    Posts
    27
    Got it! thanks

    btw - is it possible to tweak the format of the menu bar? font, icons, background colour?

    Jim
    ----------------------------------
    www.tutor2u.net
    UK Online Learning Resource of the Year

Similar Threads

  1. Menu Bar Woes
    By Roboblue in forum AutoPlay Media Studio 6.0
    Replies: 2
    Last Post: 02-05-2008, 05:57 PM
  2. Article: Adding a Menu Bar System
    By Brett in forum AutoPlay Media Studio 7.5 Examples
    Replies: 5
    Last Post: 12-04-2006, 07:31 PM
  3. More Menu Bar Examples
    By Roboblue in forum AutoPlay Media Studio 7.5 Examples
    Replies: 5
    Last Post: 02-28-2006, 08:58 AM
  4. More Menu Bar
    By Roboblue in forum AutoPlay Media Studio 6.0
    Replies: 5
    Last Post: 02-06-2006, 05:36 PM
  5. HOWTO: Create a Page Template
    By Support in forum AutoPlay Media Studio 4.0 Examples
    Replies: 0
    Last Post: 10-26-2002, 05:20 AM

Posting Permissions

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