Re: Livecode Future

2024-07-24 Thread David Bovill via use-livecode
line. > > Kind regards, > > Kevin > > Kevin Miller ~ ke...@livecode.com ~ http://www.livecode.com/ > LiveCode: Build Amazing Things > > > > > On 24/07/2024, 09:46, "use-livecode on behalf of David Bovill via > use-livecode" use-livecode-boun...

Re: Livecode Future

2024-07-24 Thread David Bovill via use-livecode
Hi Kevin, is there a public post regarding the new model - I’d like to view it for a forthcoming project. Also you might want to fix the 404 you get while trying to read the most recent post on the site? On Wed, 24 Jul 2024 at 09:01, Kevin Miller via use-livecode < use-livecode@lists.runrev.com> w

Re: web/Happy 4th

2024-07-04 Thread David Bovill via use-livecode
The results aren't out yet. Heading to the polls On Wed, 3 Jul 2024 at 23:03, Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > Merry FREEDOM FROM TYRANNY DAY! LOL! > > Bob S > > > > On Jul 3, 2024, at 10:51 AM, Mike Kerner via use-livecode < > use-livecode@lists.runrev.c

Re: Socket Packaging

2024-06-24 Thread David Bovill via use-livecode
Yes, I recently looked at a few reverse proxies. I now run Caddy on localhost and have some scripts to manage caddyfiles and starting and stopping the caddy server. Happy to show share if interested in a Zoom. On Mon, 24 Jun 2024 at 18:56, Mike Kerner via use-livecode < use-livecode@lists.runrev.

Livecode Login stuck pinging Facebook?

2024-05-03 Thread David Bovill via use-livecode
I can't login to my account and register the new dp8 - or login via the web site. Something Livecode server end? ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription pref

Re: Help converting python one-liner...

2024-04-24 Thread David Bovill via use-livecode
nd - so I guess there is some issue with raw base64 encoding in json? On Wed, 24 Apr 2024 at 19:26, Paul Dupuis via use-livecode < use-livecode@lists.runrev.com> wrote: > On 4/24/2024 1:43 PM, David Bovill via use-livecode wrote: > > I'm trying to base64 encode an image and include

Help converting python one-liner...

2024-04-24 Thread David Bovill via use-livecode
I'm trying to base64 encode an image and include it into a json file to post to an api. The python code that accomplishes this is: image1_data = base64.b64encode(httpx.get(image1_url).content).decode("utf-8") When I try to follow the logic in Livecode I get: put url imageUrl into sImage put base

Re: Enhanced HTTPD - native HTTP 1.1 Livecode Socket Server

2024-03-08 Thread David Bovill via use-livecode
Hi Richard - checking in again :) Yes I worked a lot with decentralised protocols and communities, and was looking to integrate those technologies with Livecode. That work got set back when Livecode pivoted away from FOSS. I believe there are still some approaches that can work but would probably

Re: Enhanced HTTPD - native HTTP 1.1 Livecode Socket Server

2024-03-08 Thread David Bovill via use-livecode
Hi Mike and Richard, the progress I’ve made is along the lines that Richard speaks to in the thread. I have added a little to the earlier work and bundled socket based servers - mainly by making it easy to add and remove logging with before and after handlers, and layers of back scripts that allow

Re: Livecode Demo of two way javascript communication?

2024-02-13 Thread David Bovill via use-livecode
in the url when accessing the site. By calling it index.html > it suffices to include the parent level in the url (like I do above). But I > guess y’all know this, I believe it's worked like that since the dawn of > the internet… :) > > > 5 feb. 2024 kl. 20:40 skrev David Bovill

Re: Enhanced HTTPD - native HTTP 1.1 Livecode Socket Server

2024-02-05 Thread David Bovill via use-livecode
ould 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 wr

Re: Mousedown in Application Menubar Messages

2024-02-05 Thread David Bovill via use-livecode
own handler was done (or so it seemed). > > > On 2/5/2024 3:07 PM, David Bovill via use-livecode wrote: > > 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&qu

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 - https://developer.mozilla.org/en-US/docs/Web/HT

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. Menupick

Re: Livecode Demo of two way javascript communication?

