Re: workaround for cut-off text in native scroller?

2021-06-01 Thread Klaus major-k via use-livecode
Hi Brian, > Am 01.06.2021 um 14:58 schrieb Brian Milby via use-livecode > : > > I’ll need to build a test project this evening to reproduce using your full > screen mode. So far I have only used “empty” with a scroller. Hopefully > someone else will have more to suggest before then. take my

Re: workaround for cut-off text in native scroller?

2021-06-01 Thread Klaus major-k via use-livecode
Hi Brian, > Am 01.06.2021 um 13:57 schrieb Brian Milby via use-livecode > : > > Which full screen mode are you using? > The referenced fix works by extending the scroll region longer than the > actual content with a goal of allowing you to get to the last line. What are > you seeing when you

Re: workaround for cut-off text in native scroller?

2021-06-01 Thread Klaus major-k via use-livecode
Hi Brian, > Am 01.06.2021 um 13:57 schrieb Brian Milby via use-livecode > : > > Which full screen mode are you using? on my device: exactfit > The referenced fix works by extending the scroll region longer than the > actual content with a goal of allowing you to get to the last line. > What

workaround for cut-off text in native scroller?

2021-06-01 Thread Klaus major-k via use-livecode
Hi friends, are there any (working!) workaround for this pesty bug where a correctly set up native scroller does not show the last line(s)? Bug #: I am really suprised that noone has noticed resp. reported this before, since this is a real sh

Re: 3-way slider control

2021-05-25 Thread Klaus major-k via use-livecode
Hi freinds, this - ≥ is a MAC-only character and will throw an error on Windows! Use/replace with: <= >= <> for full platform comatibilty! > Am 25.05.2021 um 19:06 schrieb Roger Guay via use-livecode > : > > Hi Paul, I’m not able to duplicate the error here. Can you tell what control > you wer

Re: Implementing UNDO

2021-05-22 Thread Klaus major-k via use-livecode
Hi Trevor, > Am 22.05.2021 um 18:49 schrieb Trevor DeVore via use-livecode > : > ... > Here is a link to the code: > > https://github.com/trevordevore/levure/tree/develop/framework/helpers/undo_manager > This should be easy enough to add to any app. I just checked the code and > there are no cal

Re: lock messages and navigation bar widget

2021-05-21 Thread Klaus major-k via use-livecode
Hi Brian, > Am 21.05.2021 um 20:34 schrieb Brian Milby via use-livecode > : > > Works as expected/coded. hm, I had the naive thinking that "lock messages" would erm. lock the messages. und just change the icon. :-D But this does obviously not apply to the navigation bar widget. > Not sure h

lock messages and navigation bar widget

2021-05-21 Thread Klaus major-k via use-livecode
Hi friends, am I missing something? This does not work with my navigation bar widget at least not as exspected: on mouseUp lock messages set the hiliteditemname of widget 1 to "contacts" unlock messages end mouseUp - Icon does change, but the widgets "hi

Re: Implementing UNDO

2021-05-21 Thread Klaus major-k via use-livecode
Hi Jaqueline, > Am 21.05.2021 um 17:32 schrieb J. Landman Gay via use-livecode > : > > If you only need a simple, single-level undo you can use the built-in LC > "undo" command. The limitation is that you can't undo/redo repeatedly through > more than the last action. oh, yes, thanks for the

Re: Implementing UNDO

2021-05-21 Thread Klaus major-k via use-livecode
Hi Paul and all, > Am 21.05.2021 um 17:05 schrieb Paul Dupuis via use-livecode > : > > As other have said, the basic mechanism is to have a UNDO LIFO (last in first > out) queue or stack (no LC stack for a data structure stack). For each action > you want 'undoable" you need a handler (do[acti

Re: Implementing UNDO

2021-05-21 Thread Klaus major-k via use-livecode
Hi Mark, > Am 21.05.2021 um 16:42 schrieb Mark Wieder via use-livecode > : > On 5/21/21 6:19 AM, Klaus major-k via use-livecode wrote: >> OK, something like this, but for graphics, images etc., too. 8-) >> Some general hints will be OK. >> Except for TEXT I don't

Re: Implementing UNDO

2021-05-21 Thread Klaus major-k via use-livecode
Hi Brian, > Am 21.05.2021 um 16:25 schrieb Brian Milby via use-livecode > : > > For text, the method will depend on the size of the text. In general, > implement an undo stack and a redo stack. For single line fields it could > simply be a list for each. After each change, add entry to undo

Re: Implementing UNDO

2021-05-21 Thread Klaus major-k via use-livecode
Hi Mike, > Am 21.05.2021 um 15:23 schrieb Mike Kerner via use-livecode > : > > I _think_ that there might also be an undo manager built into levure, if > you are interested. oh, OK, sounds great, will take a look! Thank you! Best Klaus -- Klaus Major https://www.major-k.de https://www.major-

Re: Implementing UNDO

2021-05-21 Thread Klaus major-k via use-livecode
Text > end mouseUp OK, something like this, but for graphics, images etc., too. 8-) Some general hints will be OK. Except for TEXT I don't have a clue yet. Maybe store "the properties of xyz" and re-apply them when the user hits CMD-Z? > Craig > >> On May 21, 2021, a

Implementing UNDO

2021-05-21 Thread Klaus major-k via use-livecode
Hi friends, any hints on how to implement some UNDO mechanism into a LC standalone? The stack(s) in question will not only handle TEXT. Thanks for any insight! Best Klaus -- Klaus Major https://www.major-k.de https://www.major-k.de/bass kl...@major-k.de

Re: LC puts stuff in the trash upon quit!

2021-05-15 Thread Klaus major-k via use-livecode
Hi Rick, > Am 15.05.2021 um 15:46 schrieb Rick Harrison via use-livecode > : > > I have noticed this oddity for a long time. > No other program that I own does this. this is a known bug: > Why is LC so dirty? Must have to do with cheese...

Re: install custom apps from Google Drive, known limits?

2021-04-29 Thread Klaus major-k via use-livecode
only checks to see if they're different. thank you very much, very helpful! > > > On 4/29/21 1:31 PM, Klaus major-k via use-livecode wrote: >> Hi all, >> I created two Android apps and put them on my Google Drive. >> Then I installed one app from there, no problem. >

Re: install custom apps from Google Drive, known limits?

2021-04-29 Thread Klaus major-k via use-livecode
Hi Panos, > Am 29.04.2021 um 20:48 schrieb panagiotis merakos via use-livecode > : > > Hello Klaus, > > A rough guess is that both appd had the same Identifier (e.g. > "com.yourcompany.yourapp"). This is what makes an app unique - not the > display name. AHA! Thank you very much! I knew I was

install custom apps from Google Drive, known limits?

2021-04-29 Thread Klaus major-k via use-livecode
Hi all, I created two Android apps and put them on my Google Drive. Then I installed one app from there, no problem. Then I installed the other app from there, also no problem. But I was very suprised that only the second installed app was left on my cellphone. The first one was obvioulsy overwr

Re: PDF Widget

2021-04-24 Thread Klaus major-k via use-livecode
box" on Android. Yes, call me lazy... 8-) > Op 23-4-2021 om 13:48 schreef Klaus major-k via use-livecode: >> Hi Tore, >> >>> Am 23.04.2021 um 13:28 schrieb Tore Nilsen via use-livecode >>> : >>> >>> Not everyone needs it. >> that wa

Re: PDF Widget

2021-04-23 Thread Klaus major-k via use-livecode
k that it would be a good thing if it was possible to buy > widgets on a per widget basis. > That would enhance the LiveCode experience in my mind. Definitively! > Best regards > Tore Nilsen > >> 23. apr. 2021 kl. 13:24 skrev Klaus major-k via use-livecode >> : >

Re: PDF Widget

2021-04-23 Thread Klaus major-k via use-livecode
> Am 23.04.2021 um 13:20 schrieb Brian Milby via use-livecode > : > > Either that or everyone that wants it has business edition? EVERYONE needs and wants it, but not everyone has the business edition! :-D > Sent from my iPhone > >> On Apr 23, 2021, at 7:09 A

cameracontrol, knowing the physical resolution of the camera

2021-04-23 Thread Klaus major-k via use-livecode
Hi all, we have this wonderful "cameracontrol" in LC. :-) Is there a way to get the physical resolution of the devices camera BEFORE we do -> cameracontrollset "el camera", tRect Or at least its aspect ratio? Know what I mean? We definitively need this info to be able to set up a correct RECT f

Re: PDF Widget

2021-04-23 Thread Klaus major-k via use-livecode
> Am 22.04.2021 um 15:17 schrieb Klaus major-k via use-livecode > : > > Hi all, > > as far as I know the "PDF widget" is only available in the > BUSINESS Version of Livecode. > > I already asked this in the past, but I would like to be > able to bu

PDF Widget

2021-04-22 Thread Klaus major-k via use-livecode
Hi all, as far as I know the "PDF widget" is only available in the BUSINESS Version of Livecode. I already asked this in the past, but I would like to be able to buy this widget separately. Any idea if LC is planning to sell this separately at some time in the future? Best Klaus -- Klaus M

Re: native scroller cuts off parts of last line in a field

2021-04-21 Thread Klaus major-k via use-livecode
Hi andrew, > Am 21.04.2021 um 20:10 schrieb Andrew at MidWest Coast Media via use-livecode > : > > Sorry to chime in late, but do you have the fullscreenMode of the stack set? yes, sure! :-D > This sounds like a problem that I noticed @ > https://quality.livecode.com/show_bug.cgi?id=21456 Th

