Re: Speaking of package managers...

2016-03-23 Thread Monte Goulding
Yes but I wasn't referring to this case in particular. Let's say something has been put out as open source but actually infringes on someone's copyright. Allowing people to replace it after a takedown is unhelpful. Either way here's hoping we end up with hundreds of thousands of packages so we c

Re: LC8 DP16 oddities, dataGrid?

2016-03-23 Thread Ali Lloyd
Hi Bill, Could you be more specific? The dataGrid pane of the property inspector is just the bit that was in the Basic pane of the old property inspector under the Data Grid: --- section. The Columns pane was missing and will be there in the next build (http://quality.livecode.com

Re: iOS deployment question

2016-03-23 Thread Graham Samuel
Care to write it up, William? AFAICS, coding in LiveCode is a trouble-free activity compared to deployment on iOS (or indeed on LiveCode Server, Android etc). Arcane rules, certificates, permissions… even the vocabulary seems to have been re-invented to confuse the honest programmer. Of course

Setting url of browser widget, incompatible characters

2016-03-23 Thread Tore Nilsen
I have been working with the browser widget this morning, trying to use it to show/play media files, and I have come across some oddities with some characters in file names being incompatible with the widget. The script I originally used use is as follows: on mouseUp answer file "Choose file"

Re: Setting url of browser widget, incompatible characters

2016-03-23 Thread Peter TB Brett
On 23/03/2016 12:11, Tore Nilsen wrote: This would work unless the file name contained space characters. Changing the script to replace space characters with %20 would rectify this problem. on mouseUp answer file "Choose file" put "file://"& it into tPath repeat with i = 1 to the number of c

Re: Setting url of browser widget, incompatible characters

2016-03-23 Thread Tore Nilsen
I’ll try that. Thank you. Tore > 23. mar. 2016 kl. 13.22 skrev Peter TB Brett : > > On 23/03/2016 12:11, Tore Nilsen wrote: >> This would work unless the file name contained space characters. Changing >> the script to replace space characters with %20 would rectify this problem. >> >> on mouse

Re: Setting url of browser widget, incompatible characters

2016-03-23 Thread Tore Nilsen
It did not work. URLEncode also encodes “/“ to %2 and spaces to + as you can see: file://%2FUsers%2Ftorenilsen%2FDocuments%2FMultimedieLab%2FMusikk%2F01+My+My%2C+Hey+Hey+%28Out+of+the+Blue%29.m4p Tore > 23. mar. 2016 kl. 13.24 skrev Tore Nilsen : > > I’ll try that. Thank you. > > Tore > >

Re: Setting url of browser widget, incompatible characters

2016-03-23 Thread Mark Waddingham
On 2016-03-23 13:22, Peter TB Brett wrote: You should use URLEncode(). For example: on mouseUp answer file "Choose file" put "file://" & URLEncode(it) into tUrl put tUrl into field "url" set url of widget "browser" to tUrl end mouseUp I'm just in the process

Re: Setting url of browser widget, incompatible characters

2016-03-23 Thread Trevor DeVore
On Wed, Mar 23, 2016 at 8:30 AM, Tore Nilsen wrote: > It did not work. URLEncode also encodes “/“ to %2 and spaces to + as you > can see: > > file://%2FUsers%2Ftorenilsen%2FDocuments%2FMultimedieLab%2FMusikk%2F01+My+My%2C+Hey+Hey+%28Out+of+the+Blue%29.m4p > This is a function I use to convert f

CEF glitches

2016-03-23 Thread Terry Dennis
-- CEF glitches -- Try this debug script in 7.x and 8.x on mouseUp put empty into tInstance put empty into tInstances put revBrowserOpenCef(the windowid of this stack, "about:blank") into tInstance put revBrowserInstances() into tInstances put tInstance & " - " & tInstances brea

Re: Setting url of browser widget, incompatible characters

2016-03-23 Thread Tore Nilsen
Thank you this is very useful. As file names can also contain other characters that may be changed during urlEncoding I will have to experiment to take them into consideration as well. From what I can see I will need to convert apostrophes, parenthesises and commas back to their original charact

Re: LC8 DP16 oddities, dataGrid?

2016-03-23 Thread Earthednet-wp
Ali, It was the lack of the columns inspector pane that I was referring to. Sorry for my posting being opaque.. No worries, I went back to v7 and changed it, then back to v8. I'm glad the column inspector is coming back in next release. Thanks! Bill William Prothero http://es.earthednet.org >

Re: iOS deployment question

2016-03-23 Thread Earthednet-wp
Graham, I can take some notes. What I did to fix it was to delete all my developer certificates from my keychain and re-activate them. That was after I realized that the reference to "identity" actually meant that it couldn't find a valid certificate. Now it seems obvious, but didn't at first. I

Re: Setting url of browser widget, incompatible characters

2016-03-23 Thread Peter TB Brett
On 23/03/2016 13:18, Tore Nilsen wrote: Thank you this is very useful. As file names can also contain other characters that may be changed during urlEncoding I will have to experiment to take them into consideration as well. From what I can see I will need to convert apostrophes, parenthesises an

Socket Is Not Open

2016-03-23 Thread Dan Friedman
Greetings! I have a client that is getting a "socket is not open" error when my windows (LC 7.0.1) application attempts to access the internet. If they login to their computer using a standard login it's fine. But, if they login to the computer using a domain, they get the "socket is not open

Re: will a data grid handle RTL text?

2016-03-23 Thread Phil Davis
The answer is yes, it "just works" with no special adjustments needed, at least in DG forms. So I assume the same will be true in DG tables. Thanks - Phil On 3/21/16 8:18 PM, Phil Davis wrote: Like the subject says I'm updating a desktop app in LC 7.x and will probably need to display

Re: will a data grid handle RTL text?

2016-03-23 Thread Mark Waddingham
On 2016-03-23 18:50, Phil Davis wrote: The answer is yes, it "just works" with no special adjustments needed, at least in DG forms. So I assume the same will be true in DG tables. I had meant to reply to say that hopefully that would be the case the other day as the DG is based on fields... Th

Mobile Devices & xCode 7.3

2016-03-23 Thread David Brooks
Among the LiveCode preferences for Mobile Support we need to enter a path to the SDK. I had this working before with older xcode and X OS. How do you do this with xCode 7.3 and the current version of El Capitan (10.11.4). Thanks. ___ use-livecode mailin

Re: CEF glitches

2016-03-23 Thread J. Landman Gay
You could add your comments to this bug report: http://quality.livecode.com/show_bug.cgi?id=17059 On 3/23/2016 8:05 AM, Terry Dennis wrote: -- CEF glitches -- Try this debug script in 7.x and 8.x on mouseUp put empty into tInstance put empty into tInstances put revBrowserOpenCef(the

Re: Mobile Devices & xCode 7.3

2016-03-23 Thread Matthias Rebbe
Yesterday Peter TB Brett from LiveCode posted the following statement regarding xCode 7.3: "Just to forestall the inevitable question: Xcode 7.3 support will be added in the following releases of LiveCode: * 6.7.11 RC 1 * 7.1.4 RC 1 * 8.0.0 DP 17” Matthias > Am 23.03.2016 um 19:12 schrieb

Re: iOS deployment question

2016-03-23 Thread William Prothero
I’m wondering if there is a way to smooth out this error for the user. When I try to load my app onto my iPhone for testing, I get the following message from XCode: T"he entitlements specified in your application’s Code Signing Entitlements file do not match those specified in your provisioning

Re: iOS deployment question

2016-03-23 Thread Todd Fabacher
Hello Bill, Please please if you have any info on the steps of how to submit to the OSX Store. We are facing the same problems. I can find almost ZERO info on what needs to be done to submit the app. Thanks, Todd > On Mar 22, 2016, at 7:29 PM, William Prothero earthednet.org> > wrote: > > I’

Re: iOS deployment question

2016-03-23 Thread panagiotis merakos
Hi Bill, Just a thought: Could it be the case that you have checked the "Beta version" checkbox in the standalone application settings for iOS, but you sign the app using a Development profile? I think the "Beta version" checkbox has to be used *only* with a Distribution profile. Regards, Panos

Re: iOS deployment question

2016-03-23 Thread William Prothero
Folks: I’m stuck. I keep getting the error message: "The entitlements specified in your application’s Code Signing Entitlements file do not match those specified in your provisioning profile. (0xE8008016)." Folks: So: Is this a problem with the certificate, or with the options I select on the

Re: iOS deployment question

2016-03-23 Thread William Prothero
Panos: Thanks for the idea. Nope, beta version isn’t checked. I’m using a Development profile. Todd: Yes, there is a major need for more information and help getting mobile apps through the process. It’s really ugly for newbies. It’s made even more difficult because Apple keeps making changes an

Re: iOS deployment question

2016-03-23 Thread Randy Hengst
I've had that happen when the Internal App ID that I typed into the Standalone Application Settings didn't match what I typed in at Apple. I was off by one capitalization. be well, randy www.classroomFocusedSoftware.com > On Mar 23, 2016, at 4:54 PM, William Prothero wrote: > > Folks: > I’m

Re: iOS deployment question

2016-03-23 Thread Scott Rossi
This might be a naming issue. In standalone settings, make sure that the last item in the entry for Internal App ID matches the app name you set up in your provisioning profile in Apple's developer portal. The Internal App ID should look like this: com.. is the part that needs to match whateve

Re: iOS deployment question

2016-03-23 Thread William Prothero
Folks: Ok, what I got working was a profile that was named “iOS Team Provisioning Profile”. There was a wildcard version, and a version with my app ID attached. Both worked. The specific profiles I created for the app itself gave the error. Since this is an app that I will only use myself, on my

[ANN] guides for positioning of controls

2016-03-23 Thread BNig
I was asked by Rolf Kocherhans if one could do a guide system when doing the layout of controls on a card. Here is a plugin that does that: once the plugin is started any control you select in edit mode can be moved around and controls that have matching positions for left, top, right bottom and mi

Re: iOS deployment question

2016-03-23 Thread William Prothero
Last post on this subject: I also got it working by changing my provisioning profile to include both iPad and iPhone. Previously I had only checked the iPhone option. But, I guess I must have entered a device description for my iPad too. H… what an obtuse system. Bill > On Mar 23, 2016, at

Re: iOS deployment question

2016-03-23 Thread William Prothero
Last post on this subject: I also got it working by changing my provisioning profile to include both iPad and iPhone. Previously I had only checked the iPhone option. But, I guess I must have entered a device description for my iPad too. H… what an obtuse system. Bill > On Mar 23, 2016, at 2

Re: [ANN] guides for positioning of controls

2016-03-23 Thread -hh
Excellent tool, I like it. Makes positioning easy and fast. And: also tested to work on RaspberryPi 3 ;-) H. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-guides-for-positioning-of-controls-tp4702554p4702557.html Sent from the Revolution - User mailing lis