2024-02-05 Thread David Bovill via use-livecode
deploying two > different stacks on the same page (is that even possible?), and then have > them communicate with each other. Or have two stacks in two different > pages, and have them communicate via postMessage calls… > > > > 26 jan. 2024 kl. 17:15 skrev David Bovill via use-

Re: Livecode Demo of two way javascript communication?

2024-01-26 Thread David Bovill via use-livecode
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 way? Could you give an example of > what you have in mind? > > > > 24 jan. 2024 kl

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, unsubscr

Re: Multipart form decode

2024-01-24 Thread David Bovill via use-livecode
Yes - I need a (standard) decoder. As far as I can tell we have a few handlers in Livecode for encoding data for multipart form encoding - then the Livecode server will do its magic and parse that making the rules available - however there is no function to do the rfc7578

Re: Multipart form decode

2024-01-23 Thread David Bovill via use-livecode
Hmm writing my own generic multipart form data parser seems quite a task (and a security risk). Any suggestions? On Mon, 22 Jan 2024 at 19:48, David Bovill wrote: > I see in the dictionary several functions related to multipart form > encoding - but not decoding. Does anyone have a function that

Multipart form decode

2024-01-22 Thread David Bovill via use-livecode
I see in the dictionary several functions related to multipart form encoding - but not decoding. Does anyone have a function that lets my decode form posts to the built in HTTP server. ___ use-livecode mailing list use-livecode@lists.runrev.com Please vis

Re: Preventing Browser Navigation

2023-11-29 Thread David Bovill via use-livecode
Finally I often get the following error: LCB Error error evaluating javascript Object View|Obeya|Studio LCB File browser.lcb LCB Line 1007 The javascript in question executes with the desired result - but the error is thrown by Livecode presenting a dialogue. I can use the "Supress Errors" menu o

Re: Preventing Browser Navigation

2023-11-28 Thread David Bovill via use-livecode
So you should be able to prevent navigation on iOS using: on browserLoadRequest pURL, pType -- iOS only end browserLoadRequest But that does not work with the browser widget. Also I don;t seem to be able to respond to browser html / javascript events that seek to open a url in a new browser tab

Preventing Browser Navigation

2023-11-28 Thread David Bovill via use-livecode
Is there a way to prevent the desktop browser widget from navigating to a new url by blocking a message? I seem to remember it was possible but intercepting: browserNavigateBegin, browserDocumentLoadBegin messages do not prevent the navigation. I wish to process a url dropped on the page rather tha

Re: Subtitle and the future of the Player control

2023-11-08 Thread David Bovill via use-livecode
le > app? I assume from the javascript player comment that you are looking to > build this as a web app? What video file formats do you need to support > - just mpeg4 or other formats? > > On 11/7/2023 6:05 AM, David Bovill via use-livecode wrote: > > I'm doing some coding

Subtitle and the future of the Player control

2023-11-07 Thread David Bovill via use-livecode
I'm doing some coding around videos and transcripts. Before diving in I thought I'd see if there is any existing code out there? I'm working on creating transcripts from videos we shoot for a community project - naturally using ai (whisper) to do that - but Livecode to edit the transcript and make

Me and target of script widgets

2023-10-22 Thread David Bovill via use-livecode
Having my first go at script widgets. It appears that there is either an issue (or it is a feature) with script widgets and "me"? A handler like this: *on* mouseUp *## All references are to "inner" controls (ie the target) and not the group* *put* the short id of me into shortID *put* the long

Re: Media Keys - volume / play/pause/next...

2023-10-21 Thread David Bovill via use-livecode
t; -- > Jacqueline Landman Gay | jac...@hyperactivesw.com > HyperActive Software | http://www.hyperactivesw.com > On October 20, 2023 5:42:05 PM David Bovill via use-livecode > wrote: > > > Surprisingly difficult. There are a couple of apps that let you customize > >

Re: Mdiai Keys - volume / play/pause/next...

2023-10-21 Thread David Bovill via use-livecode
essage does not get sent. the OS (Win11) > apparently intercepts and raises/lowers/mutes the volume or play/pause > as applicable. > > > On 10/20/2023 11:08 AM, David Bovill via use-livecode wrote: > > Is there a way to trap for these keyboard events. > > > > Vol

