Re: How do you resize a snapshot from rect?

2010-11-17 Thread Mark Wieder
William-

Wednesday, November 17, 2010, 7:29:17 AM, you wrote:

 Hi there all,

 I take a snapshot from a card put I want the exported file to be saved
 resized (bigger).
 I do the same with printing but then I set the printscale to 1.8.
 Can anyone tell me what the best way is to do this?

  --
 set the fileType to ogleJPEG
ask file Save: with *.jpg
if char -4 to -1 of it  .jpg then put .jpg after it
export snapshot from rect -2,48,507,557  of this card to file it as JPEG
 -

Here's how I do resized snapshots:

import snapshot from control id tControl
set the resizequality of the last image to best
set the width of the last image to tWidth
set the height of the last image to tHeight

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Why Does this Behavior Fail?

2010-11-17 Thread Mark Wieder
S-

Wednesday, November 17, 2010, 5:07:10 PM, you wrote:

 I love it... simple is better who needs behaviors if you don't need
 behaviors (hehe, though I still would like to know why it did not work...)

Memory's failing me here, but I think there was a thread recently
about mouseWithin messages not getting passed properly to behavior
objects...

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Reports and Formatted Text

2010-11-15 Thread Mark Wieder
Mike-

Monday, November 15, 2010, 6:41:11 AM, you wrote:

 (Note that I posted this to the forum, but no answer, perhaps its too RTFM)

I think most of us here don't look at the web forum...

 The front page, I know how to do just fine in LiveCode, but how
 do I get the formatted text on the 'calculated' page?

OK - I'm a bit confused by your terminology - do you want to create a
webpage or an app? With no internet connectivity at the site I'm
assuming you're talking about an app. In that case, what I'd do is
have two pages in the stack: the first being the input form and the
second being the calculated results. On the second page, use the
property editor to set the text fonts the way you want. Then have
buttons on each page that simply go to the other page.

OTOH, if you really do want to output web pages on the fly, bracket
your calculated results with html tags:

bukmub

Did I misunderstand what you're trying to accomplish?

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: LiveCode Personal Banner

2010-11-15 Thread Mark Wieder
Alex-

You beat me to it. I was just about to suggest the same thing. I think
I'd still be in favor of cutting the splash screen down to 5 seconds,
though.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Creative Common Copyright Notice in Standalones

2010-11-13 Thread Mark Wieder
Sivakatirswami-

Thursday, November 11, 2010, 7:28:04 PM, you wrote:

 I don't see that CC prevents sale of anything under that license, but
 wouldn't the MIT license be more in line with this intent?  And it *is*
 designed for software.

 Any insights on problems with MIT?  it *is* a copyleft license too,
 like the CC license.  Or to ask the question another way... why would
 you chose CC over MIT?

I have no problems with the MIT license. I simply chose the CC license
a while back because I like the CC idea. As you've noted, other
licenses may well be more appropriate and I may change my licensing in
the future.

I like clause 2 of the Eiffel license for open source projects:
Permission is hereby also granted to distribute binary programs which
depend on this package. If the binary program depends on a modified
version of this package, you are encouraged to publicly release the
modified version of this package.

Note that the zlib license is very direct. It seems to cover
everything except the part above about putting modifications back into
the open source domain, so I may end up frankensteining this a bit to
handle that.

http://opensource.org/licenses/zlib-license.php

I notice that the Zope license says that it's designated as GPL
compatible by the Free Software Foundation (FSF), whatever that
means, but it's also straightforward and to the point.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Audio Triggering + Mouse Event latency

2010-11-12 Thread Mark Wieder
Anthony-

First of all, welcome to the list community. You've gone farther down
this road than I have, so I don't think I'll have any useful comments
on latency for you...

Thursday, November 11, 2010, 8:11:18 PM, you wrote:

 So, I'm wondering if an area that is harder for me to test is
 perhaps the issue:  the internal latency of the MouseDown event
 listener in LiveCode and the LiveCode runtime.

You might try putting the milliseconds into a variable on mouseDown,
then comparing that with the milliseconds count after the send or play
command.

 Any thoughts / experience round the table?

What hardware are you running this on? Are you using QuickTime? Have
you tried fiddling with the QuickTime properties (the qtIdleRate, the
dontUseQT)?

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Environment variable displayed in the debugger

2010-11-12 Thread Mark Wieder
James-

Thursday, November 11, 2010, 3:14:25 PM, you wrote:

 I just upgraded to 4.5.1 and was surprised to find that the  
 environment variables ($LOGNAME, $SHELL, $PATH etc.) still show up in
 the debugger ahead of the script variables.

I suppose this is as good a time as any to say that PowerDebug nicely
compartmentalizes the global environment variables into a separate
list for you. The demo version's on  revOnline and the full one's at

http://www.ahsoftware.net/PowerTools/BuyPowerDebug.irev

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Creative Common Copyright Notice in Standalones

2010-11-11 Thread Mark Wieder
Richard-

Thursday, November 11, 2010, 8:00:16 AM, you wrote:

 (disclaimer: the Creative Commons License rather explicitly states
 that it shouldn't be used for software, but that's what I use anyway
 because it comes the closest to exactly what I want my licensing to
 say for an open source project)

 Why does CCL have that limitation?

Well, IANAL but here goes anyway. My take on it from the CC web site
is that it doesn't have specific clauses to cover source and object
code.

http://wiki.creativecommons.org/Frequently_Asked_Questions#Can_I_use_a_Creative_Commons_license_for_software.3F

For an example of how ridiculous open-source license has gotten:
http://en.wikipedia.org/wiki/Comparison_of_free_software_licenses

Here are a few options:

The Eiffel Forum License, version 2
http://www.opensource.org/licenses/ver2_eiffel.php

The MIT license:
http://www.opensource.org/licenses/mit-license.php

The BSD license:
http://opensource.org/licenses/bsd-license.php

and my favorite:
WTFPL
http://tinyurl.com/3w6cks

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


OT: Morfik is now free

2010-11-11 Thread Mark Wieder
All-

Morfik 3 has just been released, the licensing restrictions are gone,
and it's now free.

