Re: disabled buttons still receive events, they just process them, later?

2024-02-21 Thread J. Landman Gay via use-livecode
That seems a little odd, I haven't noticed that. But one way to block the messages is to use flushEvents() in the button script: flushEvents("mouseDown") flushEvents("mouseUp") -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On February

Re: disabled buttons still receive events, they just process them, later?

2024-02-21 Thread Mike Kerner via use-livecode
i did. i have both a button, and a power button. script: *local* count *on* mouseUp *if* the disabled of me *then* *put* cr & "disabled" after msg *add* 1 to count *set* the enabled of me to false *put* count *wait* 2 second *set* the enabled of me to true *end* mouseUp On Wed, Feb 21,

Re: sideloading updates to mobile

2024-02-21 Thread J. Landman Gay via use-livecode
I've done this for several mobile apps. As long as the updates only reside in the app's sandboxed container, even the App Store doesn't care. Basically, I put a short text file on the server listing the update version(s) of the file(s), one per line if they are all different. Every stack in

Re: disabled buttons still receive events, they just process them, later?

2024-02-21 Thread Craig Newman via use-livecode
Mike. In a new stack I placed a button with this: on mouseUp beep 2 end mouseUp If I click on the button I hear two clicks. I disabled the button and clicked on it. I enabled the button. No clicks. I did this all by hand. Did you? Craig > On Feb 21, 2024, at 4:07 PM, Mike Kerner via

disabled buttons still receive events, they just process them, later?

2024-02-21 Thread Mike Kerner via use-livecode
alright, i'm a little surprised to notice this: i have a button. i disabled the button. then i clicked on the button then i re-enabled the button the click, from the period while the button was disabled, is received and processed by the button. that seems problematic, to me. how would one cause

Re: sideloading updates to mobile

2024-02-21 Thread Klaus major-k via use-livecode
Hi Mike, > Am 21.02.2024 um 20:17 schrieb Mike Kerner via use-livecode > : > > mobile device management: > https://en.wikipedia.org/wiki/Mobile_device_management > it's like testflight on steroids. in our case, it would enable us to force > app (and even os) updates on devices that are locked

Re: sideloading updates to mobile

2024-02-21 Thread Mike Kerner via use-livecode
mobile device management: https://en.wikipedia.org/wiki/Mobile_device_management it's like testflight on steroids. in our case, it would enable us to force app (and even os) updates on devices that are locked into single-app mode On Wed, Feb 21, 2024 at 1:57 PM Klaus major-k via use-livecode <

Re: sideloading updates to mobile

2024-02-21 Thread Klaus major-k via use-livecode
Am 21.02.2024 um 19:51 schrieb Mike Kerner via use-livecode : > > i guess the other option would be to roll an mdm server sorry, but what does "mdm" mean? -- Klaus Major https://www.major-k.de https://www.major-k.de/bass kl...@major-k.de ___

Re: sideloading updates to mobile

2024-02-21 Thread Mike Kerner via use-livecode
i guess the other option would be to roll an mdm server On Wed, Feb 21, 2024 at 1:50 PM Mike Kerner wrote: > right - no updating the engine + runtime in this scenario, just the > stacks + scripts, and perhaps plugins. > we are going to continue to only privately distribute to our corporate >

Re: sideloading updates to mobile

