Re: htmlText not supporting target in ?

2016-06-20 Thread Mike Bonner
You'd have to code a method to do what you want using linkclicked. When a text link in a field is clicked it fires a linkclicked message with one parameter that contains the link text. If you want to place the contents of the url into a different field, something like this in the field handler.

Re: Get url "file:///..."

2016-06-20 Thread [-hh]
Assuming you are on a Mac: The following should work from 10.4 to 10.12 with LC 5/6/7/8. on mouseUp put "/Users/jimhurley/Library/Mail%20Downloads/elec_web/precincts/241.htm" into f put "source" into sOrT --> one of "source", "text", "URL" do iScript(f, sOrT) as applescript put the

[OT] remote Mac rental services

2016-06-20 Thread Nicolas Cueto
Could remote Mac rental services be used for iOS app development and testing from a Windows machine? Has anyone here successfully tried out this route -- perhaps, for example, through (top Google search result) http://www.macincloud.com/ ? Never heard of these services until they were

Re: Get url "file:///..."

2016-06-20 Thread J. Landman Gay
I generally put parentheses around the quoted file path. That forces the engine to treat it as a container rather than a string. Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On June 20, 2016 8:39:16 PM Jim

Re: Get url "file:///..."

2016-06-20 Thread Monte Goulding
> On 21 Jun 2016, at 11:37 AM, Jim Hurley wrote: > > Thanks for all the suggestions. So far no luck with any. > > No combination of back slashes work, and urlDecode() simply returns the file > name. > > Sarfari opens the file with no difficulty. > > Apparently

Re: Get url "file:///..."

2016-06-20 Thread Mike Bonner
Great minds > > You might want to get rid of any control characters that got caught in the > string as you did a copy and paste. > > ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage

Re: Get url "file:///..."

2016-06-20 Thread Mike Bonner
Strange. So, this sequence doesn't work? If you do this.. get url urldecode("file:/Users/jimHurley/Library/Mail%20Downloads/elec_web/precincts/241.htm)") put the result && it (on windows this works for me: get url urldecode("file:/Users/Mike/Desktop/test%20me/steering.txt"); put it && the

Re: Get url "file:///..."

2016-06-20 Thread Dar Scott
I think urlDecode() should convert the %20 to a space. I don't think it would do more to the path you mentioned. You can check whether 'the result' is something other than "can't open file". You might try saving the attachment to another location and getting it from there. You might try

Disabling menu items in iOS?

2016-06-20 Thread Terry Judd
It¹s not possible to disable items in an iOS menu (mobilePick) is it? Regards, Terry... ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: quirk in group resize behavior

2016-06-20 Thread Monte Goulding
> On 21 Jun 2016, at 9:55 AM, Terry Judd wrote: > > Yeah, I often get caught out resizing groups and finding that I¹m adding > unnecessary/unexpected space or cutting off controls when really what I > want to do is anchor the child controls on one or two axes when I

Re: quirk in group resize behavior

2016-06-20 Thread Monte Goulding
> On 21 Jun 2016, at 10:00 AM, Colin Holgate wrote: > > Perhaps it could use the same terminology, and work the same way, as full > screen modes. The current behavior is effectively noScale, and with exactFit, > noBorder, showAll, and letterbox, you could move the

Re: Get url "file:///..."

2016-06-20 Thread Jim Hurley
Thanks for all the suggestions. So far no luck with any. No combination of back slashes work, and urlDecode() simply returns the file name. Sarfari opens the file with no difficulty. Apparently Sarfari does something that LiveCode's "get Url" doesn't. Jim > Dar Scott wrote: > > Yeah,

Re: Get url "file:///..."

2016-06-20 Thread Mike Bonner
On windows, I can't make it work with the extra ///, so it does appear that os matters.Hopefully the result will give a clue On Mon, Jun 20, 2016 at 6:52 PM, Dar Scott wrote: > Yeah, checking 'the result' sounds like a good idea. > > I don't have a problem with ///, though, on my

Re: Get url "file:///..."

2016-06-20 Thread Dar Scott
Yeah, checking 'the result' sounds like a good idea. I don't have a problem with ///, though, on my macOS (as we say instead of OS X these days). Maybe that part depends on the OS. I have a feeling that we might be missing the core of the problem. > On Jun 20, 2016, at 6:39 PM, Mike

Re: Get url "file:///..."

2016-06-20 Thread Mike Bonner
Ah. A combination of both. get url urldecode(" file:/Users/jimhurley/ Library/Mail%20Downloads/elec_web/precincts/241.htm") Still need to get rid of the extra //. If you check the result on fail it'll probably say "can't open file". You'll need to urldecode to set the folder too if you decide

