B

Brigette M

Member

Last active last year

  1. 6 years ago
    Tue Dec 5 18:36:26 2017
    B Brigette M started the conversation Fail to build.

    I've gone through and fixed all the coding issues that spring up during the exporting phase; however I am now aiming to export for the app store this time and when I attempt to export I'm getting this error.

    ...egor/Library/Application Support/PubCoder/android/sdk/android-sdk-macosx/tools/ant/build.xml:597: The following error occurred while executing this line:
    /Users/bmcgregor/Library/Application Support/PubCoder/android/sdk/android-sdk-macosx/tools/ant/build.xml:716: The following error occurred while executing this line:
    /Users/bmcgregor/Library/Application Support/PubCoder/android/sdk/android-sdk-macosx/tools/ant/build.xml:730: Compile failed; see the compiler error output for details.

    So I've gone to another program, Visual studio, I go to the lines listed and I don't know how to fix these. Since these are built in the program.

    597: antfile="build.xml">
    716: <do-only-if-manifest-hasCode elseText="hasCode = false. Skipping...">
    730: fork="${need.javac.fork}">

  2. Fri Dec 1 20:14:37 2017
    B Brigette M posted in Underline spacing.

    Thank you for the assist!

  3. Mon Nov 27 23:58:05 2017
    B Brigette M started the conversation Underline spacing.

    Is there a way to make the underline spacing a little further from the text, than the standard pubcoder setting?

  4. Mon Oct 30 16:15:47 2017
    B Brigette M started the conversation Font Scaler.

    I'm making an eReader style app and I am working on the font scaling.
    Is there a way to implement a user slider or button that scales up and down the font size. I've tried using Javascript for the slider however it does not show at all in the smart object.
    I also need the font size to stay as they move page to page.

    I've also tried to use scripting and all that scales is the line height.
    <script>
    $("#obj2839").on('click', function () {
    $("#obj1157").animate({'font-size': '+=5'});
    });

    $("#obj2937").on('click', function () {
    $("#obj1157").animate({'font-size': '-=5'});
    });</script>