Re: POST to https in LC5.0.2 - Error socket closed

2020-10-23 Thread matthias rebbe via use-livecode
Do you have a current commercial license? If so, maybe Support is willing to give you a license for the old 5.x. Regards, Matthias > Am 23.10.2020 um 11:47 schrieb Pi Digital via use-livecode > : > > Hi > > Is there any way I can get Lc5.0.2 unlocked to Enterprise level just so I can > get

Re: Script Editor freezes in Windows 10 (was Can't edit scripts in DataGrid group in Windows 10)

2020-10-23 Thread matthias rebbe via use-livecode
Martin, i am not sure if the freezes are also caused by this, but what Antivirus Software are you using. A 3rd party or Microsoft Defender? If the latter then please try to exclude the Livecode program folder and its support folders (like preferences) from realtime scanning in MS Defender. Ther

Re: POST to https in LC5.0.2 - Error socket closed

2020-10-23 Thread matthias rebbe via use-livecode
Sean, i just reactivated on an VM an old "LC 5.0.2 Complete" license which was similar to the Enterprise license in earlier versions of LC on a Windows I tried to post to a https:// url in 5.0.2 and i got an SSL error. It seems that 5.0.2 does only support the old TLS V1 and newer web servers

Re: Slightly OT: Windows Code Signing

2020-10-26 Thread matthias rebbe via use-livecode
Hi Paul, first of all buying directly through Sectigo is expensive. If you purchase from one of Sectigo's partners you'll get it much cheaper. I've purchased in July a 3year code signing certificate ( not the ELV) for 207 Euro for all 3 years. The certifcate was also delivered by Sectigo. And

Re: VPN and tsNet

2020-10-27 Thread matthias rebbe via use-livecode
I am not sure if this can be done/set in tsNET. As far as i know this is set on the system or router which establish the VPN connection. One would change the default route to the VPN tunnel. That would route all internet traffic through the VPN as long as the VPN connection is established. In

Re: VPN and tsNet

2020-10-27 Thread matthias rebbe via use-livecode
Just want to confirm that using "interface" in the settings array works here. First i've called a LC Server script on a web server without using interface. The script returns the remote ip. put tsNetGetSync("https://.xx/remoteIP.lc",xHeaders,rOutHeaders,rResult,rBytes) It returned my p

Re: VPN and tsNet

2020-10-27 Thread matthias rebbe via use-livecode
Brian, is "Pulse Secure VPN" just a client? If so, i could try test here with our existing VPN. I was on their site and they are offering a free trial, but to be honest, i am not sure what to download. ;) So if you could provide a download link for the client? Regards, Matthias - Matthias Re

Need to track click on a MacStatusMenu without menu items

2020-11-01 Thread matthias rebbe via use-livecode
Hi i am currently working on a Mac OS app which makes use of the MacStatusMenu Library. Now i need a way to track a click on a Mac Status Menu icon which does not have any menu items. Is this somehow possible? Currently i am only able to track the click of a menu item of a Mac Status Menu. But

Re: Need to track click on a MacStatusMenu without menu items

2020-11-02 Thread matthias rebbe via use-livecode
n which posts a callback on the button of the > NSStatusItem. If you want to have a play the library is open source ;-) > > Cheers > > Monte > >> On 2 Nov 2020, at 4:09 am, matthias rebbe via use-livecode >> wrote: >> >> Hi >> >> i am current

Updated NotarizeHelperStack now with entitlements support

2020-11-02 Thread matthias rebbe via use-livecode
Hi, just a quick note that i've upgraded the NotarizeHelperStack in the Livecode lesson https://lessons.livecode.com/m/4071/l/1122100-codesigning-and-notarizing-your-lc-standalone-for-distribution-outside-the-mac-appstore The stack now allows to add entitlements for code signing an app. And i ad

Re: Query large CSV file as a data source?

2020-11-03 Thread matthias rebbe via use-livecode
Couldn't you read the file partially you would open the file for read open file tFile for read then in a repeat loop you could read e.g. 1 lines and process the data read from file tFile for 1 lines Just a thought. - Matthias Rebbe Life Is Too Short For Boring Code

Re: Query large CSV file as a data source?

2020-11-03 Thread matthias rebbe via use-livecode
Keith > >> On 3 Nov 2020, at 13:37, matthias rebbe via use-livecode >> wrote: >> >> Couldn't you read the file partially >> >> you would open the file for read >> >> open file tFile for read >> >> then in a repeat

Re: Query large CSV file as a data source?

