ANN: PowerTools

2011-06-24 Thread Mark Wieder
All- Finally! I'm pleased to announce the release of PowerTools version 1.0. PowerTools is a drop-in replacement for the standard IDE tools palette. It works on OSX, Windows, and linux in LiveCode and MetaCard environments. It's been in beta test for over a year, and I am deeply appreciative for a

Re: Anyway to find the long id of an image which you know the id for?

2011-06-24 Thread Chipp Walters
Thanks Jacque and Richard. Bummer-- looks like I'll have to write a search function. On Fri, Jun 24, 2011 at 10:29 PM, J. Landman Gay wrote: > On 6/24/11 9:55 PM, Richard Gaskin wrote: > > I believe such references only work when the image object referred to is >> on the current card. >> >> I do

Re: [OT] Text analysis and author, anyone done it?

2011-06-24 Thread Peter Alcibiades
It can be done statistically. Various methods have been proposed and used. One general kind of measure is the probability of another word coming, as a function of the past n words. Another is to measure the length of gap between occurrences of pairs of a given word. There is technical literature

Re: Anyway to find the long id of an image which you know the id for?

2011-06-24 Thread J. Landman Gay
On 6/24/11 9:55 PM, Richard Gaskin wrote: I believe such references only work when the image object referred to is on the current card. I don't know of a way to find the long id of an image except by walking through a list of possible containers Oh. Right. I guess the best work-around, if

Re: Anyway to find the long id of an image which you know the id for?

2011-06-24 Thread Richard Gaskin
J. Landman Gay wrote: On 6/24/11 8:58 PM, Chipp Walters wrote: You can set the icon of a button to an image ID. But if you want to resize the button based on the size of the image, you need to find a way to reference the image. Of course the image could be in the topStack, and this would be no

Re: Anyway to find the long id of an image which you know the id for?

2011-06-24 Thread J. Landman Gay
On 6/24/11 8:58 PM, Chipp Walters wrote: You can set the icon of a button to an image ID. But if you want to resize the button based on the size of the image, you need to find a way to reference the image. Of course the image could be in the topStack, and this would be no problem. But if not, the

Re: dgColumnSortType

2011-06-24 Thread Pete
Got it, thanks. Pete Molly's Revenge On Fri, Jun 24, 2011 at 6:11 PM, Trevor DeVore wrote: > On Fri, Jun 24, 2011 at 8:06 PM, Pete wrote: > > > What is the difference between "datetime" and "system datetime" in the > > dgColumnSortType property of a datagrid col

Anyway to find the long id of an image which you know the id for?

2011-06-24 Thread Chipp Walters
You can set the icon of a button to an image ID. But if you want to resize the button based on the size of the image, you need to find a way to reference the image. Of course the image could be in the topStack, and this would be no problem. But if not, the following throws an error.: set the icon

Re: dgColumnSortType

2011-06-24 Thread Trevor DeVore
On Fri, Jun 24, 2011 at 8:06 PM, Pete wrote: > What is the difference between "datetime" and "system datetime" in the > dgColumnSortType property of a datagrid column? > The data grid uses the same parameters as the 'sort' command so datetime behaves the same way. The "system datetime" sets the

RE: The Wait command

2011-06-24 Thread Ralph DiMola
Woops CRs got mangled... I am a nu-be to LC. I needed to do this with a splash card. Display card for 7.5 second or until the user mouse clicks the image. Card script: on openCard send "finishsplash" to me in 7.5 seconds end openCard on finishsplash open card "jb_search" --(Or whateve

RE: The Wait command

2011-06-24 Thread Ralph DiMola
I am a nu-be to LC. I needed to do this with a splash card. Display card for 7.5 second or until the user mouse clicks the image. Card script: on openCard send "finishsplash" to me in 7.5 seconds end openCard on finishsplash open card "jb_search" --(Or whatever job need to be done) end f

dgColumnSortType

2011-06-24 Thread Pete
What is the difference between "datetime" and "system datetime" in the dgColumnSortType property of a datagrid column? Pete Molly's Revenge ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to

Re: The Wait command

2011-06-24 Thread J. Landman Gay
On 6/24/11 3:52 PM, Bob Sneidar wrote: See this is the perfect example of why some kind of multiple processing thing is needed. If you say wait until then no other processing can take place. The OP specifically wanted to block all other processes, so in this case "wait" is a good solution.

Re: The Wait command

2011-06-24 Thread Pete
Hi Bob, This is definitely new territory for me but I think perhaps the "with messages" option of the wait command does what you want. The dictionary indicates that "with messages" allows the user to carry on doing other things in LC while it is waiting for suspended handler to to resume. Pete Mol

Re: The Wait command

2011-06-24 Thread Pete
I didn't get that from the dictionary entry for wait, although I guess everything after "until" is just a compound condition. Never thought of that, thanks for the idea. Pete Molly's Revenge On Fri, Jun 24, 2011 at 1:53 PM, J. Landman Gay wrote: > On 6/24/11 2:

Re: The Wait command

2011-06-24 Thread John Craig
This works for what I understand the original scenario was. If you click button 1, it waits either until the 10 seconds has elapsed or until button 2 is pressed. :) Add 2 buttons to a new stack; 1st button script; on mouseUp set the uFlag of this card to false put the millisecs + 1000

Re: The Wait command

2011-06-24 Thread Pete
Thanks - sounds like this is trivial. Wouldn't it be nice though if the wait command could do "wait until or " Pete Molly's Revenge On Fri, Jun 24, 2011 at 1:26 PM, John Craig wrote: > Try something like; > > Put the millisecs + 5000 into tTime > Repeat until

Re: The Wait command

2011-06-24 Thread J. Landman Gay
On 6/24/11 2:58 PM, Pete wrote: Trying to figure out how to suspend processing until either a condition is true OR a specific amount of time has elapsed. Looks like the wait command allows one or the other but not both. Any ideas how to do this? You can use both in a wait command, for example

Re: The Wait command

2011-06-24 Thread Bob Sneidar
See this is the perfect example of why some kind of multiple processing thing is needed. If you say wait until then no other processing can take place. Even in the repeat loop it doesn't help. If the condition is triggered by some kind of execution the even will never happen because you are wa

Re: The Wait command

2011-06-24 Thread John Craig
Try something like; Put the millisecs + 5000 into tTime Repeat until the millisecs > tTime or the uFlag of this card = true Wait for 100 millisecs with messages End repeat Sent from my iPhone On 24 Jun 2011, at 20:58, Pete wrote: > Trying to figure out how to suspend processing until either a

Re: The Wait command

2011-06-24 Thread Mark Schonewille
Hi Pete, There are so many way to do what you want that the following is bound to look silly. local lTimer,lCondition on foo theSeconds if the seconds - theSeconds >= lTimer and lCondition is true then -- do something here else send "foo theSeconds" to me in 1 sec end if end foo

The Wait command

2011-06-24 Thread Pete
Trying to figure out how to suspend processing until either a condition is true OR a specific amount of time has elapsed. Looks like the wait command allows one or the other but not both. Any ideas how to do this? Pete Molly's Revenge ___

Re: force exit of mouseDown?

2011-06-24 Thread Bob Sneidar
That would make a good LiveCode article. Bob On Jun 24, 2011, at 10:39 AM, Richard Gaskin wrote: > Nicolas Cueto wrote: > >> mouseStillDown, for example. When part of a script set as a behavior, >> mouseStillDown would not work. But that same script with the same >> mouseStillDown handler, wh

Re: force exit of mouseDown?

2011-06-24 Thread J. Landman Gay
On 6/24/11 12:39 PM, Richard Gaskin wrote: In addition to handling simple drags like a splitter, drag-and-drop operations can be handled using the messages provided for those (dragStart, dragMove, dragDrop, dragEnd) far more simply than emulating drag-and-drop behaviors with mouseStillDown. Un

Re: force exit of mouseDown?

