Re: list field-a race to the bottom

2005-10-02 Thread J. Landman Gay
Rich Lague wrote: I'm not sure that is exactly my problem. The hilited line is already visible-- it was just clicked on. It jumps the hilited line from wherever it is in field to the very bottom line of the field. However, I can see that your suggestion will work for what I want. I'll give it

Re: stack position and flicker

2005-10-02 Thread Erik Hansen
--- Ken Ray <[EMAIL PROTECTED]> wrote: > It's better if you just change the rect of the > stack instead of changing the > height (which works from the vertical center of > an object) and then setting its top. you must have developed a very good sense of rectangular layout. setting the height,

Re: Scripting conference - times and dates available with log

2005-10-02 Thread J. Landman Gay
Troy Rollins wrote: On Oct 2, 2005, at 9:07 PM, J. Landman Gay wrote: I've just re-uploaded the Dates and Times scripting conference stack with its chat transcript. Sarah Reichelt did a fantastic job, and everything you ever wanted to know about tracking and using times and dates is in there

Re: Random Questions?

2005-10-02 Thread Jim Ault
Very true... " resets at the end of every handler" New users may not understand 'scope', and this behavior. My *caution* was really directed at those who WILL write long handlers because it is easier than figuring out functions and procedures. Most people working with fields construct something

Re: Scripting conference - times and dates available with log

2005-10-02 Thread Troy Rollins
On Oct 3, 2005, at 12:37 AM, Ken Ray wrote: http://support.runrev.com/scriptingconferences/ You can download all of the conferences to date from there. Oops. I missed that. ;-) I'd been to all the sites in my quick tour except the mother ship's. The RunRev site is looking really nice, an

Re: Scripting conference - times and dates available with log

2005-10-02 Thread Ken Ray
On 10/2/05 9:08 PM, "Troy Rollins" <[EMAIL PROTECTED]> wrote: > On Oct 2, 2005, at 9:07 PM, J. Landman Gay wrote: > >> I've just re-uploaded the Dates and Times scripting conference stack >> with its chat transcript. Sarah Reichelt did a fantastic job, and >> everything you ever wanted to know ab

Re: Raw Clipboard Contents

2005-10-02 Thread Phil Davis
Todd Geist wrote: Hello, I am working with an app that puts some data on the clipboard in a special format. I know that it just XML wrapped in something maybe a binary. I need to get that data, edit it and put it back. answer the keys of the clipboarddata Returns "", so none of the keys of

Raw Clipboard Contents

2005-10-02 Thread Todd Geist
Hello, I am working with an app that puts some data on the clipboard in a special format. I know that it just XML wrapped in something maybe a binary. I need to get that data, edit it and put it back. answer the keys of the clipboarddata Returns "", so none of the keys of clipboarddata will w

Re: list field-a race to the bottom

2005-10-02 Thread Rich Lague
On Sunday, October 2, 2005, at 02:47 PM, Sarah Reichelt wrote: I have made a list field for jumping to different cards in the stack-- and it works fine. But I do have a small interface annoyance because the click-on-line in the list field then jumps to the bottom of the list field. The only ti

Re: Scripting conference - times and dates available with log

2005-10-02 Thread Troy Rollins
On Oct 2, 2005, at 9:07 PM, J. Landman Gay wrote: I've just re-uploaded the Dates and Times scripting conference stack with its chat transcript. Sarah Reichelt did a fantastic job, and everything you ever wanted to know about tracking and using times and dates is in there. You'll want to down

Scripting conference - times and dates available with log

2005-10-02 Thread J. Landman Gay
I've just re-uploaded the Dates and Times scripting conference stack with its chat transcript. Sarah Reichelt did a fantastic job, and everything you ever wanted to know about tracking and using times and dates is in there. You'll want to download this one. Jacque -- Jacqueline Landman Gay

Re: revDocWiki

2005-10-02 Thread Russell Martin
I'm fairly new to Revolution. I recently purchased Dreamcard and while there are things that I really like about it, there have been several issues with it that took way too much time for me to either figure out work arounds on my own or search through the archives of this list for solution

Re: Random Questions?

2005-10-02 Thread Sarah Reichelt
On 10/2/05, Jim Ault <[EMAIL PROTECTED]> wrote: > And this is *definitely* a case where you should be SURE to reset the > lineDelimeter to a return character. All kinds of havoc could ensue if you > forget to undo this special setting. > > I would prefer to use >set the itemDelimeter to "|" >

Re: EXT.DLL

2005-10-02 Thread Ken Ray
On 10/2/05 1:02 PM, "N" <[EMAIL PROTECTED]> wrote: > > I believe I have asked this before but received no answer. Would it be > pssible to have the EXT.DLL source procided for download? You should send your request as an email to [EMAIL PROTECTED]; it is unlikely you'll get an answer for this o

Re: list field-a race to the bottom

2005-10-02 Thread Sarah Reichelt
> I have made a list field for jumping to different cards in the stack-- > and it works fine. But I do have a small interface annoyance because > the click-on-line in the list field then jumps to the bottom of the > list field. The only time this does not happen is when the list field > is scrolled

Re: Hidden Clipboard Contents

2005-10-02 Thread Todd Geist
Thanks Phil, But your suggestion returns nothing. The data that is on the clipboard isn't any of the common types. It stored in some sort of wrappper. Is there a way to get the raw data off the clipboard? Thanks Todd On 10/2/05 1:21 PM, "Phil Davis" <[EMAIL PROTECTED]> wrote: > Hi Todd, >

Re: stack position and flicker

2005-10-02 Thread Bob Hartley
You wrote: Hi Ken > On 10/2/05 1:39 PM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: Snip how I did it. > on mouseUp > put the rect of stack "Armbase" into tRect > put (item 2 of tRect) + 550 into item 4 of tRect > set the rect of stack "Armbase" to tRect > hide button Expand > show

Re: showLines (or hGrid) line thickness

2005-10-02 Thread Phil Davis
Hi Scott - If you're using hGrid lines, you could "set the borderColor of fld x" to a light gray and see what that looks like when printed. It should make the gridlines light enough that they won't overpower the text. While not really solving the problem, it may minimize the symptom. Phil Dav

Re: Hidden Clipboard Contents

2005-10-02 Thread Phil Davis
Hi Todd, It seems "the clipboarddata" is an array. Try this after copying something: answer the keys of the clipboarddata That should tell you what keys are available. Then you can use normal array syntax to get at your data, like this: put the clipboarddata["text"] into fld 1 HTH - Phi

showLines (or hGrid) line thickness

2005-10-02 Thread Scott Morrow
Greetings All, I'm trying to print a field with a line under the text. The showLines (or even hGrid) property serve the on-screen purpose. Unfortunately these lines are too thick when printed. Is there a way to control the thickness of the showLines or hGrid line? I can imagine several other

Re: stack position and flicker

2005-10-02 Thread Ken Ray
On 10/2/05 1:39 PM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > set the height of stack Armbase to 550 > > --now at this bit the stack is resized > > set the top of stack Armbase to stacktop > > --at this point the stack top is reset so it doesn't go off the top of the > screen > --how

stack position and flicker

2005-10-02 Thread rev
Hi All I have a stack with a collapse and expand buttons. She scripts of which are similar. Collapsing the stack is OK but if I expand the stack the top of it goes off the screen if I move the collapsed screen near the top and press the expand button. I fixed this with on mouseUp put the top of

EXT.DLL

2005-10-02 Thread N
I believe I have asked this before but received no answer. Would it be pssible to have the EXT.DLL source procided for download? Kevin -==-=-=-=-=-=-==-=-=-=-=-=-=-=-==-=-=-=-=-=- Disclaimer: Any resemblance between the above views and those of my employer, my terminal, or the view out my w

IDE Strangeness

2005-10-02 Thread Stephen Barncard
REV 2.6 - latest build OSX 10.3.9 Powerbook 17" 133 I'm having a strange problem with the IDE. I'm working with MySQL and Trevor's DB library (both of which work fine) - but I'm getting unpredictable behavior in the IDE after hours of working out database subroutines and debugging (with the u

list field-a race to the bottom

2005-10-02 Thread Rich Lague
I have made a list field for jumping to different cards in the stack-- and it works fine. But I do have a small interface annoyance because the click-on-line in the list field then jumps to the bottom of the list field. The only time this does not happen is when the list field is scrolled al

Re: Hidden Clipboard Contents

2005-10-02 Thread Stephen Barncard
Todd, you used my favorite word 'obfuscated'. The big question is... where in what application on what platform are you copying from? Some apps might maintain their own copy/paste systems sqb Hello Everyone, I need to get at and mess with some clipboard contents that have been obfusca

Hidden Clipboard Contents

2005-10-02 Thread Todd Geist
Hello Everyone, I need to get at and mess with some clipboard contents that have been obfuscated somehow. I know that there is data up there stored in an xml format that has been "wrapped" in something. But I can't get it. The clipboard function returns "empty" and the cliboarddata function retu

Re: Ontology manager, nifty palettes added to the education gallery

2005-10-02 Thread Marielle Lange
Dear Dick, Is the ontology manager called "rdf view" at lexicall.org? I tried to download "rdf view" but got a 404: "The requested URL /stacks/education/tools_plugins/rdf_view.rev was not found on this server." Thanks for letting me know... I uploaded, tested, changed the name, uploaded

RE: new kid on the block

2005-10-02 Thread MisterX
Thanks for that review Ken... It kind of shows that Neural Networks keep coming around... Interesting... And Hypercard just wont die! Certainly a valiant effort from that author but not much of a threat for rev it seems. How is HyperNext's performance comparable to Rev? BTW, I saw that link vi