Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature Request] isSupported() #8

Open
ghost opened this issue Jun 30, 2015 · 0 comments
Open

[Feature Request] isSupported() #8

ghost opened this issue Jun 30, 2015 · 0 comments

Comments

@ghost
Copy link

ghost commented Jun 30, 2015

This is kinda a silly thing to request at first, but in the other freshplanet ANE there is sometimes a isSupported() function that really comes in handy while developing on a PC without throwing an Error.
It would be nice to have this in this repo as well to avoid Exceptions thrown around while not test on the device itself.

For now this can achieve the same thing:

    var softKeyboardSupport:Boolean = true;
    var softKeyboardHeight:Number;

    try {
        softKeyboardHeight = MeasureKeyboard.getInstance().getKeyboardHeight() as Number;
    }catch(error:*){
        softKeyboardSupport = false;
    }

    trace("softKeyboardSupport = "+softKeyboardSupport);

Cheers
Mortimer

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

0 participants