Re: Get url "file:///..."

2016-06-20 Thread Dar Scott
urlDecode() ? > On Jun 20, 2016, at 5:54 PM, Jim Hurley wrote: > > I got this web page address from the county election's office: > > file:///Users/jimhurley/Library/Mail%20Downloads/elec_web/precincts/241.htm > > It opens when I paste it into the address field

Re: Get url "file:///..."

2016-06-20 Thread Mike Bonner
Oh. Another bonus to setting the default folder is that if there are muitiple files to pars, you can "get the files" and loop through then easily.(Not that you couldn't do it without setting the folder, but...) On Mon, Jun 20, 2016 at 6:00 PM, Mike Bonner wrote: > Try

Re: quirk in group resize behavior

2016-06-20 Thread Colin Holgate
Perhaps it could use the same terminology, and work the same way, as full screen modes. The current behavior is effectively noScale, and with exactFit, noBorder, showAll, and letterbox, you could move the contents in the expected way. Could even use the arithmetic from the full screen mode

Re: Get url "file:///..."

2016-06-20 Thread Mike Bonner
Try changing it to this: file:/Users/jimhurley/ Library/Mail%20Downloads/elec_web/precincts/241.htm Alternatively, you can probably use a browser widget and set the url to file:///Users/jimhurley/Library/Mail%20Downloads/elec_web/precincts/241.htm then get the htmltext of the browser widget,

Re: quirk in group resize behavior

2016-06-20 Thread Terry Judd
Yeah, I often get caught out resizing groups and finding that I¹m adding unnecessary/unexpected space or cutting off controls when really what I want to do is anchor the child controls on one or two axes when I grow or shrink the group. Being able to set a reference edge or corner (L, T, R, B, TL,

Get url "file:///..."

2016-06-20 Thread Jim Hurley
I got this web page address from the county election's office: file:///Users/jimhurley/Library/Mail%20Downloads/elec_web/precincts/241.htm It opens when I paste it into the address field in Safari. But get url

quirk in group resize behavior

2016-06-20 Thread Monte Goulding
Hi Folks One of the recent issues in the IDE caused us to discover/rediscover a quirk in group resize behavior that I think would be worthwhile getting feedback on from the community. I’m personally struggling to come up with a use case for it although there very likely is/was one. Perhaps one

[OT] Morphos

2016-06-20 Thread Richmond
This is 100% OT: you've been warned. I installed Morphos 3.9 on my G4 Mac mini based on 2 premises: 1. The Morphos website describes the OS as Free. [It is "Free" insofar as it will continue functioning without payment but throttles down to an absolutely glacial speed without what is

Re: Control? Object?

2016-06-20 Thread Richmond
On 20.06.2016 19:58, Mark Waddingham wrote: On 2016-06-20 16:38, Richmond wrote: Thank you very much indeed for the comprehensive reply. I shall deal with the children's confusion by using neither 'object' or 'control' and just refer to buttons, fields and so on. I know this is dodging the

How to open an attachment on iOS device in LC App?

2016-06-20 Thread Glen Bojsza
Hello everyone, I am still trying to figure out how to open an email attachment on an iPad / iPhone by a LC app. There is an option on an iPad or iPhone to all ow the user to select the application they want to open an attached file. Is this a configuration in the iOS Standalone Application

Re: [ANN] This Week in LiveCode 38

2016-06-20 Thread Richmond
Not true, my Trans-Atlantic friend. Nobody in the British Isles would ever use the word "cussin'", in Britain all one hears is constant cursing. R. On 20.06.2016 19:16, Jerry Jensen wrote: Fortunately, ‘cussing’ always has two ’s’, but sometimes no ‘g’. On Jun 20, 2016, at 8:37 AM, Richmond

Re: Control? Object?

2016-06-20 Thread Mark Waddingham
On 2016-06-20 14:48, David Bovill wrote: Great post Mark. I'm going to keep that for my notes! I've too tangentially related questions - mainly with regard to what it is better to do with widgets and with script. You say "the ability to be able to package up a group of controls as a black-box

Re: Control? Object?

2016-06-20 Thread Mark Waddingham
On 2016-06-20 16:38, Richmond wrote: Thank you very much indeed for the comprehensive reply. I shall deal with the children's confusion by using neither 'object' or 'control' and just refer to buttons, fields and so on. I know this is dodging the issue; but I can see no other way round it at

Re: [ANN] This Week in LiveCode 38

2016-06-20 Thread Jerry Jensen
Fortunately, ‘cussing’ always has two ’s’, but sometimes no ‘g’. > On Jun 20, 2016, at 8:37 AM, Richmond wrote: > > That certainly puts things in perspective. > > Lovely job! > > Richmond. > > On 20.06.2016 17:56, [-hh] wrote: >> Jerry D. wrote: >>> 'Focusing'

Re: Control? Object?

2016-06-20 Thread Devin Asay
Mark, Thanks for this fantastic explanation of controls and objects and lots more. I’m happy to learn that what I’ve always thought I understood is not far off from reality. :) The definig of audioclips and videoclips as objects, not controls, within the stack tree, cleared up one point of

Re: JSON not working in Standalones?

2016-06-20 Thread Ali Lloyd
> in 8.1.0 (dp 1) the new “Inclusions”-tab in the standalone settings is disabled, > so I can’t select anything there. I suspect you may have the "search for inclusions" radio button selected instead of the "select inclusions" one, in the General tab. On Mon, Jun 20, 2016 at 1:44 PM Ton Kuypers

Re: Control? Object?

2016-06-20 Thread Richmond
Your students might be "the opposite of tech-savvy", but they are neither in the 8-14 age range, nor native Bulgarian speakers (unless there is something you're not telling us about Utah). R. On 20.06.2016 18:33, Devin Asay wrote: Yes, that’s true no doubt. But I think part of the reason it

Re: [ANN] This Week in LiveCode 38

2016-06-20 Thread Richmond
That certainly puts things in perspective. Lovely job! Richmond. On 20.06.2016 17:56, [-hh] wrote: Jerry D. wrote: 'Focusing' has only one 's'. Not two. This is true, of course. And just the same: 'Focussing' has two 's'. Not only one. -- View this message in context:

Re: [ANN] This Week in LiveCode 38

2016-06-20 Thread [-hh]
Jerry D. wrote: > 'Focusing' has only one 's'. Not two. This is true, of course. And just the same: 'Focussing' has two 's'. Not only one. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-This-Week-in-LiveCode-38-tp4705958p4705975.html Sent from the

Re: Control? Object?

2016-06-20 Thread Devin Asay
Yes, that’s true no doubt. But I think part of the reason it hasn’t been a confusion is because I start out by defining what an “object” is (it could just as well be a doohickey), then asserting that control doohickies are a subset of all doohickies, and then sticking with the same terminology

Re: Control? Object?

2016-06-20 Thread Richmond
Thank you very much indeed for the comprehensive reply. I shall deal with the children's confusion by using neither 'object' or 'control' and just refer to buttons, fields and so on. I know this is dodging the issue; but I can see no other way round it at the moment. Richmond. On

Re: [ANN] This Week in LiveCode 38

2016-06-20 Thread Richmond
In North American English 'Focusing' is spelled 'focusing', in British English 'Focussing' is spelt 'focussing'; and as long as we all understand what someone means by 'focusing/focussing' I cannot see any need for any correxion/correction however skeptical/sceptical I feel about this

Re: htmlText not supporting target in ?

2016-06-20 Thread Klaus major-k
After reading this a second time, it looks I have misunderstood the actual problem, sorry... > Am 20.06.2016 um 15:41 schrieb Klaus major-k : > > Dag Ton, > >> Am 20.06.2016 um 15:22 schrieb tkuyp...@telenet.be >> : >> >> Is this a bug or am

Re: Control? Object?

2016-06-20 Thread Richmond
I would like to think that there is a significant difference, Devin, between your University students and my small children. The children I teach actually believe that 'objects' are things that exist inside a computer, rather than metaphorical abstractions drawn on a screen because we cannot

Re: Slight annoyance from MacKiev

2016-06-20 Thread Richmond
Of course,as the kind of guy who fishes in rubbish bins, I'm going to use some of those demos by trying to duplicate their functionality in Livecode [let's not get into how on earth I'm going to get hold of such high quality graphics], and then use some of them as the basis of some of my

Re: htmlText not supporting target in ?

2016-06-20 Thread Klaus major-k
Dag Ton, > Am 20.06.2016 um 15:22 schrieb tkuyp...@telenet.be > : > > Is this a bug or am I missing something? > > I pasted the following URL into a field: > > click

Re: JSON not working in Standalones?

2016-06-20 Thread Ton Kuypers
Yes, that part I already figured out ;-) But is there a way to add the JSON-part or all of the mergExt to a standalone right now? Met vriendelijke groeten, Warm Regards, Ton Kuypers +32 (0) 477 739 530 Steenweg op Leopoldsburg 100 • B-2490 • Balen • Belgium www.publishingtools4u.com >

htmlText not supporting target in ?

2016-06-20 Thread tkuyp...@telenet.be
Is this a bug or am I missing something? I pasted the following URL into a field: click http://www.malamix.be/ClientData/88/234/35691/1313/1/Flyer%20Malamix%20Food%20Nederlands.pdf ”>here for the

Re: Control? Object?

2016-06-20 Thread David Bovill
Great post Mark. I'm going to keep that for my notes! I've too tangentially related questions - mainly with regard to what it is better to do with widgets and with script. You say "the ability to be able to package up a group of controls as a black-box just like a widget would be entirely

Re: IOS Provisioning Profile... again

2016-06-20 Thread Randy Hengst
Glen, yes, I did select the profile in the LC settings…. as a side note, my “Team Provisional Profile” no longer “works. It shows as “Inactive (managed by Xcode)”…. However, it still shows up in my LC drop down menu choices. be well, randy Randy Hengst www.classroomFocusedSoftware.com >

Re: IOS Provisioning Profile... again

2016-06-20 Thread Randy Hengst
John, yes the provisioning profile indicated 39 devices… that’s part of what I found confusing… but, I decided from your comment to go back to the developer portal and look again… so, I re-generated the profile and it worked! Thanks for the idea. be well, randy Randy Hengst

Re: [ANN] This Week in LiveCode 38

2016-06-20 Thread Matthias Rebbe
The first thing the english teacher told us here in Germany was that there are many words written differently in British English and American English. For example color and colour or lift and elevator, but do not ask me what is BE or AE. ;) Matthias Matthias Rebbe Bramkampsieke 13 32312

