Re: Microsoft 365 Rest API

2017-10-12 Thread Pi Digital via use-livecode
I’ve been currently working on a project with another Livecoder making a library to work with MS Dynamics365. It turns out that the best way for LC to work with it is via their webAPI (as are most things) until v9 is ready. But this still means a lot of stuff being put together outside of LC.

Re: Apps monetizing

2017-09-11 Thread Pi Digital via use-livecode
Exactly. Make sure that your widget has some sort of way for them to close it eventually. If you have it steered through your own website (rather than direct link) then you could set up banners for display in a smaller browser window. It depends on what suits you or your clients the most. There

Re: Need an Applescript Expert

2017-10-24 Thread Pi Digital via use-livecode
Hi Bob Outside of a browser you can use this to find out your running process id’s > function getSysRunningApps() { var oOutput = > document.getElementById("processDisplay"); oOutput.value = ""; oOutput.value > = getProcessList(); } Or use this for getting a running apps open active window

Re: New Books/Dictionary

2017-11-25 Thread Pi Digital via use-livecode
Coz it sucks at searching for one thing! For another, it’s nice to have it on a device to the side of you rather than swapping on the pc desktop. Greg, I’m making a little app for it that will be made freely available as soon as possible. If it works really well I’m going to make it a stack

Re: RESTful PUT error

2017-11-26 Thread Pi Digital via use-livecode
I’ve been working on a library connecting LiveCode with MS Dynamics365 CRM via some APIs custom made for us in c#. LiveCode makes its calls to the API by REST. At first I was using Put url to send some simple calls but started getting errors in some. I was advised to switch over to using Post

Re: Awful quiet around here

2017-11-14 Thread Pi Digital via use-livecode
Note to self: must message more to let mother know we’re still alive and well. And, Never ignore her! Sean Cole Pi Digital > On 14 Nov 2017, at 12:27, Marian Petrides, MD via use-livecode > wrote: > > Got this message. Just lurking, hence no posts. > > Sent

OAuth over localhost findings.

2017-12-11 Thread Pi Digital via use-livecode
Hi all I’ve been doing some work for a client who is still using LC5.0.2 ?(because it works and they don’t want to go to the subscription model) and needed to add in functionality with Adobe echoSign (now just Adobe Sign™). This has changed from a SOAP auth method over to OAuth2, rightly so.

Re: Was: URGENT: MergGoogle no longer works on iOS: CLIENTS VERY UNHAPPY

2018-05-27 Thread Pi Digital via use-livecode
Thanks for the clarification, Monte. But just to clarify in return (respectfully), when I spoke of IDE changes I was specifically referring to the Project Browser (omitted from your quote). As the greatest extent of items within the IDE that need fixing are GUI with the majority of their code

Re: URGENT: MergGoogle no longer works on iOS: CLIENTS VERY UNHAPPY

2018-05-02 Thread Pi Digital via use-livecode
It works fine on OSX but not on ios. Google have been documenting, apparently, for the last two years that they would be dropping support from using non-browser oAuth on iOS and Android devices. 1st May 2018 was apparently their cut off day. We now get this on iPads:

Re: URGENT: MergGoogle no longer works on iOS: CLIENTS VERY UNHAPPY

2018-05-02 Thread Pi Digital via use-livecode
s. > > On Wed, May 2, 2018 at 8:49 AM Pi Digital via use-livecode < > use-livecode@lists.runrev.com> wrote: > >> It works fine on OSX but not on ios. Google have been documenting, >> apparently, for the last two years that they would be dropping support from >> u

iOS sim orientation.

2018-02-14 Thread Pi Digital via use-livecode
Hi all Has orientation on the iPad simulator stopped working now? In Xcode 9.1, LC 8.1.8, iPad ios11. When it rotates the orientation is detected and resizes but the display does not rotate. Orientation is unlocked. Any help appreciated. Sean Cole Pi Digital

Re: iOS sim orientation. Retraction

2018-02-14 Thread Pi Digital via use-livecode
My bad! I’d doubled up an orientation lock command. All sorted. Sean Cole Pi Digital > On 14 Feb 2018, at 12:21, Pi Digital via use-livecode > <use-livecode@lists.runrev.com> wrote: > > Hi all > Has orientation on the iPad simulator stopped working now? In Xcode 9.1, LC

Re: Delete imported audioclips?

2018-02-07 Thread Pi Digital via use-livecode
Maybe we could make ac’s and Vc’s visible in the PB like they are in the Application Browser. We can look into it. Sean Cole Pi Digital > On 6 Feb 2018, at 23:10, Klaus major-k via use-livecode > wrote: > > Hi Tore, > >> Am 07.02.2018 um 00:03 schrieb Tore

