Re: LiveCode's handling of Unicode glyphs being dependent on the underlying OS

2017-03-30 Thread Mark Waddingham via use-livecode
On 2017-03-28 13:20, Richmond via use-livecode wrote: I'd point out that TenFourFox is a fork of FireFox and is not a Mozilla project. Is that a point that anyone who is prepared to go on running a PPC Mac should be worried about? They probably won't be - until the project ceases to be beca

Re: LiveCode's handling of Unicode glyphs being dependent on the underlying OS

2017-03-30 Thread Mark Waddingham via use-livecode
On 2017-03-29 22:26, Sannyasin Brahmanathaswami via use-livecode wrote: One anomaly that appears to be generated by LC 9dp5 running on Sierra 10.12.3: Code point U803 maps in the Unicode standard to the Extended Latin "H with dot underneath" character. Just to check, I take it you mean 'h' foll

Re: Line numbers for soft-wrapped styled text?

2017-03-30 Thread Alex Tweedly via use-livecode
On 29/03/2017 19:20, Jim Lambert via use-livecode wrote: Now that I think about it, I’ve overcomplicated things. You don’t need two fields at all. Just set the liststyle of the field that contains your editable text to ‘decimal’. Then the lines will be automatically numbered and outdented. Yet

shell("netstat -i") has getting slow on MacOS10.x

2017-03-30 Thread Tiemo Hollmann TB via use-livecode
Hello, I am not sure where to start searching and I am not good under the hood of Macs. I am retrieving MAC addresses: put "netstat -I" into myShell put shell(myShell) into tRes In former times that has taken "a few" seconds, now it takes around 20 seconds. First I tested, if it was a slowdown

Re: shell("netstat -i") has getting slow on MacOS10.x

2017-03-30 Thread Marc Siskin via use-livecode
Tiemo, I ran the command directly on my Macos 12.4 laptop and it took about 20 seconds to generate the entire listing. Is there specific information you are looking to obtain? You may be able to narrow the scope of the request and generate it faster. Marc Siskin On Mar 30, 2017, at 7:57 AM,

RE: Stack References When Fired in Backscripts/Libraries

2017-03-30 Thread Ralph DiMola via use-livecode
You are correct sir. The context is from the calling stack/card/control. The only thing I have run into is callbacks (scrollerdidscroll on mobile for example) that are "targeted" to the stack that requested them. See http://quality.runrev.com/show_bug.cgi?id=15018 "Native mobile controls bind th

AW: shell("netstat -i") has getting slow on MacOS10.x

2017-03-30 Thread Tiemo Hollmann TB via use-livecode
Hi Marc, I need the MAC addresses from all network adapters. How can you narrow the scope of this request? Tiemo -Ursprüngliche Nachricht- Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag von Marc Siskin via use-livecode Gesendet: Donnerstag, 30. März 2017 14:15

Re: shell("netstat -i") has getting slow on MacOS10.x

2017-03-30 Thread Marc Siskin via use-livecode
Tiemo, You may need to use two commands if you need the information from both Macs and PCs. On the Mac, "networksetup -listallhardwareports” in the shell should give you a report that looks like this: MLRCTBHUB:~ msiskin$ networksetup -listallhardwareports Hardware Port: Thunderbolt Ethernet S

AW: shell("netstat -i") has getting slow on MacOS10.x

2017-03-30 Thread Tiemo Hollmann TB via use-livecode
Thank you for your ideas! I will give it a try Tiemo -Ursprüngliche Nachricht- Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag von Marc Siskin via use-livecode Gesendet: Donnerstag, 30. März 2017 15:23 An: How to use LiveCode Cc: Marc Siskin Betreff: Re: shel

Re: Extra Title Bar in All Stacks

2017-03-30 Thread Bob Sneidar via use-livecode
Or alternatively, you could turn it off for yourself. Everybody wins! Bob S > On Mar 29, 2017, at 20:21 , Sannyasin Brahmanathaswami via use-livecode > wrote: > > "System wide" ?? I tried a dozen different apps, include Apple's own Pages, > Numbers and Notes etc. > > *none* of them respon

Re: shell("netstat -i") has getting slow on MacOS10.x

2017-03-30 Thread Bob Sneidar via use-livecode
I suppose it would depend on how many IP addresses are in your arp table. If you are retrieving mac addresses, that is the only place it can get them. netstat is not going out on the network and checing every network device. Bob S > On Mar 30, 2017, at 04:57 , Tiemo Hollmann TB via use-liveco

Re: shell("netstat -i") has getting slow on MacOS10.x

2017-03-30 Thread Bob Sneidar via use-livecode
oic you are getting the mac addresses of the network adapters attached to your device. Bob S > On Mar 30, 2017, at 07:39 , Bob Sneidar via use-livecode > wrote: > > I suppose it would depend on how many IP addresses are in your arp table. If > you are retrieving mac addresses, that is the

