Answering myself.
This happened on LineageOS.
However if I test on a Google Android it works.
So I guess it's a no-fix .)
Search found 7 matches
- Fri Nov 08, 2024 2:56 pm
- Forum: General programming
- Topic: Keyboard events on android (in applet player)
- Replies: 2
- Views: 7824
- Fri Nov 08, 2024 12:21 pm
- Forum: General programming
- Topic: Keyboard events on android (in applet player)
- Replies: 2
- Views: 7824
Keyboard events on android (in applet player)
Hi.
I don't get any keyUp/Down event on android if screen is landscape mode. Rotating to vertical it works fine.
Is this just a player issue and will work if compiled or is there a work around?
(Stringrequest works fine in either orientation).
I don't get any keyUp/Down event on android if screen is landscape mode. Rotating to vertical it works fine.
Is this just a player issue and will work if compiled or is there a work around?
(Stringrequest works fine in either orientation).
- Thu Oct 31, 2024 10:24 am
- Forum: Remedios
- Topic: Persistant storage
- Replies: 2
- Views: 23171
Persistant storage
Hi.
I write settings to a file just in current directory.
Works fine on android and seems to work on ios. However, if I force close the app and restart it seems like the file is gone.
Where can I store a file that will be persistent?
I write settings to a file just in current directory.
Works fine on android and seems to work on ios. However, if I force close the app and restart it seems like the file is gone.
Where can I store a file that will be persistent?
- Wed Oct 30, 2024 10:15 am
- Forum: Remedios
- Topic: Tips for hURL and Xcode
- Replies: 0
- Views: 21925
Tips for hURL and Xcode
Don't seem that we are many who use remedios, but someone might find this helpful.
I had issues compiling applet that uses hURL on Xcode 16.
It was as simple as editing the Info.plist for hurl (in hurl_hwp.framwork folder) and add a row containing:
MinimumOSVersion with value 11.0
I had issues compiling applet that uses hURL on Xcode 16.
It was as simple as editing the Info.plist for hurl (in hurl_hwp.framwork folder) and add a row containing:
MinimumOSVersion with value 11.0
- Mon Jun 08, 2020 11:32 am
- Forum: Windows IDE
- Topic: Location of Requesters
- Replies: 1
- Views: 8670
Location of Requesters
Hi.
On a dual monitor setup, if I have my app on the secondary monitor and trigger a string requester, it pops up on the main display.
Is there anyway to prevent this behavior? I want it to open over my app.
On a dual monitor setup, if I have my app on the secondary monitor and trigger a string requester, it pops up on the main display.
Is there anyway to prevent this behavior? I want it to open over my app.
- Tue Dec 03, 2019 7:01 pm
- Forum: RapaGUI
- Topic: Problems with popcolor values
- Replies: 2
- Views: 4937
Re: Problems with popcolor values
THANKS A LOT, it seems to work, you are a lifesaver!
Need to read up on formatstr then
Need to read up on formatstr then
- Tue Dec 03, 2019 6:19 pm
- Forum: RapaGUI
- Topic: Problems with popcolor values
- Replies: 2
- Views: 4937
Problems with popcolor values
Hi everyone. So I use the popcolor and try to fetch the value with color_header=HexStr(moai.Get("color_header", "RGB")) Works fine unless any of the R/G/B is 0, then the length of the hex changes. Examples: R/G/B: 0/0/0 = $0 255/255/255 = $FFFFFF 0/255/255 = $FFFF 0/255/0 = $FF00...