Search found 592 matches

by PaulDaMacMan
Thu Aug 18, 2022 1:42 am
Forum: LiveCode Builder
Topic: What is the mode of the "Code Editor" stack?
Replies: 28
Views: 13193

Re: What is the mode of the "Code Editor" stack?

so a non-loaded stack has a mode of 'empty'? Hmmm... Curious question. How could one test it? Under what circumstances would it matter? -- How could one test it: if the mode of stack "path/to/stackfile" is empty then -- do stuff to closed file such as... -- Under what circumstances would it matter?...
by PaulDaMacMan
Thu Aug 18, 2022 12:32 am
Forum: LiveCode Builder
Topic: What is the mode of the "Code Editor" stack?
Replies: 28
Views: 13193

Re: What is the mode of the "Code Editor" stack?

Script-only stacks won't have a style property, because of course that format only supports the behavior property but no others. But the mode of a stack reflects its state once loaded, independent of its storage format. The point was, in Richmonds test that stack has a Mode. of 0, which means "clos...
by PaulDaMacMan
Thu Aug 18, 2022 12:08 am
Forum: HTML5
Topic: Is there anyway to determine the OS of the device running a web deployment ?
Replies: 17
Views: 25736

Re: Is there anyway to determine the OS of the device running a web deployment ?

do "result = navigator.platform;" as javaScript answer the result In LCScript 'the platform' when running inside a browser / web deploy returns 'html5' or 'web' Similarly 'the processor' returns 'js' instead of more useful info such as the actual CPU type the web app is running on. But you can get ...
by PaulDaMacMan
Sun Aug 14, 2022 4:45 pm
Forum: LiveCode Builder
Topic: What is the mode of the "Code Editor" stack?
Replies: 28
Views: 13193

Re: What is the mode of the "Code Editor" stack?

x they refer to was called revNewScriptEditor May be obvious but... That 'revNewScriptEditor' not going to have a mode because it's a script-only stack that's used as a template to generate script editor window UIs, so you may have stacks "revNewScriptEditor 1", "revNewScriptEditor 2", "revNewScrip...
by PaulDaMacMan
Wed Aug 03, 2022 2:15 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Hide cursor redux
Replies: 15
Views: 5998

Re: Hide cursor redux

What Jacque said works for me on Mac20,1 10-Core Intel Core i9, macOS 12.4 (21F79) with Community v.9.6.3 This gives me an invisible cursor for the 3 second wait time: lock cursor; set the cursor to ""; wait 3 seconds; unlock cursor -- or --- lock cursor; set the cursor to EMPTY; wait 3 seconds; unl...
by PaulDaMacMan
Fri Jun 17, 2022 2:31 am
Forum: Talking LiveCode
Topic: Installation of apk
Replies: 14
Views: 17148

Re: Installation of apk

Perhaps the update wiped out dev mode and that developer mode "Easter egg" needs to be reapplied? Just a guess.
I'm on Apple for mobile devices now so I haven't been keeping up on Android updates lately.
by PaulDaMacMan
Fri Jun 17, 2022 2:24 am
Forum: Databases
Topic: Does anyone use LiveCode (on any platform) with Oracle?
Replies: 4
Views: 10034

Re: Does anyone use LiveCode (on any platform) with Oracle?

As a side note / trivia, Oracle once had their very own xTalk scripting language (MediaTalk) / engine called Oracle MediaObjects.
by PaulDaMacMan
Tue May 24, 2022 9:56 pm
Forum: Off-Topic
Topic: Writing metadata into image file.
Replies: 1
Views: 1877

Re: Writing metadata into image file.

Correct, since 2012 XMP is an ISO standard. https://www.iso.org/standard/75163.html For the question about image corruption... I would think that still depends on a bunch of factors, like which filesystem are you using (HFS,FAT32,ZFS,NFS, etc.)? What OS are you using? What software is writing the co...
by PaulDaMacMan
Tue May 10, 2022 3:20 am
Forum: Announcements
Topic: [ANN] macOSTools LCB Lib v.1.0.1 Native Dark Mode
Replies: 16
Views: 11057

Re: [ANN] macOSTools LCB Lib v.1.0.1 Native Dark Mode

Five minutes later... OK, changing the stack from "System Window" to "toplevel" cured the crash and "dark mode" works as advertized!? :D Great, thanks a LOT! However the window title stays black after setting to "light" again with -> setAppToLightMode Using "setWindowToLightMode the windowID of thi...
by PaulDaMacMan
Fri May 06, 2022 2:20 pm
Forum: Announcements
Topic: [ANN] macOSTools LCB Lib v.1.0.1 Native Dark Mode
Replies: 16
Views: 11057

Re: [ANN] macOSTools LCB Lib v.1.0.1 Native Dark Mode

Hi Paul, just tested light/dark mode and first time I clicked "Dark mode" in your example stack, LC crashed. :D Second time I only got an error: button "DarkMode": execution error at line 4 (LCB Error in file macOStools.lcb at line 406: -[NSTaggedPointerString charValue]: unrecognized selector sent...
by PaulDaMacMan
Thu May 05, 2022 2:30 am
Forum: Off-Topic
Topic: An ARM, an apple and a raspberry.
Replies: 10
Views: 3746

Re: An ARM, an apple and a raspberry.

Also Android apps are based on Java and iOS isn't. Actually I meant Macintosh computers with ARM chips. I imagine some sort of virtualization would work well. Likely that would be faster than translating from ARM to X86 instructions set. Someone has already gotten a Linux desktop OS to build and bo...
by PaulDaMacMan
Thu May 05, 2022 2:21 am
Forum: Internet
Topic: libPOP3
Replies: 4
Views: 5130

Re: libPOP3

Awesome, thanks for sharing!
by PaulDaMacMan
Tue Apr 26, 2022 9:31 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Clear the MessageBox
Replies: 88
Views: 43304

Re: Clear the MessageBox

That 200 limit is "hardcoded" as a constant in the IDE file revmessageboxbehavior.livecodescript. I think it could / should be made setable. Seems like a rather arbitrary number to me. script "revMessageBoxBehavior" ##GH created 12/11/2014 ##GH last updated 31/12/2014 local lSelectedCard, lCardHisto...
by PaulDaMacMan
Wed Apr 06, 2022 12:41 pm
Forum: Announcements
Topic: [ANN] macOSTools LCB Lib v.1.0.1 Native Dark Mode
Replies: 16
Views: 11057

Re: [ANN] macOSTools LCB Lib v.1.0.1 Native Dark Mode

Hi Paul, Freeware + GPLv3 = all good, just post your .lcb code somewhere people can get it if you make any changes. My .lcb code? You mean your .lcb code? I could add a link to your github page. Sorry, now I'm cofused a lot. :D It looks like LC 10 is still being built against 10.9 SDK!? But maybe t...
by PaulDaMacMan
Mon Apr 04, 2022 11:54 pm
Forum: Announcements
Topic: [ANN] macOSTools LCB Lib v.1.0.1 Native Dark Mode
Replies: 16
Views: 11057

Re: [ANN] macOSTools LCB Lib v.1.0.1 Native Dark Mode

Hi Paul, Are you using the version here? https://github.com/PaulMcClernan/OpenXT ... -App-Tools yes, will keep GPLv3 in mind, after I have looked up on the net what that means for my freeware. I hardly understand all the fineprint if it is written in german. 8-) Just send me a copy of a new version...

Go to advanced search