2024-02-21 Thread Mike Kerner via use-livecode
right - no updating the engine + runtime in this scenario, just the stacks + scripts, and perhaps plugins. we are going to continue to only privately distribute to our corporate clients, so the app store won't be part of the equation. that does not mean that apple won't object, though (but, i

Re: sideloading updates to mobile

2024-02-21 Thread Klaus major-k via use-livecode
Hi Mike, > Am 21.02.2024 um 18:47 schrieb Mike Kerner via use-livecode > : > > sorry that i was not clear. we've been using private deploys since around > 2010, using airlaunch to generate the bundle, and then uploading to a > private url. that's not what i meant. > i'm talking about

Re: sideloading updates to mobile

2024-02-21 Thread Mike Kerner via use-livecode
sorry that i was not clear. we've been using private deploys since around 2010, using airlaunch to generate the bundle, and then uploading to a private url. that's not what i meant. i'm talking about updating/patching an existing app, in place. the devices are in single-app mode, so we would

Re: sideloading updates to mobile

2024-02-21 Thread Andrew at MWCM via use-livecode
Sideloading to iOS itself is fairly easy, even easier with Jacque’s wonderful tool AirLaunch (which allows you to post a link online for the end-user to visit and install from w/o being on-site). The biggest hurdle I have found is that you must first obtain the UDID of the specific device you

Re: polygrid formatted column width

2024-02-21 Thread Mike Kerner via use-livecode
lcqc report 24493 added https://quality.livecode.com/show_bug.cgi?id=24493 On Tue, Feb 20, 2024 at 6:07 PM Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > Can I just say that the Datagrid does have all these properties? What is > the big advantage that would make Polygrids

Re: polygrid formatted column width

2024-02-21 Thread Mike Kerner via use-livecode
yes, the dg does have all of these properties. i'm replacing a dg with a pg. dg's work on mobile, too. the scrolling can sometimes be a little hairy and jerky, but it does work. until the pg, nearly every project we built for mobes had at least one dg in them. i'm doing this because this project

Re: PDF widget print quality

2024-02-21 Thread Paul Dupuis via use-livecode
I'm not sure it is possible. Livecode's printing tends to be card based and at card resolution, typically 72 dpi. I recall seeing some efforts on the lists and forums to make an object 4 times bigger (75 dpi x 4 = 300 dpi) so that when it is printed to a 300dpi printer is is a higher

PDF widget print quality

2024-02-20 Thread David Epstein via use-livecode
I want to use the PDF widget to print a PDF with additional markings added in LiveCode. Showing a simple PDF tax form in Widget 1 at 100% scale, I tried this script: on p1 get the pageRect of widget 1 open printing with dialog print card from (item 1 to 2 of it) to (item 3 to 4 of it) into

Re: polygrid formatted column width

2024-02-20 Thread Bob Sneidar via use-livecode
Can I just say that the Datagrid does have all these properties? What is the big advantage that would make Polygrids a better choice? Is it because they are Mobile friendly? Faster for large datasets? Easier to work with (apparently not unless by easier one means less properties that you can

Re: polygrid formatted column width

2024-02-20 Thread Paul Dupuis via use-livecode
You have the dataWidth of the polygrid for the formattedWidth of the widget (to be wide enough to display all data), but what I think you want is some equivalent of the fomattedWidth of each column. I don't believe any such property exists in the polygrid. It would be like setting the

polygrid formatted column width

2024-02-20 Thread Mike Kerner via use-livecode
alrighty, then i've got a polygrid. now, i want to set the column widths to the equivalent maximum formatted widths, because...this is being used as part of an ad hoc query tool. did i miss something? i don't see an equivalent property ___ use-livecode

sideloading updates to mobile

2024-02-20 Thread Mike Kerner via use-livecode
anyone screw around with sideloading updates to mobile? it should be pretty straightforward, but i haven't messed with it, yet. one of our apps runs on single-app-mode ios devices. so, we could pay for mdm to update it, or we could sideload the updates.

Re: Manipulating PDF's

2024-02-16 Thread Bob Sneidar via use-livecode
Only if you are using Acrobat on a MacOS device. Then you could probably do some apple scripting. Bob S > On Feb 16, 2024, at 9:55 AM, Ray Horsley via use-livecode > wrote: > > Greetings - after using launch document to launch a PDF file (using the > default PDF viewer) is there any way to

Re: Manipulating PDF's

2024-02-16 Thread Paul Dupuis via use-livecode
If you just need a person to view a particular spot in a PDF, using the PDF widget in Livecode would be easier than trying to manipulate an arbitrary PDF viewer. If there is a way to adjust the scroll, it is probably PDF viewer specific and you'd need to know whether the user is using Apple

Manipulating PDF's

2024-02-16 Thread Ray Horsley via use-livecode
Greetings - after using launch document to launch a PDF file (using the default PDF viewer) is there any way to get a reference to the window it opened in, and then get and set the vScroll of that window? ___ use-livecode mailing list

Erratum

2024-02-14 Thread Mark Smith via use-livecode
Hi y’all, I discovered a few weeks ago that a link I put into a message in the Livecode Forums (https://forums.livecode.com/viewtopic.php?f=143=38838) to a program in TestFlight did not work. Well, Apple finally fixed it (and Andreas B. has confirmed) so if you tried it before, and it did not

Re: Working with AWS S3 commands

2024-02-13 Thread Monte Goulding via use-livecode
> On 14 Feb 2024, at 4:49 pm, Monte Goulding via use-livecode > wrote: > > It’s possible if you are using a newer region that AWS isn’t supporting the > older endpoint style on it. I just found where they documented this so I’ll create an issue to fix

Re: Working with AWS S3 commands

2024-02-13 Thread Monte Goulding via use-livecode
Hi Peter A couple of suggestions are to first check you called AWSSetCredentials with the region your bucket is in. If that is correct then try specifying the full endpoint url as https://s3 .your-bucket-region.amazonaws.com via the endpoint

Working with AWS S3 commands

2024-02-13 Thread Peter Bogdanoff via use-livecode
Hi all, I’m for the first time trying to use the Amazon AWS S3 commands to upload a file to my AWS storage, but am having difficulty with the PutObject command. I successfully entered my credentials with the AWSSetCredentials command. However, using the AWSS3PutObject command I’m getting an

Re: Latest PolyGrid

2024-02-13 Thread Klaus major-k via use-livecode
Hi all, > Am 13.02.2024 um 19:17 schrieb Paul Dupuis via use-livecode > : > > 1_0_33 is the version I am running as well. I had not seen any announcement > or email about a .34 release. same here, I found out accidentally! > Now I think I will try to avoid it and wait for .35! Sounds like a

Re: Latest PolyGrid

2024-02-13 Thread Paul Dupuis via use-livecode
1_0_33 is the version I am running as well. I had not seen any announcement or email about a .34 release. Now I think I will try to avoid it and wait for .35! On 2/13/2024 11:45 AM, Klaus major-k via use-livecode wrote: Hi all, yesterday I installed the latest version of

Re: Latest PolyGrid

2024-02-13 Thread Mike Kerner via use-livecode
i didn't even realize there was 1.0.34. i don't recall seeing an announcement. the last one i have is 1.0.33 On Tue, Feb 13, 2024 at 11:46 AM Klaus major-k via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi all, > > yesterday I installed the latest version of

Re: Livecode Demo of two way javascript communication?

2024-02-13 Thread David Bovill via use-livecode
That's great - digging into the scripts and html - really useful to see a simple demo like this! On Wed, 7 Feb 2024 at 19:45, Andreas Bergendal wrote: > I’ve added a source code download link at the bottom of the page: > https://wheninspace.com/WebpageInteractionStack/ > > The steps are rather

Latest PolyGrid

2024-02-13 Thread Klaus major-k via use-livecode
Hi all, yesterday I installed the latest version of "livecode_enhancements-1_0_34" but the new "Polygrid" version 1.8.0 completely wrecked my working stack, so I had to go back to the previous version 1.7.4. E.g. it threw an error on my "on cellclick" handler just by setting: -> set the pgData

Re: Code Folding in LC

2024-02-13 Thread Mike Kerner via use-livecode
i was just about to ask if it still folded tags :-) On Tue, Feb 13, 2024 at 8:41 AM Niggemann, Bernd via use-livecode < use-livecode@lists.runrev.com> wrote: > Dear list > > I posted a stack on the Forum that temporarily installs Code Folding to LC > version 9.6.9, 9.6.10, 9.6.11, or 10.0.0 DP

Code Folding in LC

2024-02-13 Thread Niggemann, Bernd via use-livecode
Dear list I posted a stack on the Forum that temporarily installs Code Folding to LC version 9.6.9, 9.6.10, 9.6.11, or 10.0.0 DP 7. These changes are lost when closing LC Future versions might make changes to the installation stack necessary depending on the IDE changes in those versions.

Re: web

2024-02-13 Thread Mark Smith via use-livecode
> On 13 Feb 2024, at 5:02 am, Curry Kenworthy via use-livecode > wrote: > > What doesn’t kill us ... makes us awesome and mighty. Life requires that > faith and perseverance. Here’s hoping for a great 2024 for all, whatever it > holds, and an even BETTER 2025! > My goodness Curry, how

Re: web

2024-02-12 Thread Curry Kenworthy via use-livecode
Sean: > forced to abandon my projects, income and business as a result > Good luck waiting for LC10 to be anywhere near ready for stable use. Hi Sean, I feel for you! Sad about the terrible breaks. Whatever you do, NEVER lose heart; I’ve had ‘rug pulls’ here twice – 1. First with

Re: web

2024-02-12 Thread Sean Cole via use-livecode
I'd been waiting since just before the pandemic started, 2019. Had a meeting with the developers of the web platform early days (2015) and just before they were about to abandon the old method of Web deployment using JS for the the newer method in LC10. Paid 3 years of subscription for the newer

Re: web

2024-02-12 Thread Andreas Bergendal via use-livecode
I agree that the standalone builder pane for web deployment is strangely under-functional (it would be so easy to just add a few options for title, background colour of the page, custom logo link etc), and it could also so easily include a resize listener per default in the html file.

Re: AW: Re: macOS window maximization weirdness

2024-02-12 Thread Mark Waddingham via use-livecode
On 2024-02-10 21:16, Paul Dupuis via use-livecode wrote: My desktopChanged handler, at one point, executes either a:   set the effective width of window tWindow to tMontiorWidth OR a   set the effective height of window tWindow to tMonitorHeight Either of which sends a resizeStack message to

Re: How to edit a How To Lesson?

2024-02-11 Thread kee nethery via use-livecode
The link is not lessons.livecode.com but rather https://runrev.screenstepslive.com/admin/v2/sites/14751/toc This looks like it will get me to the edit page. Not sure I need the Screensteps app but we’ll see. Thanks Kee > On Feb 11, 2024, at 2:58 PM, kee nethery via use-livecode > wrote: >

Re: How to edit a How To Lesson?

2024-02-11 Thread kee nethery via use-livecode
> On Feb 11, 2024, at 2:38 PM, matthias rebbe via use-livecode > wrote: > > This is only possible, when you have an account for the Lessons (Screensteps) > website. > You can edit the lessons directlyon the web or with the desktop app > "Screensteps" which can be downloaded here >

Re: How to edit a How To Lesson?

2024-02-11 Thread matthias rebbe via use-livecode
This is only possible, when you have an account for the Lessons (Screensteps) website. You can edit the lessons directlyon the web or with the desktop app "Screensteps" which can be downloaded here https://www.screensteps.com/downloads As you already have created lessons at least the one from

How to edit a How To Lesson?

2024-02-11 Thread kee nethery via use-livecode
I seem to have forgotten how to edit my LiveCode lesson. Can someone point to a how to on how to edit a lesson? In specific: https://lessons.livecode.com/m/4071/l/876834-signing-and-uploading-apps-to-the-mac-app-store Thanks, Kee Nethery ___

Re: Mousedown in Application Menubar Messages

2024-02-11 Thread Curry Kenworthy via use-livecode
David: > I'm having a difficult to track down issue with application menus I've > created using the Menu Builder tool - everything works but the > "mouseDown" message is not sent to the group - > well sometimes it is sometimes it is not :) I remember a similar issue - are you on Mac? The

AW: Re: macOS window maximization weirdness

2024-02-11 Thread Curry Kenworthy via use-livecode
Paul: > So, I finally tracked this maximization weirdness down. Good job cracking the case, for this particular maximization example! > The issue also only occurs if the resizeStack handler > for the window uses the passed parameters BEST PRACTICE for LC: 1. Instead of param, use property

AW: Re: macOS window maximization weirdness

2024-02-10 Thread Paul Dupuis via use-livecode
So, I finally tracked this maximization weirdness down. This only occurs on macOS when a window is maximized using the titlebar maximization icon (which cause teh window to go to fullscreen, hiding the window titlebar and macOS menubar. The menubar and titlebar re-appear if your roll the

Re: Livecode Demo of two way javascript communication?

2024-02-07 Thread Andreas Bergendal via use-livecode
I’ve added a source code download link at the bottom of the page: https://wheninspace.com/WebpageInteractionStack/ The steps are rather simple: - Open the stack with LC10 and run the standalone builder with "Build for web" checked. - Replace the html file in the deployment folder (in this case

Re: Enhanced HTTPD - native HTTP 1.1 Livecode Socket Server

2024-02-06 Thread ambassador--- via use-livecode
David Bovill wrote: > I've been working for a while on a native server written in Livecode > using sockets. I feel it is definitely something that is sorely needed > - but to do it properly is more work that I initially thought. I need > to add HTTP 206 partial content support - >

Re: Enhanced HTTPD - native HTTP 1.1 Livecode Socket Server

2024-02-06 Thread Tom Glod via use-livecode
Hey David, I am quite interested in this. Just last night I was working on setting up a Linux distro with Desktop, and Ubuntu with XFCE desktop. Everything seems to be running OK, except for some permissions issues. I have also beaten reworking my multi-core library, so I'd be super curious to

Re: Enhanced HTTPD - native HTTP 1.1 Livecode Socket Server

2024-02-06 Thread Mike Kerner via use-livecode
testing? no, for deployment. our newest app could use http sockets to persist comms with our REST server, instead of using long timeouts or pinging the server every few seconds for updates. On Tue, Feb 6, 2024 at 2:29 AM David Bovill via use-livecode < use-livecode@lists.runrev.com> wrote: > For

Re: Enhanced HTTPD - native HTTP 1.1 Livecode Socket Server

2024-02-05 Thread David Bovill via use-livecode
For testing mobile apps in development? I'm using it for an electron-style app, and may also use it for container based microservices. On Tue, 6 Feb 2024 at 00:48, Mike Kerner via use-livecode < use-livecode@lists.runrev.com> wrote: > i don't use lc as a server (but maybe i should think about

Re: Enhanced HTTPD - native HTTP 1.1 Livecode Socket Server

2024-02-05 Thread Mike Kerner via use-livecode
i don't use lc as a server (but maybe i should think about it). i use it to write mobile apps, so i could use http sockets on the client side. On Mon, Feb 5, 2024 at 3:19 PM David Bovill via use-livecode < use-livecode@lists.runrev.com> wrote: > I've been working for a while on a native server

Re: Mousedown in Application Menubar Messages

2024-02-05 Thread David Bovill via use-livecode
Thanks Paul - I'll check with 9.6.1 - I'm getting this behavior with10 dp7 on MacOS On Mon, 5 Feb 2024 at 20:19, Paul Dupuis via use-livecode < use-livecode@lists.runrev.com> wrote: > I've not experienced any problems with the menubar group receiving a > mouseDown message to adjust the menus

Enhanced HTTPD - native HTTP 1.1 Livecode Socket Server

2024-02-05 Thread David Bovill via use-livecode
I've been working for a while on a native server written in Livecode using sockets. I feel it is definitely something that is sorely needed - but to do it properly is more work that I initially thought. I need to add HTTP 206 partial content support -

Re: Mousedown in Application Menubar Messages

2024-02-05 Thread Paul Dupuis via use-livecode
I've not experienced any problems with the menubar group receiving a mouseDown message to adjust the menus based on context before they appear (LC versions up to 9.6.11 on macOS and Windows) A long time back, I did have an unnecessary  'wait 0 with messages' in my mouseDown handler and had

Mousedown in Application Menubar Messages

2024-02-05 Thread David Bovill via use-livecode
I'm having a difficult to track down issue with application menus I've created using the Menu Builder tool - everything works but the "mouseDown" message is not sent to the group - well sometimes it is sometimes it is not :) I'm using "mousedown" to trigger dynamic formatting of the menus.

Re: Livecode Demo of two way javascript communication?

2024-02-05 Thread David Bovill via use-livecode
Perfect - just what I was looking for. Can you share the stack, and the steps to saving / exporting the standalone? On Sat, 27 Jan 2024 at 17:50, Andreas Bergendal via use-livecode < use-livecode@lists.runrev.com> wrote: > OK, so here’s a quick proof of concept, with functions triggered from

Re: Regex brain failure...

2024-02-03 Thread Paul Dupuis via use-livecode
https://regex101.com/ is exactly the site I ended up using. The step through debugger is perfect for fining where a particular pattern fails. It's what let me see there was a tab space tab where I expected a single tab in the data and correct teh regex for the data as it actually is. On

Re: web

2024-02-03 Thread Alex Tweedly via use-livecode
I've not been able to get anything worthwhile to work on web. All the working examples that I've seen (e.g. Andreas's example last week of interaction between browser and LC) , have involved a significant amount of html + JS being written. The default shipping web wrapper is completely

Re: Regex brain failure...

2024-02-03 Thread Kaveh Bazargan via use-livecode
For testing regex you might find it useful to use regex101. It's excellent and you can save the page. I put your text here just for testing. pls note your tabs are corrupted in the email and I put an "a" to make it work just for test. On Sat, 3 Feb 2024 at 21:13,

Re: Regex brain failure...

2024-02-03 Thread Paul Dupuis via use-livecode
Never mind. The correct pattern is: ^\d+?\t.\tnontraditional field\tText\t2,319\tInterview 1\.txt$ There is a column with a space in it between the number column (1st column) and the 3rd column (which I thought was the 2nd column) that has the code name in it (ie. nontradtional field). Now

Regex brain failure...

2024-02-03 Thread Paul Dupuis via use-livecode
I have a (reduced) example set of data in a variable "tCaseCodes" that is tab delimited set of lines below: 1         I am making a high salary    Text    2,319    Interview 1.txt 2         nontraditional field    Text    2,319    Interview 1.txt 3         gets married and stays married    Text 

Re: Top things you are waiting for ....

2024-02-03 Thread Mike Kerner via use-livecode
fyi, our subscription is up, shortly. i noticed that our compiler subscription has been extended until december, 2025. i hope that does not mean that compiler is going to be another ten months before we get to try to break it. On Tue, Jan 16, 2024 at 9:21 AM Mike Kerner wrote: > well, they do

web

2024-02-03 Thread Mike Kerner via use-livecode
my subscription is up, soon. i have web, but the last time i tried it, no bueno. is anyone using web deploy? -- On the first day, God created the heavens and the Earth On the second day, God created the oceans. On the third day, God put the animals on hold for a few hours, and did a little

Re: activation and login broken?

2024-02-02 Thread David Wood via use-livecode
ALL OK here again now - both on Mac and on Website login Thanks for the quick resolution! > On 3/02/2024, at 8:59 AM, Kevin Miller via use-livecode > wrote: > > Something is wrong... We are looking into it now. > > Kind regards, > > Kevin > > Kevin Miller ~ ke...@livecode.com ~

Re: activation and login broken?

2024-02-02 Thread Mike Kerner via use-livecode
i think we're back up. On Fri, Feb 2, 2024 at 3:16 PM Mike Kerner wrote: > and you, kevin. > good thing i have you, too. > > On Fri, Feb 2, 2024 at 3:09 PM Mike Kerner > wrote: > >> welp, i don't have hosting. good thing i have you. >> >> On Fri, Feb 2, 2024 at 3:04 PM Ralph DiMola via

Re: activation and login broken?

2024-02-02 Thread Mike Kerner via use-livecode
and you, kevin. good thing i have you, too. On Fri, Feb 2, 2024 at 3:09 PM Mike Kerner wrote: > welp, i don't have hosting. good thing i have you. > > On Fri, Feb 2, 2024 at 3:04 PM Ralph DiMola via use-livecode < > use-livecode@lists.runrev.com> wrote: > >> Select urgent on the hosting support

Re: activation and login broken?

2024-02-02 Thread Mike Kerner via use-livecode
welp, i don't have hosting. good thing i have you. On Fri, Feb 2, 2024 at 3:04 PM Ralph DiMola via use-livecode < use-livecode@lists.runrev.com> wrote: > Select urgent on the hosting support contact us page. > > > > Ralph DiMola > > IT Director > > Evergreen Information Services > >

RE: activation and login broken?

2024-02-02 Thread Ralph DiMola via use-livecode
Select urgent on the hosting support contact us page. Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net Phone: 518-636-3998 Ex:11 Cell: 518-796-9332 From: Mike Kerner [mailto:mikeker...@roadrunner.com] Sent: Friday, February 02, 2024 2:59 PM To: How to

RE: activation and login broken?

2024-02-02 Thread Ralph DiMola via use-livecode
Kevin, Thanks I submitted a hosting ticket. Ignore now that you're on it. -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Kevin Miller via use-livecode Sent: Friday, February 02, 2024 2:59 PM To: How to use LiveCode Cc: Kevin Miller

Re: activation and login broken?

2024-02-02 Thread Mike Kerner via use-livecode
how in the world does one submit an "urgent" ticket? On Fri, Feb 2, 2024 at 2:58 PM Ralph DiMola via use-livecode < use-livecode@lists.runrev.com> wrote: > Mike, > Same here. Last time this happened someone submitted an LC hosting urgent > ticket and it was fixed pronto. > I will do it now. > >

Re: activation and login broken?

2024-02-02 Thread Kevin Miller via use-livecode
Something is wrong... We are looking into it now. Kind regards, Kevin Kevin Miller ~ ke...@livecode.com ~ http://www.livecode.com/ LiveCode: Build Amazing Things On 02/02/2024, 19:56, "use-livecode on behalf of David Wood via use-livecode" mailto:use-livecode-boun...@lists.runrev.com>

RE: activation and login broken?

2024-02-02 Thread Ralph DiMola via use-livecode
Mike, Same here. Last time this happened someone submitted an LC hosting urgent ticket and it was fixed pronto. I will do it now. Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode

Re: activation and login broken?

2024-02-02 Thread David Wood via use-livecode
Same here In my case just on Mac but also as you say trying to log into the Livecode website. > On 3/02/2024, at 8:24 AM, Mike Kerner via use-livecode > wrote: > > hmmm. i just tried to fire up LC on both mac and pc. i ran into an > activation dialog, so i tried to log in, and got an error.

activation and login broken?

2024-02-02 Thread Mike Kerner via use-livecode
hmmm. i just tried to fire up LC on both mac and pc. i ran into an activation dialog, so i tried to log in, and got an error. so, i tried to log into the livecode website, and hit the same thing. -- On the first day, God created the heavens and the Earth On the second day, God created the

[off] google project idx

2024-02-01 Thread Mike Kerner via use-livecode
google is sending out invites to try out their version of a low-code web-based ide, called idx. -- On the first day, God created the heavens and the Earth On the second day, God created the oceans. On the third day, God put the animals on hold for a few hours, and did a little diving. And

Re: Just for interest

2024-01-31 Thread Klaus major-k via use-livecode
Hi Christer, > Am 31.01.2024 um 16:14 schrieb Christer Pyyhtiä via use-livecode > : > > I do not know, if measuring coding performance is reasonable. > It would be interesting, if anyone has interest to try. > https://www.morling.dev/blog/one-billion-row-challenge/ > > Just for fun > Christer

Just for interest

2024-01-31 Thread Christer Pyyhtiä via use-livecode
I do not know, if measuring coding performance is reasonable. It would be interesting, if anyone has interest to try. https://www.morling.dev/blog/one-billion-row-challenge/ Just for fun Christer Pyyhtiä christe...@gmail.com ___ use-livecode

Re: Browser widget in Windows has trouble playing videos in websites

2024-01-31 Thread Peter Bogdanoff via use-livecode
Tom, I’m finding the issue is more complex, and I’m still trying to get to the bottom of it. Daily Motion, Vimeo, and YouTube pages all work on the Mac LC browser plugin. Daily Motion, Vimeo, and some YouTube pages don’t in Windows. However, most of the gazillion YouTube videos work very

Re: Browser widget in Windows has trouble playing videos in websites

2024-01-30 Thread Tom Glod via use-livecode
Hey Peter, this surely has to do with videos that are compressed using h264. that build of CEF does not support this codec. I am not sure if the updated browser in the upcoming windows version will support h264. I am surprised to find out that the apple version of the browser has support for h264,

Access to Share Panel?

2024-01-29 Thread Dan Friedman via use-livecode
Greetings! Is there a method to use the standard “Share” panel on mobile? (Android and iOS) Thanks in advance, -Dan ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: Livecode Demo of two way javascript communication?

2024-01-29 Thread Jim Lambert via use-livecode
Andreas, Thanks for that demo. Jim Lambert ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: tsNetCustomUploadSync: what am I doing wrong? (Answer: RTFM-P)

2024-01-29 Thread Bob Sneidar via use-livecode
When AI reaches full maturity, it will know what you meant. Probably before you coded it. And then it will eat your brain. Bob S On Jan 24, 2024, at 4:30 AM, Ben Rubinstein via use-livecode wrote: For the record: > put tsNetCustomUploadSync(tURL, "POST", tRequestData, tHeaders, ... should

Re: Livecode Demo of two way javascript communication?

2024-01-27 Thread Andreas Bergendal via use-livecode
OK, so here’s a quick proof of concept, with functions triggered from page to stack and from stack to page. It is not using postMessage, only 'standard’ javascript listeners. Works well on mobile too (at least iPhone). https://wheninspace.com/WebpageInteractionStack/ If I find the time, it

Re: Livecode Demo of two way javascript communication?

2024-01-26 Thread David Bovill via use-livecode
The scenario would be events like resize, or a button click in the html page triggering a handler in the Livecode wasm export. The other way round would ve a Livecode handler in the exported wasm widget calling a javascriot function in the surrounding Web page. My understanding in other contexts

Browser widget in Windows has trouble playing videos in websites

2024-01-25 Thread Peter Bogdanoff via use-livecode
I submitted Bug 24479 today with a sample stack. Youtube, Vimeo, Daily Motion all have unreliable playing of their videos in LC browser widget in Windows 10, LC 10.0.0 dp7, both in the IDE and standalone. Vimeo and Daily Motion won’t play videos on their sites. They show an error message in

Re: Livecode Demo of two way javascript communication?

2024-01-25 Thread Andreas Bergendal via use-livecode
I’ve created some web deployments where the web page interacts with the stack e.g. in the sense that a change of the browser window rect triggers a resizeStack message in the stack. But I’m not sure if by bidirectional you mean that actions in the stack should also affect the web page in some

Re: Nasty filter bug

2024-01-24 Thread Brian Milby via use-livecode
It seems that an unmatched opening bracket makes it completely fail. My guess is that the filter string is not valid so it doesn't even try. I couldn't get a filter string containing a "[" to match anything. On Wed, Jan 24, 2024 at 5:23 PM Craig Newman via use-livecode <

Re: Nasty filter bug

2024-01-24 Thread Craig Newman via use-livecode
Brian. So the inclusion of “[“ would have matched nothing in the original string ""aaa[bbb””? That is, even though the bracketed string was not “closed” with “]”, did it try to find a string that began with “b”, failed, and therefore returned the original string untouched? Craig > On Jan 24,

Re: Nasty filter bug

2024-01-24 Thread Brian Milby via use-livecode
I just want to clarify that this isn’t the regex version of filter but the wildcard pattern version. It is much less complicated than regex. Square brackets are used to group characters to be matched so you can use [abc]* to match any item that starts with a, b, or c. The dictionary entry

Re: Nasty filter bug (not)

2024-01-24 Thread Neville Smythe via use-livecode
Thanks Brian of putting me right (once again) . I had completely forgotten.the escape sequence for the wildcards is [*] and [? (an unexpected way to escape a character, but it is what it is) and so had overlooked that [ is itself a special character. And neither * nor ? In the msg box example

Re: Nasty filter bug

2024-01-24 Thread Craig Newman via use-livecode
Brian. The original post tried to filter a string by filtering (without) that actual string, and was interested in why that did not yield empty. Intuitively, the result of such a filter operation ought always to be empty. The presence of the char “[“ is the “culprit”. That is as far as I took

Re: Nasty filter bug

2024-01-24 Thread Brian Milby via use-livecode
Your test misses the actual issue: on mouseup local tStr local tFilter put "a*b" into tFilter put "anything bold" into tStr filter tStr with tFilter put tStr end mouseup Will yield "anything bold" while using the following 2 lines: put "a?b" into tFilter put "a*b" into

Re: Nasty filter bug

2024-01-24 Thread Craig Newman via use-livecode
OK, instead of working I did this: on mouseUp repeat with y = 1 to 255 put "XX" & numToChar(y) & "XX" into temp filter temp without temp if temp <> "" then put y & return after accum end repeat answer accum end mouseUp There are two characters that prevent the filter command from doing

Re: Nasty filter bug

2024-01-24 Thread Craig Newman via use-livecode
Brian. Nope. Those two chars pass through the filter, er, filtered. Again, I did not test the entire character set. Craig > On Jan 24, 2024, at 11:05 AM, Brian Milby via use-livecode > wrote: > > The only other two that would cause issues are ? and * which are single and > multiple char

Re: Nasty filter bug

2024-01-24 Thread Brian Milby via use-livecode
The only other two that would cause issues are ? and * which are single and multiple char wildcards respectively. Brian Milby br...@milby7.com > On Jan 24, 2024, at 10:21 AM, Craig Newman via use-livecode > wrote: > > I did not test the ASCII set exhaustively, but the culprit is the char

Re: Nasty filter bug

2024-01-24 Thread Craig Newman via use-livecode
I did not test the ASCII set exhaustively, but the culprit is the char “[“ (ASCII 91). Any other char (including “]”) in the string works correctly, that is, nothing is left after the filter command executes. I do not know enough to say whether that particular char does something to the

Re: tsNetCustomUploadSync: what am I doing wrong? (Answer: RTFM-P)

2024-01-24 Thread Ben Rubinstein via use-livecode
For the record: > put tsNetCustomUploadSync(tURL, "POST", tRequestData, tHeaders, ... should have been > put tsNetCustomUploadSync(tURL, "POST", tHeaders, tRequestData, ... :facepalm-emoji: Ben On 22/01/2024 21:48, Ben Rubinstein via use-livecode wrote: I'm trying to use

Livecode Demo of two way javascript communication?

2024-01-24 Thread David Bovill via use-livecode
Is there a demo out there for simple bidirectional interaction between a web page and a recent stack exported as wasm? Anyone experimenting with this? ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe,

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