Re: Free SVG icons

2018-01-02 Thread J. Landman Gay via use-livecode
Has anyone mentioned how much we appreciate your contributions? :) -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On January 2, 2018 11:05:28 PM Brian Milby via use-livecode wrote: From what I see, it looks

Re: Free SVG icons

2018-01-02 Thread J. Landman Gay via use-livecode
I don't know how other apps handle it but Firefox displays the calendar icon okay. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On January 2, 2018 10:11:32 PM Richard Gaskin via use-livecode wrote: J. La

Re: Free SVG icons

2018-01-02 Thread Brian Milby via use-livecode
From what I see, it looks like the SVG icons are just path elements and not lines/circles/etc. The new code in DP11 adds support for much more of the SVG spec. I found why lines are not working... I’ll get a PR together if it isn’t already corrected. Line 1124 had an extra “_” in _svgBoxLine that

Re: Go in Window (not working) Go in A window "working"

2018-01-02 Thread Sannyasin Brahmanathaswami via use-livecode
Hmmm how simple. go stack in window tID needs to be added to the dictionary… as an example… I did read the entry text description of the Window param, but missed it, still.. lets see if this helps on Android. BR ___ use-livecode mailing

Re: Free SVG icons

2018-01-02 Thread Richard Gaskin via use-livecode
J. Landman Gay wrote: > The one I was working with was the calendar icon. There are only line > commands in it, no moveTo. I don't see a way to deal with that. How do other programs deal with that? -- Richard Gaskin Fourth World Systems Software Design and Development for the Desktop, Mobile,

Re: Free SVG icons

2018-01-02 Thread J. Landman Gay via use-livecode
The one I was working with was the calendar icon. There are only line commands in it, no moveTo. I don't see a way to deal with that. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On January 2, 2018 8:47:42 P

Re: Free SVG icons

2018-01-02 Thread Brian Milby via use-livecode
Looking at the feather icons, it seems that “currentColor” is not being picked up as anything which makes them render blank. If I change that to “red” then some work. Ones that include “line” do not draw anything (seems like a bug since the output is blank). Most use elements other than path, so th

Re: Free SVG icons

2018-01-02 Thread hh via use-livecode
There are more complicated ones like below. We have to work harder in LC 9 for these. dist/svg/flat/chat.svg http://www.w3.org/2000/svg"; width="100" height="100"> ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to sub

Re: Free SVG icons

2018-01-02 Thread hh via use-livecode
These SVGs are fine. 1. download the zip from github https://codeload.github.com/leungwensen/svg-icon/zip/master (29.7 MByte, unpacks to 61.4 MByte) 2. open one of the folders in dist/svg, e.g. dist/svg/flat 3. make a stack with one field and one svg widget: Script the field as follows on drage

Re: Free SVG icons

2018-01-02 Thread Brian Milby via use-livecode
Appears so. I’m trying with the drawingSvgCompile and not having luck with any of the shapes. On Tue, Jan 2, 2018 at 6:32 PM Richard Gaskin via use-livecode < use-livecode@lists.runrev.com> wrote: > J. Landman Gay wrote: > > > On 1/2/18 6:05 PM, J. Landman Gay via use-livecode wrote: > >> Alas,

Re: Free SVG icons

2018-01-02 Thread Richard Gaskin via use-livecode
J. Landman Gay wrote: > On 1/2/18 6:05 PM, J. Landman Gay via use-livecode wrote: >> Alas, I can't load these icons into LC. They don't have the usual >> "moveTo" commands. :( > > So I took a screenshot and ran it through an online PNG-SVG converter. > That works, but it would be nice if LC could

Re: Free SVG icons

2018-01-02 Thread J. Landman Gay via use-livecode
On 1/2/18 6:05 PM, J. Landman Gay via use-livecode wrote: On 1/2/18 5:03 PM, Brian Milby via use-livecode wrote: If willing to swap out a default library, the iconSVG library can be made to work with these. Alas, I can't load these icons into LC. They don't have the usual "moveTo" commands. :

Re: Free SVG icons

2018-01-02 Thread J. Landman Gay via use-livecode
On 1/2/18 5:03 PM, Brian Milby via use-livecode wrote: If willing to swap out a default library, the iconSVG library can be made to work with these. Alas, I can't load these icons into LC. They don't have the usual "moveTo" commands. :( -- Jacqueline Landman Gay | jac...@hyperact

Re: Free SVG icons

2018-01-02 Thread J. Landman Gay via use-livecode
On 1/2/18 4:53 PM, Mark Wieder via use-livecode wrote: On 01/02/2018 01:24 PM, J. Landman Gay via use-livecode wrote: Looks like a nice set: I like these a little better than the Font Awesome icons because they're slimmer. Thanks. Those seem rather nice. And MIT

Re: Free SVG icons

2018-01-02 Thread J. Landman Gay via use-livecode
As long as we're talking about this, I'd love to see more of the full set at once. The current interface is a little tedious. At first I could hardly make out the icons due to the lack of contrast, but I notice now the transparency has been toned down a bit, which helps. Still, scrolling throug

Re: Uninstaller question

2018-01-02 Thread Bob Sneidar via use-livecode
There is a product called App Cleaner. It's sold in the Mac App Store so it's likely been vetted. Bob S > On Jan 2, 2018, at 15:43 , Bob Sneidar via use-livecode > wrote: > > PCs use a helper application which "records" all the changes made to the file > system and registry. Similar apps h

Re: Uninstaller question

2018-01-02 Thread Bob Sneidar via use-livecode
PCs use a helper application which "records" all the changes made to the file system and registry. Similar apps have been written for the Mac in the past, mostly to track before and after installation for security purposes. You may want to look up software for MacOS along those lines. Bob S

Re: Free SVG icons

2018-01-02 Thread Brian Milby via use-livecode
If willing to swap out a default library, the iconSVG library can be made to work with these. I’ve submitted a PR with the code to load new icons/families. I guess I need to add the ability to change the default family (which would enable easier use in the IDE). Also check out svg-icon on GitHub..

Re: Free SVG icons

2018-01-02 Thread Mark Wieder via use-livecode
On 01/02/2018 01:24 PM, J. Landman Gay via use-livecode wrote: Looks like a nice set: I like these a little better than the Font Awesome icons because they're slimmer. Thanks. Those seem rather nice. And MIT-licensed. The dollar-sign but no euro seems a bit restr

Re: Uninstaller question

2018-01-02 Thread Graham Samuel via use-livecode
Thanks Rick for replying. I’m sticking to the original thread here. The thing is, there are different classes of users: developers / nerds (I guess many on this list count as some species of those - I know I do); people who want to “just do it”; and a lot of categories in between. In my experie

Free SVG icons

2018-01-02 Thread J. Landman Gay via use-livecode
Looks like a nice set: I like these a little better than the Font Awesome icons because they're slimmer. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com _

Re: [off] Apple to unify ios/macos apps next year

2018-01-02 Thread Richard Gaskin via use-livecode
Bob Sneidar wrote: > I'm not saying our hackles shouldn't be raised, I'm simply proposing > that if conclusive proof existed which undeniably indicted Kaspersky > of this kind of activity, When you read the details of the reports you'll see the "conclusive proof" part is going to be hard to get

Re: Go in Window (not working) Go in A window "working"

2018-01-02 Thread J. Landman Gay via use-livecode
On 1/1/18 9:48 PM, Sannyasin Brahmanathaswami via use-livecode wrote: but this fails in a backscript put ("stack " & quote & gems & quote) into tDestination; go to tDestination in window It needs a specific reference, not just the word "window": put the windowID of this stack into tID go

Re: [off] Apple to unify ios/macos apps next year

2018-01-02 Thread Bob Sneidar via use-livecode
Can't argue with you there. But many routers are capable of offloading their logs to a log server, and any Government Contractor or agency is likely to be doing so, as well as running IDS, so there's that. I'm not saying our hackles shouldn't be raised, I'm simply proposing that if conclusive

Re: [off] Apple to unify ios/macos apps next year

2018-01-02 Thread Richard Gaskin via use-livecode
What model of router has the capacity to store all incoming and outgoing traffic? What did you find when you monitored Kaspersky traffic with Wireshark? I won't claim to have done the original research on this. I provided multiple links to reasonably reputable sources so the reader can go be

Re: Optimizing for small Android devices

2018-01-02 Thread Bob Sneidar via use-livecode
So did Russia BTW. But Germany's problems were not simply that the tanks were more complex and expensive to manufacture. They were suffering from a severe shortage of materials, and also some design problems. The Tiger as I recall had a turret that had to be hand cranked. They were also so heavy

Re: lineHeight different Mac vs. Windows

2018-01-02 Thread Bob Sneidar via use-livecode
I always use web optimized fonts for anything I do that will be cross platform. I don't think that will address your specifit issue, but I think it's a good practice, since these fonts might take more care to be universal in their appearance. Bob S > On Jan 1, 2018, at 15:04 , Peter Bogdanof

Re: Uninstaller question

2018-01-02 Thread Bob Sneidar via use-livecode
Not to venture off topic too far, but if Kaspersky products have been communicating with outside entities and passing along information, the real wonder is that there are no present indications in anyone's router logs to indicate it is doing so. In fact there are entire companies that thrive on

Re: [off] Apple to unify ios/macos apps next year

2018-01-02 Thread Bob Sneidar via use-livecode
A radically slower processor and/or a limited number of expansion ports? Of course you can get cheap laptops too. But your point is taken. Whenever someone asks me, "What computer (or phone or tablet) should I buy?" I always ask, "Why are you wanting to do with it?" I am all in favor of small/in

Re: [off] Apple to unify ios/macos apps next year

2018-01-02 Thread Richard Gaskin via use-livecode
Ben Rubinstein wrote: I'm coming to this late, but it looks to me as if the list got into a nightmare mode a bit prematurely. What the article actually talks about is a way to create apps which can be used across 'desktop' and mobile operating systems - specifically *not* about merging those ope

Re: [off] Apple to unify ios/macos apps next year

2018-01-02 Thread JB via use-livecode
And my question was will they have the intelligence to do it the way you suggest. Apple did rename OS X to macOS which suggest changes to the OS but what will those changes be? If they do it they way you are thinking it will be one of the best things they have in years. JB > On Jan 2, 2018, at

Re: [off] Apple to unify ios/macos apps next year

2018-01-02 Thread Ben Rubinstein via use-livecode
I'm coming to this late, but it looks to me as if the list got into a nightmare mode a bit prematurely. What the article actually talks about is a way to create apps which can be used across 'desktop' and mobile operating systems - specifically *not* about merging those operating systems. In s

Re: Uninstaller question

2018-01-02 Thread Richmond Mathewson via use-livecode
I really wonder what the Russians would do withmy LiveCode files? They would probably bring down Putin: and in my opinion, at least, that might not be a bad thing. Richmond. On 2/1/2018 7:37 pm, Richard Gaskin via use-livecode wrote: Rick Harrison wrote: > Never recommend Mac Keeper or Mac

Re: Uninstaller question

2018-01-02 Thread Richard Gaskin via use-livecode
Rick Harrison wrote: > Never recommend Mac Keeper or Mac Cleaner as they > are considered to be Malware/Spyware/Annoyance-ware > and are difficult for some users to eradicate. Add Kaspersky to that list: UK cyber security chief warns government against using Kaspersky

Re: Uninstaller question

2018-01-02 Thread Richmond Mathewson via use-livecode
On 2/1/2018 5:38 pm, Rick Harrison via use-livecode wrote: Hi Graham, Most applications on the Mac do not have uninstaller as they are usually very easy to uninstall by deleting the application. Most users are smart enough to know they have to delete any aliases in the dock. They usually kno

Re: Uninstaller question

2018-01-02 Thread Rick Harrison via use-livecode
Hi Graham, Most applications on the Mac do not have uninstaller as they are usually very easy to uninstall by deleting the application. Most users are smart enough to know they have to delete any aliases in the dock. They usually know that the prefs file for the application should be deleted as

RE: lineHeight different Mac vs. Windows

2018-01-02 Thread Ralph DiMola via use-livecode
I have 2 bug reports on this. 12176 and 13551 Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: Uninstaller question

2018-01-02 Thread Richmond Mathewson via use-livecode
Well, preumably the "clever" thing to do is to gave your standalone some unique name such as "WildBoar.exe" or somesuch, rather than a very pedesrian name such as "MyProg.exe" which risks having a twin. Then you'll need a routine to search the end-user's system to find all examples of WildBoa

Re: Uninstaller question

2018-01-02 Thread Graham Samuel via use-livecode
Yes, that would be a bad strategy. I think anyway I wouldn’t be looking for stacks but for complied applications - the kind of stuff you get in the Applications folder on a Mac. If there were stacks, then for a runnable app they would be in very specific places (application support type folders)

Re: Uninstaller question

2018-01-02 Thread Richmond Mathewson via use-livecode
I suppose you would have to search the end-user's machine for all instances of "myStack.livecode", and that seems a risky business as the end-user might have other LiveCode stacks on their machine that are needed to do something else. Richmond. On 2/1/2018 1:00 pm, Graham Samuel via use-liveco

Uninstaller question

2018-01-02 Thread Graham Samuel via use-livecode
I’m developing a very simple uninstaller for a Mac app. I have an installer, thanks to DropDMG. The uninstallation process isn’t difficult - it’s just a matter of deleting all the involved files (some are slightly tricky to find, like dock aliases, but I guess there’s a way around that). But t