2020-11-03 Thread matthias rebbe via use-livecode
n there are left for read Good to know that one can just read in a loop without calculating the loop count first. - Matthias Rebbe Life Is Too Short For Boring Code > Bob S > > >> On Nov 3, 2020, at 7:09 AM, matthias rebbe via use-livecode >> wrote: >> >>

Re: Pass Javascript Session Cookie to LiveCode Variable?

2020-11-04 Thread matthias rebbe via use-livecode
Hi Rick, i just did a quick test and created an html file which wrote a cookie with javascript document.cookie = "username=Rick"; Then in LC Server i used the array $_cookie to read the content of the cookie Doing a put $_Cookie["username"] returned Rick Regards Matthias - Matthias

Re: Pass Javascript Session Cookie to LiveCode Variable?

2020-11-04 Thread matthias rebbe via use-livecode
gt; Thanks for helping! > > Rick > >> On Nov 4, 2020, at 2:04 PM, matthias rebbe via use-livecode >> wrote: >> >> >> document.cookie = "username=Rick"; >> >> >> The

Re: Pass Javascript Session Cookie to LiveCode Variable?

2020-11-04 Thread matthias rebbe via use-livecode
via use-livecode > : > > Hi Matthias, > > Well, that works fine! > > I’ll have to study what I did differently to figure why my method didn’t work. > > Will this work with Session variables too? > > Thanks, > > Rick > >> On Nov 4, 2020, at

Re: Pass Javascript Session Cookie to LiveCode Variable?

2020-11-05 Thread matthias rebbe via use-livecode
stName”] > > stop session > > ?> > > To retrieve the session variable in LiveCode: > > > start session > > put $_SESSION["NewFirstName”] into VarFirstName > > stop session > > ?> > > So, I’m wondering that since we are ab

Re: Pass Javascript Session Cookie to LiveCode Variable?

2020-11-06 Thread matthias rebbe via use-livecode
lient’s web-browser which is why > as users were are always clearing them out. > > So, LiveCode can read Javascript cookies! Yay! > > It’s good enough for now. I’ll revisit Javascript session variables later. > > Thanks for your help! > > Rick > >> On Nov 4,

Re: Basic question: Time Zone Library

2020-11-06 Thread matthias rebbe via use-livecode
Hi, i am not sure if this is still the way how to do it with newer LC Server versions, but at least it still works with LC 9.6.1 First copy the folder of of the time zone library to your server for example into a folder extension Then, to use the library you'll have to put the following 2 line

Re: Is the DateFormat read only?

2020-11-07 Thread matthias rebbe via use-livecode
Alex, i've posted already some info about how to use the time zone library in Livecode server in my comment to David's post "Aw: Basic question: Time Zone Library". Here it is again and a little bit more detailed. 1. copy the folder com.livecode.library.timezone from the LC extensions folder

Reading key values in info.plist file iOS or Mac using XML library?

2020-11-12 Thread matthias rebbe via use-livecode
Hi, does anyone know if it is possible to use the xml library to read values from an info.plist file? Regards, Matthias - Matthias Rebbe Life Is Too Short For Boring Code ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit t

Re: Reading key values in info.plist file iOS or Mac using XML library?

2020-11-12 Thread matthias rebbe via use-livecode
e of CFBundleDisplayName one line below. This will work as long as the line with the value is directly after the line with the .. values. Thanks. > Bob S > > >> On Nov 12, 2020, at 4:30 PM, matthias rebbe via use-livecode >> wrote: >> >> Hi, &g

Re: Reading key values in info.plist file iOS or Mac using XML library?

2020-11-12 Thread matthias rebbe via use-livecode
s an updated > info.plist for my standalone that adds additional document types since the > standalone builder only allows a single document type. > > On 11/12/2020 7:30 PM, matthias rebbe via use-livecode wrote: >> Hi, >> >> does anyone know if it is possible to use

Re: Downloading LC9

2020-11-16 Thread matthias rebbe via use-livecode
I am currently downloading LC 9.6.1 Business Mac with a download rate 3,7 - 4,5Mibt/s. Or did you download an other version?. Regards, Matthias Matthias Rebbe Software & Support Externer Datenschutz Bramkampsieke 13 32312 Lübbecke Tel +49 5741 31 +49 160 5504462 Fax: +49 5741 3

Re: MP3 ID3 tag writer

2020-11-24 Thread matthias rebbe via use-livecode
The late Mark Smith (the Bass Player) had written a library. http://marksmith.on-rev.com/revstuff/files/libID3.zip Here's an overview of his rev stacks: http://marksmith.on-rev.com/revstuff/ - Matthias Rebbe Life Is Too Short For Boring Code > Am 24.11.2020 um 16:36 schrieb Skip Kimpel via use

Re: Mac standalone install in menu bar

2020-11-24 Thread matthias rebbe via use-livecode
On Mac there is the Mac Status Menu library available in LC9.6 and lower. Regards, Matthias - Matthias Rebbe Life Is Too Short For Boring Code > Am 24.11.2020 um 15:24 schrieb Ben Rubinstein via use-livecode > : > > Is it possible to create an using LC that once launched installs itself in

Re: MP3 ID3 tag writer

2020-11-24 Thread matthias rebbe via use-livecode
I just noticed, that the files are not available anymore. I've uploaded a zip archive of those files here https://dl.qck.nu/?dl=MarkSmith.zip - Matthias Rebbe Life Is Too Short For Boring Code > Am 24.11.2020 um 16:59 schrieb matthias rebbe via use-livecode > : > > The lat

Re: return "error" code from standalone compile

2020-12-10 Thread matthias rebbe via use-livecode
Every application can have its own exit codes, but 0 should always be used for success and 1 for error. Although there are exceptions. The Dos Find command for example returns 1 when the search was successfull but nothing was found. You could use exit codes for example in batch files. The batch

Re: Backdrop Preference for None

2020-12-16 Thread matthias rebbe via use-livecode
Can't you switch it off using the menu View->Backdrop? Regards Matthias - Matthias Rebbe Life Is Too Short For Boring Code > Am 16.12.2020 um 23:53 schrieb Roger Guay via use-livecode > : > > I can’t figure out how to set backdrop to none as a preference. I had it > before I trashed my pref

Re: move cursor to the end of a line in a field

2020-12-23 Thread matthias rebbe via use-livecode
Douglas, you can use select after line x of fld y for this. For example to place the cursor after line 3 of fld "text" you would write select after line 3 of fld "text" Regards, Matthias - Matthias Rebbe Life Is Too Short For Boring Code > Am 23.12.2020 um 20:57 schrieb Douglas A. Ruisa

Re: move cursor to the end of a line in a field

2020-12-23 Thread matthias rebbe via use-livecode
the same. ;) > Sent from my iPhone > >> On Dec 23, 2020, at 3:22 PM, matthias rebbe via use-livecode >> wrote: >> >> Douglas, >> >> you can use >> >> select after line x of fld y >> >> for this. >> For example to place

Re: move cursor to the end of a line in a field

2020-12-23 Thread matthias rebbe via use-livecode
- Matthias Rebbe Life Is Too Short For Boring Code > Am 23.12.2020 um 21:50 schrieb Mark Wieder via use-livecode > : > > On 12/23/20 12:26 PM, Brian Milby via use-livecode wrote: >> To improve on my initial suggestion... >> select after char -1 of field 1 > > That's the end of the *field* not

Re: [ANN] Release 9.6.2 RC-2

2021-01-12 Thread matthias rebbe via use-livecode
I am afraid i am at a crossroads now. Unfortunately prices for Mac hardware increased over the years. I will definitely not buy a M1 Mac. I will use my iMac as long as i get updates for macOS and will then switch back completely to Windows. Most of the software i am using is available for macOS

Re: opened socket in IDE prevents script changes

2021-01-15 Thread matthias rebbe via use-livecode
Alex, for a new project which should include socket communication i have to prototype a short "demo" and i was already wondering if i need to have running 2 instances of the LC IDE for development. But now you wrote that you had one server and even multiple client stacks opened in LC. So do i

Re: opened socket in IDE prevents script changes

2021-01-15 Thread matthias rebbe via use-livecode
one instance of the LC IDE" > > Your understanding is correct. On the other project (where I didn't have > this current problem) I had half a dozen clients and 1 "server" running in > the IDE. > > On Fri, Jan 15, 2021 at 2:47 PM matthias rebbe via use-liv

Re: opened socket in IDE prevents script changes

2021-01-15 Thread matthias rebbe via use-livecode
Thanks Alex. I will keep your advice in mind. Matthias - Matthias Rebbe Life Is Too Short For Boring Code > Am 15.01.2021 um 18:22 schrieb Alex Tweedly via use-livecode > : > > > On 15/01/2021 14:46, matthias rebbe via use-livecode wrote: >> Alex, >> for a new p

OT Friendly customers....

2021-01-26 Thread matthias rebbe via use-livecode
Hi all, today i had a really unfriendly email from a customer and i would like to show what independent developers sometimes have to deal with. First some information... i am selling a Win/Mac/Linux tool through Fastspring for years. The software is protected using Zygodact from Jacqueline Land

Re: OT Friendly customers....

2021-01-26 Thread matthias rebbe via use-livecode
> William Prothero > http://es.earthednet.org > >> On Jan 26, 2021, at 9:17 AM, matthias rebbe via use-livecode >> wrote: >> >> Hi all, >> >> today i had a really unfriendly email from a customer >> and i would like to show what independen

Re: revCopyFolder in LC Server

2021-01-27 Thread matthias rebbe via use-livecode
Neville, revCopyFolder is part of the revCommonLibary which is located in the folder Tools/Toolset/libraries within the LivecodeIDE app bundle (MacOS) or program folder (Windows). The file revCommonLibrary.livecodescript is not included in the LivecodeServer Installation files by default. You

Re: clipboardData on Mobile?

2021-01-28 Thread matthias rebbe via use-livecode
Hi Dan, The ClipboardData property is only supported on desktop operating systems. If using native fields, then you could let the mobile os copy/paste the clipboard data. But i am afraid using a LC to copy/paste to/from Clipboard on mobile is currently not possible. - Matthias Rebbe Life Is

Re: clipboardData on Mobile?

2021-01-28 Thread matthias rebbe via use-livecode
1.2021 um 09:32 schrieb matthias rebbe via use-livecode > : > > Hi Dan, > > The ClipboardData property is only supported on desktop operating systems. > > If using native fields, then you could let the mobile os copy/paste the > clipboard data. > > But i am

Re: OT Friendly customers....

2021-01-28 Thread matthias rebbe via use-livecode
ias rebbe via use-livecode > : > > Hi all, > > today i had a really unfriendly email from a customer > and i would like to show what independent developers sometimes have to deal > with. > > First some information... > i am selling a Win/Mac/Linux tool through Fastsp

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

2021-01-29 Thread matthias rebbe via use-livecode
Ben, is there a reason why you do not install/use Livecode Server instead of Livecode IDE on your system? You could run livecode scripts directly from shell. Regards, Matthias - Matthias Rebbe Life Is Too Short For Boring Code > Am 29.01.2021 um 19:44 schrieb Ben Rubinstein via use-livecod

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

2021-01-30 Thread matthias rebbe via use-livecode
Is there > somewhere I should look to find explanation of differences/pros/cons of > Server versus IDE editions? > > thank you, > > Ben > > On 29/01/2021 20:30, matthias rebbe via use-livecode wrote: >> Ben, >> is there a reason why you do not install/use Livecod

Re: Which of the current FTP legends should I be using?

2021-01-31 Thread matthias rebbe via use-livecode
Hi PrestoBruce, just a shot in the dark..., but how did you fill the pData parameter? Did you use put URL "binfile:..." into pData or maybe by mistake put URL "file:" into pData That would explain why the data is corrupted after upload. - Matthias Rebbe Life Is Too Sh

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

2021-02-01 Thread matthias rebbe via use-livecode
> Am 01.02.2021 um 10:52 schrieb Ben Rubinstein via use-livecode > mailto:use-livecode@lists.runrev.com>>: > > Thanks Mark (and Matthias). That's very useful info which I'll stash for > another time. > > In this case I really don't want to use the LC code over HTTP. It is purely a > utility

Re: Codesigning & notarizing

2021-02-04 Thread matthias rebbe via use-livecode
Hi Marty, i added a comment to your bug report already. I used your demo stack and cannot replicate the crash. I use App Wrapper 4 to code sign. I code signe for Web distribution, not for App Store or Store installer. I am also on Mojave (10.14.6), but i am using Xcode 11.3 Regards, Matthias

Re: Codesigning & notarizing

2021-02-04 Thread matthias rebbe via use-livecode
The stack is already attached to the bug report. ;) I had some time, so I've used Marty's demo stack and created a standalone and code signed it. I also did not add the entitlements when code signing with App Wrapper 4. The code signed app does not crash at startup. - Matthias Rebbe Life Is

Re: Codesigning & notarizing

2021-02-04 Thread matthias rebbe via use-livecode
Marty, do you experience this problem also with your demo stack and Xcode 11.3? If so, could you create a new standalone from that demo stack and upload it somewhere, so i could download it and try to code sign it here? Btw. Are you code signing for web distribution or Apple store? Regards,

Re: Codesigning & notarizing

2021-02-05 Thread matthias rebbe via use-livecode
@Marty, Great to hear that you finally got it working. What i do not understand is why the code signed (without entitlements) sample standalone did run w/o crashing here, but on your Macs it crashed, although we are both using the same macOS version. Anyway, using entitlements for code signing

Re: LC Roadmap

2021-02-14 Thread matthias rebbe via use-livecode
Every Livecoder who is interested in creating lessons or fixing outdated ones can ask Livecode Support to get access to the Lessons section. Livecode will then create an account and will provide the tools for creating the lessons. At least this was the fact when i asked if i could help. Regard

iOS App just shows Splash Screen the quits

2021-02-16 Thread matthias rebbe via use-livecode
Hi, i am working on an app which ran without problems on iOS14.2 on the iPad of a customer.. Now the customer updated his iPad to iOS 14.4 and now the app crashes after showing up the splash screen. Even a simple app only shows the splash screen at start and the quits. I tried to build the app

Re: iOS App just shows Splash Screen the quits

2021-02-16 Thread matthias rebbe via use-livecode
Forgot to mention. I tried with LC 9.6.2 RC 1 & 2 and LC 9.6.1 - Matthias Rebbe Life Is Too Short For Boring Code > Am 16.02.2021 um 17:43 schrieb matthias rebbe via use-livecode > : > > Hi, > > i am working on an app which ran without problems on iOS14.2 on the iPad of a

Re: SSL Error - question from Stack Overflow

2021-02-16 Thread matthias rebbe via use-livecode
Could you try tsNetVerifySSLPeer false instead of libURLSetSSLVerification false ? Maybe setting libURLSetSSLVerification does not have any effect on tsNET. - Matthias Rebbe Life Is Too Short For Boring Code > Am 16.02.2021 um 19:06 schrieb Devin Asay via use-livecode > : > > Hi all, >

Re: LC, Mac Mail & Rules

2021-02-24 Thread matthias rebbe via use-livecode
How do you compose the email? Are you using the Mime library for it? Are you using shell() function to send the email after composing or the tsNET external? - Matthias Rebbe Life Is Too Short For Boring Code > Am 24.02.2021 um 04:19 schrieb Rick Harrison via use-livecode > : > > I have a sc

Re: Baffling can't create variable message

2021-02-24 Thread matthias rebbe via use-livecode
David, the Text is a property of button "search all". You have to use "set the text" set the text of button "search all" to return & fld "custom" & the text of button "search all" - Matthias Rebbe Life Is Too Short For Boring Code > Am 24.02.2021 um 12:53 schrieb David V Glasgow via us

Re: LC, Mac Mail & Rules

2021-02-24 Thread matthias rebbe via use-livecode
Just test the Rules part of Mac Mail in Catalina, > to see if an auto reply generates Hexadecimal > numbers in the Subject line. > > Thanks, > > Rick > >> On Feb 24, 2021, at 7:21 AM, matthias rebbe via use-livecode >> wrote: >> >> How do you compose t

Re: LC, Mac Mail & Rules

2021-02-24 Thread matthias rebbe via use-livecode
one come up with a > workaround that produces the correct result? > > Thanks! > > Rick > > > >> On Feb 24, 2021, at 10:43 AM, matthias rebbe via use-livecode >> wrote: >> >> Okay, understood. ;) >> >> I've tried here in a VM

Re: Parsing properties in Link- and Internet Shortcut files

2021-02-26 Thread matthias rebbe via use-livecode
I tried here to find an "empty" .url file, but w/o success. My .url files i have collected over the years on my Windows VM are all textfiles. If you could provide a link to such an empty one, i would be really interested to see that. Regarding the .lnk files, which seem to be in a binary form

Re: Parsing properties in Link- and Internet Shortcut files

2021-03-01 Thread matthias rebbe via use-livecode
. Could you supply a better example using gmail smtp settings or something similar, or update the documentation? Thanks, Rick > On Feb 26, 2021, at 10:26 AM, matthias rebbe via use-livecode > wrote: > > > > I tried here to find an "empty" .url file, but w/o succ

Re: Parsing properties in Link- and Internet Shortcut files

2021-03-01 Thread matthias rebbe via use-livecode
orks? > > If so, the other possibility is that I have > somehow not filled in one of the fields properly. > Could you supply a better example using > gmail smtp settings or something similar, > or update the documentation? > > Thanks, > > Rick > > >

Re: Version 1.2 of the mail stack

2021-03-01 Thread matthias rebbe via use-livecode
> > Of course field values now become variable values. > > Everything seems fine except: > > put mimeEncodeFieldAsMIMEMultipartDocument(the long id of field > "email_message") into tBody > > How do I get he long id of my VariableEmailMessage into tBody

Re: Version 1.2 of the mail stack

2021-03-02 Thread matthias rebbe via use-livecode
brary.mime and not in the TsNetLibUrl, so I > guess that answers that question. > > If I’m incorrect somehow, please let me know. > > Thanks, > > Rick > >> On Mar 1, 2021, at 7:09 PM, matthias rebbe via use-livecode >> wrote: >> >> mimeEncodeField

Re: Version 1.2 of the mail stack

2021-03-02 Thread matthias rebbe via use-livecode
> I managed to find mime.livecodescript. > > What folder do I need to put it into on my macOS Catalina LC Server? > > Thanks, > > Rick > >> On Mar 2, 2021, at 12:55 PM, matthias rebbe via use-livecode >> wrote: >> >> I would copy the complete

Re: Version 1.2 of the mail stack

2021-03-02 Thread matthias rebbe via use-livecode
>> Am 02.03.2021 um 17:56 schrieb Rick Harrison via use-livecode >>> : >>> >>> Hi Matthias, >>> >>> Ok, I only see mimeEncodeFieldAsMIMEMultipartDocument in >>> com.livecode.library.mime and not in the TsNetLibUrl, so I >>> guess th

Re: Version 1.2 of the mail stack

2021-03-02 Thread matthias rebbe via use-livecode
Do I want the entire folder? > > Do I just want: > > tsNet.bundle > tsNet.dylib > tsnetliburl.livecodescript > > There’s a lot of items. > > Thanks, > > Rick > >> On Mar 2, 2021, at 5:23 PM, matthias rebbe via use-livecode >> wrote: >> >> it

Re: tsNet mail message not formatting

2021-03-03 Thread matthias rebbe via use-livecode
Tried this script here on macOS put "this is line 1"&return &"this is line 2" into tBody put "xx" into tFrom put "xxx...@me.com" into tTo put "Email test" into tSubject put "" into tSettings["username"] put "" into tSettings["password"] put TRUE into tSettings["NO_REUSE"] put "s

Re: tsNet mail message not formatting

2021-03-03 Thread matthias rebbe via use-livecode
The problem is, put URL file: uses the line endings of the os where the it is executed, even if you have a container/variable with some text and line endings CRLF. As soon as you use put into URL "file:..." the line endings are converted to the default ones of the os where the code is exc

Re: tsNet mail message not formatting

2021-03-03 Thread matthias rebbe via use-livecode
Rick, let's say pTO contains one or more email recipients, each in one line pCC contains one or mor cc recipients, each in one line pBCC contains one or more bcc recipients, each in one line tData contains the mime encoded message which includes all To and all CC recipients then you would do

Re: tsNet mail message not formatting

2021-03-03 Thread matthias rebbe via use-livecode
il message separately for every single recipient. > > SMTP connections (and tsNetSMTP* commands) are designed to handle multiple > recipients for one e-mail within a single SMTP transfer. > > Regards, > > Charles > >> On 4 Mar 2021, at 9:30 am, matthias rebbe via

Re: mergFTPd example?

2021-03-10 Thread matthias rebbe via use-livecode
Hi Phil, i would say mergFTPd is the easiest way to accomplish that. Did you already check the mergFTP Demo stack which is inside the Livecode app bundle, e.g. here for LC 9.6.2 /Applications/LiveCode Business 9.6.2 (rc 2).app/Contents/Tools/Ext/mergFTPD-1.0.56 You just need to set/select t

Re: mergFTPd example?

2021-03-10 Thread matthias rebbe via use-livecode
ed with 9.6.2 yet but will now be doing so > very soon. I'll look into it tomorrow (it's almost 2 AM here) and see what I > can learn. > > Thanks again - > Phil > > > On 3/10/21 1:47 AM, matthias rebbe via use-livecode wrote: >> Hi Phil, >> i would

Re: Setting Creation Date of file to a past date?

2021-03-14 Thread matthias rebbe via use-livecode
Windows unfortunately does not include such a command line tool, but it should be possible to do that with a powershell command which is executed with the Shell() function. so for example this command here put shell("powershell (ls c:/users/matthias/test.txt).CreationTime = get-date 2019-12-24

Re: [ANN] Release 9.6.2 RC-3

2021-03-17 Thread matthias rebbe via use-livecode
Just out of interest, do you see this just with the Livecode IDE or also with a Livecode standalone? - Matthias Rebbe Life Is Too Short For Boring Code > Am 17.03.2021 um 09:19 schrieb Håkan Liljegren via use-livecode > : > > Ok, after a day or so it creeps back. Unplug extra monitor, restart

Re: [ANN] New Book: Development Oriented Development

2021-03-17 Thread matthias rebbe via use-livecode
David, At the bottom of the page at https://payhip.com/features/sell-digital-downloads Payhip writes "We can handle the generation, storage and issuing of keys to protect your software." So it seems there are 2 ways to do this with Payhip. 1. sell a license and the customer gets a download link

Re: How to share a recorded sound on iOS?

2021-03-17 Thread matthias rebbe via use-livecode
William, what do you mean with sharing? Do you want to connect your iOS device to iTunes on Win/Mac and want to get access to that recorded files in iTunes? If that's the case, then go to the Standalone Settings for your iOS stack, switch to Requirements and check the "File Sharing" option. Th

Re: How to share a recorded sound on iOS?

2021-03-17 Thread matthias rebbe via use-livecode
ed mailacoount on your iOS device. > And mailaccounts are not present on the iOS devices that will be used. > > > > greetings, > > William > > > > > Op wo 17 mrt. 2021 om 23:05 schreef matthias rebbe via use-livecode < > use-livecode@lists.runrev.com>

Re: How to share a recorded sound on iOS?

2021-03-17 Thread matthias rebbe via use-livecode
Messages. Seems Messages does not support the .caf file type. I used this code for my test mergPopActivity "Share with...","" ,"file:"&the documents folder &"/output.caf" > > greetings, > > William > > > &

Re: How to share a recorded sound on iOS?

2021-03-17 Thread matthias rebbe via use-livecode
> > Seems Messages does not support the .caf file type. > I have to correct this. Sending files to iMessage app through the sharing feature is not possible for all apps, even if they are from Apple. Tried here for example with the File.app from Apple on the iPhone. iMessage is not offered as t

Re: Help! I'm stuck

2021-03-19 Thread matthias rebbe via use-livecode
Hi Bill, i am not an expert for that kind of error message. Too much numbers i do not know what they mean. The text in the error message mentions several time revdebugger. Are you including the RemoteDebugger to your standalone or do you have red breakpoints somewhere in the script which might

Re: Help! I'm stuck

2021-03-19 Thread matthias rebbe via use-livecode
Another thing. I am not sure if your problems are also a result of the following, but you could giv it a try. There was something changed in Standalonebuilder process starting in LC 9.0 or so to fix a problem. But this fix could cause other problems in some situation. While before that fix the

Re: Help! I'm stuck

2021-03-20 Thread matthias rebbe via use-livecode
or just change all them and wonder what affect that would have on the > integrity of the build process? > > Also, opencard scripts are also called when a stack in launched and I wonder > if those need to be escaped too. > > Best, > Bill > >> On Mar 19, 2021,

Re: LC Server - Check for Screen size?

2021-03-20 Thread matthias rebbe via use-livecode
As Livecode Server runs on the server there is no direct command/function in LC Server available for this task. But you could use Javascript (document.cookie) in your LC Server script to write the screen resolution into a cookie and read that cookie then with your Livecode Server script. -

Re: LC Server - Check for Screen size?

2021-03-21 Thread matthias rebbe via use-livecode
/p>"; > txt += "<p>Color resolution: " + screen.pixelDepth + "</p>"; > > document.getElementById("demo").innerHTML = txt; > > > > > > And then put the information into a Javascript cookie and then read the > cooki

Re: XCode 12.4 not working with LiveCode

2021-03-23 Thread matthias rebbe via use-livecode
Andre, according the release notes of LC 9.6.2 RC3 the following Xcode versions are supported Xcode 8.2 on MacOS X 10.11 Xcode 9.2 on MacOS 10.12 (Note: You need to upgrade to 10.12.6) Xcode 10.1 on MacOS 10.13 (Note: You need to upgrade to 10.13.4) Xcode 11.3 on MacOS 10.14 (Note: You need to

Re: A question for LC and Windows 10 experts

2021-03-23 Thread matthias rebbe via use-livecode
Hi jbv, i have several apps running on Windows 10 (and before that on Vista) that run unattended. Not all on the same machine, but up to 3 standalones per machine. Some standalones are running in the background and the repeating tasks are executed using the "sendto ... in seconds" an

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread matthias rebbe via use-livecode
Jacque, > Am 24.03.2021 um 03:32 schrieb J. Landman Gay via use-livecode > : > > I read it today too and it was inspiring, which was the whole point really. A > couple of the footnotes made me laugh. I already make a lot of my own tools > and plugins but I did get some ideas from the book. >

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread matthias rebbe via use-livecode
- Matthias Rebbe Life Is Too Short For Boring Code > Am 24.03.2021 um 10:45 schrieb matthias rebbe via use-livecode > : > > Sometimes 3 times, because have to projects i create for Win/Mac/Linux and > that several times a month. ___ use-

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread matthias rebbe via use-livecode
Jacque, tsNET returns the 'standard' curl error codes. I have bookmarked the followingurl to get help, if i got stuck with tsNET and its error code. https://curl.se/libcurl/c/libcurl-errors.html - Matthias Rebbe Life Is Too Short For Boring Code > Am 24.03.2021 um 20:39 schrieb J. Landman G

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread matthias rebbe via use-livecode
 - Matthias Rebbe Life Is Too Short For Boring Code > Am 24.03.2021 um 21:47 schrieb J. Landman Gay via use-livecode > : > > On 3/24/21 3:00 PM, matthias rebbe via use-livecode wrote: >> tsNET returns the 'standard' curl error codes. I have bookmarked the >&g

Re: Problem with Script Editor in LC 9.6.2 (rc3)

2021-03-24 Thread matthias rebbe via use-livecode
Henry, i had a similar problem already with previous LC releases. In my case a 3rd party tool called Popclip was the culprit. Popclip is automatically activated as soon as some text is selected. So when i selected text in the editor some strange things happened, for example the whole text was s

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread matthias rebbe via use-livecode
M, matthias rebbe via use-livecode wrote: >> Server scheme use sslis protocol >> ftp:// false ftp >> ftp://. true ftp over SSL explicit >> ftps://

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread matthias rebbe via use-livecode
tps:// trueftp over SSL >>> implicit is how tsNet needs the server url - Matthias Rebbe Life Is Too Short For Boring Code > Am 24.03.2021 um 23:44 schrieb matthias rebbe via use-livecode > : > > I've just had a quick look at the document

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread matthias rebbe via use-livecode
- Matthias Rebbe Life Is Too Short For Boring Code > Am 25.03.2021 um 00:22 schrieb Richard Gaskin via use-livecode > : > > FTP is a great protocol for open-ended traversal of remote file repositories. > > For just transferring a file, scp or rsync with shared keys is a one-liner > via shell()

Re: [ANN] This Week in LiveCode 259

2021-03-25 Thread matthias rebbe via use-livecode
Jacque, if you use ftps:// and enable use_ssl then the mode is 'FTP over SSL implicit'. If your FTP Server does not support this mode, then you get an error. So it seems your server does only support FTPS explicit and not implicit FTPS implicit is not very common. Most shared hosts support ftp/sf

Re: name of web page

2021-03-25 Thread matthias rebbe via use-livecode
Scott, do you want to get the filename of the script that is executing? Then put the filename of me returns the name of the lc script file including the complete path e.g./home//public_html//scott/pagename.lc - Matthias Rebbe Life Is Too Short For Boring Code > Am

Re: How to install tsNet correctly?

2021-03-29 Thread matthias rebbe via use-livecode
Hi Tiemo, please see my answers below. Regards, Matthias > Am 29.03.2021 um 15:24 schrieb Tiemo via use-livecode > : > > Hello, > > it's some time ago, that I build a new install. > > > > On Windows I formerly just copied the "tsNet-x86" dll into the Externals > folder in my runtime dir a

Re: New(?) Idea for Standalones

2021-03-29 Thread matthias rebbe via use-livecode
Don't blame Microsoft and Apple There is a reason why MS and Apple require such things. It is security. If there weren't any "bad" people who try to hack, hijack or infect our computers using viruses, trojan or other ways, then it wouldn't be necessary either. As a developer I am also not very

How to get the path to the 'My Livecode' or the plugins folder?

2021-03-29 Thread matthias rebbe via use-livecode
Dear all, is there a way to get the path to the 'My Livecode' or the 'Plugins' folder? Searched now for more than 40 minutes and did not find anything about it? Is there maybe a hidden variable / property available for this? Regards Matthias - Matthias Rebbe Life Is Too Short For Boring Cod

Re: How to get the path to the 'My Livecode' or the plugins folder?

2021-03-29 Thread matthias rebbe via use-livecode
, but if you know you have a particular plugin installed, then you > can do > > put the filename of stack "4wDevo" into tmp > > and work from there; e.g. I get > > /Users/alextweedly/Dropbox (Personal)/My Livecode/Plugins/4wDevo.livecode > > Alex. > &g

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