How do I uninstall the revWeb plugin?

2010-03-30 Thread paul foraker
For testing purposes, I need to uninstall the revWeb plugin. What's the cleanest way to do that? -- Paul ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

Re: Emailing within Rev

2009-10-08 Thread Paul Foraker
Is there a way to use Shao Sean's smtp library to send HTML-based e-mail? On Wed, Oct 7, 2009 at 9:59 PM, Jan Schenkel janschen...@yahoo.com wrote: Chipp Walters once wrote a wrapper for Shao Sean's library. You can download it from the Altuit Revolution Resources site Downloads section:

Re: ANN: TwistAWord as Facebook Application

2009-10-04 Thread Paul Foraker
I ran it on Firefox/Snow Leopard and it worked great. Didn't try Safari. On Sun, Oct 4, 2009 at 2:37 PM, Sannyasin Sivakatirswami ka...@hindu.orgwrote: Mark, fantastic! Can't wait to show this off to others to give them an idea of what can be done with the new plug in. Of course we have to

Re: set the textStyle to not bold

2009-10-03 Thread Paul Foraker
Beat, The htmlText solution I proposed will also work for boxed text that is also bold and underline: pHere isbox ubsome/b/u/box text/p You can simply replace the box tags with empty, leaving the underline and bold. And, it will handle the spaces between words as well. But, it sounds like

Re: set the textStyle to not bold

2009-10-02 Thread Paul Foraker
Riffing on Devin's: repeat with i = 1 to the number of words in fld thefield get the textStyle of word i of fld thefield if it contains bold then replace bold with plain in it set the textStyle of word i of fld thefield to it end if end repeat -- Paul On Fri, Oct 2, 2009 at 11:46 AM,

Re: set the textStyle to not bold

2009-10-02 Thread Paul Foraker
This would be a way to follow Craig's suggestion: put the htmlText of fld 1 into temp replace b with in temp replace /b with in temp set the htmlText of fld 1 to temp -- Paul On Fri, Oct 2, 2009 at 3:39 PM, dunb...@aol.com wrote: The proffered scripts all necessitate that the

Re: Practical limits on object counts

2009-10-02 Thread Paul Foraker
On Fri, Oct 2, 2009 at 5:44 PM, Richard Gaskin ambassa...@fourthworld.com wrote: Have any of you worked on stacks with an insane number of objects on a card (5,000)? What issues did you encounter? I have a bead pattern generator that dynamically clones a small graphic to produce 4,634 of them

Re: Emailing a Rev file

2009-09-27 Thread Paul Foraker
I have used the free service at http://www.yousendit.com for successfully transferring executables. -- Paul On Sun, Sep 27, 2009 at 11:49 AM, Richmond Mathewson richmondmathew...@gmail.com wrote: Gabel Paul wrote: Hello everybody: I made a .zip file from a standalone built for Mac OS X

Re: [teaser] Mac OS X external

2009-09-20 Thread Paul Foraker
I keep hoping for set the style of this stack to cocoa -- Paul On Sun, Sep 20, 2009 at 8:43 AM, Shao Sean shaos...@wehostmacs.com wrote: Working on an external for helping Mac applications in Rev look and feel more like Mac OS X applications. Current features include: setWindowModified

Fwd: Obey dontSearch properties -- not working?

2009-09-15 Thread Paul Foraker
(Reposting due to bounce) Using Rev Studio 3.5, I have a 1,200 card stack with 59 fields. I want to replace a single character in any of the fields except one. I have that field's dontSearch property set to true. I set that in the Property Inspector and then tested it in the Message Box. I bring

Re: Fwd: Obey dontSearch properties -- not working?

2009-09-15 Thread Paul Foraker
On Tue, Sep 15, 2009 at 6:23 PM, J. Landman Gay jac...@hyperactivesw.comwrote: I just did a quick test and it works here in 3.5. I tried searching for both a whole word and a single letter. I don't have any diacriticals in my test text though, I wonder if the glitch is with that. Does your

MySQL error - duplicate entry

2009-07-12 Thread paul foraker
Hi, I'm getting a MySQL error in a handler that is based on the newRecord handler from the Working with Databases sample stack. This handler is updating a table named 'groups'. The columns are id, grp_id, member_id There are currently 60 rows, with id = 1 to 60 Whereas in the newRecord handler

Re: MySQL error - duplicate entry

2009-07-12 Thread paul foraker
Duplicate entry '0' for key 1 I found the problem. The ID column was not set to autoincrement. -- Paul ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

re: RGB values for a color name

2009-07-05 Thread paul foraker
I've put up a one-card stack at http://www.whitefeather.com/tools/colormehexed/ which consolidates some color management stuff I've been working on for the past several months. Jacque Gay, Alex Tweedly, and Chipp Walters were unwitting contributors. (Advisory: I haven't looked at this stack on

Re: High ASCII character translation code thingy

2008-11-30 Thread paul foraker
On Sat, Nov 29, 2008 at 5:02 PM, Mark Schonewille [EMAIL PROTECTED] wrote: put uniencode(myXML,UTF8) into myUnicodeString set the unicodeText of fld x to myUnicodeString You might use Rev's XML features to read the data. Thank you, Mark. That was the breakthrough I needed. On Jacque's

High ASCII character translation code thingy

2008-11-29 Thread paul foraker
Hi, I'm doing some volunteer work for a non-profit. They're sending me an XML export from a Netsuite database server, emailed to me weekly. The file contains a transaction log which I need to parse in order to update a Rev-based database. For ease, and because the file is not huge, I'm opening it

Re: exclude

2008-05-19 Thread Paul Foraker
Thank you-all. I'm so happy to be 'without' ! ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

exclude

2008-05-17 Thread Paul Foraker
Coming from the HyperTalk world, 'filter' is great. But how about the opposite? Is there a command that replaces the container contents with every line that does not include the indicated string? -- Paul ___ use-revolution mailing list

Re: unpacking

2008-03-02 Thread Paul Foraker
Ault Las Vegas On 3/1/08 10:57 PM, Paul Foraker [EMAIL PROTECTED] wrote: Turns out the problem was in the calling handler, but this is a little weird. When I reported just now that I'd fixed it by passing j already prepended to the seconds, I had only tried that from the Message Box

unpacking

2008-03-01 Thread Paul Foraker
I'm building a stack that is a data entry app for a daily journal. Once the day's entries have been posted (emailed to myself), I want to store them in the stack. I came up with a scheme of prepending j to the seconds representing the day and using that as the name of a custom property. No problem

Re: unpacking

2008-03-01 Thread Paul Foraker
Problem solved, but I don't know why. If I pass jDate with the j already prepended, it works. -- Paul On 3/1/08 9:32 PM, Paul Foraker [EMAIL PROTECTED] wrote: I'm building a stack that is a data entry app for a daily journal. Once the day's entries have been posted (emailed to myself

Re: unpacking

2008-03-01 Thread Paul Foraker
answer Sorry, there's no journal for jDate . since jDate is the name of the custom property and contains no data itself, and why would you want to delete char 1 of jDate? Hope this helps Jim Ault Las Vegas On 3/1/08 9:32 PM, Paul Foraker [EMAIL PROTECTED] wrote: I'm building a stack

Re: unpacking

2008-03-01 Thread Paul Foraker
be closed prior to execution -- of a handler in the main stack end mouseUp I would call that a bug. -- Paul On Sat, Mar 1, 2008 at 10:44 PM, J. Landman Gay [EMAIL PROTECTED] wrote: Paul Foraker wrote: I'm building a stack that is a data entry app for a daily journal. Once the day's entries

field problem

2007-04-15 Thread Paul Foraker
Hi, In Rev Media 2.7.4 (Mac), I manually copied a scrolling field and its text from one stack and pasted it into a substack of the stack. In the source stack, I can edit the text. But, in the destination stack, I cannot edit the text in the field. The new uneditable field is not locked. The

Re: field problem

2007-04-15 Thread Paul Foraker
the msg box. It's one of the Basic Properties. Joe Wilkins On Apr 15, 2007, at 1:28 PM, Paul Foraker wrote: Hi, In Rev Media 2.7.4 (Mac), I manually copied a scrolling field and its text from one stack and pasted it into a substack of the stack. In the source stack, I can edit the text

Re: field problem

2007-04-15 Thread Paul Foraker
scrolling field and paste the text from the original. -- Paul On 4/15/07, J. Landman Gay [EMAIL PROTECTED] wrote: Paul Foraker wrote: Hi, In Rev Media 2.7.4 (Mac), I manually copied a scrolling field and its text from one stack and pasted it into a substack of the stack. In the source stack

Re: field problem

2007-04-15 Thread Paul Foraker
: On Sun, 15 Apr 2007 14:30:44 -0700, Paul Foraker wrote: Behavior is the same with Focusable true or false, except that with it set to false, the insertion point doesn't appear at all. Is it possible that you're trapping any of the key messages (keyDown/keyUp, rawKeyDown/up, etc

Re: OT: Regex

2004-01-13 Thread Paul Foraker
According to my non-resident genius cousin (computer science student at UCSB), -- BEGIN IM TRANSCRIPT -- me: do you know what m|nk means? him: sure, in a programming context, it means if m bitwise or with n is greater than k me: thank you! him: sure sure me: and... what's it mean? him: