Book Image

LiveCode Mobile Development Beginner's Guide (2nd Edition)

Book Image

LiveCode Mobile Development Beginner's Guide (2nd Edition)

Overview of this book

Table of Contents (15 chapters)
LiveCode Mobile Development Beginner's Guide Second Edition
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Time for action – calling the native browser application


This next test will go faster, or at least, the instructions will be briefer, as we will condense some of the steps in more concise directions, as given here:

  1. Copy the Test button on the Email card and paste it on the Browser card, just to save you some time making the button look nice.

  2. Edit the Test button script and change it to this:

    on mouseUp
      launch url "http://www.runrev.com/"
    end mouseUp
  3. Choose the Run tool and click on the Test button. You will see the RunRev home page in your default browser.

The steps for trying the app on devices is exactly the same as with the steps to test the e-mail feature. For Android:

  1. Select Android in the Standalone Application Settings.

  2. Select your Android device as the test target from the Development menu (most likely, it will still be selected from before).

  3. Select Test from the Development menu.

  4. The previous test of the app will be overwritten and the new version will be launched automatically.

  5. Try clicking...