Re: use-revolution Digest, Vol 22, Issue 78

2005-07-18 Thread Jan Schenkel
Hi All, Hold on a second here -- I hadn't throughly read all these emails about pricing, and figured they were a consequence of the runrev webstore country check. But I do not recall offering Quartam Reports at $199 -- in fact, I checked my archives, and while prices have dropped (Express was

Re: Quartam Reports pricing

2005-07-18 Thread Jan Schenkel
Hi All, Hold on a second here -- I hadn't throughly read all these emails about pricing, and figured they were a consequence of the runrev webstore country check. But I do not recall offering Quartam Reports at $199 -- in fact, I checked my archives, and while prices have dropped (Express was

Re: CGI to send back a file to save

2005-07-18 Thread jbv
Hi, I'm a bit late on this thread, but I have some code that might help. What I actually do is generate on-the-fly pdf files with Rev cgi, and users get the usual WinXP dialog asking what they want to do with the file, save it or open it : put Content-Type: application/pdf cr Content-Length :

How do I get the resolution of an image accessed by a Player?

2005-07-18 Thread David Burgun
Hi, I am open ing a TIFF file via a player object, I can get the Width and Height of the image with the formattedWidth/Height properties, but how can I get the resolution or DPI? Thanks in Advance Dave ___ use-revolution mailing list

Re: How do I get the resolution of an image accessed by a Player?

2005-07-18 Thread Eric Chatonet
Hi Dave, Resolution depends on the ratio between the actual size and the current size of the image. If the current size is the actual size, the resolution is 72 DPI with most monitors. At half size 144 DPI, etc. With Rev objects all this does not make sense since I think Rev recalculates

Re: How do I get the resolution of an image accessed by a Player?

2005-07-18 Thread David Burgun
Hi, I just need to display the current resolution with in the image (e.g the TIFF property), I am not going to change the DPI or use it to scale an image, it's just that we have the same images but with different resolutions and displaying the DPI of the underlying file is the best way to tell

Re: Quartam Reports pricing

2005-07-18 Thread Bill
Also there is a place were people can download your program and try it out first? Can you past that link here as well as how long does it work in trial version? Bill On 7/18/05 3:47 AM, Jan Schenkel [EMAIL PROTECTED] wrote: Hi All, Hold on a second here -- I hadn't throughly read all

embed/install font

2005-07-18 Thread Brad Borch
I'm creating a presentation and I need to be sure the user has access to a Unicode font. I'd like to standardize on Bitstream's Vera font, which is free and very good. 1) Is there any way to access the font dynamically without installing it on the user's system? A while ago there was a thread

Re: How do I get the resolution of an image accessed by a Player?

2005-07-18 Thread Klaus Major
Hi David, Hi, I just need to display the current resolution with in the image (e.g the TIFF property), I am not going to change the DPI or use it to scale an image, it's just that we have the same images but with different resolutions and displaying the DPI of the underlying file is the best

Problem with Editable Fields

2005-07-18 Thread David Burgun
Hi, I have the a number of fields in a card that have to be range checked, to do this i have the following code: on openField set the cpSaveTextOfMe to the text of me end openField on closeField if (the text of me 0) or (the text of me 999) then set the text of me to the cpSaveTextOfMe

Re: embed/install font

2005-07-18 Thread Stephen Barncard
I remember the days long ago in Hypercard where you could install a font as a resource in a stack, and it 'just worked', even though we were warned not to for some reason. sqb I'm creating a presentation and I need to be sure the user has access to a Unicode font. I'd like to standardize on

Re: Problem with Editable Fields

2005-07-18 Thread Eric Chatonet
Hi Dave, May be another approach, more ergonomic, could help you: Just allow numbers to be typed into your field with a generic handler like the following: on keyDown pKey if pKey is an integer and the number of chars of target 3 then pass keyDown end keyDown It's only to get you

Re: embed/install font

2005-07-18 Thread Mark Talluto
On Jul 18, 2005, at 6:53 AM, Brad Borch wrote: I'm creating a presentation and I need to be sure the user has access to a Unicode font. I'd like to standardize on Bitstream's Vera font, which is free and very good. 1) Is there any way to access the font dynamically without installing it