Re: Media Keys - volume / play/pause/next...

2023-10-20 Thread David Bovill via use-livecode
Surprisingly difficult. There are a couple of apps that let you customize play/pause interactions from the keyboard - but they dont work when sent from other devices such as earbuds. Livecode does not seem to read these events either On Fri, 20 Oct 2023 at 16:08, David Bovill wrote: > Is the

Mdiai Keys - volume / play/pause/next...

2023-10-20 Thread David Bovill via use-livecode
Is there a way to trap for these keyboard events. Volume and Media Keys: In the HID standard, volume and media control keys often have specific usage IDs. For example: - 0xE9 is for volume up. - 0xEA is for volume down. - 0xE2 is for mute. - 0xCD is for play/pauseetc

Re: Questions on Wasm export, licenses and file siz

2023-10-13 Thread David Bovill via use-livecode
Lets take the following scenario: 1) We have a library of interactive components created in Livecode. They are structured as (Levure) components. They could be turned into script components easily, or LCB based components with a little more work. 2) We wish to compose a series of apps based on th

Re: Questions on Wasm export, licenses and file siz

2023-10-12 Thread David Bovill via use-livecode
Hi Richard specifically I need to know if I create an web page with multiple HTML5 export embeds whether the Livecode wasm approach forces the engine to be exported multiple times. On Thu, 12 Oct 2023 at 17:09, ambassador--- via use-livecode < use-livecode@lists.runrev.com> wrote: > David Bovill

Questions on Wasm export, licenses and file size

2023-10-12 Thread David Bovill via use-livecode
I know that HTML5 export is not quite ready yet - but I’m a patient man :) I would like to know how it works / will work - particularly with regard to the size of the exports. With the old JavaScript export you had a separation between the engine and stacks such that you could cache the engine pa

Re: Your scripts as a flowchart

2023-09-22 Thread David Bovill via use-livecode
Hi Andreas, quick note - I've not read the full thread - but I have a code graph browser that I have been using for a number of years - it is a big piece of work - so not easy to distribute - and many of the parts should probably be done better / differently. I would Love to make use / integrate th

Snapshot of browser not working?

2023-08-01 Thread David Bovill via use-livecode
I cannot find a specific bug report - but I am trying to take a snapshot of a browser widget to capture an image of the website. In the latest 10 DP 5 on MacOS M2 i get a very truncated text of the image (a few lines) in all formats using: *export* snapshot from widget "Browser" to pictVariable as

Re: What is your best practice for setting a script in a script?

2023-07-15 Thread David Bovill via use-livecode
This is the same type of problem as deleting an object from a user interaction with the object - but more common use case and I don;t know a good way of doing that either. I use: send "delete_Object" to somewhere in 2 ticks But it is messy and tends to be a bit unreliable in my experience. I don

Re: Workaround for regular Crash setting (audio) file of player?

2023-07-15 Thread David Bovill via use-livecode
1 display? > > It is a known bug that the player object freezes or crashes when petting > properties on any monitor but the primary display: > https://quality.livecode.com/show_bug.cgi?id=20707 > > > On 7/15/2023 9:07 AM, David Bovill via use-livecode wrote: > > I'm

Re: Tree Widget - order of titles

2023-07-15 Thread David Bovill via use-livecode
@milby7.com > > > On Jul 15, 2023, at 9:11 AM, David Bovill via use-livecode < > use-livecode@lists.runrev.com> wrote: > > > > Is there a way to display an indexed array in the tree widget without > > displaying the numeric inde items (ie first column)? I

Tree Widget - order of titles

2023-07-15 Thread David Bovill via use-livecode
Is there a way to display an indexed array in the tree widget without displaying the numeric inde items (ie first column)? I'm looking to display an ordered index of titles and would prefer not to use both a field and a tree widget to accomplish this? ___

Workaround for regular Crash setting (audio) file of player?

2023-07-15 Thread David Bovill via use-livecode
I'm working a lot with media again - and the last two days I get a crash every 15 minutes when I set the filename of a player to various mp4 audio tracks. I'd love a workaround as its slowing things up quite a bit. I've seen this behavior quite a bit over the years with media and the player. it ha

Livecode Hosting