http://www.morfik.com/

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Creative Common Copyright Notice in Standalones

2010-11-10 Thread Mark Wieder
Sivakatirswami-

Wednesday, November 10, 2010, 1:40:50 PM, you wrote:

 Exactly where and how do I put a creative commons license into a stack
 (normally you enter such in the standalone builder) and which creative
 commons license do I use and how do you implement it. Do you copy the
 whole license to an About substack or just have a link to the online
 Creative Commons License.

(disclaimer: the Creative Commons License rather explicitly states
that it shouldn't be used for software, but that's what I use anyway
because it comes the closest to exactly what I want my licensing to
say for an open source project)

What I do is create a custom property and file the license away in it:

put This work is licensed under the Creative Commons Attribution 2.5
License. To view a copy of this license, visit
http://creativecommons.org/licenses/by/2.5/ or send a letter to
Creative Commons, 543 Howard Street, 5th Floor, San Francisco,
California, 94105, USA. into tCCLicense

set the uRIP[EULA] of this stack to tCCLicense

then you can grab it from the custom property and display it however
you want:

put the uRIP[EULA] of this stack into field License

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Stress-testing SQLite

2010-10-30 Thread Mark Wieder
Lynn-

Saturday, October 30, 2010, 11:15:48 AM, you wrote:

 Without naming names, Ones with a Really Awesome, Conniving Legal
 Environments have been known to include such things.

Sounds a bit of an urban legend. I just checked my license (granted
it's only version 8.0.5, but...) and there's nothing like that.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Stress-testing SQLite

2010-10-30 Thread Mark Wieder
Richard-

http://www.informationweek.com/news/software/linux/showArticle.jhtml?articleID=201001901

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


benchmarks

2010-10-30 Thread Mark Wieder
Lynn-

Saturday, October 30, 2010, 1:54:18 PM, you wrote:

 It was big news a few years ago when they sued someone for posting
 benchmarks (I believe comparing with DB2 and a few others). Im sure you can
 find article bits if you search.

Actually, no. You no doubt have better searching ability than I do.
All I've been able to come up with are many comparison benchmarks with
various results. I have a healty distrust of benchmarks in general.

And the Center for Internet Security has benchmarks available from
their website, as well as a benchmarking tool for members to let you
roll your own.

http://cisecurity.org/en-us/?route=downloads.multiform

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: benchmarks

2010-10-30 Thread Mark Wieder
Lynn-

Saturday, October 30, 2010, 3:20:34 PM, you wrote:

 I did find an interesting article on DeWitt clauses though - focusing on the
 tech world but a surprising number of them outside of it:

 http://www.allbusiness.com/technology/computer-software/4092403-1.html

Thanks. That is indeed an interesting read, extending to the
enforceability of EULA contents in general. On page 6 there's a
reference to saber-brandishing by Microsoft, but not actual legal
actions. And in the conclusion is the statement

There is an excellent possibility, as discussed in section IV.B, that
a court would apply the doctrine of copyright misuse and rule DeWitt
Clauses unenforceable. (section IVB deals in part with the Disney
court's decision that fair use allows criticism regardless of license
restrictions).

 Do you know if these benchmarks are for more than (just) security?

Looking at it again, no, I'm not at all sure. Ignore that one - it's
probably just a red herring.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revweb plug-in for linux

2010-10-28 Thread Mark Wieder
Sivakatirswami-

Thursday, October 28, 2010, 6:21:09 PM, you wrote:

 on preopenstack
 set the loc of this stack to the screenloc
 send LaunchGrapple to this stack in 1 seconds
 end preopenstack


 on LaunchGrapple
 go stack url http://inHouse.domain.org/rev_stacks/grapple.rev;
 end LaunchGrapple

 By using the web server you avoid all the issues of mounting the server etc.

As a related trick, you can store the real stack in a custom
property. Then you can have a generic splash screen stack and all you
have to do is change the custom property to have it work with a
different stack. You can even password-protect the splash screen stack
with this approach:

on LaunchGrapple
go stack url (the uRealStackURL of this stack)
end LaunchGrapple

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Close File question

2010-10-26 Thread Mark Wieder
charles61-

Tuesday, October 26, 2010, 8:42:48 AM, you wrote:

 Close file file:  gOpenDataFile

1. close file gOpenDataFile
2. What's the difference between Don't Save and Cancel?

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] Appcelerator funding

2010-10-26 Thread Mark Wieder
Scott-

There's also going to be a Webcast with other announcements tomorrow
(Wednesday, October 27 at 8:00am Pacific, 11:00am Eastern, 5:00pm
CEST, Midnight Thursday JST).

http://www.appcelerator.com/october-27-2010/

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] Appcelerator funding

2010-10-26 Thread Mark Wieder
Bob-

Tuesday, October 26, 2010, 3:48:18 PM, you wrote:

 Whell that is fascinating. A video that doesn't play on the Mac
 under Safari. I wonder what else they have that does not work. ;-)

??? nothing happens there until tomorrow.

See the part that says Return here on Wednesday October 27 at 8:00am
Pacific (11:00am Eastern, 5:00pm CEST, Midnight Thursday JST)?

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: MetaCard and LiveCode externals WAS: Re: [ANN]BvG Docu 1.7

2010-10-21 Thread Mark Wieder
Klaus-

Thursday, October 21, 2010, 3:16:42 AM, you wrote:

 Hmm, this is pretty straightforward! :-)

Thanks for the (lack of) sanity check. I had done something similar
and for some reason it didn't work. Now it does. Not sure why, but at
least now I can verify that the documentation stack does indeed work
well with metacard.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: XMLRPC question

2010-10-21 Thread Mark Wieder
Leland-

Welcome to the list. In addition to what Andre's already posted,

It's certainly possible in perl to create some densely terse routines,
so I think the claim of less coding is quite relative, and depends
somewhat on what libraries you already have available to you. From
your perl snippets it looks like you're dealing with web services on a
remote server. In that case the library I put on revOnline may be of
some help to you: libSOAP. I've tried to encapsulate some of the
complexities of dealing with XMLRPC in an easy (easier) to use and
more rev^H^H^Hlivecode-friendly format. Your phrase relatively
straightforward again is in the eye of the beholder, but hopefully
this may give you something to start with.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Tabbing out of a text field

2010-10-21 Thread Mark Wieder
Jacque-

Thursday, October 21, 2010, 4:19:59 PM, you wrote:

 Tab on return (i.e., autoTab) only happens when you are on the last line
 of the field. So in a 3-line field, a return key will only tab to the
 next field if the cursor is on line 3, otherwise it inserts a carriage
 return. Scrolling fields have no last line, they are infinite, so 
 autoTab never triggers on those.

I realize this probably makes sense, but I had to read it three times
before I could parse it.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Sending mouseup to checkboxes on different card

2010-10-20 Thread Mark Wieder
charles61-

Wednesday, October 20, 2010, 7:02:51 AM, you wrote:

 I checked the fields and script in this sample stack and cannot find
 anything incorrect. So, I have to think there is a problem in my button
 script below.

There's nothing wrong with this script. The error is probably in the
mouseup handler for the checkboxes. Since you didn't post that, it's
hard to say any more.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [ANN]BvG Docu 1.7

2010-10-20 Thread Mark Wieder
Björnke-

Wednesday, October 20, 2010, 4:41:27 AM, you wrote:

 I fixed that, and i changed the test of revappversion() = 4.5.0
 to char 1 to 3 of the version = 4.5. I think that one should also
 work in metacard, as well as for those crazy people who use beta
 versions of the ide as main environment (shame on you). 

Nice. To remain future-friendly, you might want to change the check to

 if the version  4.5

 note: claim of properly working in metacard untested

It doesn't work in mc because you make calls to the revxml library, as
in line 245 of DocsLibContent (revcreatexmltree). Once I figure out
how to get mc to recognize rev externals (Klaus?) this should work.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


OT: Evolution of the Apple Mouse

2010-10-19 Thread Mark Wieder

http://mashable.com/2010/09/26/evolution-apple-mouse/

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [ANN]BvG Docu 1.7

2010-10-19 Thread Mark Wieder
Andre-

Tuesday, October 19, 2010, 11:09:52 AM, you wrote:

 not working for me, does not generate the 1000 files, only one is
 generated... :-/

I get A problem Occured: sorry, but I couldn't find the
'packaged_xml/dictionary/clumps.index' file in that folder using the
defaults. And indeed there is no clumps.index file there.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [ANN]BvG Docu 1.7

2010-10-19 Thread Mark Wieder
Björnke-

Tuesday, October 19, 2010, 12:48:19 PM, you wrote:

 Damnit

 reacting to a install where there's no clumps file, that was
 exactly what I changed. Do you two per chance not use the rev ide?
 because I use if revappversion() = 4.5.0 then create fake clumps
 file here.

You might want to tweak that a bit since I tried this with 4.5.1-dp1.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] Benoit Mandelbrot

2010-10-17 Thread Mark Wieder
Richmond-

Sunday, October 17, 2010, 10:10:04 AM, you wrote:

 that was one great guy; we should all pause for a minute of silent respect!

Rather than a minute, how about three 18-minute TED talks? The talk by
Ron Eglash is particularly mind-blowing...

http://blog.ted.com/2010/10/16/benoit-mandelbrot-and-his-legacy/

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] First Mobile App Released

2010-10-16 Thread Mark Wieder
Scott-

Saturday, October 16, 2010, 9:10:09 PM, you wrote:

 Sarah, you've got a captive audience of about 30 people over at the
 revToMobile Google group -- I wish you'd come discuss Rodeo with us :-)

Seconded.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution



Re: Constant command

2010-10-15 Thread Mark Wieder
Richard-

Thursday, October 14, 2010, 12:17:10 PM, you wrote:

 Unless Malte's request was implemented recently, I believe constants are
 available only to the script they're defined in:

 http://quality.runrev.com/qacenter/show_bug.cgi?id=5135

AFAICT it hasn't been implemented, nor has it been declared a
duplicate of bz#1180 or bz#2401, which also haven't been implemented,
nor by extension has bz#1712.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Constant command

2010-10-15 Thread Mark Wieder
Robert-

Thursday, October 14, 2010, 3:54:33 PM, you wrote:

 As others said, this is a matter of programming style. What I often
 use script-wide constants for is for names of objects user interacts
 with. For example, on a card level, I may have several handlers that
 refer to a button or a field (for example, resizestack, scripts that
 handle GUI). Using constant is just convenient. Using script locals 

I also use constants to eliminate having magic numbers sprinkled
throughout my scripts. I place them at the top of the script to make
them manageable. Then when I want to change all the indentations in
half a dozen fields, I just have one place to change it. Or I might
define a list of constant values for the rawKeyDown values of the
arrow keys so I can see them all in one place, use the constant names
instead of the values so I don't accidentally key in the wrong one,
and make my code more readable, i.e.,

switch pKeyCode
  case kBackSpaceKey
  case kDeleteKey
pass rawKeyUp
break
end switch

is much more readable than

switch pKeyCode
  case 65288 -- the backspace key
  case 65535 -- the Delete key
pass rawKeyUp
break
end switch

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [UPDATE] The little RPN Calculator now is more HP like

2010-10-15 Thread Mark Wieder
Andre-

Friday, October 15, 2010, 11:48:42 AM, you wrote:

 Glad you liked it! :-)

 Given infinite time and money I'd implement UserRPL and SystemRPL...

It would be fairly easy to get from here to a full-fledged FORTH
system, but you'd have to add more keys.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RevOnline (Was: Re: [ANN] slotmachine iPhone was scrolling wheel]

2010-10-10 Thread Mark Wieder
Jacque-

Sunday, October 10, 2010, 4:43:52 PM, you wrote:

 I just found it. Over at the top left, after you're in your own account,
 there's a link called my account with an X next to it. Click the X
 and you're back in the full list.


 Sigh. My Uploads. Sorry.

Intuitive interface, eh?

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RevOnline (Was: Re: [ANN] slotmachine iPhone was scrolling wheel]

