[ANN] lcTaskList 1.2 the Task List Plugin for LiveCode

2012-11-15 Thread Bill Vlahos
I've released a minor update to the task list plugin for LiveCode's IDE (and it works with GLX2 too!). This plugin will help you organize your code and remember what you are working on. I think it is a useful tool for everyone who uses LiveCode. LcTaskList is available for purchase for only $10

Re: problem using libURL on server?

2012-11-15 Thread Richard Gaskin
My CGI problem has become more interesting: When I use the old CGI engine with a text file script, I'm able to use libURL fine without issue. But right now I need to make a standalone, which has worked well with everything else I've used it for but now that I need to get data from another se

Re: Scrolling List Field/Table

2012-11-15 Thread J. Landman Gay
On 11/15/12 8:27 PM, Peter Haworth wrote: Well, I guess understanding the new paragraph features is going to take a while. Not even sure what a paragraph is in the context of a scrolling list field - is every line a paragraph? Also not sure if I can replicate a table exactly since I want to have

Re: [OT] LiveCode 6.0 - Upgrade, Update or Addon

2012-11-15 Thread Kay C Lan
On Fri, Nov 16, 2012 at 2:55 AM, Richard Gaskin wrote: > I think the 6.0 "Preview" is only available to members of the Developer > Program, but I'm not sure how that could be dependent on the Linux > deployment option. > > Yes, I believe that too, and would therefore make you fall under the NDA ot

Re: Scrolling List Field/Table

2012-11-15 Thread Peter Haworth
Well, I guess understanding the new paragraph features is going to take a while. Not even sure what a paragraph is in the context of a scrolling list field - is every line a paragraph? Also not sure if I can replicate a table exactly since I want to have the ability to scroll vertically. For now,

problem using libURL on server?

2012-11-15 Thread Richard Gaskin
I've used libURL with the CGI engine in the past and it's worked well, but today I'm trying to use it and it just hangs. If I comment out the "get url" comment in my script the rest works fine, but the one line that tries to post data to another server fails. Anyone else run into this? -- R

Re: Location-Based Push Message?

2012-11-15 Thread Monte Goulding
I think it's only for the less accurate form of location service called significant change but I can check on that. What I would do is use this service to notify the app when the device gets in the general area and then turn on the more accurate gps services to work out if they are in a specific

Re: Location-Based Push Message?

2012-11-15 Thread JOHN PATTEN
Hi Monte… How accurate would the location location external identification be? If for example I was on a school campus, could it distinguish between classrooms? Or if I was at a conference, between meeting rooms? Just thinking out loud… Thank you! On Nov 15, 2012, at 3:10 PM, Monte Goulding

Re: Reuse an image

2012-11-15 Thread Paul Hibbert
Hi Peter, You would need to build a repeat loop to work through your images with something like… set the imageData of img "extRefImage" to the imageData of img "intImage" Beware that if your images are scaled that will affect the imageData. If the referenced images are identical to the i

Re: What happened to my message box ?

2012-11-15 Thread Alex Tweedly
Thanks Mike. I thought I had tried that - but I did have just a few more pixels left at the bottom of the screen, and including them in the window let me grab the divider. Thanks! -- Alex. On 15/11/2012 13:45, Mike Bonner wrote: Same thing happened to me (random hiccup) I just increased the

Re: Reuse an image

2012-11-15 Thread Phil Davis
Hi Peter, With images you can also do either of these: put img 1 into img 2 -- forces img 2 to be same dimensions as img 1 (unless #2 is locked) set text of img 2 to text of img 1 -- terminology is weird but it works, same as above Best - Phil Davis On 11/15/12 12:54 PM, Peter Bogdanoff

Re: Scrolling List Field/Table

2012-11-15 Thread Peter Haworth
That sounds promising! I'll check it out - somewhere in the release notes I assume. Pete lcSQL Software On Thu, Nov 15, 2012 at 3:44 PM, J. Landman Gay wrote: > On 11/15/12 5:18 PM, Peter Haworth wrote: > >> I would like to have a scrolling list field that includes a tab

Re: Scrolling List Field/Table

2012-11-15 Thread J. Landman Gay
On 11/15/12 5:18 PM, Peter Haworth wrote: I would like to have a scrolling list field that includes a table control within it. The challenge is to have the table field scroll when the list scrolls. Seems like the new paragraph features would be handy here. You can simulate a table with them a

Re: Reuse an image

2012-11-15 Thread Paul Hibbert
Mark, With all due respect, that's not what the OP requested… Quote: "I want to now replace many externally referenced images with their internal equivalents that I just imported. In other words, substitute the external with internal while keeping the old locs, scripts, etc., in place." Paul

Re: Reuse an image

2012-11-15 Thread Mark Schonewille
Hi Tim, If you need small thumbnails, it is best to resize the images and make a small copy of each big picture. You can do that with a photo editing application or inside LiveCode. If you want to make thumbnails in LiveCode, set the size of a big image to the desired thumbnail size, create a

Re: Reuse an image

2012-11-15 Thread Mark Schonewille
Hi, If the same images have the same size everywhere, please don't do that. You'd be using lots of memory for no reason. Just use buttons and set the icon of the buttons to the id of the images. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: htt

Re: Reuse an image

2012-11-15 Thread Paul Hibbert
Hi Peter, If I understand you correctly, you would need to build a repeat loop to work through your images with something like… set the imageData of img "extRefImage" to the imageData of img "intImage" Beware if your images are scaled, that will affect the imageData, they need to be the s

Re: Location-Based Push Message?

2012-11-15 Thread Monte Goulding
Contact me off list and ill price it up for you. I don't think it will be huge but keep in mind that removing the exits on suspend plist key is currently experimental until runrev says otherwise. -- M E R Goulding Software development services mergExt - There's an external for that! On 16/11/2

Scrolling List Field/Table

2012-11-15 Thread Peter Haworth
I would like to have a scrolling list field that includes a table control within it. The challenge is to have the table field scroll when the list scrolls. I have a scrollbarDrag handler that adds the newposition parameter to the top and bottom items of the table's rectangle. That does move the

Re: Location-Based Push Message?

2012-11-15 Thread Dan Friedman
Monte, Ok. Thanks for the info and insight. Could you write the external? Is it a big deal? I don't know how (and have never) done such a thing. -Dan > If I were limited to just what the engine provides then that's the way I'd do > it. If I needed this function I would write the external

Re: Location-Based Push Message?

2012-11-15 Thread Monte Goulding
If I were limited to just what the engine provides then that's the way I'd do it. If I needed this function I would write the external though. The user just needs to run the app once and from then it will work. There's no other way on any platform because how else can you find the users loc or u

Re: Location-Based Push Message?

2012-11-15 Thread Dan Friedman
Monte, So, your saying that in the confines of LC, it can't be done... not without the app running and polling the location every so often? -Dan > I think it would be. First step is to remove the exits on suspend plist entry > and add UIBackgroundModes location. Then check the location every

Re: [OT] LiveCode 6.0 - Upgrade, Update or Addon

2012-11-15 Thread J. Landman Gay
On 16/11/2012, at 7:11 AM, Peter Haworth wrote: I can understand that but in 6.0 is apparently available for download to anyone so how does that play with the NDA? Everything on the dev list is under NDA. I'm pretty sure no pre-release versions are available outside that list. The one person

Re: Location-Based Push Message?

2012-11-15 Thread Monte Goulding
C read my response to this thread. Neither a or b will work. -- M E R Goulding Software development services mergExt - There's an external for that! On 16/11/2012, at 9:17 AM, Dan Friedman wrote: > So, I need to either (A) figure out which users (UDIDs) are at the given > location, and send o

[ANN] lcMover plugin released; lcResTool updated

2012-11-15 Thread Charles E Buchwald
I've released a free, tiny little plugin I'm calling lcMover. It's sole task is to move your topmost window around, shoving it into the corners, or the middle edges, or the centre of your screen. It tries to avoid putting your window under the Mac menubar or the tool palette. It's handy when you

Re: Location-Based Push Message?

2012-11-15 Thread Dan Friedman
This is a Mobile app. I have a client (a baseball team) that want's to send a push message to all the fans (that have installed the mobile app) that are at the game at that moment. They don't want the user to have to launch the app, or do any type of "login" or tapping "I'm Here". So, I need

Re: Reuse an image

2012-11-15 Thread Mark Schonewille
This is how you reuse images, Peter. You use them as icons in buttons. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer KvK: 50277553 Use Color Converter to convert CMYK, RGB, RAL

Re: Reuse an image

2012-11-15 Thread Peter Bogdanoff
Thanks, Mark. That works for buttons, however can I do it for images? On Nov 15, 2012, at 12:38 PM, Mark Schonewille wrote: > Hi Peeter, > > Set the icon of a transparent button to the (short) id of the image. > > -- > > Economy-x-Talk > Consultancy and Software Engineering > http://economy-x

Re: My LiveCode IDE is sick

2012-11-15 Thread Peter Haworth
Thierry, Sorry I missed this in your email. Yes there is a problem with the arrow key navigation. They only work when you have the browse tool selected. In fact it's worse than that because if you select a control in lcStackBrowser and it is on an open card, the control is selected in the IDE.

Re: Reuse an image

2012-11-15 Thread Mark Schonewille
Hi Peeter, Set the icon of a transparent button to the (short) id of the image. -- Economy-x-Talk Consultancy and Software Engineering http://economy-x-talk.com Download Color Converter at http://www.color-converter.com Op 15-nov-2012, om 21:27 heeft Peter Bogdanoff het volgende geschreven:

Re: Reuse an image

2012-11-15 Thread Timothy Miller
I've been wondering about a similar question (assuming I understand this question) Once I import an image into one card, can I reference that image and display it on another card? For instance, if I want to display an index of thumbnail imported images from other cards. Hmm... I just re-read t

Reuse an image

2012-11-15 Thread Peter Bogdanoff
Hi, Simple task: I want to reuse an image that was imported as a control into a substack. I know I can copy and paste, but I want to now replace many externally referenced images with their internal equivalents that I just imported. In other words, substitute the external with internal while k

Re: [OT] LiveCode 6.0 - Upgrade, Update or Addon

2012-11-15 Thread Monte Goulding
Lol... Who knows. Better to keep quiet until release or told otherwise. -- M E R Goulding Software development services mergExt - There's an external for that! On 16/11/2012, at 7:11 AM, Peter Haworth wrote: > I can understand that but in 6.0 is apparently available for download to > anyone so

Re: Location-Based Push Message?

2012-11-15 Thread Monte Goulding
> Is it possible to send a push message to users of an app that are within a > given location? For example, I want to send a push message to all users of > my app that are within a 1/2 mile radius of a given latitude and longitude. I think it would be. First step is to remove the exits on suspe

Re: [OT] LiveCode 6.0 - Upgrade, Update or Addon

2012-11-15 Thread Peter Haworth
OK, so I think I need to understand the rules of the developer list a bit better. It sounds like members of the Developer list are under an NDA regarding any communications from RunRev on there - is that correct? I can understand that but in 6.0 is apparently available for download to anyone so h

Re: Location-Based Push Message?

2012-11-15 Thread Robert Sneidar
What is the difficulty? Sending the push message or calculating proximity? On Nov 14, 2012, at 2:13 PM, Dan Friedman wrote: > Is it possible to send a push message to users of an app that are within a > given location? For example, I want to send a push message to all users of > my app that ar

Re: What happened to my message box ?

2012-11-15 Thread Robert Sneidar
Ditto here. Very annoying. Not related to plugins as I have removed plugins on several occasions to test other issues, and the problem persists. I think it's a preferences bug. Bob On Nov 15, 2012, at 3:47 AM, Mike Bonner wrote: > Actually its every time I restart lc it resets to slightly ou

Re: Table DataGrid AddData Bug or documentation error?

2012-11-15 Thread Robert Sneidar
Yeah comes from my using my laptop which has a rule that moves this list emails to a special folder, and my iPad to read emails. Once I open my laptop all the current emails get moved, and I don't see them on the iPad, but I haven't read the original posts yet! Gotta stop doing that! Bob On N

Re: [ANN] Version 1.1.1 of lcStackBrowser Released

2012-11-15 Thread Robert Sneidar
That is EXACTLY what a crazy person would say! On Nov 10, 2012, at 12:48 PM, Magicgate Software - Skip Kimpel wrote: > and officially I am not the only one, so I am NOT crazy... whew! > > SKIP ___ use-livecode mailing list use-livecode@lists.run

Re: [OT] LiveCode 6.0 - Upgrade, Update or Addon

2012-11-15 Thread Andrew Kluthe
For some reason, I can't get accepted to the developers list (I think its because my supervisor did the purchasing for the developer program, and it's tied to his email). But I installed 6 dp1 and its very early indeed. But again, I don't think we are allowed to discuss that here. Although, if I am

Re: [OT] LiveCode 6.0 - Upgrade, Update or Addon

2012-11-15 Thread Michael Kann
Monte, Thanks, that was just the info I was looking for. Mike --- On Thu, 11/15/12, Monte Goulding wrote: From: Monte Goulding Subject: Re: [OT] LiveCode 6.0 - Upgrade, Update or Addon To: "How to use LiveCode" Date: Thursday, November 15, 2012, 1:40 PM Mike if you have the developer progra

Re: [OT] LiveCode 6.0 - Upgrade, Update or Addon

2012-11-15 Thread Monte Goulding
Mike if you have the developer program then ask about 6 on that list because nobody that has seen 6 is allowed to answer your questions on the use list. All we can really say is any dp 1 is going to be a very early release so unless your interested in what's next to offer feedback then it might

Re: [OT] Killer Anti-Virus App

2012-11-15 Thread Robert Sneidar
He likes bath salts. What a surprise. That was the first thing that I thought of when I first heard about this story. Bob On Nov 12, 2012, at 4:52 PM, Michael Kann wrote: > http://www.rawstory.com/rs/2012/11/12/antivirus-software-developer-accused-of-murder-in-belize/ > __

Re: [OT] LiveCode 6.0 - Upgrade, Update or Addon

2012-11-15 Thread Michael Kann
Richard, I was able to download 6.0.0 with my current Enterprise license. I always assumed that license made me a member of the Developer Program (but things have changed quite a bit since I last checked) . Anyway, I don't see any release notes anywhere so maybe they're not for public consumpti

Re: LiveCode Slides & Appstore Apps List

2012-11-15 Thread Robert Sneidar
Hi Rick. Someone else may have mentioned it but this list is probably not the best place to ask. Did you try Heather at supp...@runrev.com? Let her know you are trying to market more licenses and I will bet you get help right away. Heather does not seem to monitor this list, at least not as it

Re: [OT] LiveCode 6.0 - Upgrade, Update or Addon

2012-11-15 Thread Richard Gaskin
I think the 6.0 "Preview" is only available to members of the Developer Program, but I'm not sure how that could be dependent on the Linux deployment option. Weirder still, I recently tried to point a friend to where they could buy just a license for Mac OS X, and neither of us was able to fig

Re: [OT] LiveCode 6.0 - Upgrade, Update or Addon

2012-11-15 Thread Michael Kann
Kay and others, Would anyone like to share what they have found to be new and improved  in Livecode 6.0.-dp-1 ? I'm also somewhat confused about the array of wonderful products for purchase so if someone wants to provide the For Dummies version that would be great. Mike I --- On Wed, 11/14/1

Re: Location-Based Push Message?

2012-11-15 Thread Michael Kann
Dan, Where is the app, on mobile or the desktop? Mike --- On Wed, 11/14/12, Dan Friedman wrote: From: Dan Friedman Subject: Location-Based Push Message? To: use-livecode@lists.runrev.com Date: Wednesday, November 14, 2012, 6:13 PM Is it possible to send a push message to users of an app that

Re: What's Happened to the Script Editor?

2012-11-15 Thread Mark Wieder
Alex- Thursday, November 15, 2012, 2:27:35 AM, you wrote: > I have to disagree; it's a very useful button - it takes away a few > buttons (undo,redo,apply ...) which all have easy keyboard shortcuts (I > always use the shortcuts rather than the buttons), so it gives you > another line or two v

Re: What happened to my message box ?

2012-11-15 Thread Mike Bonner
Actually its every time I restart lc it resets to slightly out of view. *sigh* Either way still an annoyance. On Thu, Nov 15, 2012 at 6:45 AM, Mike Bonner wrote: > Same thing happened to me (random hiccup) I just increased the window size > a little till the divider showed. However now on 5.5.

Re: What happened to my message box ?

2012-11-15 Thread Mike Bonner
Same thing happened to me (random hiccup) I just increased the window size a little till the divider showed. However now on 5.5.3 it seems that every time I switch to the multiline pane the divider defaults to the bottom where it is barely otu of view and I have to do it again. Kinda a pain in t

Re: What's Happened to the Script Editor?

2012-11-15 Thread Alex Tweedly
I have to disagree; it's a very useful button - it takes away a few buttons (undo,redo,apply ...) which all have easy keyboard shortcuts (I always use the shortcuts rather than the buttons), so it gives you another line or two visible in the script editor itself at negligible cost. If there

What happened to my message box ?

2012-11-15 Thread Alex Tweedly
When I open the msg box, and then click on "multi-line", I used to get a window with 2 panes - top one to enter a script - lower one with its output. But now it gives me only a single pane (the output one) - there's nowhere to enter the script. What have I done ? :-) And more importantly,

My LiveCode IDE is sick

2012-11-15 Thread Thierry Douez
Hi, For the record, today on the forum I got the explanation of this Bug ! http://article.gmane.org/gmane.comp.ide.revolution.user/167374/match=daz3d Now, everyhing works much better :) HTH Thierry --- Any ideas what I could to make my livecod