2023-02-27 Thread David Bovill via use-livecode
I’m wondering what the current status and plans are with Livecode hosting? I have / had lifetime On-Rev hosting - but never really used it preferring to host myself. Is there still a Livecode hosting option available? ___ use-livecode mailing list use-li

Re: Browser Widget navigation and urls

2023-02-06 Thread David Bovill via use-livecode
bookmarks the page, or sends a link, the link will work > to > display the same 'page' as the user intended. > > You might be able to inject something to access the 'window.location' > object, > which I think is what is manipulated in this case. > > > On

Browser Widget navigation and urls

2023-02-05 Thread David Bovill via use-livecode
I have a web site which I navigate in Chrome, and then in the Livecode browser widget. I load the same starting url. In Chrome the browsers url changes as I navigate the pages, while if I navigate to the saem place in the same way in Livecodes embedded browser "the url" of the browser widget retur

Challenge: converting python (or Javascript) code to Livecode

2022-06-15 Thread David Bovill via use-livecode
dule a call with me On 14 Jun 2022, 14:43 +0100, Craig Newman via use-livecode , wrote: > There is a similar thread on the forum: > > https://forums.livecode.com/viewtopic.php?f=8&t=34550 > <https://forums.livecode.com/viewtopic.php?f=8&t=34550> > > Craig > > >

Re: Pointlist to Bezier?

2022-06-14 Thread David Bovill via use-livecode
I found some well documented python code: • https://github.com/volkerp/fitCurves/blob/master/fitCurves.py And some Javascript code: • https://github.com/soswow/fit-curve/blob/master/src/fit-curve.js The javascript code could be called from Livecode. To see the demo of how this would work in th

Re: Pointlist to Bezier?

2022-06-14 Thread David Bovill via use-livecode
Searching around for a function in LC. It should take the points of a graphic and return a smoothed the points of a smoothed line. I’ve found lots of bezier style experiments but no “curve fitting” code. Anyone have a function? 📆    Schedule a call with me On 6 Dec 2015, 12:10 +, Michael Kri

Wasm export examples

2022-01-23 Thread David Bovill via use-livecode
I’m trying to evaluate the state of the wasm export in dp10. As I’m not able to export to wasm from my current license, nor does the trial seem to give that option - I’m a bit stuck. Are there any examples on the web of Livecode stacks running using the wasm export that I can evaluate? 📆    Sc

Customising Wasm export

2022-01-23 Thread David Bovill via use-livecode
I have a project that requires creating and rapidly prototyping was modules that would suitably be created in Livecode. However the was modules need to interface with other system components in a manner that is most easily accomplished at the moment using a rust based toolchain. How would I exp

Building stuff

2021-09-06 Thread David Bovill via use-livecode
It’s a good question - what to build with regard to the sort of tools and components a vibrant developer community expects. I only know about examples of open source communities, and though I’d be interested in exploring how such a coding community might work with alternative closed licensing sc

Re: Suggestion: Non-Appbuilding Community Edition

2021-09-04 Thread David Bovill via use-livecode
The clearest example of a free-forever development licence which you pay for when you wish to release your app is obviously Unity 3D. I remember when this project was a small developer community supported by a company and community of keen early adopters. I asked then why Livecode Ltd didn’t ado

Re: Suggestion: Non-Appbuilding Community Edition

2021-09-02 Thread David Bovill via use-livecode
A web only version however that allowed you to learn and experiment with the language and develop free and open source server side code would not suffer this limitation. You would not be able to use that to build apps. There are options to retain open source community versions that do not canab

Re: Suggestion: Non-Appbuilding Community Edition

2021-09-02 Thread David Bovill via use-livecode
That’s an interesting idea. I’m wondering if a bit of terminology is helpful here - there seem to be two distinct things that have been put together previously - community and open source. The needs of the two are not always aligned - especially with LiveCode where an easy to use well document

Calling all fish!

2021-09-02 Thread David Bovill via use-livecode
Don’t go , we love you :) The open source version, is alive. It just needs maintainers. Personally I think this move by LiveCode is healthy. We now have two choices a free open source edition maintained by the community, and a closed source version maintained by LiveCode LTD. If you want to use

Re: Text encoding.

