Re: SVG icons in buttons

2019-02-26 Thread AndyP via use-livecode
SVGs can also now be Imported As Control > Image svg is now included as an image file type. - Andy Piddock My software never has bugs. It just develops random features. TinyIDE a Free alternative minimalist IDE Plugin for LiveCode Script editor Themer for LC http://2108.co.uk

Re: SVG icons in buttons

2019-02-26 Thread Håkan Liljegren via use-livecode
For me it usually works with “import as control” or “import as referenced...”, but for some “mysterious” reason it never works by setting the filename of the control. I haven’t looked into the IDE code, but I guess it takes care of the calling to drawingSVGcompile() or something Håkan On

Re: Livecode or Windows (10) issue?

2019-02-26 Thread AndyP via use-livecode
What Control key combination are you using? So that we can test. - Andy Piddock My software never has bugs. It just develops random features. TinyIDE a Free alternative minimalist IDE Plugin for LiveCode Script editor Themer for LC http://2108.co.uk PointandSee is a FREE simple

Re: SVG icons in buttons

2019-02-26 Thread J. Landman Gay via use-livecode
On 2/26/19 6:21 PM, Monte Goulding via use-livecode wrote: On 27 Feb 2019, at 11:14 am, J. Landman Gay via use-livecode wrote: I thought I read that we could use SVG icons in buttons now. How does that work? I thought I'd tried it once before successfully but I can't get it to work right

Livecode or Windows (10) issue?

2019-02-26 Thread Tom Glod via use-livecode
Hi, I have an application that pops up when you hit a particular hotkey combo... It all works amazing except for when the task manager is in focus. Its not blocking hotkeys from other programs that I have, but it does seem to block it from the Livecode engine. The hotkey is read by reading

Re: SVG icons in buttons

2019-02-26 Thread Monte Goulding via use-livecode
> On 27 Feb 2019, at 11:14 am, J. Landman Gay via use-livecode > wrote: > > I thought I read that we could use SVG icons in buttons now. How does that > work? I thought I'd tried it once before successfully but I can't get it to > work right now (LC 9.0.3rc1). Import the SVG using the

SVG icons in buttons

2019-02-26 Thread J. Landman Gay via use-livecode
I thought I read that we could use SVG icons in buttons now. How does that work? I thought I'd tried it once before successfully but I can't get it to work right now (LC 9.0.3rc1). -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software |

Re: Format text data records for processing in Livecode

2019-02-26 Thread Richard Gaskin via use-livecode
Kaveh Bazargan wrote: > My use case might be unusual in that I have several itemdelimiters in > the same text. I need to record what each one is, but they must not be > the same. I might be going off topic here, but I thought it is a > simple way of generating a text that is guaranteed to be

Re: Format text data records for processing in Livecode

2019-02-26 Thread Simon Knight via use-livecode
Some interesting ideas although I’m not sure why a changing separator is useful. I generally attempt to stick with TSV but it won’t work in this case unless I parse the data to remove the tabs from the text, however I may well try this. At the moment I’m trying to use a simple tagging

Re: Format text data records for processing in Livecode

2019-02-26 Thread kee nethery via use-livecode
What about accidentally choosing a codepoint that is already in the text? I tend to use tab and return for spreadsheet data. For text that needs to include tabs and returns, I use the ASCII codepoints designed for delimiting data; Unit Separator ACSII37, Record Separator ASCII36, Group

Re: Format text data records for processing in Livecode

2019-02-26 Thread Kaveh Bazargan via use-livecode
My use case might be unusual in that I have several itemdelimiters in the same text. I need to record what each one is, but they must not be the same. I might be going off topic here, but I thought it is a simple way of generating a text that is guaranteed to be unique. On Tue, 26 Feb 2019 at

Re: Format text data records for processing in Livecode

2019-02-26 Thread dunbarxx via use-livecode
I am missing the point of using an ephemeral and unknown string as an itemDelimiter. The whole point of such a gadget is that it can be used at another time to undo, or redo, whatever data parsing was done earlier. Is it that the delimiter is stored somewhere, and just for security it is

Re: Format text data records for processing in Livecode

2019-02-26 Thread Kaveh Bazargan via use-livecode
I have an handler that needs the itemdelimiter to be unique every time I call it, and that can be several times in quick succession. I use: wait 1 millisecond set the itemdelimiter to the milliseconds The first line ensures that two successive loops do not have the same itemdelimiter, and it is

Re: Bay Area Maker Faire

2019-02-26 Thread Tom Glod via use-livecode
Ooopps...I meant *total lack of social media marketing * cuz they do market via email as I go on to say. Virus-free. www.avast.com

