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 confirmed

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 > wrote: > > On 2018-01-05 17:21, Bleiler, Timothy via use-livecode wrote: >> I’ve been testing this a little and I’ve r

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 > wrote: > &g

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 t

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 9:1

Re: Another Browser Widget Question

2017-07-28 Thread Bleiler, Timothy via use-livecode
0:22 schrieb Mark Waddingham via use-livecode >> 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 in the dictionary that look applicable. >>> If one of these w

Re: Another Browser Widget Question

2017-07-28 Thread Bleiler, Timothy via use-livecode
ecode@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 using the browser widget in Liv

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 or

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 Handbr

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: > > Hello, > > > > With LC 8.1.

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 t

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 AdjustSettin

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 # no

Re: Behaviors and the message path

2016-12-12 Thread Bleiler, Timothy
016, at 4:38 AM, Mark Waddingham wrote: > > On 2016-12-09 19:44, Bleiler, Timothy wrote: >> I still have one question though. Given the part of your answer I >> quoted above, why does the “pass” control structure trigger handlers >> along the behavior chain rather than skip

Re: Behaviors and the message path

2016-12-09 Thread Bleiler, Timothy
> On Dec 9, 2016, at 2:44 PM, mwieder wrote: > > I think it's wrong to consider behavior scripts as concatenated onto the end > of a script. If you rather think of the behavior script as a library or > backscript, then the message path becomes a little clearer. Thinking of behaviors as a libra

Re: Behaviors and the message path

2016-12-09 Thread Bleiler, Timothy
On Dec 9, 2016, at 12:56 PM, Mark Waddingham mailto:m...@livecode.com>> wrote: Rule (2) preserves this semantic for behaviors and, indeed, codifies the fact that behaviors aren't really objects - they are script extensions (for want of a better term). Thank you Mark, your explanation is very

Re: Behaviors and the message path

2016-12-09 Thread Bleiler, Timothy
On Dec 8, 2016, at 10:31 PM, Mark Wieder mailto:ahsoftw...@sonic.net>> wrote: I think the best explanation of the message path is still Richard Gaskin's chart and web page. Although I have to give props to Dar Scott for his message primer as well. I tend to think of behavior scripts (and I know

Re: Behaviors and the message path

2016-12-08 Thread Bleiler, Timothy
> On Dec 8, 2016, at 5:09 PM, mwieder wrote: > > I don't see these as anomalies or inconsistencies, but as features that help > implement proper object-oriented behavior. Tim- what "problems" do you see > with the way this is implemented? Am I missing something? Thanks Mark. I probably shouldn’

Behaviors and the message path

2016-12-08 Thread Bleiler, Timothy
I’m curious about what appears to me to be a confusing aspect of the implementation of behaviors. In short, behaviors have characteristics of an isolated, local extension of the message path AND characteristics of a concatenation of the parent control’s script. I’m raising the issue for two rea