Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!
"By unusable I mean I can't execute lines of script from the message box. It seems like the message box window is losing focus before I can hit enter."
This is an issue that has been discussed in another thread, although there is no known foolproof solution. There are different focus/window hiding issues which may (or may not?) be related which vary from distro to distro and depending on which DE/WM/Compositor combo you're using. Xfce has been found to demonstrate exactly the unusable behavior you describe in several distros, for several users, while working fine for others. One thing you might try is closing the tools pallete before opening the message box. I suggest that since in some cases there is clearly some mysterious interaction between them. You might also try displaying the backdrop, which mitigates some window hiding issues sometimes seen under Plasma5 - it's at least worth a try Good luck!
wsamples wrote: Tue Feb 22, 2022 7:02 pm
"By unusable I mean I can't execute lines of script from the message box. It seems like the message box window is losing focus before I can hit enter."
This is an issue that has been discussed in another thread, although there is no known foolproof solution. There are different focus/window hiding issues which may (or may not?) be related which vary from distro to distro and depending on which DE/WM/Compositor combo you're using. Xfce has been found to demonstrate exactly the unusable behavior you describe in several distros, for several users, while working fine for others. One thing you might try is closing the tools pallete before opening the message box. I suggest that since in some cases there is clearly some mysterious interaction between them. You might also try displaying the backdrop, which mitigates some window hiding issues sometimes seen under Plasma5 - it's at least worth a try Good luck!
Oh thanks so much, I knew I wasn't (that) crazy, but it's nice to have confirmation. It would be great if we could track down exactly the things that are NOT compatible with the Linux Engine so we can avoid/uninstall whatever is doing those things.
Strange I wasn't able to install the installer on Ubuntu Studio (KDEPlasma) because it kept telling me it couldn't use the GDK that's installed. I copied the IDE to my desktop from a previous backup (the IDE is basically a portable app) and it seems to be running great! No issues on this distro so far (I had it installed previously too).
I'm pretty sure I had Xubuntu working with the IDE in the past, but maybe I had a minimal install of it then?
Anyway KDE Plasma has come a long way, it's quite zippy now (even with the GPU eye-candy) and I've read that they've reduced its resources usage too!
jacque wrote: Mon Dec 07, 2020 6:26 pm
I'm still trying to figure out why one would want to delete old message box entries. I find it very convenient to begin typing a command I used a long time ago and still have it pop up immediately after only two or three characters. Must be related to work flow I guess.
Hi Jacque,
I recently discovered the msg box has a limit as to how many previous lines it retains (I think) when I could not find an old command I was looking for. But I was not able to find out how many lines that is (or maybe an upgrade along the way just reset my back list?). Do you know if/what the limit is or if it's changeable? I'd probably set it to 1000 if possible!
on mouseUp
put 1 into KOUNT
repeat until line KOUNT of fld "fHISTORY" is empty
if line KOUNT of fld "fHISTORY" contains "MSG" then
set the textColor of line KOUNT of fld "fHISTORY" to red
end if
add 1 to KOUNT
end repeat
end mouseUp
Is PBU (Pretty Bloody Uninformative) as these lines end up coloured red:
on mouseUp
put 1 into KOUNT
repeat until line KOUNT of fld "fHISTORY" is empty
if line KOUNT of fld "fHISTORY" contains "Line" then
set the textColor of line KOUNT of fld "fHISTORY" to blue
end if
add 1 to KOUNT
end repeat
end mouseUp
as, while there are things that mention 'IDE', there are also things that mention 'MSG'
(and, where the MonoSodium Glutamate is escapes me),
and 'MessageBox'.