AW: regression bug: corrupt filename at open printing to pdf

2017-11-10 Thread Tiemo Hollmann TB via use-livecode
Hi Mark, I filed it at: http://quality.livecode.com/show_bug.cgi?id=20656 I am still trying to build a recepie stack, but up to now it only happens with my live stack (see QC) Thanks Tiemo -Ursprüngliche Nachricht- Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im

Re: The coming of SVG

2017-11-10 Thread David Bovill via use-livecode
Mark one of the most important applications of SVG / canvas object implementation is the ability to create rich interactive graphics - not simply imagery. It is realy hard with any technology other than SVG / Canvas to attach events or hypertext links to a complex area of an image. Using SVG's you

Re: The coming of SVG

2017-11-10 Thread hh via use-livecode
@David. You respond to my answer for jbv (relating SVG-animation). The answer for you is two paragraphs upwards, a LC stack: http://forums.livecode.com/viewtopic.php?p=129274#p129274 The algorithm there allows you to get the clicked shape. That's all you need for setting clickregions of an image

Re: The coming of SVG

2017-11-10 Thread hh via use-livecode
PLEASE, let us first have the basic enhanced object, probably "canvas". This will need at least a full year (my estimate). Then add other things (you can already now have via LC Script or via JavaScript in a browser widget): > David wrote: > It is realy hard with any technology other than SVG /

Re: The coming of SVG

2017-11-10 Thread David Bovill via use-livecode
I don't think this would help (below). What is nice is to be able to use professional illustration tools, and then add hypertext links to one of the objects in the svg with built in tools - for instance using Graphic, or OmniGraphl). That way you can create complex beautiful (and scaleable)

[OT] Hosting .net

2017-11-10 Thread J. Landman Gay via use-livecode
A client needs to move an existing .net app to a new server. Does anyone know of a reliable, reasonably-priced hosting service that can run .net apps? Also, if anyone here knows how to do the move, please contact me privately. -- Jacqueline Landman Gay | jac...@hyperactivesw.com

Issue with Xcode 9.0 Simulator

2017-11-10 Thread panagiotis merakos via use-livecode
Hi all, I have recently encountered a problem with the iOS 11.0 simulator and Xcode 9.0. The problem appeared suddenly, so I assumed something had changed in my setup. However, I spoke with another user (Henry Lowe) and it seems he is affected too. Here is the description, taken from his email:

Tooltips in the Datagrid

2017-11-10 Thread Bob Sneidar via use-livecode
Hi all. A while back I had a go at setting the tooltip when pointing at a datagrid element, but ran into some difficulties when scrolling. With Trevor Devore's assistance, I came up with a reliable way to do this. Enjoy. First, put this in your datagrid script: on mouseEnter put the long

Re: Tooltips in the Datagrid

2017-11-10 Thread Bob Sneidar via use-livecode
Okay forget everything before. Put THIS in your datagrid script: on mouseEnter lock messages wait 30 ticks unlock messages put the long id of me into tMyID put wordOffset("card", tMyID) into tFirstWord put word tFirstWord to -1 of tMyID into tThisCard put word 2 of the

Re: Tooltips in the Datagrid

2017-11-10 Thread Mark Wieder via use-livecode
On 11/10/2017 01:54 PM, Bob Sneidar via use-livecode wrote: Hi all. A while back I had a go at setting the tooltip when pointing at a datagrid element, but ran into some difficulties when scrolling. With Trevor Devore's assistance, I came up with a reliable way to do this. Enjoy. Hmm...

Re: Tooltips in the Datagrid

2017-11-10 Thread Bob Sneidar via use-livecode
I don't use fillInData. This works with a normally populated datagrid, otherwise I could have done that. The trick here is discerning what the LAST control being pointed at is, after a nominal delay, and then ignoring all the mouseEnter events that were queued up before that. Otherwise

Re: Tooltips in the Datagrid

2017-11-10 Thread Bob Sneidar via use-livecode
Hold up on that. I am seeing that when swiping down through several records, the data I am getting is for the first record touched, and NOT the one I am currently pointing at! I need to find out why. I think I need the mouseControl. Bob S > On Nov 10, 2017, at 13:54 , Bob Sneidar via

Re: Tooltips in the Datagrid

2017-11-10 Thread Bob Sneidar via use-livecode
NVM It seems like wait with messages unlocks messages! So what I am seeing is the result of the last mouse enter working last to first in the chronological order the mouseEnter messages were sent. Bob S > On Nov 10, 2017, at 14:58 , Bob Sneidar via use-livecode >

Re: Issue with Xcode 9.0 Simulator

2017-11-10 Thread hlowe via use-livecode
Thanks for posting this Panos. I made another attempt to revert back to Xcode 9.0.1 today with no luck. On my machine, at least, the process of installing an iOS app onto the simulator is completely broken. I archived Xcode 9.1 and restored Xcode 9.0.1 from a Time machine backup (also later

Re: Tooltips in the Datagrid

2017-11-10 Thread Bob Sneidar via use-livecode
OK I am seeing a very curious thing. This may be the way it's supposed to work, and maybe not. I have this in a handler: on mouseEnter lock messages wait 30 ticks with messages unlock messages put word 2 of the mouseControl into tControlNum end mouseEnter Now when I move the mouse

Re: Markdown ultra-lite

2017-11-10 Thread Kay C Lan via use-livecode
On Tue, Nov 7, 2017 at 2:20 AM, Trevor DeVore via use-livecode wrote: > > Here is some old code I used in the past which was modified from some other > converted I had written for Textile and BBCode. Trevor, thank you very much. >If I were writing the > converter

Re: Was I hallucinating? Totally OT, perhaps relevant

2017-11-10 Thread Kay C Lan via use-livecode
On Thu, Nov 9, 2017 at 6:23 AM, Richard Gaskin via use-livecode wrote: > > But there's no question that all voice-activated systems (Apple's Siri, > Amazon's Alexa, Microsoft's Corana, Google's voice navigation) must listen > at all times in order to be able to know

Re: The coming of SVG

2017-11-10 Thread jbv via use-livecode
On Fri, November 10, 2017 2:31 pm, David Bovill via use-livecode wrote: > Mark one of the most important applications of SVG / canvas object > implementation is the ability to create rich interactive graphics - not > simply imagery. Tools for animation of the svg graphics would be great too. SMIL