Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 5 of 5
  1. #1
    Join Date
    Sep 2007
    Posts
    15

    ComboBoX to PageJump specefic page ??

    Hello

    i try to use the combobox and jump with it to a specific page in my projet
    i use this code but i can"t set a specific page

    Code:
    selected_page = ComboBox.GetSelected("ComboBox1");
    Page.Jump("Page"..selected_page);
    Thanks for HELP

  2. #2
    Join Date
    Feb 2008
    Posts
    146
    You need put in ComboBox Item: 1,2,3 or a name that you put a page..

    With me works..

    On Select [in ComboBox]:
    Code:
    selected_page = ComboBox.GetSelected("ComboBox1");
    Page.Jump("Page"..selected_page);
    I wope help you

  3. #3
    Join Date
    Sep 2007
    Posts
    15
    Thank you for answer
    but i want to point it to a specific page
    because i have 4 combobox and its duplicated in all page

    look my apz

    thank you 2

    by the way
    and how to disable the second combobox if an item in the first is not selected

    Thank you Very Much 3
    Attached Files

  4. #4
    Join Date
    Feb 2008
    Posts
    146
    1º Question:
    Code:
    On Select
    selected_page = ComboBox.GetText("ComboBox1");
    if selected_page == "Maroc" then
    Page.Jump("Maroc");
    elseif selected_page == "Espagne" then
    Page.Jump("Espagne");
    end
    2º Question:
    Code:
    if (rComboBox1 == "Select") then
    ComboBox.SetEnabled("ComboBox2", false)
    else
    ComboBox.SetEnabled("ComboBox2", true)
    end
    Im a noob and i dont understand very this.. but i try this way.. and works.. but if you dont want in this way.. sorry.. i do my best to help you.. sorry my english and once again i hope that help you with code

  5. #5
    Join Date
    Sep 2007
    Posts
    15
    Thank you very much man , .. it work nice ... thank you again

Similar Threads

  1. Building pages from script
    By Roboblue in forum AutoPlay Media Studio 7.5
    Replies: 23
    Last Post: 02-28-2008, 10:31 AM
  2. html page and link
    By mountain07 in forum AutoPlay Media Studio 6.0
    Replies: 1
    Last Post: 11-19-2005, 09:00 PM
  3. Is there a way to go to next page easier?
    By christywalter in forum AutoPlay Media Studio 5.0
    Replies: 5
    Last Post: 11-11-2004, 02:37 PM
  4. Setting Page Transition Effects
    By Desmond in forum AutoPlay Media Studio 5.0 Examples
    Replies: 0
    Last Post: 09-24-2003, 01:08 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