Re: native scroller cuts off parts of last line in a field

2021-04-21 Thread Klaus major-k via use-livecode
> Am 20.04.2021 um 18:43 schrieb Klaus major-k via use-livecode > : > > Hi all, > > FYI, I created a report: > <https://quality.livecode.com/show_bug.cgi?id=23177> since this is a basic and VERY important feature, please add a comment. Especially if this is a

Re: native scroller cuts off parts of last line in a field

2021-04-20 Thread Klaus major-k via use-livecode
Hi all, FYI, I created a report: Best Klaus -- Klaus Major https://www.major-k.de https://www.major-k.de/bass kl...@major-k.de ___ use-livecode mailing list use-livecode@lists.runrev.com Please vi

Re: native scroller cuts off parts of last line in a field

2021-04-20 Thread Klaus major-k via use-livecode
Hi Brian, > Am 20.04.2021 um 13:48 schrieb Brian Milby via use-livecode > : > > I think that is just a bug. wonderful! :-( > See here for workaround idea: > https://github.com/Himalayan-Academy/Siva-Siva-App/blob/nightly/behaviors/behavior_mobileScroller.livecodescript > Basic idea is to add

native scroller cuts off parts of last line in a field

2021-04-20 Thread Klaus major-k via use-livecode
Hi all, see subject... I have a field, I grouped it and in the IDE I show the vscrollbar of that group. I added two extra EMPTY lines at the end of that field AFTER the last line, and in the IDE I can read the last line and see the bit of white space below. Then I created a native scroller acco

Re: Android Barcode Scanner widget

2021-04-17 Thread Klaus major-k via use-livecode
Hi all, > Am 16.04.2021 um 22:04 schrieb Klaus major-k via use-livecode > : > > Hi Jaques, > >> Am 16.04.2021 um 21:59 schrieb J. Landman Gay via use-livecode >> : >> >> On 4/16/21 2:38 PM, JeeJeeStudio via use-livecode wrote: >>> But it could

Re: Android Barcode Scanner widget

2021-04-16 Thread Klaus major-k via use-livecode
Hi Jaques, > Am 16.04.2021 um 21:59 schrieb J. Landman Gay via use-livecode > : > > On 4/16/21 2:38 PM, JeeJeeStudio via use-livecode wrote: >> But it could be a Rights issue, you can check if the app has rights to use >> the vibration, requsting these are also in the dictionary > > I can't ge

Re: Android splash and icon

2021-04-16 Thread Klaus major-k via use-livecode
Hi Jaques, > Am 16.04.2021 um 21:05 schrieb J. Landman Gay via use-livecode > : > > On 4/16/21 1:27 PM, Klaus major-k via use-livecode wrote: >> Yo, if the steps to the new world would not be so steep... ;-) > > They're only steep for a little while. I'm very

Re: Android Barcode Scanner widget

2021-04-16 Thread Klaus major-k via use-livecode
Hoi JeeJee, > Am 16.04.2021 um 21:38 schrieb JeeJeeStudio via use-livecode > : > > Hoi Klaus, > > on mouseUp > > if the environment is "mobile" then >mobileVibrate 3 >end if > end mouseUp > > the vibrate has nothing to do with the barcode reader. > But it could be a Rights issue, you

Re: Android splash and icon

2021-04-16 Thread Klaus major-k via use-livecode
Hi Jaques, > Am 16.04.2021 um 20:27 schrieb J. Landman Gay via use-livecode > : > > On 4/16/21 8:42 AM, Klaus major-k via use-livecode wrote: >> I searched the LC android froum and read a lot of entries until I found the >> final hint: >> I selected "d

Re: Android splash and icon

2021-04-16 Thread Klaus major-k via use-livecode
Hi Jaques, > Am 16.04.2021 um 20:18 schrieb J. Landman Gay via use-livecode > : > > On 4/16/21 11:48 AM, Klaus major-k via use-livecode wrote: >> Thanks, anyone knows how big the icon needs to be? >> Maybe even several icons in one file like the ICO files on Windows? &

Re: Android splash and icon

2021-04-16 Thread Klaus major-k via use-livecode
Hi Andrew, > Am 16.04.2021 um 18:39 schrieb Andrew at MidWest Coast Media via use-livecode > : > > The Standalone Application Settings for this are not as intuitive as they > could be. well said. :-) > You do not need a splash screen, because it in fact does nothing on Android. Ah, OK, tha

Re: Android splash and icon