Re: Levure update 0.9.5

2018-02-15 Thread Pi Digital via use-livecode
Hi Trevor Your readme.md and your posts here could do with a description of what Levure is and does. Just use the first paragraph from your wiki. All the best Sean Cole Pi Digital > On 14 Feb 2018, at 16:38, Trevor DeVore via use-livecode > wrote: > > Howdy

Re: Problem saving image for file

2018-07-28 Thread Pi Digital via use-livecode
Hi Steve First, a quick way to the stack or standalone folder is specialfolderpath(“resources”). Check that your folders permissions are ok. export snapshot from rect 0,0,100,100 of this card to url ("binfile:"("resources")&"/Pic.jpg") as JPEG See if this helps when using your put

Re: OAuth2 Library troubleshooting

2018-07-20 Thread Pi Digital via use-livecode
Hi Keith It is not recommended to use localhost as a redirect. What I tend to do is set up a blank php or jsp on my website and use that as the redirectURL. This url is used to send the token to in a browser request. If the page fails or does not exist then that token is never received. The

Re: Apple's 30%--anyway around it?

2018-07-17 Thread Pi Digital via use-livecode
Similar to Kee’s example is that of Amazon Prime Video while still respecting the example given of the likes of Valve and Sony PlayStation streamers. With Prime Video, users cannot purchase either a subscription or any content directly (or indirectly via a link) from the apps for iPad, iPhone

Re: Oauth2 (Dropbox) on iOS

2018-07-24 Thread Pi Digital via use-livecode
Open a console with either the device connected or the simulator and see what calls are made when the allow button is pressed > On 24 Jul 2018, at 19:20, Ben Rubinstein via use-livecode > wrote: > > I feel I've been through this before, but I've not been on it for a while, > and I'm still

Re: LCB Woes

2018-04-12 Thread Pi Digital via use-livecode
Why on earth would you have to type them? Why not for loop them or copy-paste or get LC to give you a 1024 char string of them you can copy-paste in? Odd. LCB is very much in its youth especially for java and objc. We have only the bare minimum of examples and tutorials and documentation of

Re: problem with mobileSetKeyboardType

2018-11-03 Thread Pi Digital via use-livecode
Hi Mike It’s not a good idea putting it into an openField handler as this is often as or after the keyboard has already opened. Setting it in the mouseDown will catch it earlier. Or setting transverse to false until a mouseDown/Up which first sets the keyboardType then sets its transverse to

Re: regex url validator?

2018-10-23 Thread Pi Digital via use-livecode
Hi Alex > Alex wrote: > 1. the syntax diagram is (I think) wrong (or at least misleading) > >> filter [{lines | items | keys | elements} of] *filterSource* {with | without >> | [not] matching} [{wildcard pattern | regex pattern}] *filterPattern* [into >> *targetContainer*] >> > in

Re: the beauty of the command line tools (a side note from Re: LC/macOS App Store)

2018-11-10 Thread Pi Digital via use-livecode
Hi Just to follow on from Andre, you can of course also run terminal scripts from LC. That’s exactly what I did in the aforementioned OSX Package Maker (soon to be reissued as the iOS/macOS Package Maker). You ‘could’ make a GUI for every terminal command available including every nuance and

Re: LiveCoders from London, lets meet!

2018-11-10 Thread Pi Digital via use-livecode
Assuming you mean London, UK, I’d be able to occasionally if the dates are ok. I’m in Chatham, North Kent so it’s only 40mins away by train. Sean Cole Pi Digital > On 10 Nov 2018, at 12:54, Andre Alves Garzia via use-livecode > wrote: > > I hope you come this way soon Stephen :-D Are you

Re: LiveCoders from London, lets meet!

2018-11-10 Thread Pi Digital via use-livecode
Assuming you mean London, UK, I’d be able to occasionally if the dates are ok. I’m in Chatham, North Kent so it’s only 40mins away by train. Sean Cole Pi Digital > On 9 Nov 2018, at 17:04, Andre Alves Garzia via use-livecode > wrote: > > Hey Friends, > > Who here is from London or nearby

Re: LC/macOS App Store

2018-11-10 Thread Pi Digital via use-livecode
https://downloads.livecode.com/livecode/9_0_0/LiveCodeNotes-9_0_0.pdf#page32 To quote: > The IDE is now 64-bit by default on Mac > Moreover, the "Build for Mac OS X 64-bit" is checked by default on newly > created stacks in the standalone settings for OS X. Existing stacks will > retain their

Re: [ANN] Release 9.0.2 RC-1

2018-11-10 Thread Pi Digital via use-livecode
Perhaps we should get a simplified version of this into every release note from here on in. It will save a whole heap of hunting around for them. Sean Cole Pi Digital > On 10 Nov 2018, at 14:59, Sannyasin Brahmanathaswami via use-livecode > wrote: > >

Re: Reading data from Google Sheets

2018-11-14 Thread Pi Digital via use-livecode
I’m a big fan of Monte’s mergGoogle for reading sheets. With the exception of an exceptional failure in service midway through this year due to an oAuth issue (now fixed) it made reading and writing sheet data remarkably easy. I’d thoroughly recommend adopting this if you are able. Sean Cole

Re: [ANN] animationEngine is free now

2018-09-28 Thread Pi Digital via use-livecode
AE was my first add on purchase for LC. It did me well for so many things. Thanks Malte for all of your assistance over the years and your coding prowess. All the best as you move on. Sean > On 28 Sep 2018, at 20:15, Malte Pfaff-Brill via use-livecode > wrote: > > Hi List, > > Just a

Re: Seeking OSX Code signing consultant...

2018-12-11 Thread Pi Digital via use-livecode
Hi Paul I was unable to look properly at your email earlier as I was working on something else but noted the subject as something to follow up on. I’m sorry that no one else seemed to be of help. It is unusual as I was sure that someone would have offered. If you are still in need I have some

Re: where can I learn about macOS app Help menu Search menu item?

2018-11-18 Thread Pi Digital via use-livecode
Here’s the link to the Apple Dev page for help view files https://developer.apple.com/library/archive/documentation/Carbon/Conceptual/ProvidingUserAssitAppleHelp/authoring_help/authoring_help_book.html Once you apply this with your app it is searchable along with menu items. Sean Cole Pi

Re: Should I forget HC? Honestly?

2019-01-26 Thread Pi Digital via use-livecode
What specific attributes of HC would you want to facilitate? Why would you want to make a cut down version of LC which is essentially HC with modern features (and cross platform)? I’m failing to see the benefits to students/users over using LC directly. Sean Cole Pi Digital Prod Ltd > On 26

Re: Apple Video Foundation (AVF) and .mpg files

2019-03-26 Thread Pi Digital via use-livecode
Hi If you break up the file into hex blocks you will find a stat block code somewhere. This will help: https://en.m.wikipedia.org/wiki/Elementary_stream 0x01B5 is pretty unique to mpeg2. The 0x01B3 start code can also be found in mpeg1 but is unlikely to contain the 01B5 code.

Re: play sounds in HTML5

2019-05-15 Thread Pi Digital via use-livecode
sidering there is a > list of all the soud files including the extention .WAV or .MP3 or another > one? > > Regards > > Alain > > >> Le 14 mai 2019 à 17:02, Pi Digital via use-livecode >> a écrit : >> >> Hi Alain >> >> The key he

Re: Box2D

2019-06-09 Thread Pi Digital via use-livecode
Just as well they didn’t waste their time or money on Windows 8 phone themes etc. Hehe. Sean Cole Pi Digital Prod Ltd > On 9 Jun 2019, at 15:54, Tom Glod via use-livecode > wrote: > > Maybe LC wanted to become a platform for games, thats why they planned > this.. but then the market

Re: Quotient

2019-06-25 Thread Pi Digital via use-livecode
In short form then: Put 23 into tX; Put 8 into tY; Put tX & “/“ & tY && “=“ && (tX div tY) && (tX mod tY) & “/“ & tY into tCalcString Sean Cole Pi Digital Prod Ltd > On 25 Jun 2019, at 09:09, Mark Waddingham via use-livecode > wrote: > > Q := X div Y > R := X mod Y > > Then you have

Re: play sounds in HTML5

2019-05-14 Thread Pi Digital via use-livecode
Hi Alain The key here is in the line Instead of just piano-melody.wav you would put in the whole path or relative path to the file. Example, if your file structure has a folder called ‘html’ containing your html file and then another folder called ‘audio’ which contains all your audio files

Re: [ANN] Release 9.5.0 DP-1

2019-05-21 Thread Pi Digital via use-livecode
If it’s business only that’s the single dumbest bit of reasoning I’ve seen LC do (and I’ve seen some doozies). Stuff em. I’ll build one and make it available for all Indy users for free just to pee over their weird business decisions like this. I’ve used the iOS version by merg frequently as an

Re: math on widths doesn't add up (Sean Cole (Pi))

2019-07-11 Thread Pi Digital via use-livecode
Wonderful! [Massive-grin]. That pleases me a lot. Thank you for sharing it. :D Sean Cole Pi Digital Prod Ltd > On 11 Jul 2019, at 16:17, Bob Sneidar via use-livecode > wrote: > > Great story! > > Bob S > > >> On Jul 10, 2019, at 13:07 , Quentin Long via use-livecode >> wrote: >> >> sez

Re: script for redo/undo text?

2019-07-09 Thread Pi Digital via use-livecode
Hi Nicolas It becomes quite the memory hoarder as the document goes on (as you can imagine) but I created one that is basically an indexed svc-like array. It can be char or word based. I also created (although it wouldn’t suit your purpose) a very complex undo/redo for a number of prototype

Re: OT: I just bought one of these

2019-08-24 Thread Pi Digital via use-livecode
Wow! What an amazing form factor. It’s beautiful. The only down side is it’s only got 128MB of memory. That means it’s going to be flip-flopping on virtual memory all the time. So make sure you use a micro U3 SDXC >150Mbps card. I’ve seen a hack to mount it inside the case. Sean Cole Pi

Re: Datagrid2 Form view slow down.

2019-08-24 Thread Pi Digital via use-livecode
Yep. This is my findings too for all platforms and environments. I’m having to make my own grid engine to overcome this for now because I can’t wait for their bug fix cycle or afford their support fees. I’ve got a feeling this won’t get fixed for some time to come yet. Especially judging by

Re: Is HTML5 really practical?

2019-08-31 Thread Pi Digital via use-livecode
> On 31 Aug 2019, at 10:01, hh via use-livecode > wrote: > > The HTML5 deployment has its own problems. The biggest problem is > that people use it for free and are not willing to buy (at least > for a short period) the HTML5 license in order to support further > LC development in that field

Re: Native HTML5 field

2019-08-29 Thread Pi Digital via use-livecode
Thanks H Now all I need to do is figure out some way of making this into a usable DataGrid Sean > On 29 Aug 2019, at 19:13, Ralph DiMola via use-livecode > wrote: > > Not to mention multi level Ctl-z undo's! Nice... Thank You. > > Ralph DiMola > IT Director > Evergreen Information Services

Re: Android Speed Woes

2019-08-29 Thread Pi Digital via use-livecode
Hi Dan I don’t think this is fully related to your issue based on the script you show but... I’ve been doing extensive testing this week and have come close to the conclusion now that AcceleratedRendering is completely non functional for all platforms. However, I’ve got a feeling that none of

Re: Android Speed Woes

2019-08-29 Thread Pi Digital via use-livecode
Dan is talking 500 times difference in response tho. That’s a bit more substantial. Plus speed degradation to a device designed to run Android 7.0 shouldn’t be to that degree either, for display or under the hood. The G5 has an octo 1.4ghz, the iPhoneX is 6core 2.39, only 4 times as fast (8-10

Re: Android Speed Woes

2019-08-29 Thread Pi Digital via use-livecode
That’s perfect and very near the results we’d expect to see. So it narrows it down to display. What’s inside the groups and what settings do they have? If there are images what quality setting do they have, normal better or best? Any scaling factors anywhere? Rotations? Anti-aliasing? Shapes,

Re: Hactoberfest is coming...

2019-08-31 Thread Pi Digital via use-livecode
Good work, thanks Mikey. Sean Cole Pi Digital Prod Ltd > On 31 Aug 2019, at 22:27, Mike Kerner via use-livecode > wrote: > > OK, Mikey's 100% unofficial livecode hacktoberfest idea exchange repo is > now live. > https://macmikey.github.io/lc-hacktoberfest/ > > > > On Fri, Aug 30, 2019 at

Re: Is HTML5 really practical?

2019-08-31 Thread Pi Digital via use-livecode
I would mainly only use HTML5 deployment for Web Apps rather than web pages. Much better to use some pre-made web template, Wordpress or learn and use native HTML5 & CSS3. I’m converting for my client two of his commercial desktop apps being used by sales agents over to Web Apps as he is

Re: Launch vs Set in widget

2019-08-31 Thread Pi Digital via use-livecode
Launch url is for opening an appropriate app for the url (text file, LiveCode stack, phone number etc) as associated by your OS. A phone number might open your phone app on a mobile device. A text doc might open MS Word. Launch in widget is intended to open a webpage in the browser. Depending

Re: Datagrid2 Form view slow down.

2019-08-23 Thread Pi Digital via use-livecode
Hi all I’ve been testing extensively all day and I’ve determined that acceleratedRendering has no effect on Form View DataGrids at all. Screen recordings and lining them up shows no difference in performance with zero, one , two, three or four fields populated with 200 or 2000 records of data.

Re: LC expectations

2019-08-23 Thread Pi Digital via use-livecode
I think what Herman is referring to is when you access sample stacks from within LC itself (but I don’t think I’ve used that since v8 coz I thought it broke back then ). But the forum and main site works completely on all platforms here. Maybe it’s a localised server issue?!? I hope you get

Re: Datagrid2 Form view slow down.

2019-08-23 Thread Pi Digital via use-livecode
> With acceleratedRendering true for the stack just double-check the effective > layermode of the main datagrid group and any parent groups. The layermode of my DataGrid is ‘container’ and the effective layermode is ‘static’. This would make sense to me as the DataGrid layer itself should not

Re: Datagrid2 Form view slow down.

2019-08-23 Thread Pi Digital via use-livecode
On 23 Aug 2019, at 07:51, Pi Digital via use-livecode wrote: >> With acceleratedRendering true for the stack just double-check the effective >> layermode of the main datagrid group and any parent groups. > > > The layermode of my DataGrid is ‘container’ and the effective la

Re: Datagrid2 Form view slow down.

2019-08-23 Thread Pi Digital via use-livecode
And effective is container for dglist too. Sean > On 23 Aug 2019, at 08:03, Pi Digital via use-livecode > wrote: > > My apologies, that was with acceleratedrendering set to false. With it true, > the row templates are dynamic and the main grid is container for both > ef

Re: OT: Catalina - the end of ad hoc & in-house development?

2019-09-07 Thread Pi Digital via use-livecode
I have an idea on how to get a single ‘Capsule’ app notorized that can open and run any stack file as a standalone. It does mean that the stack won’t be compiled quite like a true standalone but does allow users to open any stack on their desktops. Perhaps there’s a way we could even get it to

Re: How does OSX tell what app to open when you double click a file?

2019-08-07 Thread Pi Digital via use-livecode
2cents: I do almost the exact same thing with LC and have older versions. The same thing for adobe after effects. The really fun (phun) top weird thing that happens is using cmd-space and typing “liv” or “aft” and having pot luck which one appears at the top of the list and launches if I press

Re: 9.5.0 crash to desktop

2019-08-01 Thread Pi Digital via use-livecode
Screen Record it first and post up to the quality site. #metoo Sean Cole Pi Digital Prod Ltd > On 1 Aug 2019, at 22:21, Bob Sneidar via use-livecode > wrote: > > Hi all. Just letting everyone know I am crashing to desktop in 9.5.0 "stable" > (LOL) about very 10 minutes now. No bueno. Going

Re: 9.5.0 crash to desktop

2019-08-01 Thread Pi Digital via use-livecode
If you are on macOS you have one built in to QuickTime. File>NewScreenRecording On Windows 10 With LC open Press the windows key and ‘g’ at the same time. This opens the GameBar dialogue (it’s meant for games but works equally well for any app). Check the ‘yes, this is a game’ box. Click

Re: not building standalone due to password protected stack LC950Indy

2019-08-09 Thread Pi Digital via use-livecode
Hi I’ve only noticed this when building for HTML5. For everything else the stacks get directly included and don’t care that they are password protected. For html they have to get re-coded through emscripten which is where I believe the issue arises. Which platform/s are you trying to deploy

Re: [ANN] Release 9.5.0 RC-1

2019-07-25 Thread Pi Digital via use-livecode
> > > Last, but not least, the Android Barcode Library and the Android > > Barcode Scanner widget are now moved from the Business Edition > > into the Indy Edition. > > Excellent move, much appreciated by Indy licensees. Thanks. Indeed. I naturally assumed it was a typo or genuine mistake to

Re: Hactoberfest is coming...

2019-09-26 Thread Pi Digital via use-livecode
. Sean Cole Pi Digital Prod Ltd > On 26 Sep 2019, at 21:47, Mike Kerner via use-livecode > wrote: > > are you sure? i registered 10 minutes before i posted that email and > received a confirmation, so did i post the wrong link? > >> On Wed, Sep 25, 2019 at 5:

Re: Where LiveCode is Now

2019-10-04 Thread Pi Digital via use-livecode
And there it is (indeed)!! You still managed to get out of apologising to me, LC. Pft! Sean Cole Pi Digital Prod Ltd > On 4 Oct 2019, at 10:11, Heather Laine via use-livecode > wrote: > > :) and there it is. I am happy and relieved to be able to forgive and move > on. > > We all want the

Re: numberformat woes?

