Welcome guest, is this your first visit? Click the "Create Account" button now to join.
Page 8 of 8 FirstFirst ... 678
Results 71 to 80 of 80
  1. #71
    Junior Member
    Join Date
    May 2017
    Location
    serbia
    Posts
    5
    Rep Power
    0

    Default

    Device? - Motorola moto g9 play
    Android? - android 15
    Application? - iGO_Avic_v9.35.2.227616 (AvicMemint)
    Latest Pongo Skin with ux and sys.txt? (data.zip - no)

    Device? - Motorola moto g9 play
    Android? - android 15
    Application? - iGO_Avic_v9.35.2.227616 apk (AvicMemint)
    Latest Pongo Skin with data.zip, ux, and sys.txt?

    Everything as before!
    Last edited by Andrey Form; 14th July 2026 at 10:19 AM. Reason: Merging three messages into one

  2.    Advertissements


  3. #72
    Master
    Join Date
    Jan 2016
    Location
    Germany
    Posts
    503
    Rep Power
    894

    Default

    Quote Originally Posted by miledjor View Post
    Latest Pongo Skin with data.zip, ux, and sys.txt?
    [Only registered and activated users can see links. ]

    @Cheldron
    Is that the app that works with Google TTS? Post#70

    Edit:Works with Google TTS and VocalizerEx2, you can also use the tts_nua_ve1 voice with it's engine
    Last edited by Golom; 14th July 2026 at 12:51 PM.

  4. #73
    Member + Cheldron's Avatar
    Join Date
    Nov 2021
    Location
    Another Side of the Moon
    Age
    72
    Posts
    36
    Rep Power
    19

    Default

    Quote Originally Posted by miledjor View Post
    Everything as before!
    Everyone has already forgotten about your problems.
    What everything as before?

    Quote Originally Posted by Golom View Post
    @Cheldron
    Is that the app that works with Google TTS?
    Yes. This APK (iGO_Avic 9.35.2.227616 64bit), updated by respected Vits2007, works with TTS from Google.
    Last edited by Andrey Form; 14th July 2026 at 10:19 AM. Reason: Merging two messages into one
    Don’t Worry, Be Happy...

  5. #74
    Senior Member
    Join Date
    Aug 2015
    Location
    Hungary
    Posts
    121
    Rep Power
    22

    Default

    Hi Pongo!

    Thanks for the new skin, it's great! I found a strange thing, I don't know if it's on purpose or if it's just a coincidence? Skin settings/Warnings/Alert points are not listed in the full skin functions, only if I set it to default.

    Spoiler: Screenshot:
    [Only registered and activated users can see links. ]
    [Only registered and activated users can see links. ]
    Last edited by Papp G; 16th July 2026 at 08:44 PM.

  6. #75
    Master
    Join Date
    Jan 2016
    Location
    Germany
    Posts
    503
    Rep Power
    894

    Default

    @Papp G
    Look at the moderator's note.
    But I'll give a quick answer.
    That is the well-known "autorad" function.
    Change the sys.txt entry to: disabled =1

  7. #76
    Junior Member
    Join Date
    Aug 2018
    Location
    Madrid
    Posts
    4
    Rep Power
    0

    Default

    I'm not able to find how to manage user profiles (in 32 bit version there is a file "user_profiles.zip" inside the ux folder which makes visible a button at the main screen and that allows to choose and manage user profiles).
    Last edited by Leopardodos; 7th August 2026 at 07:25 AM.

  8. #77
    Master
    Join Date
    Apr 2017
    Location
    Athens, Greece
    Age
    55
    Posts
    439
    Rep Power
    901

    Default

    Hi pongo,

    Is it possible to fix the tolls_speedcam_gr.zip ux to work with World 64 bit?

    Thank you

    EDIT

    Also ux map_provider_logo.zip from World isn't working. I replaced it with the one from Avic 64 and it's ok.
    Last edited by AnthonyGreek; 15th August 2026 at 01:17 PM.

  9. #78
    Junior Member
    Join Date
    Jan 2026
    Location
    Romania
    Posts
    9
    Rep Power
    0

    Default

    Unfortunately, on the Galaxy Tab A11 running OneUI 8.5, the screen remains black. I granted all permissions manually and also disabled Play Protect.

  10. #79
    Master
    Join Date
    Apr 2017
    Location
    Athens, Greece
    Age
    55
    Posts
    439
    Rep Power
    901

    Default

    @pongo

    Could you please check that line in tmc.lua?

    delayText = m_i18n(L"Infinite")

    I think it doesn't need the L

  11. #80
    Master
    Join Date
    Nov 2017
    Location
    europa
    Posts
    133
    Rep Power
    246

    Default

    Hi Anthony

    You are absolutely right. You only need to look at how the `m_i18n()` function is structured in the other LUA files. It may have evolved with newer versions of iGO Android, but originally it was only supposed to display plain text.

    The extended L"Infinite" form is very likely to be displayed as an empty string, especially if it is combined with the use of a function that does not accept an extended string, such as translated_format( m_i18n( L" Example %s" ), value).

    However, in `tmc.lua`, the entire function sc_GetDelayText() needs to be examined:


    function sc_GetDelayText(fullDelay, blockOnRoute)
    local zeroTimespan = TIMESPAN_0
    local delayText = ""
    if blockOnRoute then
    delayText = m_i18n(L"Infinite")
    elseif fullDelay > zeroTimespan then
    delayText = L"+" .. Format.Timespan(fullDelay)
    else
    delayText = Format.Timespan(fullDelay)
    end
    return delayText
    end
    It seems to be intentional so that it returns an extended text string. If m_i18n() were not able to do that, the line should have been written this way: delayText =towstring(m_i18n("Infinite"))
    Last edited by lunapark; Yesterday at 07:35 PM.

 

 

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •