Re: How to I flatten a Hypercard stack (now Livecode) from cards and backgrounds to just cards?

2014-10-05 Thread J. Landman Gay
Actually you shouldn't have to change any of that. Even after setting the hcaddressing to false, you can still use the longer references to distinguish between same-named objects. So you could just leave the original scripts alone in those cases. The same goes for backgrounds. Since it's a

Re: how to detect insertion point

2014-10-05 Thread larry
Thanks Craig, I learned a lot today from your post and Jacque's post. Larry - Original Message - From: To: Sent: Sunday, October 05, 2014 10:06 PM Subject: Re: how to detect insertion point Larry. It takes a while to learn the many LC commands, functions and properties that pert

Re: How to I flatten a Hypercard stack (now Livecode) from cards and backgrounds to just cards?

2014-10-05 Thread kee nethery
Yep. So two things I need to do are: 1. Resolve any name duplications between card and background objects. If I have card field “bork” and background field “bork”, getting it to where I can remove “card” and “background” will cause issues if two objects on the same card have the same name. 2.

Re: how to detect insertion point

2014-10-05 Thread dunbarx
Larry. It takes a while to learn the many LC commands, functions and properties that pertain to the task at hand. Experimentation is the best way, but also do use the dictionary, trying out various words that seem to fit what you are looking for. And especially the "see also" entries when you

Re: how to detect insertion point

2014-10-05 Thread Mark Schonewille
Hi Larry, To detect the insertion pint when the user clicks in a field, you can do this: on selectionChanged put the selectedchunk end selectionChanged -- Kind regards, Mark Schonewille Economy-x-Talk Http://economy-x-talk.com Share the clipboard of your computer over a local network with C

Re: how to detect insertion point

2014-10-05 Thread larry
Thanks Mike! Now I can keep the rest of my hair! Larry - Original Message - From: To: ; "How to use LiveCode" Sent: Sunday, October 05, 2014 8:47 PM Subject: Re: how to detect insertion point What about exitfield? Mike Original Message From: la...@significantplanet.org Sent: Sund

Re: how to detect insertion point

2014-10-05 Thread mikedoub
What about exitfield? Mike   Original Message   From: la...@significantplanet.org Sent: Sunday, October 5, 2014 10:45 PM To: How to use LiveCode Reply To: How to use LiveCode Subject: Re: how to detect insertion point Thanks Kay, For some reason, neither focusIn nor focusOut works. I can get wha

Re: Text fields with rounded corners

2014-10-05 Thread Scott Rossi
One way to do this is to create a graphic with the desired appearance, export a snapshot of the graphic to a variable, set the text of an image to the snapshot data, and then set the backPattern of a plain field to the id of the image. I paired this with a resizeControl behavior applied to the fie

Re: how to detect insertion point