2010-10-10 Thread Mark Wieder
Jacque-

Sunday, October 10, 2010, 4:41:01 PM, you wrote:

 Mobile I guess. Or Rossi. Only I don't think he's uploaded
 anything there yet.

 Neither of those get any hits in the search box.

 I don't think he has anything there. Mobile gets me two hits.

Rossi gets me three.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RevOnline (Was: Re: [ANN] slotmachine iPhone was scrolling wheel]

2010-10-10 Thread Mark Wieder
Jacque-

Sunday, October 10, 2010, 7:05:41 PM, you wrote:

 I get two, but neither are his. They mention him in their text. You get
 three?

My bad. Rossi gets me two... Scott Rossi gets me three.
Go figure.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Livecode suffix is a pain

2010-10-09 Thread Mark Wieder
Francis-

Saturday, October 9, 2010, 4:14:52 AM, you wrote:

 I don't like zapping application code, but this is OK for me,

I agree. It's just a short-term hack that does the trick for now.

 But my question is : How in Rev's name did you know that ?

g I used the IDE's Find command to search for the string livecode
in all the stacks in the folder Toolset. There were only a few hits,
and the backscript seemed like the likely suspect.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] Morning fun: Tao of Programming

2010-10-09 Thread Mark Wieder
Andre-

Saturday, October 9, 2010, 9:09:50 AM, you wrote:

 http://www.canonical.org/~kragen/tao-of-programming.html

 There are some real pearls in here.

I've alway liked the Tao of Programming.

A well-written program is its own heaven; a poorly-written program is
its own hell.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Livecode suffix is a pain

2010-10-08 Thread Mark Wieder
Francis-

Friday, October 8, 2010, 8:07:33 AM, you wrote:

 Question 2 : Can I automatically have the .rev
 suffix used when creating a livecode stack ?
 (Can't find anything in Preferences !)

You can alway hack the script of button revBackScript of stack
revlibrary.rev... (hint: look at lines 892 and 1007)

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Livecode suffix is a pain

2010-10-08 Thread Mark Wieder
Craig-

Friday, October 8, 2010, 10:13:11 AM, you wrote:

 That stack is a model of clean, elegant design. Pleasing to the eye, it is
 easy to see that it was carefully planned. Object alignment and uniformity
 is inspired. Who is the artist, I wonder?

rotfl

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: LiveCode mention at Programmers Stack Exchange

2010-10-06 Thread Mark Wieder
Scott-

Wednesday, October 6, 2010, 2:11:24 AM, you wrote:

 in case anyone uses that site, and would like to vote for it.

Ugh - it's not at all clear to me how to add comments. I see two
attempts were already made and ended up making new entries instead.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Plug-ins missing

2010-10-06 Thread Mark Wieder
Richard-

Wednesday, October 6, 2010, 9:05:29 AM, you wrote:

 Requiring the user to set the Plugins folder to something other than
 their plugins folder in order to activate your plugins may not be 
 intuitive to newcomers like myself.  ;)

BZ #6034

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: LiveCode mention at Programmers Stack Exchange

2010-10-06 Thread Mark Wieder
Andre-

Wednesday, October 6, 2010, 11:40:55 AM, you wrote:

 you need 50 points of reputation before being able to comment. right now,
 you can only answer (1 rep)

I saw the part about needing reputation points to vote, but didn't see
a notice about commenting.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT+ANN] Just finished a rather large project

2010-10-06 Thread Mark Wieder
Jeff-

Wednesday, October 6, 2010, 12:43:05 PM, you wrote:

 The past 4 months for me have been pretty grueling. But me (and all the
 wonderful people in my team) have just finished up our latest project and
 sent it off to Nintendo...

 http://disney.go.com/disneyinteractivestudios/product.html?platform=wiigame=disneyepicmickey

The behind-the-scenes clip looks great. This oughta be hitsville.

 That is all.

LOL.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: LiveCode mention at Programmers Stack Exchange

2010-10-06 Thread Mark Wieder
RunRevPlanet-

Wednesday, October 6, 2010, 3:22:37 PM, you wrote:

 My intention was not to lead new users of it into frustration.

g If even Andre's reputation can't help him there, there's no hope
for the rest of us...

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Image Library Disappeared in LiveCode

2010-10-05 Thread Mark Wieder
Peter-