2021-04-16 Thread Klaus major-k via use-livecode
Hi all, maybe this is helpful to others... > Am 16.04.2021 um 12:23 schrieb Klaus major-k via use-livecode > : > ... > Now I have to find out how to pass the APK to a customer of mine without > the use of the Google Play Store or something. > > Unfortunately my customer

Android Barcode Scanner widget

2021-04-16 Thread Klaus major-k via use-livecode
Hi all, a problem with the barcode sacanner on Android. I have this script: - on barcodeDetected pBarcode, pID put pBarcode["raw value"] into tBarCode ## It definitively works answer tBarCode ## This works, too, fetch data from a good

Android splash and icon

2021-04-16 Thread Klaus major-k via use-livecode
Hi friends, the docs are quite sparse on this, or did I miss this? But I already found that we need a 48*48 pixel png (really that small?) for an icon for our android apps. But what about the "splash"? What do we need to supply here? Or ist is enough to "fake" a splash screen with the first car

Re: Positioning object in a loclocked group

2021-04-15 Thread Klaus major-k via use-livecode
Hi Richard and all, > Am 15.04.2021 um 18:07 schrieb Richard Gaskin via use-livecode > : > > Klaus Major wrote: >> I have a group set to 600*600 pixel and loclocked. >> Inside of the group there are two invisible objects, a button and a graphic. >> Now if I: >> ... >> create btn "b1" in grp "THE

Re: Positioning object in a loclocked group

2021-04-15 Thread Klaus major-k via use-livecode
Hi Stepehen, > Am 15.04.2021 um 17:32 schrieb Stephen Barncard via use-livecode > : > > Well for one thing there’s a keyword in the name of the object. > Try using a name like “TheGroup” since this is a string, it does not matter! The actual name of my group is "galerie_km", but that does not c

Positioning object in a loclocked group

2021-04-15 Thread Klaus major-k via use-livecode
Hi all, I am sure there is a technical reason for this! 8-) I have a group set to 600*600 pixel and loclocked. Inside of the group there are two invisible objects, a button and a graphic. Now if I: ... create btn "b1" in grp "THE group" ## and set the loc of btn "b1" of grp "THE group" to whate

Re: More Android woes

2021-04-07 Thread Klaus major-k via use-livecode
Hi Panos, > Am 07.04.2021 um 20:33 schrieb panagiotis merakos via use-livecode > : > > Hello Klaus, > > Does your stack by any chance include a barcode scanner widget? I think you > should follow the workaround described here: > > https://quality.livecode.com/show_bug.cgi?id=22384 EX-ACTLY!

More Android woes

2021-04-07 Thread Klaus major-k via use-livecode
Hi all, macOS 10.14.6, LC 9.6.2 rc4 Today i removed JAVA 9.x, installed JAVA 8 and "Android Studio.app" on my Mac. then after hours of despair (why on earth must this be so difficult?) I could tell LC where the SDk etc. were. But only with the help of this forum thread and a Bernard, thank you

Re: Lock/Unlock Screen of another stack

2021-04-04 Thread Klaus major-k via use-livecode
Hi Roger, > Am 05.04.2021 um 00:56 schrieb Roger Guay via use-livecode > : > > Hi all, > > I have a button on one stack that hides and shows controls of another stack. > Is it possible to add Lock screen for effect and Unlock screen with effect in > that button? Can’t seem to make it work….

Re: mouseenter/mouseleave and pointer tool

2021-03-30 Thread Klaus major-k via use-livecode
Hi Jim, > Am 30.03.2021 um 22:10 schrieb Jim Lambert via use-livecode > : > > Actually I'm not entirely crazy. > Here is a MOV showing the anomalous behavior of mouse events executing even > when the Pointer Tool is active. > > https://netrin.on-rev.com/videos/lc_select_issue.mov >

Re: Android and httpS

2021-03-30 Thread Klaus major-k via use-livecode
Hi Panos, > Am 30.03.2021 um 19:45 schrieb panagiotis merakos via use-livecode > : > > Hello Klaus, > > Heh sorry, I am a non-native English speaker as well :) OK, what is the greek abbreviation for this? Wouldn't have understood that, too. :-D > Afk --> away from keyboard > I will post the l

Re: Android and httpS

2021-03-30 Thread Klaus major-k via use-livecode
Hi Panos, > Am 30.03.2021 um 19:23 schrieb panagiotis merakos via use-livecode > : > > Hello all, > > Android 9+ by default blocks non-https connections. You can workaround it > by tweaking the manifest file. There is a bug report (and a pull request) > about it. thank you! > I am afk ... yo

Re: Android and httpS

2021-03-30 Thread Klaus major-k via use-livecode
Hi Ralph, > Am 30.03.2021 um 19:02 schrieb Ralph DiMola via use-livecode > : > > I have links to http(non-secure) sites in both iOS and Android apps. I > disabled ATS(standalone settings) for iOS. Android just works. I think I > heard in passing that Google will address non-secure web links at s