Re: Bay Area Maker Faire

2019-02-26 Thread Tom Glod via use-livecode
Hahhaha..Mark I love the tag its Re Rant 1 While I don't really get the total lack of marketing for the conference or the online conferences LC does email the list of developers.I always get the emails and I always open the,...and maybe realistically thats enough marketing for a

RE: [ANN] Release 9.0.3 RC-1 - Plugins are listed in PB after loading a stack

2019-02-26 Thread Ralph DiMola via use-livecode
A couple of things, I have seen JLG's problems now and again after terminating a script while debugging. I solved my weird message box behavior by commenting out the preopenstack handler(below) in my library stacks. These have been in my library stack since v4.6. I wonder why it's causing such

Re: Bay Area Maker Faire

2019-02-26 Thread Mark Wieder via use-livecode
On 2/11/19 11:55 AM, Ralph DiMola via use-livecode wrote: Hotel Clariana. It looks to be 2 blocks from the theater. No legend on the map so I don't actually know how long those blocks are. Ha! Corner me at the conference (especially after a couple of beers) and I'll tell you a story about

Re: [ANN] Release 9.0.3 RC-1 - Plugins are listed in PB after loading a stack

2019-02-26 Thread Mark Wieder via use-livecode
On 2/26/19 1:58 AM, panagiotis merakos via use-livecode wrote: Hello Matthias, This is probably caused by this change: https://github.com/livecode/livecode-ide/pull/2011/files Semi-unrelated issue: is there any reason not to sort tFinal at the end of revIDEGetAllPlugins? That would allow

RE: Format text data records for processing in Livecode

2019-02-26 Thread Ralph DiMola via use-livecode
Option 2: The item delimiter can be multiple characters so you can set it to something that would never likely be in the text. Example: Set the itemdel to "" Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode

Re: Format text data records for processing in Livecode

2019-02-26 Thread dunbarxx via use-livecode
Hi. Since you may have any number and kind of characters in any of the fields in each record, I would append a character that is unlikely ever to appear in any context. I like numToChar(202), but others like numToChar(3) or numtoChar(8). Then you can set the itemDelimiter to that char, and be

Format text data records for processing in Livecode

2019-02-26 Thread Simon Knight via use-livecode
Hi, I have written an Applescript that reads the headers and contents of selected emails in Apple Mail. I am trying to decide to simplest method of importing this data into Livecode to allow it to be sorted and formatted etc. Each email is a record with a number of fields the largest field

Re: [ANN] Release 9.0.3 RC-1 - Plugins are listed in PB after loading a stack

2019-02-26 Thread Matthias Rebbe via use-livecode
Panos, i´ve added a comment to my bug. I´ve reverted revStartCenterBehavior.livecodesript to its previous version and tested. The behaviour does not show up after that. So it seems the bug is related to your mentioned change. At least i can use 9.0.3 now. ;) Regards, Matthias > Am

Re: [ANN] Release 9.0.3 RC-1 - Plugins are listed in PB after loading a stack

2019-02-26 Thread panagiotis merakos via use-livecode
Thanks Matthias :) Panos -- On Tue, Feb 26, 2019 at 12:12 PM Matthias Rebbe via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi Panos, > > see here Bug 21856 > > Regards, > > Matthias > > Matthias Rebbe > > free tools for

Re: [ANN] Release 9.0.3 RC-1 - Plugins are listed in PB after loading a stack

2019-02-26 Thread Matthias Rebbe via use-livecode
Hi Panos, see here Bug 21856 Regards, Matthias Matthias Rebbe free tools for Livecoders: https://instamaker.dermattes.de https://winsignhelper.dermattes.de > Am

Re: [ANN] Release 9.0.3 RC-1 - Plugins are listed in PB after loading a stack

2019-02-26 Thread panagiotis merakos via use-livecode
Hello Matthias, This is probably caused by this change: https://github.com/livecode/livecode-ide/pull/2011/files When the name of a stack is referenced (in this case "tLine"), LC loads the stack into memory. Note that this does not mean the stack is open, so it does not appear in the

Re: [ANN] Release 9.0.3 RC-1 - Plugins are listed in PB after loading a stack

2019-02-26 Thread Matthias Rebbe via use-livecode
Hi, something strange here with 9.0.3 RC-1 on Mac OS X. After a fresh start of the IDE the Project Browser shows no stack. So that is okay, as the option 'Show IDE stacks in list' is disabled. When creating a new stack the PB just shows that stack. So that is also okay. But after opening an