Search found 15 matches
- Sun Jul 19, 2020 4:51 am
- Forum: Android Deployment
- Topic: can i use messageAuthenticationCode on android
- Replies: 1
- Views: 853
can i use messageAuthenticationCode on android
Hi, I could not find any info about what platform I can use messageAuthenticationCode. I made a desktop Application an I am using it to encrypt my password. now I need to develop an android app and I am try the same code but is not working. I went to the docs and it does not say what platform it is ...
- Tue Nov 06, 2018 9:21 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Report Framework
- Replies: 16
- Views: 5487
Re: Report Framework
I just found a good way to make Awesome reports using Crystal Reports by SAP. Well, the solution is simple. I found a website from a guy in Malaysia (https://www.rainforestnet.com/) who made an external(DOS) Executable to run the crystal reports and send them to the printer or other outputs. You can...
- Thu Mar 16, 2017 4:33 am
- Forum: Android Deployment
- Topic: playing .m3u8
- Replies: 2
- Views: 2336
playing .m3u8
Hi all, I need to make player for a .m3u8(HLS) on android. I have the following code without any success mobileControlCreate "player", "HLSplayer" --create a player HLSplayer mobileControlSet "HLSplayer", "visible", true mobileControlSet "HLSplayer", "rect", the rect of fld"field" --adjust these set...
- Thu Nov 24, 2016 10:09 pm
- Forum: Talking LiveCode
- Topic: Play Audio on Background Mode
- Replies: 9
- Views: 3760
Re: Play Audio on Background Mode
any Updates on this topic?Armenhui wrote:Ok.
Thanks
- Tue Oct 04, 2016 11:36 pm
- Forum: Android Deployment
- Topic: [SOLVED][android] how to keep Screen ON while running App
- Replies: 3
- Views: 2027
Re: [android] how to keep Screen ON while running App
Thanks Kim, That is exactly what I was looking for. You're the best.KimD wrote:Have you tried mobileLockIdleTimer? The first time that I used this it didn't work because I forgot to also tick Idle Timer in the Android stand alone application settings.
Regards
Kim
JG
- Fri Sep 30, 2016 10:27 pm
- Forum: Android Deployment
- Topic: [SOLVED][android] how to keep Screen ON while running App
- Replies: 3
- Views: 2027
[SOLVED][android] how to keep Screen ON while running App
Hello, LC Gurus...
I am looking for a command or library to keep screen "ON" while running my program.
I need to update db records while locationChanges, but android keeps turning off.
Any good ideas on how to do this?
I am looking for a command or library to keep screen "ON" while running my program.
I need to update db records while locationChanges, but android keeps turning off.
Any good ideas on how to do this?
- Sat Sep 03, 2016 3:51 pm
- Forum: Android Deployment
- Topic: Shoutcast / Icecast stream player
- Replies: 2
- Views: 2426
Re: Shoutcast / Icecast stream player
One thing you could try (although my own tests don't look promising) is the new browser widget. I believe that this is fully cross platform. It is also easier to work with as it can be tested in LiveCode before being tested on a mobile device. The browser widget definitely supports HTML5 as I am ab...
- Sat Sep 03, 2016 5:44 am
- Forum: Android Deployment
- Topic: Shoutcast / Icecast stream player
- Replies: 2
- Views: 2426
Shoutcast / Icecast stream player
Hello Livecode Gurus!!! I already spend hours looking for an answer without any luck. I need to make an android/IOS APP for a customer(radio Station). They will be using Icecast to broadcast the radio station. I used this website as a test http://www.radiowebsites.org or http://www.emisoras.com.mx a...
- Mon Aug 15, 2016 6:51 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Report Framework
- Replies: 16
- Views: 5487
Re: Report Framework
MaxV,
Thanks for your solutions,
I will try it. I think is the best an cheapest solution. Valentina is just out of my budget right now.
Best Regards,
Thanks for your solutions,
I will try it. I think is the best an cheapest solution. Valentina is just out of my budget right now.
Best Regards,
- Thu May 26, 2016 6:13 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Report Framework
- Replies: 16
- Views: 5487
Re: Report Framework
I am very new to LC and I could not find any tutorials on how to create report in terms of pagination. I Guess, I can just make some queries and insert the data in a Card, but I don't know how to make different pages based on tons of data and grouping, just like any other Report system. I am trying ...
- Wed May 25, 2016 11:29 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Report Framework
- Replies: 16
- Views: 5487
Report Framework
I am trying to make a few reports and while researching I found http://users.telenet.be/quartam/reports/ but it looks dead, I could not buy it. I tried to contact them without any luck. Any of you have information about this software developer? or any other options available?
Thanks
JG
Thanks
JG
- Tue May 17, 2016 11:15 pm
- Forum: Off-Topic
- Topic: is quartam reportdead? are there any other reporting addons?
- Replies: 1
- Views: 1633
is quartam reportdead? are there any other reporting addons?
HI,
I was looking for a reporting solutions and the only one I found was quartam, but it seams dead.
are there any other solutions to print reports with livecode?
Thanks in advance.
JG
I was looking for a reporting solutions and the only one I found was quartam, but it seams dead.
are there any other solutions to print reports with livecode?
Thanks in advance.
JG
- Wed Jan 27, 2016 1:49 am
- Forum: Talking LiveCode
- Topic: javascript function to Encode the resulting 16 byte string
- Replies: 3
- Views: 1524
Re: javascript function to Encode the resulting 16 byte stri
Hi Lagi Pittas, Thanks for your time, the full outcome is to make md5Crypt function. Using openSSL this is what I get: C:\>openssl passwd -1 -salt salt password $1$salt$qJH7.N4xYta3aEG/dfqo/0 that actually means encrypt "password" with Salt "salt" and the result is ---> $1$salt$qJH7.N4xYta3aEG/dfqo/...
- Sun Jan 17, 2016 8:30 am
- Forum: Talking LiveCode
- Topic: javascript function to Encode the resulting 16 byte string
- Replies: 3
- Views: 1524
javascript function to Encode the resulting 16 byte string
can someone help me translate this javascript into livecode: const ascii64 = "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; function to64(v, n) { var s = ""; while (--n >= 0) { s += ascii64.charAt( v & 0x3f ); v >>= 6; } return s; } function to64_triplet(str, idx0, idx1, idx2) {...
- Sat Jan 16, 2016 8:41 pm
- Forum: Talking LiveCode
- Topic: How to simulate openssl passwd?
- Replies: 0
- Views: 663
How to simulate openssl passwd?
Hello nice people at LiveCode. I need some help, I am in need to develop a module to authenticate users using a 3rd party MySql Database. It seems simple, but when I saw the Hash for the password, I had to do a little research and I found they are using this: openssl passwd -1 -salt SALT PASSWORD. -...