2021-09-02 Thread David Bovill via use-livecode
Thanks for the question Alex, I’m wrestling with the same issues - but so far got no responses from encoding gurus here :) This is my understanding: 1) Yes its recommended to textEncode text that comes from outside into Livecode’s internal native format (which is utf16).  Livecode handles ever

Re: Custom URLs

2021-09-01 Thread David Bovill via use-livecode
I don’t know Dan as its been a while since I looked into this - but it sounds like a typical security thing Apple insists on for the AppStore? They tend (when compared to Android), to lock that sort of thing down save for a few standard (internet) url schema. 📆    Schedule a call with me On 1 S

Re: LiveCode community edition is gone

2021-09-01 Thread David Bovill via use-livecode
I think I’ll head over there and. See if there is any will to maintain an aspect of the language as open source - I think there are a couple of options: 1. The server 2. The language with a focus on was and web I would think that with these components open, this is in no way incompatible with a

Re: LiveCode Community - anyone up for maintaining the community edition?

2021-09-01 Thread David Bovill via use-livecode
unity edition, and they > > > didn't. I don't think people would now start caring for and devoting the > > > necessary energy to maintain the community edition. It is because people > > > didn't organise and contribute that this recent change happened. >

Re: Licensing model change

2021-09-01 Thread David Bovill via use-livecode
That’s true Kevin for some business cases - and I am sure you speak for your existing customers. However it does not apply to businesses built around GPL licensed code. Nor does it apply to publicly funded initiative like EU funding, where an open source license is  required to avoid fears of l

LiveCode Community - anyone up for maintaining the community edition?

2021-09-01 Thread David Bovill via use-livecode
Here are my thoughts on this - and a request. Yes - it’s not a surprising move by Livecode Ltd - they were clearly struggling supporting the community aspect and taking the language to the next level and they need more revenue to do that. The question is (for my part at least) - what to do abou

Storing json - mergeJSON, textdecode and "\u00a0”

2021-08-26 Thread David Bovill via use-livecode
An update on my flailing attempts to get a robust way to go Fromm arrays to json and back. Essentially the story is stuff that works on OSX fails now and then on the server - and I’m trying to track down why? It’s an intermittent problem and hard to pinpoint as the json files have a lot of cont

Best practice storing json?

2021-08-15 Thread David Bovill via use-livecode
I’ve been historically a bit lazy in taking care of how I store json data - so mostly it works but some times I get a different result on the server than I do locally on OSX. I suspect this is due to encoding differences in how the data is stored and which characters are in the json. I’d like to

Livecode Electron-style App

2021-07-28 Thread David Bovill via use-livecode
I’m researching for an article on Livecode and javascript for electron-style applications. Would really love some examples to work from, especially around: • Bidirectional javascript communication • Custom url schema for browser integration I have a few examples gleaned from the forum and this l

Re: Levure Dataview: hiding rows

2021-07-01 Thread David Bovill via use-livecode
    Schedule a call with me On 1 Jul 2021, 16:12 +0100, Bob Sneidar via use-livecode , wrote: > Delete the row data?? > > Bob S > > > > On Jul 1, 2021, at 01:16 , David Bovill via use-livecode > > wrote: > > > > I took a look at the code to try

Re: Levure Dataview: hiding rows