Android and httpS

2021-03-30 Thread Klaus major-k via use-livecode
Hi all, quick question: iOS only allows links to httpS sites. Is this also the case for ANDROID? Thanks in advance! Best Klaus -- Klaus Major https://www.major-k.de https://www.major-k.de/bass kl...@major-k.de ___ use-livecode mailing list use-live

Re: mouseenter/mouseleave and pointer tool

2021-03-30 Thread Klaus major-k via use-livecode
Hi Richard, > Am 30.03.2021 um 04:38 schrieb Richard Gaskin via use-livecode > : > > Jim Lambert wrote: > > > Every time I click on a button in the IDE with the pointer tool > > in order to select and, say, move it, I'd prefer if the mousedown/up > > scripts didn't fire off because I'm editing

Re: mouseenter/mouseleave and pointer tool

2021-03-29 Thread Klaus major-k via use-livecode
Hi all, > Klaus wrote: > when the pointer tool is active, "mouseenter" and "mouseleave" > handlers are executed nevertheless!? > > I don't this this is correct behaviour! reported: Best Klaus -- Klaus Major https://www.major-k.de https://

mouseenter/mouseleave and pointer tool

2021-03-29 Thread Klaus major-k via use-livecode
Hi friends, when the pointer tool is active, "mouseenter" and "mouseleave" handlers are executed nevertheless!? I don't this this is correct behaviour! For the sake of "conceptional continuity" (©Frank Zappa) then all other mouse handlers should be executed and we don't want that. :-) All or n

mouseenter/mouseleave and pointer tool

2021-03-29 Thread Klaus major-k via use-livecode
Hi friends, when the pointer tool is active, "mouseenter" and "mouseleave" handlers are executed nevertheless!? I don't this this is correct behaviour! For the sake of "conceptional continuity" (©Frank Zappa) then all other mouse handlers should be executed and we don't want that. :-) All or n

Re: Unreliable File Deletion

2021-03-28 Thread Klaus major-k via use-livecode
Hi friends, > Am 28.03.2021 um 19:11 schrieb R.H. via use-livecode > : > ... > ... put specialfolderpath("resources") &"/temp.txt" into tFilePath > ... put tOut into URL("binfile:"&tFilePath) > ... you may already know this, but this will not work in a standalone! We will surely not have write p

Re: Livestreaming some LiveCoding right now

2021-03-11 Thread Klaus major-k via use-livecode
Hi Andre and all, > Am 11.03.2021 um 20:24 schrieb Andre Garzia via use-livecode > : > > Hey Friends, > ... > As for "status" being a reserved word, well, it is colorised as if it is > but you can use it without any problem. I've been using it for years. then you were lucky! I have been using

Android and Mac question

2021-02-23 Thread Klaus major-k via use-livecode
Hi all, I have one Android related and one MERGEXT related question I already posted in the forum. Maybe someone can take a look? Usage of the Android Barcode Scanner Widget: Question #1 The docs are not helpful at all. Using MERGEXT on a

Re: Wasm and the LC Roadmap

2021-02-17 Thread Klaus major-k via use-livecode
To all who are also not familiar witht the gazillion abbreviations, David is talking about -> WebaSseMbly :-) > Am 17.02.2021 um 16:13 schrieb David Bovill via use-livecode > : > > Anyone know the wasm plans? > > I’m Woking on a project in collaboration with a number of other platforms and > p

LC Roadmap

2021-02-12 Thread Klaus major-k via use-livecode
Hi folks, see subject -> Last Updated on July 14, 2020 I think it is time to update the roadmap, what do you think? Best Klaus -- Klaus Major https://www.major-k.de https://www.major-k.de/bass kl...@major-k.de ___ use-livecode mailing list use-livec

Re: Sign a Mac App, also sign the DMG?

2021-02-04 Thread Klaus major-k via use-livecode
On 2/4/2021 11:40 AM, Klaus major-k via use-livecode wrote: >> Hi friends, >> >> quick question, now we have a Mac app, signed and notarized >> and what not, is it also neccessary for the DMG we create from >> that app for distribution? >> >> Thanks for

Sign a Mac App, also sign the DMG?

2021-02-04 Thread Klaus major-k via use-livecode
Hi friends, quick question, now we have a Mac app, signed and notarized and what not, is it also neccessary for the DMG we create from that app for distribution? Thanks for any insight! Best Klaus -- Klaus Major https://www.major-k.de https://www.major-k.de/bass kl...@major-k.de

Re: Files() can't list rtfd files (mac)

