Issue Opening Window in Tab Navigation From A Second Window Inside A Scroll Nav using Event Inspecto

  1. 6 years ago

    jsharifi

    7 Jun 2017 User since 2017
    Edited 6 years ago by jsharifi

    I have a TabBar nav and a PageScroll nav (for the app intro/sign up) nested inside a Regular Navigator. After the PageScroll sequence ends there is a button that signs new users up which also takes them to the main window in the TabBar Nav via Event:Action Open: Main Window In:TabBar using:Default. However, it doesn't work and no transition happens. Any idea why?

  2. Rony Molina

    7 Jun 2017 User since 2017

    HI! i have the same issue!
    hope some help!!

  3. andrea

    8 Jun 2017 Administrator User since 2016
    Edited 6 years ago by andrea

    Hi!
    The action that you used tries to open the MainWindow in the MainTabMenu but the MainTabMenu is not visible, so the right action to perform should be to open the MainTabMenu in the AppMain navigation (the MainWindow is already configured to appear in the MainTabMenu, so you have just to show the MainTabMenu).
    Unfortunately, the current version of Creo doesn't show the list of containers (MainTabMenu, AppMain and Signupflow) in the list of windows that can be opened. An updated version that fixes this issue and all the issues and crashes reported in the past days will be released today.
    With the updated version you can configure the button action in the following way:

    Event:Action
    Open:MainTabMenu
    In:AppMain
    using:Default 

    Meanwhile, you can perform the action using the code editor instead of the action panel, with the following code inside the Action event of your button

    MainTabMenu.openIn(AppMain);
  4. jsharifi

    8 Jun 2017 User since 2017

    Thanks @andrea !

or Sign Up to reply!