2021-07-01 Thread David Bovill via use-livecode
; > > > > > 2. If this still does not fix it, in > > > Settings>General>Keyboard>TextReplacement>, add 'fir' with the replacement > > > 'for'. > > > > > > (3. Or, go to Settings>General>Reset>ResetKeyboardDictionar

Levure Dataview: hiding rows

2021-06-24 Thread David Bovill via use-livecode
;for' right away then it is already fixed. Otherwise, continue > > using this phrase replacing 'fir' with 'for'. > > > > 2. If this still does not fix it, in > > Settings>General>Keyboard>TextReplacement>, add 'fir' with the r

Re: SVG Library

2021-06-24 Thread David Bovill via use-livecode
u can avoid having to store all the different sizes of files > when trying to minimize the scaling problem. > > > Tim Bleiler, Ph.D. > Instructional Designer, HSIT > University at Buffalo > > On Jun 22, 2021, at 1:52 AM, David Bovill via use-livecode > mailto:use-livecode@lis

SVG Library

2021-06-21 Thread David Bovill via use-livecode
I’d like to be able to construct SVG’s easily that work with DrawingSvgCompile. Any thoughts? 📆    Schedule a call with me ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscr

Re: Levure Dataview: adding a scrolling background

2021-06-21 Thread David Bovill via use-livecode
x27; with 'for'. > > 2. If this still does not fix it, in > Settings>General>Keyboard>TextReplacement>, add 'fir' with the replacement > 'for'. > > (3. Or, go to Settings>General>Reset>ResetKeyboardDictionary, but that is > the l

Levure Dataview: adding a scrolling background

2021-06-21 Thread David Bovill via use-livecode
said yes to the spelling “fir”.  Ever since then all my > > devices seem to love this word - anyone have an idea how to correct this > > auto typing flaw? > > > > 📆    Schedule a call with me > > On 11 Jun 2021, 15:05 +0100, Klaus major-k via use-livecode >

Re: Regular crash: Dictionary (API)

2021-06-21 Thread David Bovill via use-livecode
Anyone point me too an alternative Dictionary  - too many regular crashes using the built in one? 📆    Schedule a call with me On 11 Jun 2021, 19:46 +0100, David Bovill , wrote: > For several years I have a regular crash when opening the `Dictionary (API)` > - wondering the cause. Everything els

Display Youtube video

2021-06-12 Thread David Bovill via use-livecode
Does anyone have any code to display a Youtube video. As far as I understand the only way to do this is to request an html embed code from the Youtube api based on the id of the video. The browser widget then could display this html. Has anyone done this and can share a code snippet? 📆    Sched

Regular crash: Dictionary (API)

2021-06-11 Thread David Bovill via use-livecode
For several years I have a regular crash when opening the `Dictionary (API)` - wondering the cause. Everything else works as normal - latest MacOs and Livecode - spinning coloured ball and now dictionary stack displayed  - requires force quit. Doing that now. Third time today. 📆    Schedule a c

Re: Levure Dataview drag-reordering

2021-06-11 Thread David Bovill via use-livecode
evices > seem to love this word - anyone have an idea how to correct this auto typing > flaw? > > 📆    Schedule a call with me > On 11 Jun 2021, 15:05 +0100, Klaus major-k via use-livecode > , wrote: > > Hi David, > > > > > Am 11.06.2021 um 15:58 schrieb Davi

Re: Levure Dataview drag-reordering

2021-06-11 Thread David Bovill via use-livecode
all my devices seem to love this word - anyone have an idea how to correct this auto typing flaw? 📆    Schedule a call with me On 11 Jun 2021, 15:05 +0100, Klaus major-k via use-livecode , wrote: > Hi David, > > > Am 11.06.2021 um 15:58 schrieb David Bovill via use-livecode >

Levite Dataview drag-reordering

2021-06-11 Thread David Bovill via use-livecode
Is there a simple demo out there that shows how drag-reordering of rows in a dataview works? Is this feature experimental? Got a deadline fir Monday considering taking the plunge? 📆    Schedule a call with me ___ use-livecode mailing list use-livecode@

Re: Browser Widget Issue

2021-05-26 Thread David Bovill via use-livecode
. However, only inline > styling is available as AFAIK there’s no dev tools nor access to any > downloaded css files, wherever resources might get cached by the LC browser > widget…? > > Good luck, > Keith > > > On 25 May 2021, at 17:53, David Bovill via use-livecode &g

Browser Widget Issue

2021-05-25 Thread David Bovill via use-livecode
I’m having trouble keeping track of which framework the browser widget uses - on MacOS is it using webkit or Chromium? A url I am trying to access is blank - https://obs.ninja  - while it is showing in Safari and Chrome on the desktop - any suggestions? __

Contact Library for Address Book on MacOS

2021-05-09 Thread David Bovill via use-livecode
I’m looking to create an address book on MacOS and mobile and I see that there is no built in functionality on desktop. I’ve used AppleScript before for this - but a long time ago. Is there a library hanging around for this for MacOS or Windows? ___ us

Rust

2021-04-28 Thread David Bovill via use-livecode
I need to interface with an open-source project that is being ported to rust (from C++). I would like to make an extensions library to add new syntax to my scripts. Is the way to go to create some C code that interfaces with rust -  https://docs.rust-embedded.org/book/interoperability/rust-with-

Re: On the dangers of automated refactoring

2021-04-13 Thread David Bovill via use-livecode
Hence the value of crowd-funding a version of the LiveCode language for the Graalvm. I spend a great deal of my time in LiveCode refactoring and renaming handlers. I’ve done this not so much because it is useful to my productivity, but because I see a method in the madness of spaghetti code tha

Re: Wasm and the LC Roadmap

2021-02-17 Thread David Bovill via use-livecode
> > > > Graham > > > > > On 17 Feb 2021, at 15:19, Klaus major-k via use-livecode > > > wrote: > > > > > > To all who are also not familiar witht the gazillion abbreviations, > > > David is talking about -> WebaSseMbly :-) >

Wasm and the LC Roadmap

2021-02-17 Thread 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 partners that are using wasm. Would like to play in the same place with LiveCode. *** **

Re: xAPI in LiveCode with xAPI Cohort Meeting #2 2/10/21 1:30 EST to 4 PM EST

2021-02-10 Thread David Bovill via use-livecode
I’ll be there towards the end I hop. Have a meeting clash for the start unfortunately…. Have started work on the API. On 10 Feb 2021, 00:17 +, Brian K. Duck via use-livecode , wrote: > I’m hopeful that you will be able to attend part, or all, of this meeting > time. > > Please continue to ma

Re: installing and running LC on 'headless' linux server

2021-01-31 Thread David Bovill via use-livecode
Mark that is interesting. I would like to something similar during the Learning Cohort coding sprint over the next 12 weeks. I’d be happy to write up documentation and create a community GitHub project around that approach including Nginx config etc?

Re: Fwd: xAPI in LiveCode (was Cmi5 eLearning Standard in LiveCode)

2021-01-22 Thread David Bovill via use-livecode
We've switched to: - https://us02web.zoom.us/j/6819268068 For the second half of the meeting. On Fri, 22 Jan 2021 at 14:07, David Bovill wrote: > Im in the waiting room? > On 22 Jan 2021, 13:58 +, David Bovill , wrote: > > I’m here :- but only occasionally in email) See you in a minute!

Re: Fwd: xAPI in LiveCode (was Cmi5 eLearning Standard in LiveCode)

2021-01-22 Thread David Bovill via use-livecode
Im in the waiting room? On 22 Jan 2021, 13:58 +, David Bovill , wrote: > I’m here :- but only occasionally in email) See you in a minute! > On 22 Jan 2021, 05:56 +, Brian K. Duck via use-livecode > , wrote: > > Copy to the list... > > > > > Begin forwarded message: > > > > > > From: "Brian

Re: Fwd: xAPI in LiveCode (was Cmi5 eLearning Standard in LiveCode)

2021-01-22 Thread David Bovill via use-livecode
I’m here :- but only occasionally in email) See you in a minute! On 22 Jan 2021, 05:56 +, Brian K. Duck via use-livecode , wrote: > Copy to the list... > > > Begin forwarded message: > > > > From: "Brian K. Duck" > > Subject: Re: xAPI in LiveCode (was Cmi5 eLearning Standard in LiveCode) > >

Re: Cmi5 eLearning Standard in LiveCode MEETING TODAY AT 1 PM EST

2021-01-20 Thread David Bovill via use-livecode
I like this conversation on list - I don’t consider it spam. Martin are there elements of Videolinkwell that you would consider useful as a community library? On 19 Jan 2021, 19:10 +, David V Glasgow via use-livecode , wrote: > I intended to comment on list, because I was impressed with Vide

Re: Cmi5 eLearning Standard in LiveCode MEETING TODAY AT 1 PM EST

2021-01-18 Thread David Bovill via use-livecode
See the one I sent? On 18 Jan 2021, 18:42 +, Martin Koob via use-livecode , wrote: > Hi Brian > > Waiting the new link. > > Martin > > Sent from my iPhone > > > On Jan 18, 2021, at 1:34 PM, Martin Koob via use-livecode > > wrote: > > > > Hi. > > > > Sorry I am on a train and trying to connec

Re: Cmi5 eLearning Standard in LiveCode MEETING TODAY AT 1 PM EST

2021-01-18 Thread David Bovill via use-livecode
Try this Zoom: • https://us02web.zoom.us/j/6819268068 On 18 Jan 2021, 16:51 +, Brian K. Duck , wrote: > Hello, > > I have scheduled back to back meetings today at 1 PM and 2 Pm, until 2:30, > for those who are able to join in zoom: > > #2 1/18/21 1 PM EST > > Topic: CMI5 in LiveCode Zoom Mee

Re: Cmi5 eLearning Standard in LiveCode

2021-01-11 Thread David Bovill via use-livecode
Hi Brian, that sounds interesting. I signed up for the cohort. Would like to know what you are thinking of doing with Livecode for this? Maybe we could have a Zoom before hand? On 11 Jan 2021, 03:22 +, Brian K. Duck via use-livecode , wrote: > Roger, > > I haven’t done anything with CMI5, ye

Re: Threads in LC

2021-01-08 Thread David Bovill via use-livecode
I would find it very helpful if we would share some code in this “thread” about threads? At the moment I have a need to break up a heavy indexing task on a LiveCode server into a series of smaller steps that execute asynchronously. The web server receives a webhook  notifying it that there is s

Re: Livecode server configuration: tracking down and Apache redirect

2020-12-20 Thread David Bovill via use-livecode
Thanks for the tips Richard: On 18 Dec 2020, 21:05 +, Richard Gaskin via use-livecode , wrote: > David Bovill wrote: > > > I have a Livecode server running Revigniter under Apache on Ubuntu. I > > installed it 8 years ago or so, and it is causing redirect problems > > with files ending in .jso

Livecode server configuration: tracking down and Apache redirect

2020-12-18 Thread David Bovill via use-livecode
I have a Livecode server running Revigniter under Apache on Ubuntu. I installed it 8 years ago or so, and it is causing redirect problems with files ending in .json. I am assuming that a long time ago a set the configuration somewhere to handle .json files in a particular way, but I can’t track

Re: Checking a received header for LC Server or revIgniter>

2020-12-17 Thread David Bovill via use-livecode
Fantastic - thanks! NB I don’t get a result when searching for rigGetHTTPheader in the revIgniter docs. I guess it’s not documented? On 17 Dec 2020, 10:13 +, How to use LiveCode , wrote: > > rigGetHTTPheader ___ use-livecode mailing list use-liveco

Checking a received header for LC Server or revIgniter>

2020-12-16 Thread David Bovill via use-livecode
I’m looking to check for received custom headers on a Livecode + revIgniter based server. I know how to set headers, and on the desktop Id use libURLLastRHHeaders - but what is the best way to do this on the server? ___ use-livecode mailing list use-liv

Re: Is the DateFormat read only?

2020-11-07 Thread David Bovill via use-livecode
he dictionary as : > > > > > > > > > *Note:* The *convert* command assumes all dates / times are in local > > > > > time except for 'the seconds', which is taken to be universal time. > > > > > > > > > So it assume sy

Re: Basic question: Time Zone Library

2020-11-07 Thread David Bovill via use-livecode
ingham provided that information here 2 years ago > https://www.mail-archive.com/use-livecode@lists.runrev.com/msg97605.html > > Regards, > > Matthias > > > > > > - > Matthias Rebbe > Life Is Too Short For Boring Code > > > Am 06.11.2020 um 23:29 sc

Basic question: Time Zone Library

2020-11-06 Thread David Bovill via use-livecode
Just created a handler that I want to use in a Livecode server that uses the Time Zone Library handler TimeZones(). So: 1. How do I find where the library is? 2. How do I add it so the server code can use it? On 6 Nov 2020, 21:28 +, How to use LiveCode , wrote: > > ToUniversalTime _

Re: Is the DateFormat read only?

2020-11-06 Thread David Bovill via use-livecode
Why does: get "Fri, 06 Nov 2020 10:57:37 +0300" convert it to internet date put it — give "Fri, 06 Nov 2020 10:57:37 +" Just seems to strip the timezone info? On 30 Oct 2020, 21:29 +, How to use LiveCode , wrote: > > ToUniversalTime ___ use-li

  1   2   3   >