2021-02-03 Thread Klaus major-k via use-livecode
Hi Mic, > Am 03.02.2021 um 19:23 schrieb Michael Kristensen via use-livecode > : > > Hi there > > The files function can’t list .rtfd files. > They are a special rtf format on Mac. > Whats up? like other Mac things (applications!), RTFD files are actually FOLDERS in disguise! So you need to r

Re: GRID and GRIDSIZE

2021-01-20 Thread Klaus major-k via use-livecode
Hi Bob, > Am 20.01.2021 um 23:32 schrieb Bob Sneidar via use-livecode > : > > If that were allowed one could conceive of writing a standalone that was it’s > own IDE and selling it as a third party app. this is in any case explicitely forbidden by LC license agreement (the fineprint)! :-) Bu

Re: GRID and GRIDSIZE

2021-01-20 Thread Klaus major-k via use-livecode
Hi Richard, > Am 20.01.2021 um 21:52 schrieb Richard Gaskin via use-livecode > : > ... > >>> is it correct that "snap to grid" does only work in the IDE in > >>> "Pointer" mode? > > > >> Given its role in snapping the dragging of selected objects, what > >> else might it do? > > I actually exspec

Re: GRID and GRIDSIZE

2021-01-20 Thread Klaus major-k via use-livecode
Hi Richard, > Am 20.01.2021 um 21:02 schrieb Richard Gaskin via use-livecode > : > > Klaus wrote: > > > is it correct that "snap to grid" does only work in the IDE in > > "Pointer" mode? > > Given its role in snapping the dragging of selected objects, what else might > it do? I actually exsp

GRID and GRIDSIZE

2021-01-20 Thread Klaus major-k via use-livecode
Hi friends, is it correct that "snap to grid" does only work in the IDE in "Pointer" mode? Thanks for any insight. Best Klaus -- Klaus Major https://www.major-k.de kl...@major-k.de ___ use-livecode mailing list use-livecode@lists.runrev.com Please v

Re: background images

2021-01-18 Thread Klaus major-k via use-livecode
Hi Tim, > Am 18.01.2021 um 19:12 schrieb Tim Selander via use-livecode > : > > This is driving me nuts. > > Have a 'background' group with an image. If I change the filename of an image > on one card, ALL the cards change to that image. Yet a field in the same > group properly will take uniqu

Re: Audioclips overlapping

2021-01-09 Thread Klaus major-k via use-livecode
Hi Richmond, > Am 09.01.2021 um 15:52 schrieb Richmond via use-livecode > : > > When I try to play a succession of audioClips they overlap each other. > Is there a way to ensure each clip does not start playing before the > preceding one has finished? do you mean this? ... play ac "a_clip.wav"

Re: Server error? SOLVED

2020-12-31 Thread Klaus major-k via use-livecode
Hi Bob, > Am 31.12.2020 um 18:01 schrieb Bob Sneidar via use-livecode > : > > Hey, what I said! :-) oh, really? Sorry must have missed that. :-( Anyway, a happy (and better) new year, everybody! > Bob S > > On Dec 31, 2020, at 3:08 AM, Klaus major-k via use-livecode

Re: Server error? SOLVED

2020-12-31 Thread Klaus major-k via use-livecode
Hi Mark, > Am 31.12.2020 um 12:30 schrieb Mark Waddingham via use-livecode > : > > On 2020-12-31 11:08, Klaus major-k via use-livecode wrote: >> Hi all, >> we could finally solve the problem by copying the revsecurity.dll from >> LC 9 to the LC 5.x runtime folde

Re: Server error? SOLVED

2020-12-31 Thread Klaus major-k via use-livecode
runtime. > Am 30.12.2020 um 16:09 schrieb Klaus major-k : > > Hi all, > > I am currently working on a stack in LC 5.x for a customer. > This stack only loads another stack from a server and displays it. > > Works fine in the IDE, but I get this error when trying this in

Re: Server error?

2020-12-31 Thread Klaus major-k via use-livecode
Hi Bob, > Am 31.12.2020 um 01:53 schrieb Bob Sneidar via use-livecode > : > > Just a shot in the dark, when you are working in the IDE, do you have a newer > version of Livecode running? no. > Bob S > ... > Am 30.12.2020 um 23:59 schrieb Bob Sneidar via use-livecode > mailto:use-livecode@lis

Re: Server error?

2020-12-30 Thread Klaus major-k via use-livecode
Hi Bob, > Am 30.12.2020 um 23:59 schrieb Bob Sneidar via use-livecode > : > > TLSv1 is dead. It uses the OpenSSL library that had the Heartbleed > vulnerability. Not sure if v5 libraries can use the latest encryption > libraries. I don’t know why not. the big question is: Why does it work in

Server error?

2020-12-30 Thread Klaus major-k via use-livecode
Hi all, I am currently working on a stack in LC 5.x for a customer. This stack only loads another stack from a server and displays it. Works fine in the IDE, but I get this error when trying this in the standalone, alle externals etc. are in fact present. The error reads: --

Re: new datagrid ONLY reorder

2020-12-29 Thread Klaus major-k via use-livecode
> Am 29.12.2020 um 19:44 schrieb Klaus major-k via use-livecode > : > Hi all, > ... > OK, so this is possible, but this: > --- > on mouseUp > set the dgProp["edit mode action control"] of group "Alphabe

Re: new datagrid ONLY reorder

2020-12-29 Thread Klaus major-k via use-livecode
Hi all, > Am 29.12.2020 um 18:32 schrieb Klaus major-k via use-livecode > : > ... > > Setting either of these properties to empty will result in the control not > being displayed! > looks like I completely misunderstood the last line. 8-) OK, so this