2014-10-05 Thread larry
Thanks Kay, For some reason, neither focusIn nor focusOut works. I can get what I want with openField but I haven't found anything that works when the focus is no longer on the field; focusOut doesn't work and neither does closeField (because closeField only works if the user changed the conten

Re: how to detect insertion point

2014-10-05 Thread Kay C Lan
Maybe the focusIn messgae might help. On Mon, Oct 6, 2014 at 10:30 AM, wrote: > Hello, > > I have several fields... myField1, myField2, etc. > > When the user clicks within a field, I want to detect the (?? selection, > insertion ??) and run a script. > > I've experimented for over an hour with

how to detect insertion point

2014-10-05 Thread larry
Hello, I have several fields... myField1, myField2, etc. When the user clicks within a field, I want to detect the (?? selection, insertion ??) and run a script. I've experimented for over an hour with no luck. The only thing I found that sort of works is: on mouseEnter do stuff end mouseEnt

Re: create a new label field

2014-10-05 Thread Kay C Lan
On Mon, Oct 6, 2014 at 8:50 AM, J. Landman Gay wrote: > > I think it's misleading for new users because it gives the impression that > there are different types of button and field controls. > Not to mention menubars, which again new users may think is another object altogether but surprise surpr

Re: Text fields with rounded corners

2014-10-05 Thread Bill Vlahos
I agree that it would be a very nice feature to have. It would save time having to create the graphics workarounds described in this thread. Bill Vlahos On Oct 5, 2014, at 1:42 PM, Paul Dupuis wrote: > I think what was being asked here is "why shouldn't the roundRadius > property (and roundEnd

Re: Calendar scripting app needs help with Outlook for Mac

2014-10-05 Thread Bill Vlahos
I have a volunteer for assistance. Bill Vlahos _ InfoWallet (http://www.infowallet.com) is about keeping your important life information with you, accessible, and secure. lcTaskList: (http://www.infowallet.com/lctasklist/index.htm) RunRev lcTaskList Forum: (http://forums.runrev.co

Re: create a new label field

2014-10-05 Thread larry
Thanks Jacque, That note is actually very enlightening to me! Larry - Original Message - From: "J. Landman Gay" To: "How to use LiveCode" Sent: Sunday, October 05, 2014 6:50 PM Subject: Re: create a new label field Just for reference, LiveCode has only one field and one button objec

Re: Any "Preference" menu work arounds?

2014-10-05 Thread John
Never mind - I didn’t try the obvious. Simply disabling the “Preferences" menu item does indeed disable it in the menu bar. There is a change in behavior, and old stacks may break, but it is possible to disable the menu item. Thanks, John On Oct 5, 2014, at 6:03 PM, John wrote: > Unde

Re: use-livecode Digest, Vol 133, Issue 10

2014-10-05 Thread Colin Holgate
I’m relieved that he only gets the daily digest. On Oct 5, 2014, at 8:55 PM, Peter W A Wood wrote: > I look forward to Bernd's return to his office on Sunday. I might even send > him a welcome back message. > > On 6 Oct 2014, at 08:51, bernd.gottw...@outrange.com wrote: > >> Bis zum 12.10.20

Any "Preference" menu work arounds?

2014-10-05 Thread John
Under OSX (10.9.5) using LC 7.0 RC2, I cannot disable the “Preference" menu item. Under previous versions, deleting the menu item, and separator above it, from the “Edit" menu disabled “Preferences" in the menu bar. This is no longer the case. The trick detailed in http://runtime-revoluti

Re: use-livecode Digest, Vol 133, Issue 10

2014-10-05 Thread Peter W A Wood
I look forward to Bernd's return to his office on Sunday. I might even send him a welcome back message. On 6 Oct 2014, at 08:51, bernd.gottw...@outrange.com wrote: > Bis zum 12.10.2014 bin ich nicht verfügbar. Ich werde meine Emails nicht > lesen. In dringenden Fällen erreichen Sie mich über me

Re: create a new label field

2014-10-05 Thread J. Landman Gay
Just for reference, LiveCode has only one field and one button object. All the field variations in the tool palette are just a single field object with different properties set. The same goes for all the buttons. I think it's misleading for new users because it gives the impression that ther

Re: use-livecode Digest, Vol 133, Issue 10

2014-10-05 Thread bernd . gottwald
Bis zum 12.10.2014 bin ich nicht verfügbar. Ich werde meine Emails nicht lesen. In dringenden Fällen erreichen Sie mich über mein Mobiltelefon. I will be out of office until 12.10.2014. I won't read me emails. In urgent matter please call me on my mobile. __

Re: create a new label field

2014-10-05 Thread dunbarx
You are welcome. The only way we all learn LC is both by fooling around with it and by talking about it. You do know that when I mentioned "the properties" I meant just that ( a native term), and not that you tediously go through all the ones you think are pertinent. Craig -Original M

Re: create a new label field

2014-10-05 Thread larry
Hi Craig, Thanks for elaborating. I really appreciate it. I know your first message meant perfect sense to you, but I just don't have much experience. I should have thought to do what you just said in this most recent post. Now I have a better understanding of how to do stuff like that. Again,

Re: create a new label field

2014-10-05 Thread dunbarx
Make a label field the way you want it. Set the properties of the templateField to the properties of your label field. Craig -Original Message- From: larry To: How to use LiveCode Sent: Sun, Oct 5, 2014 7:20 pm Subject: Re: create a new label field Hi Craig, Yes, but how do I do t

Re: create a new label field

2014-10-05 Thread larry
Hi Craig, Yes, but how do I do that? I cannot find any command that distinguishes from label or regular field. I do use templateField for other properties, but nothing I've tried will set the property of a label field. Thanks, Larry - Original Message - From: To: Sent: Sunday, Octob

Re: create a new label field

2014-10-05 Thread dunbarx
Hi. Set up the templateField as a label field. Then all new fields created will have its properties. Craig Newman -Original Message- From: larry To: use-livecode Sent: Sun, Oct 5, 2014 6:32 pm Subject: create a new label field I can use "create field" to create a new field, but

create a new label field

2014-10-05 Thread larry
I can use "create field" to create a new field, but it is a rectangular field with square corners. How do I create a new label field programatically? ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubsc

Re: Text fields with rounded corners

2014-10-05 Thread Trevor DeVore
On Sunday, October 5, 2014, stephen barncard < stephenrevoluti...@barncard.com> wrote: > On Sun, Oct 5, 2014 at 7:37 AM, Richmond > > wrote: > > > That is a fudge, with a text field overlaying a rectangle with rounded > > edges. > > > > What difference does it make? It's all an illusion anyway. J

Re: Text fields with rounded corners

2014-10-05 Thread Paul Dupuis
I think what was being asked here is "why shouldn't the roundRadius property (and roundEnds, roundHeight, roundWidth) apply to fields (and buttons, etc.) as well as just graphics" It is a good enhancement idea and should be submitted to RunRev via the quality center (http://quality.runrev.com/) if

Re: How to I flatten a Hypercard stack (now Livecode) from cards and backgrounds to just cards?

2014-10-05 Thread J. Landman Gay
On 10/5/2014, 1:52 PM, Francis Nugent Dixon wrote: Kee Nethery says that he wants to remove backgrounds in a stack “to bring it into the modern era” Can anybody explain this statement ? What does this mean ? Is the background mechanism dying, or even being dropped ? No, nothing has changed. I

Re: Calendar scripting app needs help with Outlook for Mac

2014-10-05 Thread Bill Vlahos
Mark, Well that is why I don’t own it. However, many companies like yours insist on it which is why I want to be able to show how to integrate with it. Bill On Oct 5, 2014, at 12:14 PM, Mark Wieder wrote: > Bill- > > Sunday, October 5, 2014, 11:39:25 AM, you wrote: > >> My problem is that I

Re: Text fields with rounded corners

2014-10-05 Thread Richmond
On 05/10/14 22:28, Richmond wrote: On 05/10/14 22:24, Ken Ray wrote: Does it have to be editable? If not, then you might be able to get away with a single roundrect graphic object and set the label of the graphic to the text you want. Granted you have limitations, but you can still manipulate

Re: Text fields with rounded corners

2014-10-05 Thread Richmond
On 05/10/14 22:24, Ken Ray wrote: Does it have to be editable? If not, then you might be able to get away with a single roundrect graphic object and set the label of the graphic to the text you want. Granted you have limitations, but you can still manipulate things like alignment, margins, etc

Re: Text fields with rounded corners

2014-10-05 Thread Ken Ray
Does it have to be editable? If not, then you might be able to get away with a single roundrect graphic object and set the label of the graphic to the text you want. Granted you have limitations, but you can still manipulate things like alignment, margins, etc. Ken RaySons of Thunder Softwar

Re: Engines, Metacard, and general mucking around

2014-10-05 Thread Mark Wieder
Richmond- Sunday, October 5, 2014, 12:10:44 PM, you wrote: > One can open the .app folder of a Mac version of LiveCode or Metacard > and swap out the engine. > I wonder how one might go about this with Linux or a Windows versions of > LiveCode/Metacard? > Certainly, the Linux version looks mono

Re: Calendar scripting app needs help with Outlook for Mac

2014-10-05 Thread Mark Wieder
Bill- Sunday, October 5, 2014, 11:39:25 AM, you wrote: > My problem is that I don’t have a licensed copy of Outlook on the > Mac. I don't see this as a problem. We were forced to migrate to Mac Outlook a few months ago, and it sucks bigtime. Expecially wrt calendaring. Or maybe it's just Exchan

Engines, Metacard, and general mucking around

2014-10-05 Thread Richmond
One can open the .app folder of a Mac version of LiveCode or Metacard and swap out the engine. I wonder how one might go about this with Linux or a Windows versions of LiveCode/Metacard? Certainly, the Linux version looks monolithic. Richmond. ___

How to I flatten a Hypercard stack (now Livecode) from cards and backgrounds to just cards?

2014-10-05 Thread Francis Nugent Dixon
Hi from Beautiful Brittany, I’m confused ! Kee Nethery says that he wants to remove backgrounds in a stack “to bring it into the modern era” Can anybody explain this statement ? What does this mean ? Is the background mechanism dying, or even being dropped ? I understand that many stacks (an old

Re: Text fields with rounded corners

2014-10-05 Thread Richmond
On 05/10/14 19:02, Mark Wieder wrote: Richmond- Sunday, October 5, 2014, 5:47:25 AM, Hugh wrote: roundRect graphic instead of a field border. 2p ..and group the two objects. Turn off the border and opacity of the text field, set the opacity and backgroundColor of the graphic. +2p My earli

Calendar scripting app needs help with Outlook for Mac

2014-10-05 Thread Bill Vlahos
I’ve written a demonstration stack that shows how to use AppleScript to create, modify, and delete an event in Calendar on the Mac. The stack will be uploaded to RevOnLine but before I do that I would like to also have the information to do the same thing with Outlook for the Mac. My problem is

Interested in ad hoc occasional freelance LiveCode work?

2014-10-05 Thread Dave Kilroy
Dear all I have a client who occasionally wants features faster than I can code them - and when that happens I would like to be able to call on some help. Previously I've used this list to (successfully) find people to help out with specific, neatly defined, tasks - this would probably be messier

Re: Text fields with rounded corners

2014-10-05 Thread Mark Wieder
Richmond- Sunday, October 5, 2014, 5:47:25 AM, Hugh wrote: > roundRect graphic instead of a field border. > 2p ..and group the two objects. Turn off the border and opacity of the text field, set the opacity and backgroundColor of the graphic. +2p -- -Mark Wieder ahsoftw...@gmail.com This c

Re: Text fields with rounded corners

2014-10-05 Thread Richmond
On 05/10/14 18:29, stephen barncard wrote: On Sun, Oct 5, 2014 at 7:37 AM, Richmond wrote: That is a fudge, with a text field overlaying a rectangle with rounded edges. What difference does it make? It's all an illusion anyway. Just asking. Yes, of course a GUI is an illusion; however, I

Re: Text fields with rounded corners

2014-10-05 Thread stephen barncard
On Sun, Oct 5, 2014 at 7:37 AM, Richmond wrote: > That is a fudge, with a text field overlaying a rectangle with rounded > edges. > What difference does it make? It's all an illusion anyway. Just asking. *--* *Stephen Barncard - San Francisco Ca. USA - Deeds Not Words* _

Re: Text fields with rounded corners

2014-10-05 Thread Richmond
On 05/10/14 15:47, FlexibleLearning.com wrote: roundRect graphic instead of a field border. 2p Hugh Senior FLCo From: Richmond Subject: Text fields with rounded corners ? Richmond That doesn't help. That is a fudge, with a text field overlaying a rectangle with rounded edges.

Re: the "price" of a context switch/function call

2014-10-05 Thread Roger Eller
It is for this very reason, I sometimes must kick myself. The more time I spend optimizing a routine, these "moments of clarity" happen, and a complex solution seems so simple. Not so when I return to it as my future self. Sent from my Android tablet On Oct 5, 2014 1:43 AM, "Mark Wieder" wrote:

RE: Text fields with rounded corners

2014-10-05 Thread FlexibleLearning.com
roundRect graphic instead of a field border. 2p Hugh Senior FLCo From: Richmond Subject: Text fields with rounded corners ? Richmond ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe

Re: Trigger Mobile Page Swipe?

2014-10-05 Thread Gerry
I've tried to do this and didn't get it working. It's just another one of those ways in which LiveCode is a 90% iOS solution. Gerry Sent from my iPhone > On 5 Oct 2014, at 6:52 pm, Scott Rossi wrote: > > Hi All: > > I never saw any response on the this item below. I¹m still looking for a >

Re: use-livecode Digest, Vol 133, Issue 9

2014-10-05 Thread bernd . gottwald
Bis zum 12.10.2014 bin ich nicht verfügbar. Ich werde meine Emails nicht lesen. In dringenden Fällen erreichen Sie mich über mein Mobiltelefon. I will be out of office until 12.10.2014. I won't read me emails. In urgent matter please call me on my mobile. __

Text fields with rounded corners

2014-10-05 Thread Richmond
? Richmond. ___ 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: Trigger Mobile Page Swipe?

2014-10-05 Thread Scott Rossi
Hi All: I never saw any response on the this item below. I¹m still looking for a way to trigger a page scroll with a mobile scroller, so it advances with the default momentum. Any ideas on how one could do this? Thanks & Regards, Scott Rossi Creative Director Tactile Media, UX/UI Design On