Tuesday, October 5, 2010, 10:07:43 AM, you wrote:

 Prowled around a bit more and found where the icons were stored in Rev
 4.0 (I'm running on OSX).  They are in the Documents/My Revolution  
 Studio/Resources/Icon Libraries folder.  Each set of icons I imported
 is in a rev stack named revlib followed by the name of the icon  
 library.  I'm hoping I can just move those stacks to somewhere in the
 new LiveCode hierarchy to have them show up.  Any ideas?

I find it much simpler to keep LiveCode and Rev pointing to the same
folder. A simple preferences setting and then I don't have to worry
about moving files and keeping multiple copies of things.

But otherwise - yes, the folder hierarchy is the same. Copy the icon
libraries into

LiveCode preference for User Extensions/Resources/Icon Libraries.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Some other properties are excluded ?

2010-10-05 Thread Mark Wieder
David-

Tuesday, October 5, 2010, 11:34:07 AM, you wrote:

 Anyone know what these mysterious other excluded properties are?

BZ #8884

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Download Beta Test Franklin Audio External for LiveCode

2010-10-05 Thread Mark Wieder
Lynn-

Monday, October 4, 2010, 1:08:20 PM, you wrote:

 Hello all,

 Beta versions of Franklin Audio for Windows and Mac OS X are available on
 the Franklin 3D website:

Sad to say, it's completely nonfunctional on xp. Even after the
obnoxious step of having to reboot my computer after installing,
launching from the programs menu gives an hourglass searching for the
nonexistent FranklinAudio_1

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Download Beta Test Franklin Audio External for LiveCode

2010-10-05 Thread Mark Wieder
Ruslan-

I should have followed the directions after rebooting g.

I got disgusted and uninstalled. Then I saw your note, reinstalled,
and there's no rev stack. There's a folder called franklin_audio_liv
and in that is an OpenAL folder, something named pathman.exe, and
the uninstaller files. Uninstalling does a good job of getting rid of
the folder and all its files, but installing afterwards seems messed
up.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Download Beta Test Franklin Audio External for LiveCode

2010-10-05 Thread Mark Wieder
Ruslan-

Tuesday, October 5, 2010, 9:27:09 PM, you wrote:

 On 10/6/10 4:29 AM, Mark Wieder mwie...@ahsoftware.net wrote:
 There are TWO folders installed

Ah... OK. I must be getting tired.
Found the installer stack, ran it. Seemed OK, but just sat there on
the screen. I shut down the IDE, not saving changes. I hope that was
correct. Then I loaded the example stack and pressed buttons. Still no
sound, though.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Performance issues, perhaps Windows 7 related

2010-10-04 Thread Mark Wieder
David-

Monday, October 4, 2010, 10:18:03 AM, you wrote:

 Has anybody else experiences this issue or have any ideas about what
 could be the cause?

Try upgrading the Win7 video drivers (!)

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Performance issues, perhaps Windows 7 related

2010-10-04 Thread Mark Wieder
Jacque-

Monday, October 4, 2010, 2:27:08 PM, you wrote:

 Wow, who woulda thought? Video driver issues cause file dialog problems?
 I believe you, but I can't imagine why that would be. Any idea?

Absolutely none. Just passing on what I've been told.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: LiveCode Application Error upon quitting

2010-10-04 Thread Mark Wieder
Phil-

Monday, October 4, 2010, 9:40:00 PM, you wrote:

   On 10/4/10 9:20 PM, J. Landman Gay wrote:
 On 10/4/10 5:41 PM, Paul Looney wrote:

 The problem line is:

 wait 0 seconds

 which we use many times elsewhere, with no problem.

 Just curious, why would you wait for zero?

 What - would you prefer to wait longer?

Some of us are impatient.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] Atlassian merges with BitBucket

2010-09-29 Thread Mark Wieder
Andre-

Wednesday, September 29, 2010, 7:45:55 AM, you wrote:

 yes it is Mark, that was me FUDing before actually reading the whole offer.

 it might be good.

I'm waiting to see how this turns out, but so far it looks like a good
merger.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] Atlassian merges with BitBucket

2010-09-28 Thread Mark Wieder
Andre-

Tuesday, September 28, 2010, 7:44:07 PM, you wrote:

 I've just received a notice that Atlassian (makers of JIRA) merged with
 BitBucket which was my beloved cheap yet wonderful online mercurial repo
 thing. I don't really like Atlassian, I see them as a near-oracle, to
 expensive even if with good products.

Depends on how you define expensive. I think $10 for a ten-user
license is pretty reasonable.

http://www.atlassian.com/starter/

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: What have I done?

2010-09-27 Thread Mark Wieder
James-

Monday, September 27, 2010, 9:01:54 AM, you wrote:

 Rev 4.0 is in revolt. (LiveCode is fine.)

 I write in  script:

 put 3 into x

 and when I try to compile I get a message Can't create a variable by
 that name.

You have turned on the explicitVariables failsafe mechanism, which
ensures that you can't accidentally get yourself into trouble. Try one
of these two things:

local x
put 3 into x

or

open Rev's preferences, select Script Editor and deselect strict
compilation mode

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: What have I done?

2010-09-27 Thread Mark Wieder
Devin-

Monday, September 27, 2010, 9:47:13 AM, you wrote:

 Luxury! I dream about having a register! All I have is the bottom
 of a rusty soup tin, and I have to scratch tick marks on it with a
 broken stick! 

Wow! A soup tin... all I have is... aw, I forget what I have...

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: ANN: Updated website

2010-09-26 Thread Mark Wieder
Klaus-

...and turn up the bass...

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: data from USB joystick

2010-09-26 Thread Mark Wieder
stephen-

Sunday, September 26, 2010, 9:57:22 AM, you wrote:

 It's all on the net. Your cheapest and easiest solution is to use a Keyspan
 USB to serial adapter and Rs-232 serial protocol.

I seem to have acquired two of these contraptions through general
packratting and have no use for them right now. I'd be happy to offer
these to anyone for the postage.

http://www.tripplite.com/en/products/model.cfm?txtModelID=3915

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Scripts that are already running

2010-09-24 Thread Mark Wieder
Craig-

Friday, September 24, 2010, 12:18:41 PM, you wrote:

 As for this thread. It still seems that people are thinking you can
 interrogate, from the outside, a running handler somehow. You can't. At least 
 not
 that I have seen.

You can. But it's ugly. Trust me, you *really* don't want to do this
unless there's no alternative.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Which stack called the library stack ?

2010-09-24 Thread Mark Wieder
Dar-

Friday, September 24, 2010, 2:49:31 PM, you wrote:

 Important: The value of the executionContexts may be changed in
 future versions of Revolution, it is not recommended to write code  
 that depends on its contents.

It has ever been thus. The format of the executionContexts changed
slightly with the 3.5 release to support behaviors, but not enough to
cause any serious repercussions. And, btw, in a way that provides an
intriguing window of opportunity for the support of nested behaviors.

 I wish that RunRev would bless the format of the property or provide
 other properties or functions that provide context information.

I do too, but it's deep in the bowels of the engine, so changing it is
likely to break everything. I rather count on it not disappearing or
changing enough to cause damage.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Full support for executionContexts (was Re: Which stack called the library stack ?)

2010-09-24 Thread Mark Wieder
Dar-

Friday, September 24, 2010, 3:16:11 PM, you wrote:


 On Sep 24, 2010, at 4:00 PM, Mark Wieder wrote:

 I wish that RunRev would bless the format of the property or provide
 other properties or functions that provide context information.

 I do too, but it's deep in the bowels of the engine, so changing it is
 likely to break everything. I rather count on it not disappearing or
 changing enough to cause damage.

 By removing the offending paragraph in the executionContexts  
 dictionary entry, RunRev would effectively be making a commitment to
 including descriptions of any changes to the value in the engine  
 revision report for new versions.  Or at least apply as much  
 diligence in doing so as they would for any other property.

 I think this is a reasonable thing to ask for.

I, on the other hand, think that reserving the right to make changes
to the format is a good thing. And given that, I think the warning
paragraph in the documentation is to the point: go ahead and use
this, but note that the format may change in the future. But I do
like your first suggestion, that RunRev bless and document the format.
Since it's the only way to get this information, telling people to use
it seems a bit dodgy, even though it *is* listed in the docs.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: RunRev Store Account

2010-09-23 Thread Mark Wieder
Mark-

Thursday, September 23, 2010, 2:58:19 AM, you wrote:

 After several days, I still had not received my RunRev Store
 password. Instead of writing to support, I decided to reset my
 password. I went to http://runrev.com/store/ and clicked on reset
 password', entered my e-mail address and received an e-mail with my
 password immediately. This seems worth a try for eveyone who hasn't
 received a password yet.

I ended up doing that as well, and it does work. Be aware, though,
that when you finally do receive your password email from RunRev it
will override your old password setting at the website, and you should
relicense the app as well.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [Reference] Good information about Mac OS X command line tools

2010-09-22 Thread Mark Wieder
Andre-

Wednesday, September 22, 2010, 8:30:55 AM, you wrote:

 Folks,

 Sorry for the cross post but I think this interest both lists. Mr. Amit
 Singh has this resource since 2003:

http://osxbook.com/book/bonus/ancient/whatismacosx/tools.html

Great book. I picked up my hardcover copy at MacWorld Expo a few years
agao and consult my copy on a regular basis.

 There are lots of good tools in there, they all come with Mac OS X.
 Debugging rogue processess or server side stuff is easier once you know how
 to use a couple tools presented here. Specially fs_usage and tcpdump.

tcpdump is a good tool, but if you need to get serious about examining
network traffic you should try ngrep and/or WireShark.

http://ngrep.sourceforge.net/
http://www.wireshark.org/

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Where does revMobile go?

2010-09-22 Thread Mark Wieder
 DropBox is an application. You can signup here:
 http://www.dropbox.com/referrals/NTc4MTA2NDQ5
 By signing up to a referral link, we both gain 250mb additional
 space so it's a win-win situation. :)

Done!

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: on-rev

2010-09-21 Thread Mark Wieder
Monday, September 20, 2010, 6:23:05 PM, I wrote:

 Is anyone able to use the on-rev client? I'm hanging on Connecting to
 server... Have to force-quit it.

Just for the record, I filed a trouble ticket with support and they
turned the on-rev client support back on again. No longer hangs.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: on-rev

2010-09-21 Thread Mark Wieder
Stephen-

Tuesday, September 21, 2010, 10:32:46 AM, you wrote:

 then use the newest Transmit by Panic
 http://panic.com/transmit/. $40 -
 Works great with Textmate and Ralf's plugin or Coda .

Good to know, although I haven't had problems with ftp and on-rev.
It's debugging that stumped me since I needed to look at variables in
situ.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Free RevMedia

2010-09-21 Thread Mark Wieder
Richmond-

Tuesday, September 21, 2010, 10:43:12 AM, you wrote:

   ???

https://secure.wikimedia.org/wikipedia/en/wiki/Dodo

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Free RevMedia

2010-09-21 Thread Mark Wieder
Richmond-

Tuesday, September 21, 2010, 11:10:24 AM, you wrote:

 Now that is all gone.  Boo!

No argument from me. I do realize that the free version doesn't
contribute anything to the revenue stream, but still...

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: LiveCode 4.5 and the midsummer (2010) save 60% on revStudio deal

2010-09-21 Thread Mark Wieder
Jerry-

The way I understand things, your current license agreement stands.
Nothing changes until its term is up.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: on-rev

2010-09-21 Thread Mark Wieder
Pierre-

Tuesday, September 21, 2010, 12:00:02 PM, you wrote:

 I don't have any problem with on-rev in FTP mode. I'm just trying
 to access it under FTP+TLS/SSL and there is some glichies around
 (client or server-side, i don't know at this point).

...I didn't know the server supported ftps...

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] Another one bites the dust . . .

2010-09-21 Thread Mark Wieder
Richmond-

Tuesday, September 21, 2010, 12:35:13 PM, you wrote:

 I am getting this:

 *This page is generated by Parallels Plesk Panel 
 http://www.parallels.com/plesk/?cid=promo-plesk-server, the leading
 hosting automation software. You see this page because there is no Web
 site at this address.

Site looks good to me. Issue 372 is up. Try refreshing your cache.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] Another one bites the dust . . .

2010-09-21 Thread Mark Wieder
Richmond-

Tuesday, September 21, 2010, 1:20:28 PM, you wrote:

   On 09/21/2010 11:15 PM, Mark Wieder wrote:
 Site looks good to me. Issue 372 is up. Try refreshing your cache.

 I think that there was a bump in the road because when I went there just
 now (without refreshing
 anything) the site was up and running again.

Yeah, that's the ticket. Obviously I meant try *not* refreshing your
cache g

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: calling com port under win7 with old 261 built app

2010-09-21 Thread Mark Wieder
Jeff-

Tuesday, September 21, 2010, 1:23:13 PM, you wrote:

 on my app to com 1 (i had that built in there). does win 7 do
 something different that an older rev would not do to call the serial
 port? do i need to rebuild the app in a later version of rev to create
 a win7 app that will call the com port on win7?

Hmmm... overzealous antivirus software? Do you need admin rights to
access the serial ports in Win 7?

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Free RevMedia

2010-09-21 Thread Mark Wieder
Richmond-

Tuesday, September 21, 2010, 2:02:35 PM, you wrote:

 Supposedly the writer Victor Hugo wrote a letter to his publisher that
 consisted solely of '?'

 to which the reply was '!'

If they were playing chess, the publisher won.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Where does revMobile go?

2010-09-21 Thread Mark Wieder
Jacque-

