Re: SVG Library

2021-06-22 Thread Bleiler, Timothy via use-livecode
I’d like to do the same thing David. I ran into the following problems on MacOS 11.3 with all versions of Livecode 9. I tried using Pixelmator and Inkscape. Pixelmator Pro worked ok but most of its effects don’t export to SVG. I haven’t been able to get Inkscape to work. There is a

Re: REST API's, JSON Web Tokens & Hash Algorithms

2019-11-13 Thread Bleiler, Timothy via use-livecode
your help. Tim > On Nov 12, 2019, at 5:06 PM, Mark Wieder via use-livecode > wrote: > > On 11/12/19 6:23 AM, Bleiler, Timothy via use-livecode wrote: >> Hi, >> I’ve seen some great presentations in the last few years from the >> conferences and Livecode Global ses

Re: REST API's, JSON Web Tokens & Hash Algorithms

2019-11-12 Thread Bleiler, Timothy via use-livecode
k up for hashing algorithms. On Tue, Nov 12, 2019 at 9:24 AM Bleiler, Timothy via use-livecode < use-livecode@lists.runrev.com<mailto:use-livecode@lists.runrev.com>> wrote: Hi, I’ve seen some great presentations in the last few years from the conferences and Livecode Global sessions using L

REST API's, JSON Web Tokens & Hash Algorithms

2019-11-12 Thread Bleiler, Timothy via use-livecode
Hi, I’ve seen some great presentations in the last few years from the conferences and Livecode Global sessions using Livecode to access REST API’s from web services, so I’m hoping someone can help me out here. I need to access a web service (Box.com) from my Livecode app using

Re: The coming of SVG

2018-01-05 Thread Bleiler, Timothy via use-livecode
Thank you, Mark. This is bug report 20832. I included your response in the description. > On Jan 5, 2018, at 11:54 AM, Mark Waddingham via use-livecode > <use-livecode@lists.runrev.com> wrote: > > On 2018-01-05 17:21, Bleiler, Timothy via use-livecode wrote: >> I’ve be

Re: The coming of SVG

2018-01-05 Thread Bleiler, Timothy via use-livecode
Oops, I guess we can’t send attachments to the list. Here is a link to the file I tested. https://lovesvg.com/2018/01/cat-5169/ Tim Bleiler, Ph.D. Instructional Designer, HSIT University at Buffalo > On Jan 5, 2018, at 11:21 AM, Bleiler, Timothy via use-livecode > <use

Re: The coming of SVG

2018-01-05 Thread Bleiler, Timothy via use-livecode
I’ve been testing this a little and I’ve run into some files that don’t render correctly. I’ve attached a simple example I found on the internet that contains this info about how it was created - Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0). When I

Re: The coming of SVG

2017-11-03 Thread Bleiler, Timothy via use-livecode
This is good news!! Is there any reason not to call the control “SVG?” Why create another abstraction in the name from what the control actually is? e.g. Set the fileName of SVG “My Picture” to …. Tim Bleiler, Ph.D. Instructional Designer, HSIT University at Buffalo > On Nov 3, 2017, at

Re: Another Browser Widget Question

2017-07-28 Thread Bleiler, Timothy via use-livecode
gt;‌ > >> Am 28.07.2017 um 20:22 schrieb Mark Waddingham via use-livecode >> <use-livecode@lists.runrev.com <mailto:use-livecode@lists.runrev.com>>: >> >> On 2017-07-28 20:18, Bleiler, Timothy via use-livecode wrote: >>> I don’t see any other messages

Re: Another Browser Widget Question

2017-07-28 Thread Bleiler, Timothy via use-livecode
ode@lists.runrev.com<mailto:use-livecode@lists.runrev.com>> wrote: On 2017-07-28 19:30, Bleiler, Timothy via use-livecode wrote: It’s the browser’s responsibility to handle this html syntax https://www.w3schools.com; target="_blank">Visit W3Schools Is there a way to deal with this

Another Browser Widget Question

2017-07-28 Thread Bleiler, Timothy via use-livecode
Hi, This has been asked before on this list and in the forums and I’ve never seen even a single reply. I assume it’s either blindingly obvious or something we’re "not supposed to do." When a web page loaded in the current Livecode browser widget contains a link that should be opened in a tab

Re: Trouble playing videos with MS DirectShow LC 8

2017-03-07 Thread Bleiler, Timothy via use-livecode
I’m certainly no expert on video encoding but since you used the Intel QSV H.264 encoder I’m wondering if the Livecode implementation of DirectShow does not support that hardware based encoder. You might have better luck and broader compatibilty using something like the default encoder in

Re: Trouble playing videos with MS DirectShow LC 8

2017-03-07 Thread Bleiler, Timothy via use-livecode
Make sure your file references to the movie are relative and not absolute. I’ve made that mistake once or twice. Tim Bleiler, Ph.D. Instructional Designer, HSIT University at Buffalo > On Mar 7, 2017, at 7:07 AM, Tiemo Hollmann TB via use-livecode > wrote: >

Browser widget and websites that open content in a tab or window

2017-02-03 Thread Bleiler, Timothy via use-livecode
The links on a website displayed in a browser widget work fine when they are of the form: https://www.NotRealSite.*** but nothing happens in the Livecode browser widget if the links are part of a javascript element that attempts to open the site in a new tab. Is

Re: Documentation on Dispatch

2017-01-10 Thread Bleiler, Timothy via use-livecode
Since Livecode version 7.0 it’s also possible to pass an array element by reference and that also works with “Dispatch”. Example: on mouseUp Put "27" into tTemp["tKey"] Dispatch "AdjustSetting" with tTemp["tKey"] # Now tTemp["tKey"] = 62 put tTemp["tKey"] end mouseUp on

Re: Documentation on Dispatch

2017-01-10 Thread Bleiler, Timothy via use-livecode
Another feature of “dispatch” that is undocumented is that it can be used with call by reference variables. The variables passed as call by reference can also be arrays, which can come in handy sometimes. Example: on mouseUp Put "27" into tTemp Dispatch "AdjustSetting" with tTemp #