Re: Card Vertical Scrollbars

2010-12-22 Thread Peter Haworth
Thanks Jacquie. Is it so unreasonable to expect that a scrollbar on a group should just work? I don't have the time or the inclination to write volumes of code to implement what should be a standard feature. At least document what is required to make a scrollbar work. Datagrid scrollbar

Re: Card Vertical Scrollbars

2010-12-22 Thread J. Landman Gay
On 12/22/10 4:29 PM, Peter Haworth wrote: The scrollbar isn't active because everything in the group fits in the window. So I resize the window and make it shorter - no change in the scrollbar, still not active. OK, maybe this only works in a standalone? Whatever you see in the stack will be t

Re: ChartsEngine - Copy chart to another stack

2010-12-22 Thread Roger . E . Eller
I - Roger Eller wrote: > Hint: chartsdelete > > Can someone provide a clue about this hint? Also, I want to use my chart in a revlet. How do I include ChartsEngine in the revlet? Nevermind about the hint/error. After I closed the stack I copied the chart from, it was working again. I do still n

ChartsEngine - Copy chart to another stack

2010-12-22 Thread Roger . E . Eller
This is my first time using ChartsEngine 1.0 (bought with a bundle a few years ago). Anyway, I modified the example line chart and had it working great. I copied all of the groups of the chart into another stack, and the copy gives me a 'hint' of an error. error: 347,0,0 76,1350,17 144,1350,1 4

Re: Msg box outta here

2010-12-22 Thread J. Landman Gay
On 12/22/10 5:41 PM, dunb...@aol.com wrote: But, no returnInField message was ever trapped; the breakpoint may as well have not been there. Is Script Debug Mode checked in the Development menu? I wonder if that's what's wrong. Breakpoints won't break if that isn't checked. I am done with i

Datagrid Error in Standalone

2010-12-22 Thread Peter Haworth
Getting this error in a standalone, doesn't happen in the IDE: Type: Handler: error in statement Object: group 'TaskList' of group 'DB_Activities' of card 'DB_Activities' of stack 'Tasks' of stack '/Applications/BandTrak/ BandTrak.app/Contents/MacOS/BandTrak' Line: Line Num: 0 Hint: _table.De

Re: Msg box outta here

2010-12-22 Thread DunbarX
Jacques. Tried fooling around per your suggestion. As usual with 4.5.2, I cannot make anything stick. As soon as I placed a breakpoint in the returnInField handler, msg started working. Tried a half dozen new sessions, new mainstack. No other software open. A command from msg such as "answer

Path Animation And Collision Detection?

2010-12-22 Thread JOHN PATTEN
Hi All... I'm wondering if anybody has an example of multiple graphic objects animated individually on separate paths that will report back a collision between themselves? Could the intersect function be a solution? Eventually, I'm thinking about deploying on iPhone or iPad, so is it correct t

Re: Card Vertical Scrollbars

2010-12-22 Thread Peter Haworth
I just tried this as a workaround for the screen resolution issues I've been having and ran into a number of problems. I used "select all" from the edit menu to select all the objects on the card, then grouped them and requested a vertical scrollbar. First problem - the group width did not

Re: any known LC bugs with handwriting pen input?

2010-12-22 Thread Chipp Walters
I assume you are talking about TabletPC? IIRC, LC never did have full support for TabletPC, so it would not surprise me if there are issues. On Wed, Dec 22, 2010 at 10:36 AM, Tiemo Hollmann TB wrote: > Hello, > > LC 4.2, Win 7 > > A customer of mine uses the handwriting recognition with pen inpu

Re: any known LC bugs with handwriting pen input?

2010-12-22 Thread Phil Davis
Is the text from pen input in a Unicode format? Maybe it will work if you handle it as UTF-8. (Just guessing) Best - Phil Davis On 12/22/10 8:36 AM, Tiemo Hollmann TB wrote: Hello, LC 4.2, Win 7 A customer of mine uses the handwriting recognition with pen input. When he enters a word into t

Re: mouseButtonNumber

2010-12-22 Thread Ken Ray
You can use the mouse() function, looking for a "down" result: if mouse(1) is "down" if mouse(2) is "down" if mouse(3) is "down" Ken On 12/22/10 1:16 PM, "David Bovill" wrote: > Hi Mark, not quite. I have a handler - something like: > > command mimickMouseUp >> put getMouseButtonNumber() i

Re: Dispatch and send

2010-12-22 Thread Peter Brigham MD
On Dec 22, 2010, at 12:56 PM, Richard Gaskin wrote: David Bovill wrote: Anyone got a reason for this being Appropriate behavior? dispatch "beep" to this cd -- no beep send "beep" to this cd -- a beep Interestingly, running this in the Message Box: dispatch "beep" to this cd; put it ...y

Re: window size

2010-12-22 Thread Peter Haworth
I agree, the user base and the design of the application should determine how you deal with window resizing. I guess it's such a new problem to me that I'm still trying to get my head around what needs to be done for my particular application. I'm trying out the NativeGeometry tool and I'

Re: Issue with Twitter search

2010-12-22 Thread David Bovill
Hi Bryan, what is the function you want - maybe I can help... I've not updated my Twitter stuff since they turned off basic authentication, but the search apidoes not require any authentication any way. Maybe the Twitter

Re: Msg box outta here

2010-12-22 Thread J. Landman Gay
On 12/22/10 12:56 PM, dunb...@aol.com wrote: I know that it is only me, but now the msg box will simply fail to work at all. Went back to 4.5.0, where all is well. If you are up for some debugging you might be able to find what's wrong. Since you can't use the message box to issue the command

Re: Dispatch and send

2010-12-22 Thread David Bovill
I'd say it's a bug? On 22 December 2010 17:56, Richard Gaskin wrote: > David Bovill wrote: > > Anyone got a reason for this being Appropriate behavior? >> >> dispatch "beep" to this cd -- no beep >> >>> send "beep" to this cd -- a beep >>> >> > Interestingly, running this in the Message Box: >

Re: mouseButtonNumber

2010-12-22 Thread David Bovill
Hi Mark, not quite. I have a handler - something like: command mimickMouseUp > put getMouseButtonNumber() into pMenuButtonNum > if pMenuButtonNum = 3 then > doSomething > end if > end mimickMouseUp > > function getMouseButtonNumber > -- ? > end getMouseButtonNumber > Assuming there is

Msg box outta here

2010-12-22 Thread DunbarX
I know that it is only me, but now the msg box will simply fail to work at all. Went back to 4.5.0, where all is well. Crfaig Newman ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage

re: window size

2010-12-22 Thread Joe Lewis Wilkins
Pete, In my opinion, it's a matter of determining your user base. With large and multiple screens all the vogue in my profession, I'm not worrying too much about all of this; just providing an initial caveat that a certain minimum sized screen, or multiple screens, will best service the program

Re: mouseButtonNumber

2010-12-22 Thread Mark Schonewille
Hi David, Do you mean this? dispatch "mouseUp" to btn x with 3 -- 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.5 for Li

Re: Dispatch and send

2010-12-22 Thread stephen barncard
I've noticed that the message box world has been little strange for some commands. In the past, answer "Prompt" in the msg box would *not*show the dialog but answer "Prompt"; put it * does* show the answer dialog I have not checked t

mouseButtonNumber

2010-12-22 Thread David Bovill
This is the param that mouseUp and mouseDown pass. From the docs: The mouseButtonNumber specifies which mouse button was pressed: * 1 is the mouse button on Mac OS systems and the left button on Windows and Unix systems. * 2 is the middle button on Unix systems. * 3 is the right button

Re: Dispatch and send

2010-12-22 Thread Richard Gaskin
David Bovill wrote: Anyone got a reason for this being Appropriate behavior? dispatch "beep" to this cd -- no beep send "beep" to this cd -- a beep Interestingly, running this in the Message Box: dispatch "beep" to this cd; put it ...yields "unhandled" You get the same with any build-in

Dispatch and send

2010-12-22 Thread David Bovill
Anyone got a reason for this being Appropriate behavior? dispatch "beep" to this cd -- no beep > send "beep" to this cd -- a beep > ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage you

Re: Geometry Manager Re: Stack window/screen sizes

2010-12-22 Thread Peter Haworth
That's along the lines of what I have in mind. I've started to play around with some code to do this but I'm already finding lots of gotchas that I hadn't thought about, plus I still haven't figured out how to deal with font sizes. I'm definitely not a GUI expert but I'm thinking of provid

any known LC bugs with handwriting pen input?

2010-12-22 Thread Tiemo Hollmann TB
Hello, LC 4.2, Win 7 A customer of mine uses the handwriting recognition with pen input. When he enters a word into the handwriting recognition, hits enter to enter the recognized word into a field in my program, the field input has a space after each character of the word. Example, he writes "te

Re: Help me with my inability to see a simple solution

2010-12-22 Thread william humphrey
Ken that is too easy and simple. Even I can understand it at a glance. Can't possibly work. Thanks everyone for lots of excellent answers! ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and mana

Re: Help me with my inability to see a simple solution

2010-12-22 Thread Nonsanity
That's a very clean and simple solution, Ken. I've enjoyed looking at all the methods people have used for this simple task. I'd go with yours if speed wasn't an issue - that is, the lengths of data were about as long as the sample and not a megabyte or more of the stuff. I wrote mine with speed i

Re: How to use Apple Frameworks in External tutorial

2010-12-22 Thread JosepM
Well, the correct question is: How to use Cocoa Framework to build a external for LiveCode. :) Salut, Josep -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/How-to-use-Apple-Frameworks-in-External-tutorial-tp3160698p3160726.html Sent from the Revolution - User m

How to use Apple Frameworks in External tutorial

2010-12-22 Thread Josep M Yepes
Hi, Someone have any experience about how use the Apple Frameworks to build a Externals? I don't have idea how to include the "x.h" into the XCode project and how prepare de environment. I followed the tutorial with exit, but now I want include some Frameworks inside. Any help or

Re: App Store -- not only XCODE apps ?

2010-12-22 Thread Björnke von Gierke
On 22 Dec 2010, at 11:46, Ruslan Zasukhin wrote: > They now accept not only XCODE apps? Correct. The USA government started to stir, so Steve backed down. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, u

Re: App Store -- not only XCODE apps ?

2010-12-22 Thread Ruslan Zasukhin
On 12/21/10 10:25 PM, "John Craig" wrote: > Hi, Marc. I submitted a test app earlier today - it's at the 'Waiting > for review' stage. Guys, Please correct me if I am wrong. I believe in first days when was shown AppStore Guidliines I have read that only XCODE made apps can be accpeted. Yes

Re: Getting a public IP address when connected to a router

2010-12-22 Thread Medard
Medard wrote: > Now, a little grepping would help ;-) I went with a simpler solution... in the line beginning with "descr:" I can read that's me ;-) (the ADSL node, in gross) that's sufficient, since I don't have a bunch of readers in my small town ;->