new datagrid ONLY reorder

2020-12-29 Thread Klaus major-k via use-livecode
Hi friends, I just took a look at the new DG features as shown in the lesson: After setting -> set the dgEditMode of group "xxx" to true we have an nice SVG on the left side to delete the row and a nice one o

Re: play command and wav file

2020-12-19 Thread Klaus major-k via use-livecode
Hi listee, > Am 19.12.2020 um 17:15 schrieb jbv via use-livecode > : > > Hi list, > Is there a way to play a wav file that is already loaded > in memory as binary data ? do you mean imported as audioclip? If yes, just -> play ac "nameofclip.wav" If not, please specify. :-) > The doc only says

Re: export snapshot woverwrites variable?

2020-12-10 Thread Klaus major-k via use-livecode
Hi Mark, > Am 10.12.2020 um 15:25 schrieb Mark Waddingham via use-livecode > : > > On 2020-12-10 13:55, Klaus major-k via use-livecode wrote: >> Hi friends, >> ## Doing this again fixes the inconvenience and I can continue: >> put dasObjekt() into tObject >>

Re: export snapshot woverwrites variable?

2020-12-10 Thread Klaus major-k via use-livecode
2020, at 8:56 AM, Klaus major-k via use-livecode >> wrote: >> Hi friends, >> just found a very strange thing... >> I have this script: >> ... >> put dasObjekt() into tObject >> ## returns in this special case -> image "Bild_1" >> flip

Re: export snapshot woverwrites variable?

2020-12-10 Thread Klaus major-k via use-livecode
ou were working at Livecode and could answer this? :-D But yes, obvioulsy, question is: desired/correct behviour? Should I use DO somehow here? > Sent from my iPhone > >> On Dec 10, 2020, at 8:56 AM, Klaus major-k via use-livecode >> wrote: >> >> Hi friends, >

export snapshot woverwrites variable?

2020-12-10 Thread Klaus major-k via use-livecode
Hi friends, just found a very strange thing... I have this script: ... put dasObjekt() into tObject ## returns in this special case -> image "Bild_1" flip tObject horizontal # Overwrite image data export snapshot from rect(the rect of tObject) of tObject to tObject as PNG ## But now, LC gives an

Re: Some sad news

2020-12-04 Thread Klaus major-k via use-livecode
> Am 04.12.2020 um 13:07 schrieb Heather Laine via use-livecode > : > > Dear List Folks, > > I have today received some sad news. I am told that Hermann Hoch passed away > in April this year, from a stroke. I know many of you knew him either > remotely or having met him in person at a confe

Re: scrollbars of treeview widget

2020-11-26 Thread Klaus major-k via use-livecode
Hi Brian, > Am 26.11.2020 um 15:26 schrieb Brian Milby via use-livecode > : > > Very easy to implement. OK, good to hear, please add this already to LC9.6.2 RC2. 8-) > I would suggest a setting for the width. I think the intent was to mimic the > look of the mobile scroller which isn’t nor

scrollbars of treeview widget

2020-11-26 Thread Klaus major-k via use-livecode
Hi friends, FYI: I just created an enhancement request to make the scrollbars of the treeview widget a TAD wider, feel free to add a comment. Best Klaus -- Klaus Major https://www.major-k.de kl...@major-k.de

Re: Strange bug

2020-11-24 Thread Klaus major-k via use-livecode
Hi Matthias, > Am 24.11.2020 um 14:02 schrieb Klaus major-k : > > Hi Matthias, > >> Am 24.11.2020 um 13:46 schrieb improve-revolution-010...@m-r-d.de: >> >> May this is because the drapDrop message is still processed or how this is >> called in english.

Re: Strange bug

2020-11-24 Thread Klaus major-k via use-livecode
> Am 24.11.2020 um 13:32 schrieb Klaus major-k via use-livecode > : > > Hi friends, > > FYI: I found a very strange and serious bug, if you have a minute, please > take a look: > <https://quality.livecode.com/show_bug.cgi?id=22992> > A real showstopper in

