PDA

View Full Version : Menu Bar - Page Jumps


jimriley
06-19-2008, 08:49 AM
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

holtgrewe
06-19-2008, 09:47 AM
Jim

try the e_ID reserved variable...

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

jimriley
06-20-2008, 02:22 AM
Got it! thanks

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

Jim