2019-11-07 Thread Pi Digital via use-livecode
Sorry, not + but &. > Put tNextNr & “” into cLetzteLaufendeNummer Sean Cole Pi Digital Prod Ltd > On 7 Nov 2019, at 13:29, Pi Digital via use-livecode > wrote: > > Hi Klaus > > Had a similar issue. To overcome I just added “” afterward. Sounds > counterin

Re: numberformat woes?

2019-11-07 Thread Pi Digital via use-livecode
But with a c at the beginning ;) Hehe, you guys :D Sean Cole Pi Digital Prod Ltd > On 7 Nov 2019, at 14:01, hh via use-livecode > wrote: > > Klaus, a better property name would be > Donaudampfschifffahrtsgesellschaftkapitänskajütenschlüsselloch ;-) > > >

Re: numberformat woes?

2019-11-07 Thread Pi Digital via use-livecode
Hi Klaus Had a similar issue. To overcome I just added “” afterward. Sounds counterintuitive but worked. So: Put tNextNr + “” into cLetzteLaufendeNummer Sean Cole Pi Digital Prod Ltd > On 7 Nov 2019, at 13:19, Klaus major-k via use-livecode > wrote: > > Bonjour Thierry, > >> Am

Re: that stupid notch

2019-11-16 Thread Pi Digital via use-livecode
Hi Stephen This is a new one on me. What notch do you refer to? Can you perhaps link a screen grab to show us what you mean? High Sierra is no longer updated by Apple so I’m not sure how you contribute this issue to them. I look forward to your response All the best Sean Cole Pi Digital

Re: windows standalone performance

2019-12-12 Thread Pi Digital via use-livecode
From what I can tell from QC is that it has not been confirmed and been marked as pending due to not being able to reproduce. Therefore the report is in limbo until further evidence or successful, consistent reproduction can be displayed. Hence, if you make a video of your findings it makes it

Re: Table Text Livecode vs .....

2019-12-17 Thread Pi Digital via use-livecode
Hi Terence This list doesn’t display images in the mail. Perhaps you could provide links to the images. Sean Cole Pi Digital Prod Ltd > On 17 Dec 2019, at 08:31, Terence Heaford via use-livecode > wrote: > > Can someone explain why the text in a livecode table displays more poorly on >

Re: Windows Standalone Performance

2019-12-11 Thread Pi Digital via use-livecode
Hi Neville From my stance I have never seen this behaviour for any version of LC from any stack ide or standalone on Mac, Windows XP/7/8/10 native or via ParallelsDesktop. Perhaps you could do a few screen recordings using an external device like your phone and show the task manager reporting

Re: My old man vs LC Standalone

2019-10-24 Thread Pi Digital via use-livecode
Questions. How do customers access/buy your software? How does it know it is on an authorised machine or with an authorised user? I have a couple of methods that I remember I thought were very clever (although ultimately pointless) you might like to add in to the mix but it depends on the

Re: My old man vs LC Standalone

2019-10-24 Thread Pi Digital via use-livecode
Hi The fact you can acquire via nefarious means nearly all software out there demonstrates how easily crackable software is. Adobe, Avid, Autodesk, Boris, Apple and Microsoft (for goodness sake) have all struggled and failed with it. Make it difficult for the everyday user to bypass, look at

Re: sub: ... in iOS 13....

2019-10-19 Thread Pi Digital via use-livecode
Jjs That’s an unfair statement, especially based on topic. It is quite likely it is only a tiny update for Monte to fix. My experience says that ALL OS systems/devices break bar none unless they don’t update at all and stay stagnant. So which system do you prefer JJS? And remember only to

Re: encrypt a standalone html5

2019-11-19 Thread Pi Digital via use-livecode
I’ve made an aes encryption library for HTML5 deployment for handling the data I pull from our server via php and js. But AES is not as robust as I would like for the kind of sensitive data we are dealing with so I’m going to make an RSA soon. AES cyphers are easy to create and require very

Re: encrypt a standalone html5

2019-11-19 Thread Pi Digital via use-livecode
What specific help do you need Riko? Sean Cole Pi Digital Prod Ltd > On 20 Nov 2019, at 03:43, Riko Abadi via use-livecode > wrote: > > @Pi Digital > > I will gladly accept your help. Thanks > > Pada tanggal Rab, 20 Nov 2019 pukul 10.14 Pi Digital via use-l

Re: Special Graphic Effects - Kill Performance On Rapid Redraws

2019-11-19 Thread Pi Digital via use-livecode
I was going to continue your analogy but it’s better to put it simply. When you see the effects other apps are able to accomplish on the same device you question the validity of arguing away the lack of performance from our apps. So looking into why is a valid request and worth some

Re: How much do we have to pay to get a minimum of efficiency from HTML5

2019-11-19 Thread Pi Digital via use-livecode
Hi Alain I truly feel your pain. To answer your subject heading, I did some calculating based on the current state of HTML5 deployment and my own experience in doing the fixes single-handed for it. I work it out in the region of £15k. It’s an effing mess. Go to quality.livecode.co.uk and

DocuSign lib

2019-11-24 Thread Pi Digital via use-livecode
Before I plough on, has anyone else created a DocuSign library for LiveCode? I don’t want to reinvent the wheelie-bin. We’d already made one for Adobe Sign but looking to give our clients a more affordable option. Thanks. Sean Cole Pi Digital Prod Ltd

Re: DocuSign lib

2019-11-24 Thread Pi Digital via use-livecode
It’s not too different to what I did for Adobe Sign. In fact, the Auth token method is even easier. A couple of weeks max. Sean Cole Pi Digital Prod Ltd > On 24 Nov 2019, at 21:51, Mark Wieder via use-livecode > wrote: > > On 11/24/19 11:59 AM, Pi Digital via use-livecode wrot

Re: DocuSign lib

2019-11-25 Thread Pi Digital via use-livecode
019, at 16:37, Bob Sneidar via use-livecode > wrote: > > Just be aware there is an actual product called DocuSign. > > Bob S > > >> On Nov 24, 2019, at 11:59 , Pi Digital via use-livecode >> wrote: >> >> Before I plough on, has anyone else crea

Re: How do I select graphics that are on top of each other with mousedown?

2019-11-25 Thread Pi Digital via use-livecode
Put each one in a group control that extends one to the left and the other to the right Sean Cole Pi Digital Prod Ltd > On 25 Nov 2019, at 18:19, William de Smet via use-livecode > wrote: > > Hi there, > > I have to square graphics (line style) on top of each other. > They have the same

Re: Hactoberfest is coming...

2019-09-25 Thread Pi Digital via use-livecode
Correction. You can only begin registering from 1st October according to the site. I’m going to be submitting a bunch of fixes and updates for HTML5 deployment to get it usable professionally again. But I have to weave this around my (barely) paid work developing a web app using the broken

Re: Where do we want LiveCode to go? (was "Re: Where LiveCode is Now")

2019-10-08 Thread Pi Digital via use-livecode
That would be true for a ‘page’ that did not load in 3 sec but if you have a loading bar they would probably be more willing. While developing for HTML5 I have to post up to the website and then refresh the page to reload the whole thing which takes about 10 seconds. But even after repeated

Re: Where do we want LiveCode to go? (was "Re: Where LiveCode is Now")

2019-10-08 Thread Pi Digital via use-livecode
Hehe. That statistic is served by DoubleClick. Definitely NOT to be trusted! It’s also self-serving to Google’s narrative. Click the link to drill down to the source details and Safari blocks it as untrustworthy. Chrome doesn’t but that’s because it’s made by Google!! 53% at 3 seconds indeed.

Re: Give a bug a hug

2019-10-08 Thread Pi Digital via use-livecode
> On 8 Oct 2019, at 14:52, Mike Kerner via use-livecode > wrote: > > • insert delay while patrons enjoy the benefit of financing the fix How does this bit work. If the PR has been submitted, how will others benefit unless a build is released? Who would be responsible for that considering

Re: Where do we want LiveCode to go? (was "Re: Where LiveCode is Now")

2019-10-08 Thread Pi Digital via use-livecode
> On 8 Oct 2019, at 19:37, JJS via use-livecode > wrote: > > So that's why i say, the HTML5 export is a nice thing to experiment, but no > visitor is going to return after the first time of long waiting, not even if > the 2nd time is somewhat quicker Again, this only potentially applies to

Re: Give a bug a hug

2019-10-08 Thread Pi Digital via use-livecode
> On 8 Oct 2019, at 21:42, Richard Gaskin via use-livecode > wrote: > > And here is a May 2016 update: > > https://livecode.com/trevor-devore-interviews-kevin-mark-on-infinite-livecode/ > > > A small number of people keep going round and round on this a large number of > times. > > How

Re: Give a bug a hug

2019-10-09 Thread Pi Digital via use-livecode
Can you provide the full link to the SQLite feature that was funded? Sean Cole Pi Digital Prod Ltd > On 9 Oct 2019, at 13:47, Richard Gaskin via use-livecode > wrote: > > https://github.com/livecode/livecode ___ use-livecode mailing list

Re: Catalina