Tuesday, September 21, 2010, 3:26:09 PM, you wrote:

 In 4.5, open Preferences, Files and Memory pane. Use the browse button
 at the bottom to select your My Revolution folder as the external folder
 location. That folder is located inside your Documents folder, and was
 created by previous versions of Rev.

Actually, it's never been created automatically. Would that it were.

And note that you *don't* select the Plugins folder itself with the
browse button, just the folder that contains it.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: DataGrid Optimization question

2010-09-20 Thread Mark Wieder
Bob-

Monday, September 20, 2010, 10:11:54 AM, you wrote:

 Eheh! Eheh! He said Cheese! BAN HIM! ;-)

Oops - so did you... we're going to be losing members rapidly at this
rate. And notice that I managed to say that without once typing the
word Cheese.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: DataGrid Optimization question

2010-09-20 Thread Mark Wieder
zryip-

Monday, September 20, 2010, 10:37:48 AM, you wrote:

 On Mon, Sep 20, 2010 at 7:11 PM, Bob Sneidar b...@twft.com wrote:
 Eheh! Eheh! He said Cheese! BAN HIM! ;-)

 Argh! But I did not combined cheese with sex or religion!

...but now you've used all three words together, and separated by a
bare minimum of other letters. You're treading on thin ice, my friend.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: DataGrid Optimization question

2010-09-20 Thread Mark Wieder
Richmond-

Monday, September 20, 2010, 12:29:40 PM, you wrote:

 Why do I think that several people are going do be curded-off when they
 awake from their Revolutionary reverie to find they have been LiveCoding all
 along?

's fine by me. I never know what I've been doing all along anyway...

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Still: Where do I put libUUID.rev and qrtReportsLIb.rev in LiveCode?

2010-09-20 Thread Mark Wieder
Alex-

Monday, September 20, 2010, 1:22:57 PM, you wrote:

 I tried creating a folder at the root level of the startup drive and
 declaring it in the preferences for the User Extensions path.

 Any ideas?  I'm dead in the water until this is resolved.

Put a Plugins folder inside the folder you declared in the User
Extensions preferences. Put your plugins into the Plugins folder.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: GOOSE BUMPS

2010-09-20 Thread Mark Wieder
Dar-

Monday, September 20, 2010, 2:01:40 PM, you wrote:

 No doubt it is to keep it distinct from the revolution.  When and if
 it comes.

...won't be televised, though...

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


on-rev

2010-09-20 Thread Mark Wieder
All-

Is anyone able to use the on-rev client? I'm hanging on Connecting to
server... Have to force-quit it.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: on-rev

2010-09-20 Thread Mark Wieder
Mike-

Monday, September 20, 2010, 6:25:48 PM, you wrote:

 I haven't used it in forever because it sucks...

...agreed, but I need to debug a post command in a way that needs the
intervention of the IDE...

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: on-rev

2010-09-20 Thread Mark Wieder
Sarah-

Monday, September 20, 2010, 7:52:37 PM, you wrote:

 Mark, have your irev script save the $_POST parameters to a log file
 on the server.
 It makes debugging non-interactive, but at least it gets you the info you 
 need.

Thanks, that's what I ended up doing and solved the problem. Took me
back quite a few years to debugging by printf statements...

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: on-rev

2010-09-20 Thread Mark Wieder
Andre-

Monday, September 20, 2010, 9:43:20 PM, you wrote:

 Actually it was created specifically for PayPal IPN. During the conference I
 went on to demo PayPal IPN built with RevServer and I could not reassemble
 the request with the variables in the same order so I asked if they could
 build a global for me...

...and debugging the IPN response was of course exactly what I was
trying to do... unfortunately the $_POST_RAW array was empty, but
$_POST had what I was looking for.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Getting Property Names

2010-09-18 Thread Mark Wieder
Bernd-

Saturday, September 18, 2010, 11:03:36 AM, you wrote:

 wouldn't that be

 set the hscroll of field myField to 0

No doubt it would. But you can also say

put the keys of (the properties of field myField)

to get the (more or less) complete list of properties.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: What is the name of that function...

2010-09-18 Thread Mark Wieder
Tereza-

Saturday, September 18, 2010, 2:42:34 PM, you wrote:

 Somebody knows… what is it.

I was (wrap) going to try (wrap) to remember it (wrap) as well, but
it's (wrap) not on the tip of my (wrap) tongue...

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: What is the name of that function...

2010-09-18 Thread Mark Wieder
Tereza-

Saturday, September 18, 2010, 3:23:22 PM, you wrote:

 Hmmmph! it's an OPERATOR not a function! And it doesn't work with negative 
 numbers*!

mod is also an operator. And negative numbers? I wouldn't expect those
to work - it work that way for word problems with either operator:

If Johnny owes nine dollars and gives five of those dollars he doesn't
have to Fred, how many does he have left over?

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: How to get environment VARS in iRev

2010-09-16 Thread Mark Wieder
Sivakatirswami-

Thursday, September 16, 2010, 3:59:08 PM, you wrote:

 What are our iRev options?

Try looking at the keys of the $_SERVER array:

put SERVER:  the keys of $_SERVER  br/

You can then pick out individual elements as in:

put $_SERVER[HTTP_REFERER]

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Mac OS X - how to darken screen?

2010-09-16 Thread Mark Wieder
Andre-

Thursday, September 16, 2010, 6:41:30 PM, you wrote:

 You can take a screenshot of the screen and manipulate it to darken it.

Oo... sneaky...

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: XML+MySQL+UTF8 = MISERY

2010-09-16 Thread Mark Wieder
Tereza-

Thursday, September 16, 2010, 10:39:01 PM, you wrote:

 Does anything stand out to those of you who have used MySQL? and revXML? and 
 utf8?

I haven't used that combination, particularly the utf8 part, but off
the top of my head, I'd say one problem looks like MySQL is making
crlf pairs from your cr characters. When you say that you're using an
insert command to put the data into the database, are you storing it
as a BLOB?

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Real Basic Web edition - No Plugin Required!

2010-09-15 Thread Mark Wieder
Andre-