Strange bug

2020-11-24 Thread Klaus major-k via use-livecode
Hi friends, FYI: I found a very strange and serious bug, if you have a minute, please take a look: A real showstopper in my opinion! With an example stack (in my dropbox, my browser does not allow me to select a file as attachment!?). Shows t

Re: Getting a real number from scientific notation

2020-11-23 Thread Klaus major-k via use-livecode
> Am 23.11.2020 um 23:09 schrieb Klaus major-k via use-livecode > : > > Correction! > >> Am 23.11.2020 um 22:55 schrieb Klaus major-k via use-livecode >> : >> ... >> on MouseUp >> set the numberformat to 0 >> # NO quotes around this 0 or LC

Re: Getting a real number from scientific notation

2020-11-23 Thread Klaus major-k via use-livecode
Correction! > Am 23.11.2020 um 22:55 schrieb Klaus major-k via use-livecode > : > ... > on MouseUp > set the numberformat to 0 > # NO quotes around this 0 or LC gives an error Quotes are in fact allowed for the numberformat, but I copied the script from my mail client and th

Re: Getting a real number from scientific notation

2020-11-23 Thread Klaus major-k via use-livecode
Hi Roger, you forgot + 0 :-) on MouseUp set the numberformat to 0 # NO quotes around this 0 or LC gives an error put 4.21911e+11 + 0 End mouseUp -> 42191100 > Am 23.11.2020 um 22:50 schrieb Roger Guay via use-livecode > : > on MouseUp > set the numberformat to “0"

Re: reading QR-code on Mac from an imported image

2020-11-23 Thread Klaus major-k via use-livecode
Hi Andrew, > Am 23.11.2020 um 21:39 schrieb Andrew at MidWest Coast Media via use-livecode > : > > You should be able to use mergAV with the source set as library or album. I > use the live camera (“video”) to read barcodes. > mergAVRequestMediaAccess "video" > --Andrew Bell > on mouseDow

Re: reading QR-code on Mac from an imported image

2020-11-23 Thread Klaus major-k via use-livecode
Hi Jim, > Am 23.11.2020 um 19:21 schrieb Jim Lambert via use-livecode > : > > Klaus, > > Would this help you? > https://zxing.org/w/decode.jspx thank you, but no. I was hoping we could do this with and inside of LC with a build-in lib or external or whatever, as the subject says. > Jim Lamb

Re: Google and OpenSource apps

2020-11-23 Thread Klaus major-k via use-livecode
Hi Jaque, > Am 23.11.2020 um 18:17 schrieb J. Landman Gay via use-livecode > : > > I don't know. But I see a lot of free apps in the Play Store that are based > on open source libraries. The information might be buried in the developer > term of service docs. thank you, so the answer is proba

Re: Getting a real number from scientific notation

2020-11-23 Thread Klaus major-k via use-livecode
Hi Craig, > Am 23.11.2020 um 15:57 schrieb Craig newman via use-livecode > : > > Klaus. > > Old fashioned way: > Set the numberFormat to "0" > Answer "4.21911E+11" + 0 oh, cool, thank you! > Craig Best Klaus -- Klaus Major https://www.major-k.de kl...@major-k.de _

Re: Google and OpenSource apps

2020-11-23 Thread Klaus major-k via use-livecode
No idea? Anyone? > Am 21.11.2020 um 11:57 schrieb Klaus major-k via use-livecode > : > > Hi friends, > > quick question: > Does Google allow apps that have been created with the Community Version of > LC? > > Apple does definitively not, as I know. > >

Re: reading QR-code on Mac from an imported image

2020-11-23 Thread Klaus major-k via use-livecode
No idea? Anyone? > Am 20.11.2020 um 19:16 schrieb Klaus major-k via use-livecode > : > > Hi all, > > ist is possible to read the QR-code from an imported image > on the Mac? If yes, how? > The dictionary did not really enlighten me... > > Thanks in advance! >

Re: Getting a real number from scientific notation

2020-11-22 Thread Klaus major-k via use-livecode
Hi Paul, > Am 22.11.2020 um 21:44 schrieb Paul Dupuis via use-livecode > : > > So, if you want to concert form scientific notation to a real number, you can > use the "format" function (see dictionary). Example: > putformat("%1.0f",4.21911E+11) -- outputs 42191100 > Is that shat yo are look

Re: Getting a real number from scientific notation

2020-11-22 Thread Klaus major-k via use-livecode
Please, this is quite urgent, my customer is waiting impatiently, so if someone has an idea... > Am 22.11.2020 um 21:25 schrieb Klaus major-k via use-livecode > : > > Hi friends, > > see subject. > > I have some values in a CSV with this notation > According to t

<    1   2   3   4   5   6   7   8   9   10   >