Search found 80 matches
- Fri Jul 18, 2025 8:15 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Bluetooth Printer
- Replies: 7
- Views: 6866
Re: Bluetooth Printer
Hi lemodizon, maybe this thread will help you? https://forums.livecode.com/viewtopic.php?f=7&t=39185&p=230927&hilit=Android+print#p230927 Best Klaus Thanks Klaus, however I tried to run it android phone it does not run. Some of my POS projects use JNI for Bluetooth printer access. However, you need...
- Mon Apr 22, 2024 3:12 am
- Forum: Android Deployment
- Topic: Advertising on Android
- Replies: 27
- Views: 76185
Re: Advertising on Android
Have you tried https://adsterra.com/?
I have tried it and found it to be quite profitable. I can create a WebView with the business logic you need.
https://help-publishers.adsterra.com/en ... -a-website
I have tried it and found it to be quite profitable. I can create a WebView with the business logic you need.
https://help-publishers.adsterra.com/en ... -a-website
- Mon Apr 22, 2024 3:08 am
- Forum: Talking LiveCode
- Topic: Security Issue Related to Decompilation in LiveCode
- Replies: 13
- Views: 6452
Re: Security Issue Related to Decompilation in LiveCode
Have you ever successfully read the contents of messages or files sent via SFTP using any tool?
I have never succeeded in doing so. I would like to learn what method you use.
If you are using Proxyman or Charles, it is very easy to read encrypted message contents.
I have never succeeded in doing so. I would like to learn what method you use.
If you are using Proxyman or Charles, it is very easy to read encrypted message contents.
- Mon Apr 22, 2024 12:32 am
- Forum: Talking LiveCode
- Topic: Security Issue Related to Decompilation in LiveCode
- Replies: 13
- Views: 6452
Re: Security Issue Related to Decompilation in LiveCode
What I mean is, using HTTP/HTTPS protocols makes it easy to debug using tools like Proxyman and Charles Proxy. However, I haven't found a tool that can read data streams when using port 22. Even with Wireshark, analysis is only possible up to the exchange of public and private keys.
- Sun Apr 21, 2024 5:46 am
- Forum: Talking LiveCode
- Topic: Security Issue Related to Decompilation in LiveCode
- Replies: 13
- Views: 6452
Re: Security Issue Related to Decompilation in LiveCode
You can perform code obfuscation before creating a standalone application by creating your own commands. Replace functions and commands with meaningless commands and store everything in a local variable, avoiding the use of global variables. Combine functions like encrypt, numToChar, charToNum, code...
- Sun Apr 21, 2024 5:26 am
- Forum: Talking LiveCode
- Topic: Security Issue Related to Decompilation in LiveCode
- Replies: 13
- Views: 6452
Re: Security Issue Related to Decompilation in LiveCode
@LCMark As far as I know, the languages that are difficult to decompile are Dart and PureBasic. On YouTube, there are many channels sharing fundamental techniques for reverse engineering, or you can try consulting an expert for this. However, I still like LiveCode because its code can be maintained,...
- Fri Apr 19, 2024 7:24 am
- Forum: Talking LiveCode
- Topic: Security Issue Related to Decompilation in LiveCode
- Replies: 13
- Views: 6452
Re: Security Issue Related to Decompilation in LiveCode
There are many open-source programming languages where it requires more effort to decompile compared to LiveCode. The option of a script compiler might be considered as a last resort for LiveCode
https://livecode.com/the-script-compiler-project/
https://livecode.com/the-script-compiler-project/
- Fri Apr 19, 2024 7:17 am
- Forum: Talking LiveCode
- Topic: Security Issue Related to Decompilation in LiveCode
- Replies: 13
- Views: 6452
Security Issue Related to Decompilation in LiveCode
I have encountered a serious security issue with LiveCode. The code encryption feature in LiveCode does not adequately protect sensitive strings against decompilation. I can easily read sensitive strings after decompiling using tools like x64dbg. Steps to Reproduce: 1. Use LiveCode to create an appl...
- Thu Dec 14, 2023 1:58 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: interactive console app
- Replies: 3
- Views: 11526
Re: interactive console app
Thank you for your help Mark.
I will try it
I will try it
- Thu Dec 14, 2023 3:55 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: interactive console app
- Replies: 3
- Views: 11526
Re: interactive console app
can someone help me?
thanks
thanks
- Sat Dec 09, 2023 6:46 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: interactive console app
- Replies: 3
- Views: 11526
interactive console app
I'm currently creating a console app in LiveCode, but I'm not sure how to make it interact with the command line. I want to make it like this @echo off echo Hello, please introduce yourself. set /p name=Your name: echo Are you human? set /p human=y/n: echo What is your favorite programming language?...
- Thu Sep 14, 2023 4:38 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: how to make a scrapbook card of code snippets.
- Replies: 13
- Views: 6626
Re: how to make a scrapbook card of code snippets.
Thanks stam..



- Thu Jun 09, 2022 5:04 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: parsing data from html
- Replies: 13
- Views: 7044
Re: parsing data from html
Thanks stam and SWEdeAndy
- Wed Jun 08, 2022 5:28 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: parsing data from html
- Replies: 13
- Views: 7044
parsing data from html
Hello Members, I need your help. how do i parse data from html. this is an example of html <div class="landing-title _3-XoE">!2@08rkjh5Cjfe9t3IGJnLjjo21RvdT6eWtj6Sue8V+1WjCn+bC1hNjtUE4pcen1NMKYXx0rmYSSI4q4A==,abKRWqczK08SB9C6yIsRh0t2YJFh43GqKsOqNvB1Whk=,gPo6XYdaMLln95RwHkf9FOhrMOwpGKIBY5lk8ckrWGA=,w...
- Wed May 11, 2022 2:46 am
- Forum: Off-Topic
- Topic: Htmx and Hyperscript
- Replies: 4
- Views: 6107
Re: Htmx and Hyperscript
i use htmx for quite a long time. htmx like alpinejs, jquery. htmx works on the client side. like a javascript library but write the syntax directly in html, for example hx-get "https://urllivecode.server/get01" livecode server like php. browser will reload when sending http request( get or post) ht...