2011-06-24 Thread Richard Gaskin
Nicolas Cueto wrote: mouseStillDown, for example. When part of a script set as a behavior, mouseStillDown would not work. But that same script with the same mouseStillDown handler, when actually stored as a button's script, worked as expected. In a way that's kinda good news, as mouseStillDown

Re: textstyles lost

2011-06-24 Thread Bob Sneidar
Try paste special in word. Bob On Jun 24, 2011, at 6:45 AM, Martin Meili wrote: > Hi, > how can I avoid getting the textstyles lost when I copy the text from a > textfield (with its textformattings) over the clipboard into an application > textdocument (e.g. Word)? > Thanks for any replies >

Re: [OT] Text analysis and author, anyone done it?

2011-06-24 Thread Bob Sneidar
It would take more than logic to determine that. If a program was the thing that made that decision I would be very doubtful of it's results. Bob On Jun 24, 2011, at 5:45 AM, Peter Alcibiades wrote: > No, not quite. Those test to see does a given text derive from some others. > What I need

Re: Focus question

2011-06-24 Thread Bill Vlahos
Sims, It does do that but I don't want it to float above everything. Bill Vlahos _ InfoWallet (http://www.infowallet.com) is about keeping your important life information with you, accessible, and secure. On Jun 23, 2011, at 9:03 PM, Jim Sims wrote: > > On Jun 24, 2011, at 1:1

Re: Focus question

2011-06-24 Thread Bill Vlahos
Terry, Good suggestion. Thank you, Bill Vlahos _ InfoWallet (http://www.infowallet.com) is about keeping your important life information with you, accessible, and secure. On Jun 23, 2011, at 4:54 PM, Terry Judd wrote: > On 24/06/2011 09:16 AM, "Bill Vlahos" wrote: > >> I figu

[ANN] MobGUI Joins LiveCode Marketplace

2011-06-24 Thread Heather Nagey
Dear list folks, I'm delighted to welcome MobGUI to the LiveCode Marketplace family. This great little plugin makes it easy and fun to add that native look and feel to your LiveCode iOS applications. John Craig is of course a well known and respected member of this community, and we look fo

Re: textstyles lost

2011-06-24 Thread Mark Schonewille
Hi Martin, set the clipboarddata["rtf"] to the rtfText of the target -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer KvK: 50277553 New: Download the Installer Maker Plugin 1.6 f

Re: force exit of mouseDown?

2011-06-24 Thread Nicolas Cueto
> In what way? mouseStillDown, for example. When part of a script set as a behavior, mouseStillDown would not work. But that same script with the same mouseStillDown handler, when actually stored as a button's script, worked as expected. One other thing I noticed during development and had though

Re: Visual effect transition from a card to another with sound on iOS

2011-06-24 Thread Christian Langers
Exactly what is written : 1. visual effect 2. gone to next card 3. sound I tried this already... :( Christian Le 24 juin 2011 à 15:37, Thomas McGrath III a écrit : > What happens if you reverse the order? > visual effect... > go next > it environ > > -- Tom McGrath III > http://lazyriver

textstyles lost

2011-06-24 Thread Martin Meili
Hi, how can I avoid getting the textstyles lost when I copy the text from a textfield (with its textformattings) over the clipboard into an application textdocument (e.g. Word)? Thanks for any replies Cheers Martin ___ use-livecode mailing list us

Re: Visual effect transition from a card to another with sound on iOS

2011-06-24 Thread Thomas McGrath III
What happens if you reverse the order? visual effect... go next it environ -- Tom McGrath III http://lazyriver.on-rev.com 3mcgr...@comcast.net On Jun 24, 2011, at 7:20 AM, Christian Langers wrote: > Hello, > > does anybody know of an elegant solution to have this transition done > simultan

Re: force exit of mouseDown?

2011-06-24 Thread Richard Gaskin
Nicolas Cueto wrote: I've just learnt a new handler, mouseStillDown, and, more significantly, that behavior scripts don't handle mouse handlers as expected. In what way? -- Richard Gaskin Fourth World LiveCode training and consulting: http://www.fourthworld.com Webzine for LiveCode deve

LiveCode 4.6.2 Released

2011-06-24 Thread Heather Nagey
Dear List Members, I’m delighted to announce the release of LiveCode 4.6.2 which is now available to download. If you have a 4.6 LiveCode license, you will be able to download this update for free from your account. In addition to upgrades in the desktop engine and some important bug fix

LiveCode.tv Event #29

2011-06-24 Thread Mark Schonewille
Dear LiveCode users, While celebrating the release of LiveCode 4.6.2, we invite you for another edition of the LiveCode.tv event. This weekend's event is scheduled for 25th June 2011 at 19:00h GMT (Sat. 22:00 in Moscow, Sat. 20:00 in Paris, Sat. 14:00 in New York, Sat. 11:00 in Los Angeles, Sun

Re: LiveCode 4.6.2 released

2011-06-24 Thread Andre Garzia
Damn you are right the download link was removed! Argh! Talking about usability, this is bad. On Fri, Jun 24, 2011 at 9:49 AM, Mark Schonewille < m.schonewi...@economy-x-talk.com> wrote: > Hi Andre, > > How? I don't manage. I see no links to download the files and I'll need a > trial license. >

Re: LiveCode 4.6.2 released

2011-06-24 Thread Mark Schonewille
Hi Andre, How? I don't manage. I see no links to download the files and I'll need a trial license. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer KvK: 50277553 New: Download t

Re: [OT] Text analysis and author, anyone done it?

2011-06-24 Thread Peter Alcibiades
No, not quite. Those test to see does a given text derive from some others. What I need to know is, whether this text, which is likely originally authored, was authored by the same person as this other. Its like, did St Paul write the Epistle to the Hebrews, given that we know he wrote the one t

Re: LiveCode 4.6.2 released

2011-06-24 Thread Andre Garzia
Mark, Just logout from the store and download the trial with no user. :-D On Fri, Jun 24, 2011 at 9:12 AM, Mark Schonewille < m.schonewi...@economy-x-talk.com> wrote: > Unfortunately, people who DO have an account on the RunRev store website > are UNABLE to download a trial version. Does anyone

Re: LiveCode 4.6.2 released

2011-06-24 Thread Mark Schonewille
Unfortunately, people who DO have an account on the RunRev store website are UNABLE to download a trial version. Does anyone know why? Don't tell me to make another account. I am already receiving every e-mail from the marketing department in 5-fold, I don't need another registration with RunRe

revVideograbber-iSight bug fixed in Mac OS X 10.6.8

2011-06-24 Thread Martin Koob
Good news for those wanting to use revVIdeoGrabber for capturing video on the Mac. The newly released update to Snow Leopard 10.6.8 fixes a bug in Mac OS X that resulted in part of the preview window being covered by a coloured area when using the built in iSight camera. Bug report #9215.

Visual effect transition from a card to another with sound on iOS

2011-06-24 Thread Christian Langers
Hello, does anybody know of an elegant solution to have this transition done simultaneously ? I'm using this : visual effect "push left" if environment() is not "development" then iphonePlaySoundOnChannel getSound("load"), "Transient", "now" go next In the development environment and in the

Re: LiveCode 4.6.2 released

2011-06-24 Thread Mark Schonewille
Thanks, Matthias, I saw an announcements on Facebook but not on this list. Looks like RunRev is switching to social media ;-) -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer KvK

LiveCode 4.6.2 released

2011-06-24 Thread Matthias Rebbe
Hi, today i wanted to redownload LiveCode from my account and saw that Version 4.6.2 was released. So i thought i would share that info with the list. Regards, Matthias ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url

Re: [OT] Text analysis and author, anyone done it?

2011-06-24 Thread Robert Brenstein
You mean like turnitin or crot? http://turnitin.com/static/index.php http://www.siberiasoft.com/ Robert ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferenc

[OT] Text analysis and author, anyone done it?

2011-06-24 Thread Peter Alcibiades
Has anyone implemented anything in LC which takes a passage of text and then does statistical analysis to see whether another passage was written by the same author? Or do you know of any implementation in any other language for that matter...? Peter __