Wednesday, September 15, 2010, 6:53:22 AM, you wrote:

 This could be replicated in Rev, pure RevTalk right now. It would not be
 100% safe since we have a blocking engine but we could always use a monitor
 process to detect lock up and kill it. I think it was 2006 or something,
 that I was talking with Mark Wieder about how one should go to implement
 that exact solution.

...and I remember writing up a long report on this at the time. I'd
have to dig it up again, but I seem to remember that single-threading
was the issue that would kill using revServer this way. You either
have a single thread per user application, blocking, and no variable
persistence (no fastCGI) or you have shared persistent variables and a
single engine instance with multiple users in the same memory space
(fastCGI).

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: on-rev forum

2010-09-14 Thread Mark Wieder
Devin-

Tuesday, September 14, 2010, 8:31:12 AM, you wrote:

 Wait -- I assumed you meant the regular RR forums. There's an on-rev
 forum? Did I miss something?

 Umm, yes. Have you really never seen it? Go to on-rev.com, then click Support 
  Forums.

It's pretty dismal, but it exists. And I just logged in to make sure.
Your login info for the forum is the same as your cpanel login info.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: on-rev forum

2010-09-14 Thread Mark Wieder
Devin-

Tuesday, September 14, 2010, 10:26:27 AM, you wrote:

 IIRC, when you first go there it shows up as locked until you
 log in with your on-rev account info.

That's correct. After you log in you can see the posts. I don't
understand the reasoning behind this, but the other forum is/was set
up the same way.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: OT: Waiting for DNS to update a new site.

2010-09-14 Thread Mark Wieder
Alex-

Visible here (dns through the public 4.2.2.1)

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: how to identify a 64-bit Windows machine in Rev

2010-09-14 Thread Mark Wieder
DAR!

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: ANN: PowerDebug (was Re: Question about the debugger in Rev 4.0)

2010-09-10 Thread Mark Wieder
Monte-

Thursday, September 9, 2010, 8:34:11 PM, you wrote:

 Did you know revTools comes back toplevel after it's hidden? I'm
 sure it's fixed in the newer version

OK - that's a new one. I've never seen that, and none of the beta
testers have ever reported seeing it. Maybe there's some interaction
with other plugins in your system?

 Take a look at the way revObjective is separated into two plugins
 now. An invisible one not shown on the menu and a modeless one that
 is on the menu. Although your plugin is clearly much more complex
 maybe that's a good option for you? The visible one could be the
 help/prefs stack. We need heaps more plugin hooks.

More plugin hooks would be great. Until then, here's what I've done
with the latest build: on preOpenStack I check to see if the string
revmenubar.rev  ,menuPick is in the executionContexts. If so then
it was instantiated from the plugins menu and I bring up the
preferences menu, otherwise the debugger was launched from a
breakpoint or error condition, and stack opening proceeds normally.

 One other thing is if the debug console is open and you try and quit rev then 
 rev hangs.

Another one I've never seen. It works OK here, although I don't
usually try to quit while I've got a debug session open. I just
downloaded the version from revOnline to check these things out and I
don't see either of the effects you're describing. I'm mystified.

 Overall it looks like a great new addition to Rev.

Thanks. I am, by the way, quite envious of your 27-inch screen.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: OT: Ft Gay, GA

2010-09-10 Thread Mark Wieder
Friday, September 10, 2010, 2:31:58 AM, Heather wrote:

 No religion, politics, cheese and sexual preferences.

...actually, I read that as (cheese and sexual) preferences and then
my brain got a bit bogged down trying to deal with it...

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: OT: Ft Gay, GA

2010-09-10 Thread Mark Wieder
Jacque-

Friday, September 10, 2010, 10:55:00 AM, you wrote:

 Seems pretty straightforward to me. No sex with cheese. Or at least,
 keep it to yourself.

 Heather is going to have a lot of moderating to do after this...

Right - so no discussion of same-cheese or opposite-cheese issues
here. And we probably shouldn't even think of mentioning the Defense
Of Mozzarella Act.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: OT: Ft Gay, GA

2010-09-10 Thread Mark Wieder
Devin-

Friday, September 10, 2010, 11:30:25 AM, you wrote:

 Hey, it's my democratic right to worship cheeses! It makes me
 feel gay, in the traditional meaning of the term!

 (Did I fit in all of the forbidden themes?)

...aaand... we have a winner...

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: how to totally make Kevin's day

2010-09-09 Thread Mark Wieder
Bob-

Thursday, September 9, 2010, 2:36:07 PM, you wrote:

 Honestly that sounds like an Urban Legend! Do you have the link
 to the article? I want to look into that. 

Not that I necessarily believe everything I read on the web (even if
it's in color), but a simple Google search for xbox ft gay would
show you page after page of reports such as:

http://www.pcworld.com/article/205108/microsoft_suspends_xbox_gamer_for_living_in_fort_gay.html?tk=hp_new

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


ANN: PowerDebug

2010-09-09 Thread Mark Wieder
I've been holding off announcing this until the 4.5 launch, but I
think maybe I should go ahead and (pre)announce anyway. We've launched
PowerDebug for RunRev and MetaCard, an upgrade for the built-in
debugger/variable watcher/runtime error stacks. There's a trial
version on revOnline that is fully functional but will present
annoying nag screens (launching your browser) at random intervals to
encourage you to buy the unrestricted version (at a special launch
sale price). There's also a walkthrough of most of the features at

http://www.ahsoftware.net/PowerTools/PowerDebug/PDDemo.html

Yes, it will allow you to debug preOpenCard and resize handlers that
are otherwise out of reach. More features than I would care to take up
bandwidth listing here, including a nifty ExplainError() function to
help demystify those cryptic error codes. Works with/without tRev, so
you can do both debugging and decoding. Just about everything you
could ask for in an xtalk debugger.

...and (more preannouncing) soon you'll be able to trigger a virtual
breakpoint from a specified message issued by any script: something
calling DisplayAboutBox but you don't know where? Just set a virtual
breakpoint for that message and you'll be placed in the debugger with
the context of the caller.

http://www.ahsoftware.net/PowerTools/BuyPowerDebug.irev

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


  1   2   3   4   5   6   7   8   9   10   >