Re: External for running one instance on windows

2005-07-18 Thread Chris Sheffield
Hi Trevor, This is great. I've been looking for a good solution to this problem for quite some time. I've been using a partial solution with the EXT.dll, but it doesn't always work. One question: Will this work on any version of Windows, or is it specific to, say, 2000/XP? Chris

RE: External for running one instance on windows

2005-07-18 Thread Lynch, Jonathan
This external is prolly a bit easier to use than the old way, but... There is a cross platform method for doing this, which has been discussed on this group. It has the convenience of checking to make sure that the first version is running, then if the first instance communicates back to the

Re: External for running one instance on windows

2005-07-18 Thread Chris Sheffield
I tried that at one time but could never make it work right. Of course, that was back when I was still kind of new at Rev, so I probably wasn't doing something right. If Trevor's solution doesn't work for all versions of Windows, maybe I'll take another stab at doing it this other way.

RE: External for running one instance on windows

2005-07-18 Thread Lynch, Jonathan
Once I figured it out (with advice from the more experienced folks here), it worked great - but it was really a pain to work through. A convenient to use external like this would make doing this much easier - it is a great idea! I was using this for a program that runs in the background, and

Screen fonts great in Rev, bad in Word- why?

2005-07-18 Thread Mark Swindell
Why do screen fonts look so good in Rev and Pages and so bad in Word and AppleWorks? Even with Font smoothing turned on in AppleWorks Times still looks terrible... hardly useable. I'm using OS X Tiger. I also set the system font smoothing pref to flat panel. What am I missing?

Problem with Save As Standalone App

2005-07-18 Thread Ban Nguyen
Hello, I am having problem with Save As Standalone App. I have a Rev file (about 400,000 KB) when I save it as standalone app (making an exe file). It took a long time to finish. The exe file size is only 1,620 KB. I could not open it. I don't know what's wrong. Could someone help me with

Need a revolution Consultant/mentor

2005-07-18 Thread peter andonian
I am a new runtime revolution user looking for a consultant to help me design and build software to run my manufacturing business. My company manufactures lawn mower accessories (you can see our products at http://www.acceleratorindustries.com/ ). We are located in Bellevue, Washington.

Revolution unbooted

2005-07-18 Thread Seamus Brady
Hi Please excuse my intrusion. I have been lurking around the edge of the runrev community for a little while. I have been playing around with runrev on windows/linux and I am very impressed. I really think this product could have some potential in my business. I have a small query though

How to place the window in the center of the screen?

2005-07-18 Thread Stgoldberg
Placing the window in the middle of the screen is a simple script: on openstack set the loc of this stack to the screenloc end openstack Stephen Goldberg From: Ban Nguyen [EMAIL PROTECTED] Subject: place the window in the middle of screen? To: How to use Revolution

What is 'Constellation' ?

2005-07-18 Thread Mathewson
Slow on the uptake as usual; was intrigued by Jon's - 'using Constellation' - what is 'Constellation' ??? Sincerely, Richmond __ See Mathewson's software at: http://members.maclaunch.com/richmond/default.html ___

RE: Problem with Editable Fields

2005-07-18 Thread Lynch, Jonathan
You can also try this in the done button: On MouseUp Send DoThisScript to me in 0 seconds End MouseUp Then put the original mouseup script into a DoThisScript handler in the button. This will ensure that the script runs after other handlers. However, it seems odd that mouseup would be

Re: What is 'Constellation' ?

2005-07-18 Thread Dennis Brown
Just follow this link: http://www.daniels-mara.com/products/ Dennis On Jul 13, 2005, at 11:58 AM, Mathewson wrote: Slow on the uptake as usual; was intrigued by Jon's - 'using Constellation' - what is 'Constellation' ??? Sincerely, Richmond

Re: embed/install font

2005-07-18 Thread Brad Borch
Mark, I put the installer created by IC into a custom property in my rev app. My rev app spits out the installer Thanks for the pointer. I've done a fair bit of work in Director, Flash, etc. A long time ago I did Hypercard work. I'm sure with a little bit of guidance I'll get custom

Re: embed/install font

2005-07-18 Thread Dan Shafer
Brad. There are lots of resources. The docs are actually pretty good on this point. I wrote an eBook on the subject (it's for sale at the Rev online store as Chapter 21 for, I think, $5). I also gave a free online conference on the subject a while back. You can download the stack

Re: Revolution unbooted

2005-07-18 Thread Jon
Mark: I run my Windows XP box (and ran my Windows 2000 box) for 1-2 weeks at a time. Eventually, something becomes unstable, and I have to re-boot, but often I only have to re-bot because I install a patch. I think your pessimism about Windows (at least in this regard) is a bit excessive.

Re: embed/install font

2005-07-18 Thread Bob Earp
Thanks Chip, I'll see if I can get this going however, I can't get some of the customers to agree to loading anything at all on their machines, yeah, go figure !! I know I sound like a worn out record, but I really don't have a good answer when they say to me but we didn't have to do this

XMLRPC Authentication

2005-07-18 Thread david bovill
Looking into sending xmlrpc calls that require basic http authentication... any ideas as it is not documented in the xmlrpc create request, but is AFAIK part of the libUrl stack... just can't find any docs at the moment... ___ use-revolution mailing

Re: Icons for plugins [2]

2005-07-18 Thread FlexibleLearning
Bob Maybe I mis-read your request... Upgrade to version 5 of the Scripter's Scrapbook as the icon contains all the required sizes including 32x32. /H The Scripter's Scrapbook www.FlexibleLearning.com/ssbk.htm - I'm using Chip's incredibly wonderful altPlugin to manage a bunch of

Re: Icons for plugins

2005-07-18 Thread FlexibleLearning
Bob I cannot help you with RevNet, ColorPicker and Rersources Picker, but the icon set for the Scripter's Scrapbook is available at www.FlexibleLearning.com/ssbk/ssbk5.ico and it includes 32x32. Let me know if you need anything else. /H - I'm using Chip's incredibly wonderful

Re: Icons for plugins

2005-07-18 Thread Eric Chatonet
Hi Bob, Sorry as for my plugins: they don't come with a specific icon :-( But if you create some, I would be very pleased to see them :-) Le 18 juil. 05 à 21:11, Bob Earp a écrit : I'm using Chip's incredibly wonderful altPlugin to manage a bunch of other great plugins, but a lot of the

Re: embed/install font

2005-07-18 Thread Richard Gaskin
Bob Earp wrote: I know I sound like a worn out record, but I really don't have a good answer when they say to me but we didn't have to do this with your ToolBook projects So it goes when a product is made by a co-founder of an OS vendor who doesn't publish all of their APIs. ;) --

Re: Problem with Save As Standalone App

2005-07-18 Thread J. Landman Gay
On 7/18/05 11:52 AM, Ban Nguyen wrote: Hello, I am having problem with Save As Standalone App. I have a Rev file (about 400,000 KB) when I save it as standalone app (making an exe file). It took a long time to finish. The exe file size is only 1,620 KB. I could not open it. I don't know

Re: Scripting conference stack available - Script Anatomy 2

2005-07-18 Thread J. Landman Gay
Oops; forgot to post the time and date for our next conference: 1122134400 To convert this number, paste this into the message box: get 1122134400;convert it to system date and time;put it I love this seconds stuff. :) On 7/18/05 12:49 PM, J. Landman Gay wrote: The scripting conference

Re: development tools question

2005-07-18 Thread Richard Gaskin
There's also DeskView, part of the devolution toolkit, shown in the middle of the screen shot here: http://www.fourthworld.com/products/devolution/index.html DeskView not only shows small proxie images of all of your open windows, but right-clicking on any of them lets you quickly change stack

Re: embed/install font

2005-07-18 Thread Bob Earp
I need this BIG time, and it mnay be a show stopper form me moving a whole mess of customers form ToolBook (where this isa breeze to do) to Rev. At RevConWest Andre Garcia said that he thought he had a way of doing this by using a custom property to store the font, but I haven't heard from him

Re: External for running one instance on windows

2005-07-18 Thread Mark Wieder
Trevor- Sunday, July 17, 2005, 12:25:01 PM, you wrote: TD I don't know what a critical section is so it made the decision much TD easier :-) g As I understand it, they're almost the same thing - mutexes work with multiple threads in an single application, critical section objects work with

RE: Problem with Editable Fields

2005-07-18 Thread Lynch, Jonathan
Feel free to send your stack to me, and I will check it out and see if I see anything obvious. [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Burgun Sent: Monday, July 18, 2005 1:50 PM To: How to use Revolution Subject: RE:

RE: Problem with Editable Fields

2005-07-18 Thread David Burgun
Hi, Tried what you suggested, the invalid values still gets saved. I know the closeField gets called because I hear the beep. I put a breakpoint on both all three handler, mouseUp, NewMouseUp and closeField and when the done key is pressed it enters the mouseUp handler BEFORE closeField, so the

Scripting conference stack available - Script Anatomy 2

2005-07-18 Thread J. Landman Gay
The scripting conference stack for this coming weekend is now available for download from the usual place: http://support.runrev.com/scriptingconferences/ This conference topic is Script Anatomy 2, presented by the capable Frank Leahy. It discusses the difference between handlers and

Re: XMLRPC Authentication

2005-07-18 Thread Andre Garzia
On Jul 18, 2005, at 3:47 PM, david bovill wrote: Looking into sending xmlrpc calls that require basic http authentication... any ideas as it is not documented in the xmlrpc create request, but is AFAIK part of the libUrl stack... just can't find any docs at the moment... David, many

Re: Naming conventions

2005-07-18 Thread Mark Wieder
Dennis- Sunday, July 17, 2005, 10:31:45 AM, you wrote: DB Is there any advantage to putting the main block of comments outside DB the handler vs inside the handler? I think it looks cleaner having them outside, but no, there's no advantage other than just your own preference. -- -Mark Wieder

Re: embed/install font

2005-07-18 Thread Mark Talluto
On Jul 18, 2005, at 10:11 AM, Brad Borch wrote: Mark, I put the installer created by IC into a custom property in my rev app. My rev app spits out the installer Thanks for the pointer. I've done a fair bit of work in Director, Flash, etc. A long time ago I did Hypercard work. I'm

Icons for plugins

2005-07-18 Thread Bob Earp
I'm using Chip's incredibly wonderful altPlugin to manage a bunch of other great plugins, but a lot of the plugins don't seem top come with a 32 x 32 pixels icon by default. Are there any available for specifically RevNet, Color Picker, Resources Picker, and Scripters Scrapbook or do I have to

RE: Problem with Editable Fields

2005-07-18 Thread Jan Schenkel
--- David Burgun [EMAIL PROTECTED] wrote: Hi, Tried what you suggested, the invalid values still gets saved. I know the closeField gets called because I hear the beep. I put a breakpoint on both all three handler, mouseUp, NewMouseUp and closeField and when the done key is pressed it

Re: embed/install font

2005-07-18 Thread J. Landman Gay
On 7/18/05 10:39 AM, Stephen Barncard wrote: I remember the days long ago in Hypercard where you could install a font as a resource in a stack, and it 'just worked', even though we were warned not to for some reason. The reason was a complete and comprehensive system crash if a print job

Re: What is 'Constellation' ?

2005-07-18 Thread Jon
I wonder why it took 5 days for this message to reach me (via Rev)?!? In any event, Constellation is a new editor and property editor that Jerry Daniels is writing. Check it out at http://www.daniels-mara.com/products/constellation.htm :) Jon Mathewson wrote: Slow on the uptake as

Re: Screen fonts great in Rev, bad in Word- why?

2005-07-18 Thread Dave Cragg
On 18 Jul 2005, at 17:38, Mark Swindell wrote: Why do screen fonts look so good in Rev and Pages and so bad in Word and AppleWorks? Even with Font smoothing turned on in AppleWorks Times still looks terrible... hardly useable. I'm using OS X Tiger. I also set the system font

How to customize the scroll bar, progress bar, and slider bar?

2005-07-18 Thread Ban Nguyen
Hello everyone, Is the anyway to customize the look of scroll bar, progress bar, and slider bar? I have been searching the list but have not come across to any tutorials? Does anyone know please help? Thank you ___ use-revolution mailing list

Re: embed/install font

2005-07-18 Thread Chipp Walters
Bob, Here's how I would probably go about this on XP.. 1) Research what registry entries are changed in Windows when installing a TrueType font 2) Suck up the font into your app: set the uMyCustomFont of this stack to URL (binfile:C:/myfont.ttf) 3) On startup spit it back out: a) find the

Re: Revolution unbooted

2005-07-18 Thread Mark Wieder
Seamus- Tuesday, July 12, 2005, 9:57:10 AM, you wrote: SB Can anybody comment on the stability of a runrev app (connected through SB ODBC to SQL Server) running on a linux/windows box for many many days SB without rebooting? Are memory leaks a problem? I am looking into SB developing something

Problem with Save As Standalone App

2005-07-18 Thread Ban Nguyen
Hello, I am having problem with Save As Standalone App. I have a Rev file (about 400,000 KB) when I save it as standalone app (making an exe file). It took a long time to finish. The exe file size is only 1,620 KB. I could not open it. I don't know what's wrong. Could someone help me with

Re: How to customize the scroll bar, progress bar, and slider bar?

2005-07-18 Thread Malte Brill
Hi Ban, actually there was a thread quite recently. You will need to roll your own Scrollbar to customize it. Look at this thread: http://mail.runrev.com/pipermail/use-revolution/2005-July/062687.html Download Klaus stack. You also find a scrollbar with a proportional thumb in my userspace

Jacque's Great!

2005-07-18 Thread Timothy Miller
I've retained Jacque (as in J. Landman Gay) as a Rev consultant, on a per-hour basis, on and off over the past few months. The job is pretty much done now. Not only did she prepare my HC stacks for transition to Rev, she also helped me to learn to fly on my own wings in Rev. She was patient

Re: embed/install font

2005-07-18 Thread Chipp Walters
Hi Bob, Y'know I'm pretty sure there's a way to install fonts w/out putting them in the fonts folder. I know Adboe does it this way, and I've seen utilities that do the same...perhaps it a function of the registry. In anycase, I suppose you could always 'install and deinstall' a font at the

Re: Revolution unbooted

2005-07-18 Thread Chipp Walters
Mark, I concur with Jon. I regularly use 3 separate Windows XP machines, and multiple programs on each and never find the NEED TO reboot them, other than for service patches and app installs. best, Chipp Jon wrote: Mark: I run my Windows XP box (and ran my Windows 2000 box) for 1-2 weeks

Re: development tools question

2005-07-18 Thread Chipp Walters
Yes, DeskView was the inspiration for 'miniMe' (the plugin I don't distribute). Richard and I were representing RR at a recent Apple WorldWide developer conference, and he showed it to me in beta state. It was so cool I ended up writing a similar plugin that evening in my hotel. I think

Re: Jacque's Great!

2005-07-18 Thread Richard Gaskin
Amen to that, brother. I've hired Jacque myself in the past, and recently recommended her to a client whose work I'd love to do but things are just too busy here right now to do it well. She's always done a great job and has a rare gift for communication as well, offering good feedback on

Re: Jacque's Great!

2005-07-18 Thread Andre Garzia
On Jul 18, 2005, at 8:23 PM, Richard Gaskin wrote: releasing balloons that read Hurray for Jacque I want one! Jacque is great and that is one of the reasons I like this list so much, it's a place where consultants on the same niche praise each other with no regrets

Re: Jacque's Great!

2005-07-18 Thread Richard Gaskin
Andre Garzia wrote: On Jul 18, 2005, at 8:23 PM, Richard Gaskin wrote: releasing balloons that read Hurray for Jacque I want one! Jacque is great and that is one of the reasons I like this list so much, it's a place where consultants on the same niche praise each other

Look and Feel, Metal texture -- Windows questions

2005-07-18 Thread Xplex
Hello! I'm using Dreamcard in Windows XP, and have been trying the various options under Look and Feel in the View menu. I'm not sure what some of the options are supposed to look like, but I'm not really seeing much difference after choosing Mac OS Platinum Emulated. Am I not

a maze-game stack?

2005-07-18 Thread N Cueto
Hello List, My space invaders stack now done (oh! how I wish arcadeEngine had come out just a couple of weeks earlier!), it's now onto the next game: a maze game stack. In this game, language students have a birds-eye view of a 2D maze. They then hear a sound (a phoneme), after which they

MatchText and PCRE

2005-07-18 Thread David Vaughan
The documentation says to see the PCRE manual for regular expression syntax. The PCRE manual refers to certain properties set as part of a C program. Consequently, I am unsure of the answers to the following four questions. True, I can experiment to see how these currently work but that

Re: CGI to send back a file to save

2005-07-18 Thread Sivakatirswami
Aloha JB: Yes, I did get this working with help from someone on Expert's Exchange. But thank you... your note confirms the method... I use this for this context (sending a realAudio.ram file) [SNIP] put tURLStem tMainFolder / tYear / tAudioFileName into tAbsoluteURL # send this out

Re: Jacque's Great!

2005-07-18 Thread Mark Wieder
Timothy- Monday, July 18, 2005, 4:04:38 PM, you wrote: TM I've retained Jacque (as in J. Landman Gay) as a Rev consultant, on a Ah... you're in good hands then. Just watch her estimates - she tends to list everything in seconds these days... g TM (BTW, the debugger anomaly, discussed last

Re: Look and Feel, Metal texture -- Windows questions

2005-07-18 Thread Sarah Reichelt
I'm using Dreamcard in Windows XP, and have been trying the various options under Look and Feel in the View menu. I'm not sure what some of the options are supposed to look like, but I'm not really seeing much difference after choosing Mac OS Platinum Emulated. Am I not understanding

Re: Jacque's Great!

2005-07-18 Thread Sarah Reichelt
Hear, hear! While I have never hired Jacque, I have imposed on her good nature many times over many years, first on the Hypercard list and now here. She is unfailingly helpful, polite and extremely knowledgeable. Many thanks to Jacque and all the other helpful folk on this list. Sarah

Re: Revolution unbooted

2005-07-18 Thread Mark Wieder
Jon, Chipp- Monday, July 18, 2005, 4:11:17 PM, you wrote: CW I concur with Jon. I regularly use 3 separate Windows XP machines, and CW multiple programs on each and never find the NEED TO reboot them, other CW than for service patches and app installs. The *need* to reboot them is subtler than

[Slightly OT] Ransomware as a Model for Rev Toolmaking?

2005-07-18 Thread Dan Shafer
A friend of mine pointed me to an intriguing business concept called RansomWare and as I thought about it, it seemed there might be some possible use for it in the Rev developer community. Under this model, a developer offers to produce a given product, sets a development price threshold

RE: [Slightly OT] Ransomware as a Model for Rev Toolmaking?

2005-07-18 Thread Jim Bufalini
Sounds like Capitalism (raising money, investors, etc.) with a Communist ending. :-) Except for the *donation to a charity* part (people who put up money, should get it returned, if no tool is produced, so that they can put that same money towards another project, that is close to threshold) it

Re: embed/install font

2005-07-18 Thread Jeanne A. E. DeVoto
At 1:11 PM -0400 7/18/2005, Brad Borch wrote: Thanks for the pointer. I've done a fair bit of work in Director, Flash, etc. A long time ago I did Hypercard work. I'm sure with a little bit of guidance I'll get custom properties, but if you could just point me to a brief explanation of how this

RE: Revolution unbooted

2005-07-18 Thread MisterX
Mark, No offense meant but in 5 years of NT server maintenance, i've never heard such non-sense. we run servers for 5-6 months non-stop and except for service packs or security fixes, there is absolutely no need to reboot them EVER. 3 times??? woah! I wonder who gave you that idea... ;) Now,