Re: shell("netstat -i") has getting slow on MacOS10.x

2017-03-30 Thread Mike Bonner via use-livecode
I don't have a mac available at the moment, but can't you use ifconfig for this? Most likely with no arguments then parse the results. If the results are similar to linux (never a safe bet, but worth a check) there will be a line with something like HWaddr and then the mac address. On Thu, Mar

Re: shell("netstat -i") has getting slow on MacOS10.x

2017-03-30 Thread Klaus major-k via use-livecode
Hi Tiemo, > Am 30.03.2017 um 13:57 schrieb Tiemo Hollmann TB via use-livecode > : > > Hello, > > I am not sure where to start searching and I am not good under the hood of > Macs. > > I am retrieving MAC addresses: > > put "netstat -I" into myShell > > put shell(myShell) into tRes > > In fo

Re: Quasi Student Secure Web Browser?

2017-03-30 Thread JOHN PATTEN via use-livecode
Never mind… Figured out where all commands that go with the new browser widget were located (release notes). I was looking in the dictionary and never saw them until I saw another post on the list. This works: on browserDocumentLoadBegin pURL put the itemDel into tOrgItemDel set the itemDel

Re: Quasi Student Secure Web Browser?

2017-03-30 Thread panagiotis merakos via use-livecode
Hi all, You can find any commands/function/properties of the Browser widget in the dictionary, too: In the "API" tab, choose "Browser" in the "Choose API" dropdown. The same applies to any other widget X. Best, Panos -- On Thu, Mar 30, 2017 at 5:10 PM, JOHN PATTEN via use-livecode < use-livecod

Re: Quasi Student Secure Web Browser?

2017-03-30 Thread Klaus major-k via use-livecode
Hi Panos, > Am 30.03.2017 um 18:15 schrieb panagiotis merakos via use-livecode > : > > Hi all, > > You can find any commands/function/properties of the Browser widget in the > dictionary, too: > > In the "API" tab, choose "Browser" in the "Choose API" dropdown. The same > applies to any other

Re: Quasi Student Secure Web Browser?

2017-03-30 Thread Richard Gaskin via use-livecode
JOHN PATTEN wrote: > If anybody else is looking for those browser widget commands they can > be found in the release notes here: > > Thanks, John. I believe those are now in the Dictionary as well. What I have

Re: Quasi Student Secure Web Browser?

2017-03-30 Thread panagiotis merakos via use-livecode
Hi Klaus, are you referring to the [launch url in widget] syntax? If yes, it does exist in the dictionary, but not under the "Browser" section. It exists in the "LiveCode Script" section, since it is an extension of the 'launch url" command. But yes, we should add a reference to it in the "Browse

Re: Quasi Student Secure Web Browser?

2017-03-30 Thread Klaus major-k via use-livecode
Hi Panos, > Am 30.03.2017 um 18:26 schrieb panagiotis merakos via use-livecode > : > > Hi Klaus, > > are you referring to the [launch url in widget] syntax? If yes, yes. > it does > exist in the dictionary, but not under the "Browser" section. It exists in > the "LiveCode Script" section, sin

Re: AW: shell("netstat -i") has getting slow on MacOS10.x

2017-03-30 Thread Mark Wieder via use-livecode
On 03/30/2017 05:40 AM, Tiemo Hollmann TB via use-livecode wrote: Hi Marc, I need the MAC addresses from all network adapters. How can you narrow the scope of this request? Why not use ifconfig instead? Instantaneous results. -- Mark Wieder ahsoftw...@gmail.com

Re: shell("netstat -i") has getting slow on MacOS10.x

2017-03-30 Thread Bob Sneidar via use-livecode
That works great for the default adapter. I think Tiemo is looking for a way to enumerate ALL adapter mac addresses. I have like 24 entries using netstat. Some are ipv6 addresses, others ipv4, and still others have no mac address at all. Of course I am using Parallels and have 2 physical network

Transparent Images in LC

2017-03-30 Thread Paul Dupuis via use-livecode
NOTE: I am using LC 6.7.11 for an update to a legacy app. I was trying to import (as a control) a transparent PNG (i.e. the "white" parts allow whatever is underneath to show through) and instead of transparancy, I get the slashed background lines transparent PNG are often displayed with. Thinking

Re: Transparent Images in LC

2017-03-30 Thread Bob Sneidar via use-livecode
I use transparent PNG's all over my app and do not have that issue. It may be the PNG is protected in some way. I can send you one of my PNG's to test with to see if you get the same problem with them. Bob S > On Mar 30, 2017, at 10:16 , Paul Dupuis via use-livecode > wrote: > > I was tryi

AW: shell("netstat -i") has getting slow on MacOS10.x