Re: [ANN] This Week in LiveCode 38

2016-06-20 Thread Nicolas Cueto
It can outside the U.S.A. (Odd thing to have pointed out.) -- Nicolás Cueto On Jun 20, 2016 19:56, wrote: 'Focusing' has only one 's'. Not two. Best, Jerry On Jun 20, 2016, 5:53 AM -0500, Peter TB Brett, wrote: > Hi all, > > Read about new

GetOpt library for parsing command line options

2016-06-20 Thread Peter TB Brett
Hey folks, I've written a new "GetOpt" script library for parsing UNIX-style command line options. I'll be using it for developing some command-line tooling used during the LiveCode development process. It supports lots of different ways of specifying command line options: * Short options

Re: [ANN] This Week in LiveCode 38

2016-06-20 Thread me
'Focusing' has only one 's'. Not two. Best, Jerry On Jun 20, 2016, 5:53 AM -0500, Peter TB Brett, wrote: > Hi all, > > Read about new developments in LiveCode open source and the open source > community in today's edition of the "This Week in LiveCode" newsletter! > >

[ANN] This Week in LiveCode 38

2016-06-20 Thread Peter TB Brett
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #38 here: https://goo.gl/0k4kNi This is a weekly newsletter about LiveCode, focussing on what's been going on in and

