• If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Announcement

Collapse
No announcement yet.

[ANSWERED] Launch new tab from App

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • [ANSWERED] Launch new tab from App

    I'm using the following to try and launch a new tab from an app

    Valence.app.launch(1013);

    This doesn't seem to wrong. Is this a bug?

    Thanks,
    Steve

  • #2
    Steve,

    Valence.app.launch is expecting an object. Documentation

    Code:
    Valence.app.launch({
       app:75
    });
    However, it should handle receiving the application id directly instead of it being inside of an object.

    Code:
    Valence.app.launch(75);
    We will update the method for the next build.

    Thanks

    Comment


    • #3
      Hi Johnny,

      Thanks that works!.

      Steve


      Originally posted by Johnny Major View Post
      Steve,

      Valence.app.launch is expecting an object. Documentation

      Code:
      Valence.app.launch({
         app:75
      });
      However, it should handle receiving the application id directly instead of it being inside of an object.

      Code:
      Valence.app.launch(75);
      We will update the method for the next build.

      Thanks

      Comment

      Working...
      X