Re: OT: ConcertWare Font

2019-04-08 Thread Ron Metzker via use-livecode
BR,

Here you go. You can get the font here for free.
https://sightcreations.wordpress.com/2014/06/02/25-years-the-unsung-music-symbols-font/
 


Best Regards
Ron

> On Apr 8, 2019, at 3:30 PM, Sannyasin Brahmanathaswami via use-livecode 
>  wrote:
> 
> Way off topic, but we have some old mac users here, many into music.
> 
> I am looking for a music notation font called ConcertWare.
> 
> A music/midi program circa 2000 made by Chad Mitchell, Great Wave Software, 
> later owned by Jump! Software.   Then went out of business,
> 
> I have some old eps document that you the ConcertWare Fonts.
> 
> 
> BR
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Lock and Unlock Screen (was Refactoring. etc...)

2018-12-31 Thread Ron Metzker via use-livecode
Hi Alex,

This is fairly long but there is no code in the explanation. I ran into this 
problem last year. I have a stack that monitors 3 security systems. You can 
switch between the system with the one stack or you can use 3 separate stacks 
to monitor the different systems. 

Here was my problem. There are 172 buttons and 171 fields on the main card 
which shows the status of each security alarm. The stack is 992 x 902 pixels in 
size. When you first connect to a security system the stack sends a message to 
get the security systems state. The system sends back the complete state for 
all the buttons and fields on the card via an xml file. Without locking and 
keeping the card locked until the update is complete, it took a minimum of one 
minute and 45 seconds to perform the update. By locking the card until the 
update is complete it takes less than a second. Obviously, it was because of 
the time that it took to set each button and each field and in between setting 
one of them it draws the whole card. I also found that even with the card 
locked it took about 15 milliseconds to set the state of a button or field even 
though most of the time it was what the state already was. So I simply check 
the state before I set it and if is the same as what I was going to set it too, 
I don't bother to set it. This check takes less than a millisecond. 

I have a routine that gets called when I want to get the entire state of the 
card. All it does is set a global to true and asks for the state. Every routine 
that is used to update the card buttons or fields checks the global and then 
checks the state of the lock screen. If they are the same it continues on. If 
they are different it sets the lock screen state to that of the global and goes 
on.

Since I don't know when the update will be complete, I check when I enter the 
main routine that handles all the input from the security system, to see if 
there is a pending update for the card. If there is not, then I put false into 
the global and continue on since that means all the updates have been handled.

This update would happen any time you connected to one of the security systems. 
This happens when you launched the stack or turn it on, if it was turned off or 
you switched from one security system to another or loaded a new xml file to 
set up the security system. All of those actions would force a status update 
from the security system.

So I don't know if it does anyone else any good. But for my stack it was at 
least 145 times faster to update the main card.

Best Regards,
Ron

> On Dec 31, 2018, at 3:27 PM, Alex Tweedly via use-livecode 
>  wrote:
> 
> Yeah, that seems like it might work - but it doesn't.
> 
>> on mouseUp
>>put 1 && the lockscreen &CR after msg
>>set the lockscreen to true
>>put 2 && the lockscreen &CR after msg
>>wait 0 seconds with messages
>>put 3 && the lockscreen &CR after msg
>> end mouseup
>> 
> gives
> 
>> 1 false
>> 
>> 2 true
>> 
>> 3 true
>> 
> I guess being in an 'active' wait doesn't count as idle...
> 
> Need to do the brute force loop as Craig suggested.
> 
> Alex.
> 
> 
>> On 31/12/2018 17:21, Bob Sneidar via use-livecode wrote:
>> There IS a method for unlocking all. wait 0 seconds with messages. All 
>> screen locks are cleared when the idle message is sent.
>> 
>> Bob S
>> 
>> 
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Disable Notification Center

2018-11-23 Thread Ron Metzker via use-livecode
HI BR,

I do not know a way to turn off notifications from within the app. I only know 
how the user can do so.

The easy way to do it, is to go into the Settings app then go to Do Not Disturb 
and turn the button on. Then you can run the app without any interruptions. 
When you are done with the app, turn the Do Not Disturb button off. You can do 
this and still have a time set up when you won’t get any notifications.

Best Regards
Ron

> On Nov 23, 2018, at 11:23 AM, Sannyasin Brahmanathaswami via use-livecode 
>  wrote:
> 
> I looked through all the mobile commands. I do not see way to turn on you top 
> pull down of the notification center on iOS.
> 
> I have a landscape game in Siva Siva app. iOS user complain that if they 
> touch top of the screen this get to notification center pull down / "sheet"
> 
> Is there a way to turn this offer temporarily? I ask this once before, if we 
> don't get answers again… Time for "enhancement" request to the QA center
> 
> BR
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: “Make Docset” updated to 3.1, DASH docset for LC now at 1.7.1

2018-10-27 Thread Ron Metzker via use-livecode
Hi Mike,

You have to chose the user contributed docs and do a check for updates. I did 
it yesterday. Mine is also set on auto update but it seems to only work on the 
main docset.

Best Regards,
Ron

> On Oct 27, 2018, at 6:45 AM, Mike Kerner via use-livecode 
>  wrote:
> 
> First of all, thanks a lot for doing this.  Dash is now my default way to
> access the docs, on both my ipad and mac.  I love it.
> Second, I have auto-updates turned on for both platforms, but they both
> show the LC docs at 1.6.1
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: App Dead on iOS 12

2018-09-18 Thread Ron Metzker via use-livecode
Hi Terri,

Normally Xcode asks you if you want to install additional tools when it is 
first launched. Since you are using an older version maybe you didn’t install 
then


. You can go to Xcode Help then to Customize Xcode, then to Manage Simulators 
and toolchains. Under that look at verify, reveal and delete toolchains. It 
will give you instructions from there on how to see what is installed and allow 
you to update them.

Hope this helps.

Best Regards
Ron

> On Sep 17, 2018, at 5:51 PM, Terry Judd via use-livecode 
>  wrote:
> 
> Umm - spoke to soon. How do I do that? I assumed that there would be 
> something in the downloads pane of Xcode that I could install.
> 
> Terry...
> 
> On 18/09/2018 10:43 am, "use-livecode on behalf of Terry Judd via 
> use-livecode"  use-livecode@lists.runrev.com> wrote:
> 
>Thanks Monte. I'll try installing the additional component to my old 
> version of XCode in the meantime.
> 
>Regards,
> 
>Terry...
> 
>On 18/09/2018 10:22 am, "use-livecode on behalf of Monte Goulding via 
> use-livecode"  use-livecode@lists.runrev.com> wrote:
> 
> 
> 
>> On 18 Sep 2018, at 10:18 am, Monte Goulding via use-livecode 
>>  wrote:
>> 
>> 
>> 
>>> On 18 Sep 2018, at 10:15 am, Colin Holgate via use-livecode 
>>>  wrote:
>>> 
>>> Is what you said true for older LiveCode, or just 9.0.1?
>> 
>> Should be true back to late 2011.
> 
> 
>FWIW I just opened this report so we can remove the need to have Xcode 
> additional components installed 
> https://quality.livecode.com/show_bug.cgi?id=21588 
> 
> 
>Cheers
> 
>Monte
>___
>use-livecode mailing list
>use-livecode@lists.runrev.com
>Please visit this url to subscribe, unsubscribe and manage your 
> subscription preferences:
>http://lists.runrev.com/mailman/listinfo/use-livecode
> 
> 
> 
>___
>use-livecode mailing list
>use-livecode@lists.runrev.com
>Please visit this url to subscribe, unsubscribe and manage your 
> subscription preferences:
>http://lists.runrev.com/mailman/listinfo/use-livecode
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: FindBar Demo Stack

2018-05-02 Thread Ron Metzker via use-livecode
Hi Bob,

I would also be interested in the stack.

Thanks!

Ron

> On May 2, 2018, at 9:27 AM, Bob Sneidar via use-livecode 
>  wrote:
> 
> Hi all. 
> 
> I've pieced together a very simple demo stack of my FindBar group if anyone 
> is interested. It comes with a 100 record sqlite database with a sites table 
> to query against. By editing a constant in the FindBar field, you control 
> which columns you want to do queries against. When the FindBar field is 
> entered for the first time, it saves the contents of the datagrid, so that 
> the cancel button in the FindBar group can restore the original data. 
> 
> Someone can turn this into a Widget if they like. I don't use widgets for the 
> simple reason that I do not want to have to recompile them every time I move 
> to a new version. When that eventually gets resolved, I think I will begin to 
> use them more. 
> 
> Bob S
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: [ANN] Release 9.0.0

2018-04-06 Thread Ron Metzker via use-livecode
Hi Panos,

I updated my two Macs today with LiveCode 9.0.0. Unfortunately I also had a 
very slow download on both. I have a very fast internet connection. I dowloaded 
them from within LiveCode by doing an update. 

After I had downloaded them, I tried to see what the problem was. I did a test 
on my internet. It was at the correct speed in the test. So I went to the 
LiveCode download page and downloaded both the Indy and the Business dmg from 
the site at the same time. It took only a couple of minutes. So the slowness of 
the download appears to caused by using the LiveCode download stack. It was 
probably 20 to 30 times slower than using the download page.

Best Regards,
Ron