Re: IOS Provisioning Profile... again

2016-06-20 Thread Glen Bojsza
What about the LC Standalone iOS settings...in the Basic Application Settings there is a drop down and select "IOS Provisioning Profile"? On Sun, Jun 19, 2016 at 10:53 PM, Randy Hengst wrote: > All, > > I’ve come to my year-end renewing of my provisioning profiles and >

Re: Control? Object?

2016-06-20 Thread Mark Waddingham
On 2016-06-19 09:19, Richmond wrote: I am currently teaching some children Livecode programming and ran into some difficulty on Friday when a child asked me why the menus were full of the word "Control" when I had been talking about "Objects". Well? How about changing every use of the word

Re: Control? Object?

2016-06-20 Thread Peter TB Brett
On 19/06/2016 15:28, Richmond wrote: So: Should I stop using the word 'Object' for Buttons, Fields and so on while teaching children, and make sure I refer to all of those things as 'Controls'; even if only for the simple reason that the menus keep referring to 'Controls'? All controls are

RE: IOS Provisioning Profile... again

2016-06-20 Thread John Dixon
Randy... Have you added your devices to the new profile? > From: iowahen...@mac.com > Subject: IOS Provisioning Profile... again > Date: Sun, 19 Jun 2016 21:53:15 -0500 > To: use-livecode@lists.runrev.com > > All, > > I’ve come to my year-end renewing of my provisioning profiles and >