2019-10-09 Thread Pi Digital via use-livecode
I’m not sure about profits of 64bit other than they now don’t have to pay a separate team to keep maintaining out of date 32bit support. Here’s a list of alternative options. I personally am going to have Parallels with Mojave and SnowLeopard available (as well as Win10, 7 and Ubuntu and

Re: De-Combine: stupid question number 4732

2019-10-09 Thread Pi Digital via use-livecode
Or use ArrayToJSON and JSONtoArray. This is my preferred method (that is not available for HTML5 deployment yet, hence the Split/CombineTable functions). Sean Cole Pi Digital Prod Ltd > On 9 Oct 2019, at 16:21, Bob Sneidar via use-livecode > wrote: > > In addition to other suggestions, you

Re: HTML5

2019-10-03 Thread Pi Digital via use-livecode
Hi Alain I’m sorry to hear you are having this issue. Do you have access to the server settings to enable gzip compression. When enabled the server will compress the js files substantially so that the browser does not have to download so much and décompresses it in the client (which is much

Re: ...and Livecode... where are we now?

2019-10-03 Thread Pi Digital via use-livecode
Heather Humbly, I think that would be a bit over the top to ban Richmond. I found it quite entertaining and somewhat truthful. I’m in quite a pleasant and rational state of mind at the moment so can look objectively at this. Having stared down the naked barrel of the gun in the hands of LC

Re: Where do we want LiveCode to go? (was "Re: Where LiveCode is Now")

2019-10-05 Thread Pi Digital via use-livecode
Hi Roland This is the very reason my client and I have opted for the HTML5 LC. Easy language for him to handle, operating in the browser, no need to go through IT departments to have it installed on their systems. This is a seriously MAJOR plus for us. 100% of my clients customers IT depts

Re: Table Text Livecode vs .....

2019-12-17 Thread Pi Digital via use-livecode
Some have reported noticing the difference (generally I mean, not just in LC) all the way back as far as 2007. Retina came to the MacBook in 2012. Sean Cole Pi Digital Prod Ltd > On 17 Dec 2019, at 21:42, Matthias Rebbe via use-livecode > wrote: > > You´ve asked me that already last year

Re: [ANN] Release 9.5.1

2019-12-17 Thread Pi Digital via use-livecode
Heh, spoke too soon. I saw a pull request for 9.5.2 build so I I guess 9.5.1 won’t be the last release in the 9.5.x series. Unless it goes as the first ‘unplanned’ of the series. ;) Sean Cole Pi > ** Note 9.5.1 STABLE is the last planned release in the 9.5.x series **

Re: Table Text Livecode vs .....

2019-12-17 Thread Pi Digital via use-livecode
This to do with the sharpness setting for the fonts. If you have Photoshop you have the ability to set the levels of this in the character parameters. The same principle is available to Mac developers in font smoothing. This adds levels of clarity to the fill of the typeface. Here’s Apples

Re: Missing keys in datagrid?

2019-12-17 Thread Pi Digital via use-livecode
Hey Klaus The first thing that grabs my attention is that the two missing keys, statusstatus and abruffehler, are very similar to two other keys, status and abruffehlermeldung. I wonder if this similarity is where printKeys is pulling incomplete results. It would certainly be my initial route

Re: Diff?

2020-02-01 Thread Pi Digital via use-livecode
This is marvellous. This will be so useful. Sean Cole Pi Digital Prod Ltd > On 1 Feb 2020, at 15:02, Brian Milby via use-livecode > wrote: > > I use this in ScriptTracker to get the changes when saving a stack. I > squash them together into a consolidated diff for the stack. I have not

Re: HTML5 deployment

2020-02-01 Thread Pi Digital via use-livecode
1&2 I am already implementing that way but thanks for the affirmation. 3. Good idea regarding keeping them all on one predetermined layer. 4. As with 3 also, emscripten itself has capabilities built in that will allow for this so I will more likely utilise these rather than use JQuery. The

Re: Brave browser

2020-01-31 Thread Pi Digital via use-livecode
Brave is a Chromium based browser too but without the ads so this stands to reason it would be faster and better. Unfortunately, most corporations IT depts are unlikely to veer from using Google Chrome to other chromium strains. And this is the market I think LC HTML5 is going to prosper in the

Re: Do Mac OS apps stop working if your Mac Developer ID Application cert expires?

2020-01-23 Thread Pi Digital via use-livecode
If it is an enterprise app then it will run as long as the Profile is still valid (which is usually a year from its creation). If it is AdHoc test copy, again it will run as long as the profile is valid. From the store (I know that wasn’t your question) it runs out once the user removes it

  1   2   3   >