Re: iOS deployment question

2016-03-23 Thread Scott Rossi
Speaking as someone who took a stab at this (http://tactilemedia.com/download/How_to_publish_on_iOS_83013.pdf), it's a major amount of work that almost needs to be a part time job. Not only does Apple change details of the process and add features to the system, but it updates/rearranges the tools

Re: [ANN] guides for positioning of controls

2016-03-23 Thread Peter TB Brett
On 23/03/2016 21:26, BNig wrote: I was asked by Rolf Kocherhans if one could do a guide system when doing the layout of controls on a card. Here is a plugin that does that: once the plugin is started any control you select in edit mode can be moved around and controls that have matching positions

Re: [ANN] guides for positioning of controls

2016-03-23 Thread BNig
Peter TB Brett wrote >> - >> http://berndniggemann.on-rev.com/guides/bnGuides_0_4.livecode.zip >> - > > Hi Bernd, > > Unfortunately that link is broken for me! Is it working for you? > > Peter Please try

Re: iOS deployment question

2016-03-23 Thread Erik Beugelaar
Maybe this Chrome extension below is usefull when dealing with provisioning files. App IDs are "the herpes of iPhone provisioning". Once you've created one, you're ... http://simonwhitaker.github.io/app-id-sanity/ Cheers, Erik On Wednesday, 23 March 2016, Scott Rossi wrote: > Speaking as

Re: iOS deployment question

2016-03-23 Thread William Prothero
Scott: Yes, I’ve experienced this. I do think there could be some kind of “advice” document, blog, or something that puts some of the Apple jargon into livecode understandable terms, though. From the XCode error message, I thought the problem was the certificate (wild goose chase) but it was act

Can a widget be in the background?

2016-03-23 Thread William Prothero
I’m about the replace a menubar with the menubar widget in DP16. What I’m wondering is if this can be set up so it’s on every card, like objects can. Best, Bill William Prothero, Ph.D. University of California, Santa Barbara, Emeritus proth...@earthednet.org ___

Re: CEF glitches

2016-03-23 Thread Martin Koob
Thanks for adding to the bug report. I see the same thing on Mac OS X Yosemite 10.10.5 with LiveCode 6.7.3. - in Activity Monitor I also see two instances of rev browser-cefprocess PIDs: 4289 & 4290 (this will vary of course) ---4290 has an application icon while 4289 does not. - However if I call

[OT] batch image compression

2016-03-23 Thread Colin Holgate
I use a great Mac program that batch compresses images extremely fast, and have been using it at work a lot recently. A colleague is due to take over the compressing, but he’s using Windows. What are the best Windows batch image compression applications? At the very least it would need to be ab

Re: Looking for parser for Email (MIME)

2016-03-23 Thread Kay C Lan
On Tue, Mar 22, 2016 at 11:33 PM, Roland Huettmann wrote: > > I was searching for "file", "detailed file", "detailed files". You can't be using LC8dp15 or greater because all I have to do is type in 'detaile' and the list of hits is reduced to 3 with the one you are looking for quite visible. If

Re: Would love to see this blog with 1,001 Uses stay FRESH

2016-03-23 Thread Kay C Lan
On Tue, Mar 22, 2016 at 7:49 AM, Peter W A Wood wrote: > The first is that people are not submitting possible entries. The second is > I don't have time... If you are on OS X you can create an Automator application (not workflow) that will auto Quit after it's sent out an email to this List ask

Re: Can a widget be in the background?

2016-03-23 Thread William Prothero
Please excuse me for the trivial questions. I found that a group can be a shared background object. But, I’m wondering if for a stack with quite a few cards, a new group with a shared background setting will only appear on new cards. If I create a new stack with several cards, load several UI

Re: Can a widget be in the background?

2016-03-23 Thread Scott Rossi
Use "Place Group" under the Object menu to place the group on any card that doesn't already have it. If you copy and paste, you'll wind up with multiple copies of the group, instead of one group shared across multiple cards. Regards, Scott Rossi Creative Director Tactile Media, UX/UI Design

Re: Mac App Store Submission

2016-03-23 Thread Kay C Lan
Wouldn't a better option be for this to reside here: https://github.com/livecode/livecode/tree/community-docs/docs/guides The guide would then be readily available via the Dictionary, a logical place to look rather than just another URL one has to find. It would also mean the guide is available o

Anyone Using Atom for LC Script Editing

2016-03-23 Thread Sannyasin Brahmanathaswami
I'm contemplating moving from BBEdit to Atom Any thoughts Atom as an editor for LC scripts? This is "freaking amazing" https://www.youtube.com/watch?v=cFAzqvYoHJs Do we have a package to colorize LC or RevIgniter scripts? BR ___ use-livecode mailing

Re: Anyone Using Atom for LC Script Editing

2016-03-23 Thread Monte Goulding
> On 24 Mar 2016, at 3:37 PM, Sannyasin Brahmanathaswami > wrote: > > I'm contemplating moving from BBEdit to Atom > > Any thoughts Atom as an editor for LC scripts? > > This is "freaking amazing" > > https://www.youtube.com/watch?v=cFAzqvYoHJs > > Do we have a package to colorize LC or Re

Re: Can a widget be in the background?

2016-03-23 Thread Earthednet-wp
Scott, Thanks! You are the man! Best, Bill William Prothero http://es.earthednet.org > On Mar 23, 2016, at 8:30 PM, Scott Rossi wrote: > > Use "Place Group" under the Object menu to place the group on any card > that doesn't already have it. If you copy and paste, you'll wind up with > multipl

Re: [ANN] guides for positioning of controls

2016-03-23 Thread Thierry Douez
Hallo Bernd, Ich gratuliere dir zu diesem Plug-In. Großartig! Nice piece of art, kudos :) Thierry 2016-03-23 22:26 GMT+01:00 BNig : > I > http://berndniggemann.on-rev.com/guides/bnGuides_0_4.livecode.zip > - > > Kind regards > Bernd > --