2017-03-30 Thread Tiemo Hollmann TB via use-livecode
Yes, using ifconfig I get exact 1 MAC (see Ken Rays script as Klaus pointed out). I don't see a parameter to get all at once, but I could perhaps call ifconfig 4 times with lo0, en0,en1 and fw0. Or I will try to use "networksetup -listallhardwareports”, as Marc pointed out Don't ask me why I need

spotting a mouseclick in the transparent area of an image

2017-03-30 Thread Ben Rubinstein via use-livecode
I have a group containing a grid of square images. Some of the images are gifs, some are pngs, and some of the latter have an alpha channel with some transparent bits. The images are all used as buttons, to control something else - the images in essence are labels or icons for the buttons. Th

Re: Transparent Images in LC

2017-03-30 Thread Richard Gaskin via use-livecode
Paul Dupuis wrote: > I was trying to import (as a control) a transparent PNG (i.e. the > "white" parts allow whatever is underneath to show through) and > instead of transparancy, I get the slashed background lines > transparent PNG are often displayed with. Thinking it might be > the PNG itself,

Re: shell("netstat -i") has getting slow on MacOS10.x

2017-03-30 Thread Mike Bonner via use-livecode
If you call it with no arguments, doesn't it list them all? I'll have to get my mac running again so I can test this stuff. On Thu, Mar 30, 2017 at 11:52 AM, Tiemo Hollmann TB via use-livecode < use-livecode@lists.runrev.com> wrote: > Yes, using ifconfig I get exact 1 MAC (see Ken Rays script a

Re: spotting a mouseclick in the transparent area of an image

2017-03-30 Thread Mike Bonner via use-livecode
Place a grc of the right size behind the image. Make sure the grc is set to opaque. Group the grc and the image and place your mouseup handler in the group. If they click a visible portion of the image it'll fire the groups mouseup, if they click a trasnarent spot, the (blended and invisible) grc

Re: Transparent Images in LC

2017-03-30 Thread Rick Harrison via use-livecode
Hi Paul, I’ve used .png images with transparencies with no problems before. It almost sounds like the alpha-channel information is getting lost somehow. What program are you using to create your images? Good luck tracking it down! Rick > On Mar 30, 2017, at 1:16 PM, Paul Dupuis via use-liveco

Re: shell("netstat -i") has getting slow on MacOS10.x

2017-03-30 Thread Mark Wieder via use-livecode
On 03/30/2017 11:01 AM, Mike Bonner via use-livecode wrote: If you call it with no arguments, doesn't it list them all? I'll have to get my mac running again so I can test this stuff. Yes it does - that's the default. Tiemo - just use "ifconfig" by itself... no interface specifier. That will l

AW: shell("netstat -i") has getting slow on MacOS10.x

2017-03-30 Thread Tiemo Hollmann TB via use-livecode
:) you are right! So I think I'll manage to replace the old and slow function using "netstat" by "ifconfig" as well as by "networksetup" I have no idea, why the external programmer choose "netstat" at that time (2009). Does anybody see any pitfalls, why "ifconfig" or "networksetup" could retur

Re: shell("netstat -i") has getting slow on MacOS10.x

2017-03-30 Thread Marc Siskin via use-livecode
Of the two commands, networksetup would require less parsing of the answer in order to get the device/MAC address pairing. Marc On Mar 30, 2017, at 2:17 PM, Tiemo Hollmann TB via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: :) you are right! So I think I'll manage to replace th

Re: shell("netstat -i") has getting slow on MacOS10.x

2017-03-30 Thread Mike Bonner via use-livecode
Reading about networksetup now. Another command to add to my toolbox. Thanks! On Thu, Mar 30, 2017 at 12:24 PM, Marc Siskin via use-livecode < use-livecode@lists.runrev.com> wrote: > Of the two commands, networksetup would require less parsing of the answer > in order to get the device/MAC addres

Re: Transparent Images in LC

2017-03-30 Thread hh via use-livecode
Yes, I also have seen this sometimes when special kinds of alphachannel (flattened/premultiplied/postmultiplied) were used in the PNG to import. Nevertheless the following 'standard' import script works for me nearly always in LC 6/7/8/9: on mouseUp set the paintcompression to RLE if there is

Re: shell("netstat -i") has getting slow on MacOS10.x

2017-03-30 Thread Dr. Hawkins via use-livecode
On Thu, Mar 30, 2017 at 11:16 AM, Mark Wieder via use-livecode < use-livecode@lists.runrev.com> wrote: > Tiemo - just use "ifconfig" by itself... no interface specifier. > That will list all the interfaces in your system. > Also, I just tried "netstat -i" from the command line--and it was still r

SVG for HTML5 on Mac

2017-03-30 Thread James Hale via use-livecode
macSVG is a MIT-licensed open-source macOS application for designing and editing Scalable Vector Graphics (SVG) content for HTML5 web pages, mobile apps, animation design, and general graphics usage. very nice.