J

John N

Member

Last active 4 months ago

  1. 3 years ago
    Mon Jul 6 16:58:05 2020

    Thanks, Angelo - I have send an email and the project file.

  2. Tue Jun 16 23:14:27 2020
    J John N started the conversation VoiceOver not working on iPad iOS 13.

    I am not sure if this issue is related to Pubcoder or to Apple.

    After updating iOS to version 13 for iPad texts are no more read aloud by iOS screenreader VoiceOver and can't be accessed with any gesture.

    The VoiceOver texts work fine on iPhone iOS 13 and on iPad iOS 12 and below.

    And it also works in PubReader on iPad iOS 13 as an XPUB. But not as an app.

    The issue seems to have started when Xcode 11 became a requirement.
    All our older apps in App Store still works with VoiceOver also on iPad iOS 13.

    Does anyone have a clue of why the issue occurs?

  3. Tue May 26 23:13:09 2020

    Yes, it has to be because of the TouchSwipe library. Pages not using this library works in "Quick Preview Project on Catalina. With TouchSwipe it does not work neither in Safari or Chrome.

    The strange thing is that on Catalina it all does work when I publish an XPUB to PubReader and also as an iOS app - using the TouchSwipe library.

    But using the same version of Pubcoder (3.9) it all works on both Sierra and El Capitan - "Quick Preview Project".
    So, currently I am developing on Sierra and only use Catalina to publish as iOS app with Xcode 11 - it works but is a bit awkward.

    I have been thinking that it could be a coincidentially collision of variable names - that some variable names in TouchSwipe collides with variable names in other JS files included automatically in Pubcoder.
    But, then it should not fail only on Catalina.

    The reason for using TouchSwipe is that it detects 2- and 3 fingers swipes and double-tap which is essential to our main user group who are blind and visually impaired children.

  4. Tue May 5 14:25:31 2020

    I have a big problem with Pubcoder on macOS Catalina 10.15.4.
    The "Quick Preview Page" and "Quick Preview Project" does not work.

    My project opens in the "Quick Preview..." - but, interaction is not working at all.
    Like buttons with an action assigned are not responding.

    If I send the project to my iPad with "XPUB -> Wi-fi" it all works.
    Also when I send it as an iOS app via Transporter to TestFlight it works.

    I am using an external Javascript library "TouchSwipe" (http://labs.rampinteractive.co.uk/touchSwipe ) - I have used that for all our iOS apps made with Pubcoder since 2015 and there have never been problems before.
    I have found that if I disable "TouchSwipe" then some of the interaction in "Quick Preview Project" works. But, then everything that is based on "TouchSwipe" is not working of course and the project can't be used.

    I have tried the same .pubcoder file out in Pubcoder versions from the latest 3.8.2 back to 3.6.1 - there are less problems with "Quick Preview Project" in the oldest version - but, still much is not working.

    The problem is only connected to macOS Catalina - it all works on macOS Sierra 10.12.6 and also on El Capitan 10.11.6.

    What can probably cause the problem?

  5. Tue Apr 28 16:06:14 2020
    J John N posted in ERROR ITMS-90179.

    It does work:) I just got a confirmation from AppStore of my upload.

  6. Tue Apr 28 15:57:04 2020
    J John N posted in ERROR ITMS-90179.

    Hello Angelo,

    Yes, it seems to work - I just uploaded an .ipa in Transporter and did not get any errors or warnings.

    Thanks
    John

  7. Sat Apr 25 15:55:59 2020
    J John N posted in ERROR ITMS-90179.

    I have exactly the same problem getting "ERROR ITMS-90179: "Invalid Code Signing." when uploading an .ipa file in Tranporter. As Teresa I am sure I use the correct certificate and provisioning profile.

    It has never happened before and seems to occur after the latest update Pubcoder. The update that solved the Mac warning about "Deprecated API Usage".

  8. 4 years ago
    Mon Mar 2 13:33:33 2020

    I have got it to work by editing the HTML Head script to:

    <script type="text/javascript">
    //<![CDATA[
    //############### BEGIN ON DOCUMENT READY ###################//
    $(document).ready(function() {

    sound = new Howl({
    src: ['../audio/Horse.mp3']
    });

    }); // end document ready
    //############### END ON DOCUMENT READY #####################//
    var sound;
    //]]>
    </script>

  9. Mon Mar 2 13:12:03 2020

    Hi Angelo,

    I am trying to get Howler.js to work with Web Audio (in PubReader on iPad).
    I have the script below. But it doesn't work.
    I have checked that both the Howler,js and the sound file is atached in the XPUB file.
    Do you have experience with Pubcoder and Howler.js?

    Best
    John

    //---- On "Page HTML Head" --------------------------------------------//
    <script type="text/javascript" src="../uncategorized/howler.js"></script>

    <script type="text/javascript"><![CDATA[

    $(document).ready(function() {
    var sound = new Howl({
    src: ['../audio/Horse.mp3']
    });
    }); // end document ready

    ]]></script>
    //---------------------------------------------------------------------//

    //---- On a button ----------------------------------------------------//

    sound.play();

    //---------------------------------------------------------------------//

  10. Mon Mar 2 11:56:55 2020

    Thanks, Angelo - that's really great.

View more