> On Apr 4, 2018, at 10:51 AM, panagiotis merakos via use-livecode 
>  wrote:
> 
> @Peter
> One more thing to try before filing a bug report:
> 
> 1. Clear Prefs again
> 2. Open LC, you should see the revFileAssociation dialog ("LiveCode files
> are not currently associated with this version. Would you like to make this
> association?")
> 3. Choose "Yes"
> 
> Does the splash screen close after that?
> 
> BTW if you want to close this stack manually, you can try that:
> 
> - type in the msg box "close the mousestack" but do NOT press Enter
> - place the cursor on the splash stack
> - press enter
> 
> I am wondering if an error occurs on startup, so LC stops execution, and
> the line of code in the IDE startup scripts that closes this stack is never
> reached.
> 
> @Richard
> Thanks for the update, I'll pass it to the team. I know we had at least
> another 3 users in your area that suffered from very slow download speeds.
> Network issues are hard to diagnose :)
> 
> Best,
> Panos
> --
> 
> On Wed, Apr 4, 2018 at 6:35 PM, Richard Gaskin via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> 
>> @Peter Bogdanoff bogdanoff:
>>> Yesterday it took me 3-4 hours to download LC 9. I’m in California.
>> 
>> Good to know I'm not the only one.  Thanks.
>> 
>> 
>> @Panos:
>>> Do you still experience slow download speed? I had no problem
>>> yesterday from my home internet connection
>> 
>> Thanks for asking. Yes, and it's been the darndest thing.  Not even my ISP
>> could explain it.  It's been this way for more than a week, and persists
>> this morning, even across multiple computers.
>> 
>> I was able to find a workaround that demonstrates that it's not the
>> livecode.com server per se:  I shelled into one of my VPSes in New Jersey
>> and used wget to download the builds I needed - each took less than a
>> minute there.  Then I copied them to my web folder, and on my local machine
>> downloaded from that VPS - at normal speed.
>> 
>> So to summarize what I've learned thus far:
>> 
>> - It's not my computer: all computers here show this slow download
>> 
>> - It's not your server: I can download from it to another computer
>>  in a different geographic region with no delay.
>> 
>> - It's not my local network setup: Peter has the same issue, and
>>  downloading from my VPS is speedy.
>> 
>> Given all this, my wild guess would be that this is something related to
>> the CDN you're using (Cloudflare?), affecting only southern California, or
>> maybe even more limited than that since Peter and I are less than about 20
>> miles from one another.
>> 
>> While Cloudflare's status page shows the Los Angeles area to be
>> "Operational", a quick search at Google turned up a few discussions about
>> issues in my area, the most recent I stumbled across being just 22 hours
>> ago.
>> 
>> The bigger mystery is that this has persisted as long as it has.  Most
>> CDNs are super on top of things, and a multi-day issue is rare.
>> 
>> At least I have a workaround for now, and if I learn anything more I'll
>> pass it along.  In the meantime, if you hear of anything with your CDN it
>> may be helpful to share.
>> 
>> --
>> Richard Gaskin
>> Fourth World Systems
>> Software Design and Development for the Desktop, Mobile, and the Web
>> 
>> ambassa...@fourthworld.comhttp://www.FourthWorld.com
>> 
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your
>> subscription preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
>> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: LC Toolbar

2018-01-24 Thread Ron Metzker via use-livecode
You can also just hide LiveCode windows before you leave it. Very similar 
command to what Paul mentions here. Just use Cmd-H and it will hide all of 
LiveCodes windows without hiding anything else. If you want a completely clear 
desktop and other apps are open, just do what Paul suggests and hide everything 
but the finder by Cmd-Alt-H. To get back to LiveCode, you can either Cmd-Tab to 
it or click the icon in the dock.

Ron 

> On Jan 24, 2018, at 12:19 PM, Paul Hibbert via use-livecode 
>  wrote:
> 
> LiveCode isn’t the only app to leave windows visible, so I’ve become used to 
> typing Cmd-Alt-H if I switch to another app or the finder and there’s 
> something in the way that doesn’t belong to the app in front.
> 
> Cmd-Alt-H is a system wide short-cut to “Hide Others”, so it should work in 
> most apps and normally shows under the app menu.
> 
> Paul
> 
>> On Jan 24, 2018, at 12:09 PM, J. Landman Gay via use-livecode 
>>  wrote:
>> 
>> I get the same thing, but it hasn't bothered me. If LC is frontmost and you 
>> click on the desktop, the toolbar remains as you describe. But if you click 
>> on the Finder icon in the dock, or use Cmd-tab to cycle to another app, the 
>> toolbar is moved behind the frontmost app. Since I use Cmd-tab a lot, I've 
>> hardly noticed.
>> 
>> Basically any command the brings an app completely to the front will remove 
>> the toolbar from view. If you use OS X's ability to intersperse app windows, 
>> then the toolbar remains since it's a window like any other.
>> 
>> On 1/24/18 1:43 PM, Marty Knapp via use-livecode wrote:
>>> But it isn't like this in LC 6.6.5 (didn't use anything in between). If I'm 
>>> in the Finder the top LC toolbar obscures anything behind it on the desktop 
>>> and I am unable to access folders and files I have there. Maybe I haven't 
>>> explained myself well. Here's a screenshot of the top of my screen while LC 
>>> is launched but Finder is at the front:
>>> 
>>> This is happening on both my iMac and MacbookPro. If it's a feature, can I 
>>> change it? If it's a bug I'll file a report. I'm just surprised nobody else 
>>> is seeing this or finding it annoying. I shouldn't have to quit LC to get 
>>> to folders at the top of my screen. For now I've set my "View" to "Toolbar 
>>> Text" only (no icons) - that narrows it enough that I can access stuff at 
>>> the top of my screen.
>>> Marty
 On Tue, Jan 23, 2018 at 11:21 PM, J. Landman Gay via use-livecode <
 use-livecode@lists.runrev.com> wrote:
 
> On 1/23/18 6:34 PM, Marty Knapp via use-livecode wrote:
> 
>> So I just installed LC 8.1.8 on my Mac and the toolbar always displays
>> whether or not LC is the active app. Is this a "feature?" I tried 
>> disabling
>> all plugins, etc. What am I missing? Thanks.
>> 
> Well, it's a separate document window so if you bring one window of
> another app to the front the LC toolbar will still show. The same thing
> happens with any OS X app. I can't remember now if the toolbar used to be 
> a
> palette, it would disappear if so.
> 
> -- 
> Jacqueline Landman Gay | jac...@hyperactivesw.com
> HyperActive Software   | http://www.hyperactivesw.com
> 
>>> ___
>>> use-livecode mailing list
>>> use-livecode@lists.runrev.com
>>> Please visit this url to subscribe, unsubscribe and manage your 
>>> subscription preferences:
>>> http://lists.runrev.com/mailman/listinfo/use-livecode
>> 
>> 
>> -- 
>> Jacqueline Landman Gay | jac...@hyperactivesw.com
>> HyperActive Software   | http://www.hyperactivesw.com
>> 
>> 
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your subscription 
>> preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: [Somewhat OT] Mac Code Signing - can anyone explain?

2018-01-15 Thread Ron Metzker via use-livecode
Hi Graham,

The keys have a date time stamp in them that is encrypted. That is how it knows 
which one to use. DO NOT delete your old keys. It uses them in case you have to 
rebuild an old application that has already been signed.

I have never done this for iOS, so don’t have any knowledge of How iOS works 
though I can point you to the documents that Apple provides. Xcode takes care 
of MacOS. 

Code signing

https://developer.apple.com/support/developer-id/

https://developer.apple.com/library/content/documentation/Security/Conceptual/CodeSigningGuide/Introduction/Introduction.html

https://developer.apple.com/library/content/technotes/tn2206/_index.html#//apple_ref/doc/uid/DTS40007919


Best Regards,
Ron

> On Jan 15, 2018, at 2:00 AM, Graham Samuel via use-livecode 
>  wrote:
> 
> I wrote an earlier mail on this subject. Good thing nobody replied, since I 
> more or less worked it out myself. I have now generated a couple of 
> certificates (app and installer), so I should be able to do the code signing. 
> However, in my Keychain Access under “My Certificates” I have a lot of 
> folders all with the same name - com.apple.kerberos.kdc - each containing a 
> file (key) with the same name again! How am I supposed to distinguish one 
> from another, or don’t I have to? The Apple Developer Portal warns me to keep 
> copies of my certificates and public and private keys, but I don’t see how to 
> find out which ones I generated just now and which ones are just old.
> 
> It would be great to hear from someone who knows.
> 
> Graham
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Creeping IDE Script Editor window position

2017-10-09 Thread Ron Metzker via use-livecode
Hi Bill, 

I see the same thing. I am on the same OS version.

Best Regards
Ron

> On Oct 9, 2017, at 8:24 AM, William Prothero via use-livecode 
>  wrote:
> 
> Anybody notice this? I'm using LC 8.1.7 RC3 and the script =
> editor creeps up further toward the top of the page each time it is =
> closed, then opened, until it disappears behind the tool bar and is hard =
> to access. Also, the bottom of the window seems to get larger and is off
> the screen and can't be resized.
> 
> I'm on Mac OS10.12.6.
> Best,
> Bill P
> 
> William A. Prothero
> http://earthlearningsolution.org/
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode