Re: How to tell when a table field has changed

2008-10-19 Thread Bill Vlahos
that only sends when the value changes? If not, I'll report the pOldText value missing as a bug. Bill On Oct 19, 2008, at 10:11 PM, Jan Schenkel wrote: --- Bill Vlahos [EMAIL PROTECTED] wrote: How do I tell when the contents of a table field have changed? It doesn't seem to generate

Re: Rev Standalone and Encryption

2008-10-01 Thread Bill Vlahos
and lost your source file. Bill Vlahos On Wednesday, October 01, 2008, at 09:22AM, Ted [EMAIL PROTECTED] wrote: Hello, I have two questions about the Rev Standalone Builder Encrypt with Password feature. 1. How does the password come into play? After activating this feature, the completed

Printing

2008-09-21 Thread Bill Vlahos
I remember seeing tutorials to printing features in 2.9 but I can't find them now. Can someone enlighten me please? Bill Vlahos Sent from my iPhone ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe

Text and not text in a string

2008-09-20 Thread Bill Vlahos
I want to determine if a string contains a word but doesn't contain two other words. For example (in the message box): put Internet Work contains Work is true How do I ask if the string contains Internet but not Work or Home? Bill Vlahos ___ use

Re: Text and not text in a string

2008-09-20 Thread Bill Vlahos
Terry, That did it. Thanks Terry. Bill Vlahos On Sep 20, 2008, at 3:42 PM, Terry Judd wrote: How about... put (myString contains cat) and not((myString contains dog) or (myString contains mouse)) Terry... On 21/9/08 8:35 AM, Bill Vlahos [EMAIL PROTECTED] wrote: I want to determine

Re: chat protocols

2008-09-12 Thread Bill Vlahos
David, Do you have a finished Jabber application? Our Windows users use ether Spark or Pidgin and while they work ok there is room for improvement. Our Mac users use iChat. Bill On Sep 11, 2008, at 5:34 AM, David Bovill wrote: I'll be upgrading my Jabber / GoogleTalk library - once I've

Beta testers wanted

2008-09-11 Thread Bill Vlahos
application under Macintosh OS X, Windows, or Linux please email me at [EMAIL PROTECTED] Thanks, Bill Vlahos ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

Re: Could it be this simple?

2008-09-03 Thread Bill Vlahos
rich as the Windows version. It basically creates a drag copy installer which is well suited for Rev programs. Both versions integrate license agreements and ReadMe files in the install process and automatically compress the files. I'm very happy with it. Bill Vlahos On Jul 22, 2008, at 11

Re: Maximize a window

2008-09-03 Thread Bill Vlahos
Eric, Good suggestions. Thanks. Bill Vlahos On Sep 2, 2008, at 2:31 AM, Eric Chatonet wrote: Bonjour Bill, See maxHeight, maxWidth, screenRect, windowBoundingRect and rect (of stack). Le 2 sept. 08 à 09:01, Bill Vlahos a écrit : What is the command to maximize a window? The maximize

Maximize a window

2008-09-02 Thread Bill Vlahos
the resizable window fit the screen. What command would that be? Bill Vlahos ___ 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

Re: Trouble deleting a line of text

2008-08-25 Thread Bill Vlahos
Thanks Sarah. Bill On Aug 24, 2008, at 3:58 PM, Sarah Reichelt wrote: On Mon, Aug 25, 2008 at 8:36 AM, Bill Vlahos [EMAIL PROTECTED] wrote: I have a table field (but in testing any field behaves this way) that I want to delete a line of text when the user right clicks on it. The following

Re: Trouble deleting a line of text

2008-08-25 Thread Bill Vlahos
inexpensive hosting services. See http://economy-x-talk.com/server.html for more info. On 25 aug 2008, at 00:36, Bill Vlahos wrote: I have a table field (but in testing any field behaves this way) that I want to delete a line of text when the user right clicks on it. The following script deletes

Trouble deleting a line of text

2008-08-24 Thread Bill Vlahos
missing? Bill Vlahos ___ 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: Linux touch equivalent for Windows?

2008-08-20 Thread Bill Vlahos
Would renaming the file to the same name trigger the mod date? Bill Vlahos Sent from my iPhone On Aug 19, 2008, at 2:13 PM, Phil Davis [EMAIL PROTECTED] wrote: Is there a Windows shell command that lets you change the mod dates of files the way touch lets you do it in Linux? Thanks

Custom Property Syntax

2008-08-15 Thread Bill Vlahos
Doctors of stack my stack to tCounter Getting: put the uCounter of card Doctors of stack my stack into tCounter Bill Vlahos ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: off topic : Parallels alternative : VirtualBox

2008-07-28 Thread Bill Vlahos
In Parallels you can easily designate a Mac folder to be available to the VMs. It is very simple to do. I believe VMWare can do this but I have not tried it yet. Bill Vlahos On Jul 28, 2008, at 5:42 AM, Thierry wrote: And second question, which put this thread in On Topic. Can we share

Re: Contextual Menus

2008-07-26 Thread Bill Vlahos
What would be the command for Select All? Bill Vlahos On Jul 21, 2008, at 6:45 PM, J. Landman Gay wrote: J. Landman Gay wrote: If you just want to operate on the text, you can do things like copy the selection. Actually (she said, replying to herself) it's even easier than that. Rev

Problem with focusIn and a substack

2008-07-26 Thread Bill Vlahos
theDate from short English date to short system date put theDate into me end if closeField end mouseUp on focusIn -- click at the loc of me end focusIn Bill Vlahos ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url

Re: Contextual Menus

2008-07-26 Thread Bill Vlahos
://economy-x-talk.com/server.html for more info. On 27 jul 2008, at 01:57, Bill Vlahos wrote: What would be the command for Select All? Bill Vlahos ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe

Re: Contextual Menus

2008-07-26 Thread Bill Vlahos
On Jul 26, 2008, at 9:41 PM, Ken Ray wrote: On 7/26/08 6:57 PM, Bill Vlahos [EMAIL PROTECTED] wrote: What would be the command for Select All? select the text of the selectedField But you want to make sure it has a context (i.e. an open field, otherwise you'll get an error since

Re: Contextual Menus

2008-07-26 Thread Bill Vlahos
I added the command: focus on target just before the popup command and that mostly works. It doesn't put the insertion point (for pasting) where I clicked. Is there a better way to do this? Bill On Jul 26, 2008, at 10:18 PM, Bill Vlahos wrote: Ken, Thanks. This works. I have another

Re: Could it be this simple?

2008-07-23 Thread Bill Vlahos
. You get a simple drag and drop build... can't be easier. The drag and drop does need to happen on a Windows OS. Scott Morrow Elementary Software (Now with 20% less chalk dust!) web http://elementarysoftware.com/ email [EMAIL PROTECTED] On Jul 22, 2008, at 8:02 PM, Bill Vlahos

Re: Contextual Menus

2008-07-23 Thread Bill Vlahos
There is a Focus with keyboard check box in the properties of a regular button but not a popup button. I should have been more specific. Bill On Jul 21, 2008, at 6:36 PM, J. Landman Gay wrote: Bill Vlahos wrote: Note there is no UI in the Properties of a button to set traversalOn. I had

Re: Contextual Menus

2008-07-23 Thread Bill Vlahos
OK. So with the help of a few great people on this list I now can do popup contextual menus for fields. Thank you. A user suggested that pretty much every field (regular text field) should be able to have a contextual menu for Cut, Copy, and Paste at a minimum. How would I add this

Could it be this simple?

2008-07-22 Thread Bill Vlahos
for StuffIt Deluxe to do this? Thanks, Bill Vlahos ___ 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

Re: Contextual Menus

2008-07-21 Thread Bill Vlahos
of the button to false :-) Le 21 juil. 08 à 03:06, Bill Vlahos a écrit : Thanks Eric. I've added the following script to a field: on mouseDown pButton if pButton = 3 then put Cut return Copy return Paste into tMenu put tMenu into button b1 popup btn b1 end if end mouseDown This didn't

Re: Contextual Menus

2008-07-20 Thread Bill Vlahos
need the originally selected text to work with. What am I missing? Bill Vlahos On Jun 7, 2008, at 1:47 AM, Eric Chatonet wrote: Bonjour Bill, Le 7 juin 08 à 09:58, Bill Vlahos a écrit : How do I implement a right-click on a field? For example: Select word(s) in the field

Re: App restart after update

2008-07-05 Thread Bill Vlahos
actually use it in this situation. I'm missing something. Bill On Jun 17, 2008, at 9:56 PM, Trevor DeVore wrote: On Jun 18, 2008, at 12:44 AM, Bill Vlahos wrote: Most of the time I only update the stacks. What is the command to unload the stacks? After I unload the stacks how do I reinitialize

Re: Rev Navigator/Geoff Canyon

2008-07-04 Thread Bill Vlahos
I'll forward it to him. Bill Vlahos On Jul 4, 2008, at 3:48 AM, Bernard Devlin wrote: Hi I tried to contact Geoff at [EMAIL PROTECTED] (the address on his site), but the email came back. I wanted to to register my copy but I couldn' see how to pay for it, and wanted to suggest a user forum

Path to a double-clicked document

2008-07-02 Thread Bill Vlahos
it is to where I want it to be. I assume getting the path will be the same for all the platforms and I can write the copy/move routine. Bill Vlahos ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe

How do I get the word before char x?

2008-06-29 Thread Bill Vlahos
a repeat loop until I get to a space. This seems inelegant and I can envision several situations which would trip this up (punctuation characters, etc.). Is there a built in function for this? Thanks, Bill Vlahos ___ use-revolution mailing list

Re: How do I get the word before char x?

2008-06-29 Thread Bill Vlahos
Brilliant Sarah and Jan. Thank you, Bill Vlahos On Jun 29, 2008, at 9:36 PM, Jan Schenkel wrote: --- Bill Vlahos [EMAIL PROTECTED] wrote: How do I get the word before a specific character in a field? I can be any character in the text field I choose but I can't figure out how to do something

Table field and fonts

2008-06-22 Thread Bill Vlahos
Mac and Windows computer but some Windows users are reporting lots of different problems with fonts. Is there a way to set the default font and size for a stack? I'm letting Rev pick them and they don't match very well between platforms. Bill Vlahos

Ask dialog with multiple button choices

2008-06-21 Thread Bill Vlahos
to the next place prompt to enter text Is there another way to do this without creating a substack dialog box? Bill Vlahos ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: App restart after update

2008-06-17 Thread Bill Vlahos
Trevor, Most of the time I only update the stacks. What is the command to unload the stacks? After I unload the stacks how do I reinitialize the standalone stack? Bill Vlahos On Jun 17, 2008, at 5:37 PM, Trevor DeVore wrote: On Jun 17, 2008, at 1:49 AM, Bill Vlahos wrote: My

Re: App restart after update

2008-06-17 Thread Bill Vlahos
Richard, Interesting idea. Thanks. Bill Vlahos On Jun 17, 2008, at 5:59 PM, Richard Gaskin wrote: Bill Vlahos wrote: Quitting the application after the download is easy but how do I have the computer automatically relaunch it? I would need this for Macintosh and Windows and Linux

App restart after update

2008-06-16 Thread Bill Vlahos
it, quits the running application, and then relaunches the new one (and I presume deletes the old version). Quitting the application after the download is easy but how do I have the computer automatically relaunch it? I would need this for Macintosh and Windows and Linux. Bill Vlahos

Close this stack vs. clicking the close button

2008-06-08 Thread Bill Vlahos
it prompts the user to save the changes. However, after that it doesn't behave the same. What is different between clicking the close box and issuing the command? Bill Vlahos ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit

Re: Close this stack vs. clicking the close button

2008-06-08 Thread Bill Vlahos
in the Revolution menu). If the request is initiated from a script (eg close this stack) then the closeStackRequest message is not sent. Perhaps my questions should be what does Revolution do when the user clicks File - Close? It must not be close this stack. Bill Vlahos On Jun 8, 2008

Contextual Menus

2008-06-07 Thread Bill Vlahos
How do I implement a right-click on a field? For example: Select word(s) in the field Right-click on field to get a context menu of choices: Cut Copy Paste etc. Bill Vlahosu

Re: Rev Save Crash fixed with OSX 10.5.3 system update

2008-06-03 Thread Bill Vlahos
was to put save this stack in the message box instead of Command-s or the Save item in the File menu. I'm cautiously thrilled that this might be fixed. Bill Vlahos On Jun 3, 2008, at 10:30 AM, Thomas McGrath III wrote: Well, As the subject states it seems that the OSX 10.5.3 system update has

Re: OT - Contact manager in Rev or ??

2008-05-07 Thread Bill Vlahos
. I'll be sending an email to this list after RunRevLive if anyone is interested in participating in the beta. Bill Vlahos On May 7, 2008, at 1:51 PM, Bob Earp wrote: Does anybody know of a contact manager that has bee written in Rev? If not, can anybody recommend a contact manager

Re: 2.9 Freeze on OSX

2008-05-05 Thread Bill Vlahos
I am experiencing the freezing and will be at RunRev Live. Bill Vlahos On Saturday, May 03, 2008, at 03:22PM, M Koob [EMAIL PROTECTED] wrote: I won't be going to Runrev live this month but I hope that someone who is experiencing the freezes is going and can demonstate it to the developers

Table cell formatting

2008-04-27 Thread Bill Vlahos
for this? I've entered mm, mmyy, mm and it doesn't seem to make any difference. I've also tried entering d for day but that is not an accepted letter. What would the correct settings be for using the system date format? Bill Vlahos ___ use-revolution

Re: Table cell formatting

2008-04-27 Thread Bill Vlahos
I forgot to include that this is for the Date format of the table cell. Bill On Apr 27, 2008, at 12:45 PM, Bill Vlahos wrote: I'm poking around with the table cell format options. It looks like even though you can select multiple columns for formatting it only actually seems to work

Re: Tab in tables and determine which cell

2008-04-27 Thread Bill Vlahos
Thanks to JB for his suggestions on keeping count but Ken Ray came up with a more elegant solution. I'm not sure why Rev hasn't documented this. Thanks, Bill Vlahos Here you go, Bill... after some research, it turns out that Rev doesn't give you too many messages to work

Tab in tables and determine which cell

2008-04-23 Thread Bill Vlahos
I have a table that users can tab through. I'd like to be able to determine when a user tabs into a certain column and do some action. I can determine it when the user clicks in a cell but how can I determine it when they tab into a cell? Bill Vlahos

Quitting a standalone and saving open stacks

2008-04-20 Thread Bill Vlahos
when finished like the Mac does? Bill Vlahos ___ 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

Fixed: Quitting a standalone and saving open stacks

2008-04-20 Thread Bill Vlahos
, Ken, and Trevor for help with this. Bill Vlahos On Apr 20, 2008, at 11:18 AM, Bill Vlahos wrote: I have a standalone which opens other stacks that contain data. There is a closeStack handler in each data stack that checks to see if the stack needs to be saved and prompts the user. This works

Re: 2.9 Freeze on OSX

2008-04-16 Thread Bill Vlahos
I see this problem on newly created stacks and I don't think it is a permissions issue. It seems to be random when it crashes. It will work fine several times and then crash. Nothing apparently different on my end. I never had this problem with any previous version of Rev or any other program

Re: 2.9 Freeze on OSX

2008-04-10 Thread Bill Vlahos
I am. There already is a bugzilla ticket (5256) for this and Rev is trying to get a handle on it. Obviously it only affects a subset of users but it is bad. Bill Vlahos On Apr 10, 2008, at 8:19 AM, Thomas McGrath III wrote: Ok, now that the 2.9 version has been out for a little while I

How to paste into multiple fields

2008-04-09 Thread Bill Vlahos
into the other fields. If I type it manually it works as the TAB key moves the selection to the next field. However, if I paste into the first field all of the text goes into that field. Is there a way to do this without using a special script which would do an import from the clipboard? Bill Vlahos

Re: Apple Text Box

2008-04-05 Thread Bill Vlahos
and other Mac programs of the era condensed and expanded actually did something obvious and useful. I would like to use these options. Is there a way? Bill Vlahos On Apr 3, 2008, at 4:26 PM, Paul Gabel wrote: Hi: I mean — The box you get when you type cmd-T in TextEdit. It shows all

How to do hyperlinked text in a field not locked

2008-04-05 Thread Bill Vlahos
I'd like to have linked text in a field that is still editable. An example would be an email program that has text which can be copied or linked clicked on. I can do it in a locked field but then the user can't get to the text. Bill Vlahos ___ use

Re: How to indicate window needs saving

2008-03-26 Thread Bill Vlahos
you loaded a new (but as yet unchanged) record. len morgan Bill Vlahos wrote: I just created the enhancement request 6213. http://quality.runrev.com/qacenter/show_bug.cgi?id=6213 I requested both specifically to support this on the Mac (where Apple has interface guidelines) but also

How to put an entry into a combo box button

2008-03-25 Thread Bill Vlahos
I have a combo box button with a number of choices. How do I script putting text in the button? Bill Vlahos ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

Re: How to put an entry into a combo box button

2008-03-25 Thread Bill Vlahos
must have goofed it. Thanks, Bill Vlahos On Mar 25, 2008, at 5:38 PM, Randy Hengst wrote: Hi Bill, Here is one way: put Capitalize return Lower Case return Quotation Mark into button comboDemo take care, randy hengst - On Mar 25, 2008, at 7:31 PM, Bill Vlahos wrote: I have

Combo Box Key Combination

2008-03-25 Thread Bill Vlahos
the option to pick from the list. I don't see anywhere in the docs that describe something like this. Thanks, Bill Vlahos ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: How to indicate window needs saving

2008-03-25 Thread Bill Vlahos
be useful on any platform and help programmers by established a Rev standard method. Bill Vlahos On Mar 22, 2008, at 9:15 AM, Richard Gaskin wrote: Bill Vlahos wrote: Even if Windows doesn't have any standard HIG for this, the Mac does. It is unfortunate that Rev doesn't have a way

Re: How to indicate window needs saving

2008-03-22 Thread Bill Vlahos
Even if Windows doesn't have any standard HIG for this, the Mac does. It is unfortunate that Rev doesn't have a way to to indicate it on the Mac. It sounds like even AppleScript won't help. Bill On Mar 21, 2008, at 8:51 AM, Richard Gaskin wrote: Ken and I talked about this last night,

How to indicate window needs saving

2008-03-20 Thread Bill Vlahos
The Mac allows visual feedback to the user that a window needs to be saved by changing the red (left most) icon with a dark dot in it. I don't know if Windows or Linux do the same thing. How do I give this indication to the user? Is there a property in Rev to do this? Bill Vlahos

Geometry Manager Reset

2008-03-08 Thread Bill Vlahos
to me to set. Is there a way to remove GM from multiple objects at once? If I select more than 1 item in the IDE the Geometry property is no longer available. Thanks, Bill Vlahos BTW there is a plugin from F. Rinadli called revGridDisplay available from RevOnline that makes it easier

Re: Sha-1 Encryption

2008-01-22 Thread Bill Vlahos
Fantastic. Thank you Mark. Bill On Jan 22, 2008, at 2:39 AM, Mark Smith wrote: Bill, I have a library: http://www.futility.co.uk/futsoft/revolutionstuff.html best, Mark On 22 Jan 2008, at 04:25, Bill Vlahos wrote: Rev currently does MD5Digest but I don't see SHA-1 capability which

Sha-1 Encryption

2008-01-21 Thread Bill Vlahos
Rev currently does MD5Digest but I don't see SHA-1 capability which is stronger and is more modernly used. Is it there and I missed it? If not, does someone have a function I could use? It doesn't have to be fast. Bill Vlahos ___ use-revolution

Re: OT:converting csv to xls with Rev

2008-01-09 Thread Bill Vlahos
Depending on exactly what you need, all you might need to do is change the extension to .xls and Excel will just open it. Bill Vlahos Sent from my iPhone On Jan 9, 2008, at 5:08 AM, [EMAIL PROTECTED] wrote: Hi, does anyone know a way to convert a csv to xls with Rev under Windows? MS

Re: Creating .icns files on Mac.

2008-01-08 Thread Bill Vlahos
. As others have pointed out BootCamp is an optional install. I agree with Richard that Parallels or VMWare is a pretty good option without requiring a reboot. Bill Vlahos On Jan 8, 2008, at 7:55 PM, Chipp Walters wrote: Well, my MacBook came backed fixed. Turns out they pretty much gave

Re: OT: MacBook randomly shuts down..

2008-01-06 Thread Bill Vlahos
chocolate, or soda into the laptop which are not covered by AppleCare. I might buy AppleCare if I was in situations that put the computer at risk and I depended on it or for the reasons you cite below. Bill Vlahos On Jan 5, 2008, at 11:36 AM, Chipp Walters wrote: I certainly do for all my cars

Alphanumerics only

2008-01-06 Thread Bill Vlahos
How do I limit text from an Answer dialog to only letters and numbers? I can check for number with is a number but I don't see the alpha syntax. Bill Vlahos Sent from my iPhone ___ use-revolution mailing list use-revolution@lists.runrev.com Please

Re: USB-serial adapters for Windows

2008-01-06 Thread Bill Vlahos
Sarah, I would stick with KeySpans. I believe the KeySpan software maps them to the COM ports. KeySpan makes single and multiple serial port adapters. Bill On Jan 6, 2008, at 9:21 PM, Sarah Reichelt wrote: Hi All, For many years now, I have been successfully suing USB-serial adapters

Re: OT: MacBook randomly shuts down..

2008-01-04 Thread Bill Vlahos
it into an Apple Store would be the best first step unless you have a spare battery and can swap it out now. In my experience crashes and freezes on OS X is almost always a hardware problem. Bill Vlahos On Jan 3, 2008, at 11:34 PM, Chipp Walters wrote: My MacBook...about a year old or so, just

Re: Recipes application

2008-01-04 Thread Bill Vlahos
The latest 2.9 beta (3) fixes the encryption problem. If you use the decrypt or encrypt function in Rev 2.8.2 or 3 it won't return anything under Leopard (oddly enough 2.8.1 does) when run on an Intel Mac as a Universal binary. It works if run under Rosetta. Bill On Jan 4, 2008, at 12:34

Re: cards in a stack

2008-01-02 Thread Bill Vlahos
. Bill Vlahos Sent from my iPhone On Jan 2, 2008, at 12:40 PM, Joe Lewis Wilkins [EMAIL PROTECTED] wrote: Thanks, Paul. I didn't realize that there was a performance hit using Rev. How about searching in Rev? HC's searching was amazingly fast, even in the days of SE30s, although I do recall

Re: Recipes application

2008-01-01 Thread Bill Vlahos
Peter, I tried it with a G4 iMac running Tiger 10.4.11 and it doesn't run there either. The only problems I've had with running in Leopard is when using encryption or the metal interface. Bill Vlahos On Jan 1, 2008, at 7:35 AM, Peter Brigham wrote: Randy Hengst [EMAIL PROTECTED] wrote

Re: Recipes application

2007-12-31 Thread Bill Vlahos
Peter, I downloaded the Mac version but it doesn't launch on an Intel Mac with Leopard. It starts to open and then nothing happens. Bill On Dec 31, 2007, at 11:59 AM, Peter Brigham wrote: FYI, I just finished up creating my first standalone (with help from a variety of people on this

Re: File extensions for Windows

2007-12-13 Thread Bill Vlahos
Chipp, Thanks for the info. I've never modified the Registry. Is there an easy way to do the single task I want? Bill On Dec 13, 2007, at 1:04 AM, Chipp Walters wrote: Bill, You need to edit the registry on the users computer to create a link between your application and it's files.

File extensions for Windows

2007-12-12 Thread Bill Vlahos
can't seem to find much discussion in the docs for the Standalone Application Settings. Please let me know if and where these are described in the Docs. Bill Vlahos ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit

Re: problem with standalone mac-windows

2007-11-25 Thread Bill Vlahos
Could you be using a special character that Windows doesn't like? I've seen strange behavior on the Mac if you use a slash in the name of the menuitem. I'd stay a way from any special characters and see if that works correctly. Bill On Nov 25, 2007, at 2:58 PM, Peter Brigham wrote: OK, I

Re: (mac) application menu

2007-11-18 Thread Bill Vlahos
Richard, I think these problems are bugzilla'd originally in 4994 and then also in 5362 (which is marked as a duplicate of 4994). However, the workaround does not work for me. On Nov 18, 2007, at 9:33 AM, Richard Gaskin wrote: My first test was with the current shipping version,

Re: (mac) application menu

2007-11-17 Thread Bill Vlahos
Richard, I'm having the same problem which is still present in DP 2.9 b2. I believe there are a couple of BZ tickets on this including one Ken Ray created with me. It is a real problem and one I have not been able to solve. Perhaps I can talk to you offline? Bill Vlahos On Nov 17, 2007

Re: Cross-platform video w/out QT

2007-11-17 Thread Bill Vlahos
I thought MPEG could be played on Mac, Windows, and Linux with existing built-in tools but Rev needed QuickTime. Perhaps I'm wrong about that. Here is an interesting blog about the multi-media: http://www.appleinsider.com/articles/07/10/25/

Re: Can't trap Quit

2007-09-22 Thread Bill Vlahos
Nope. This didn't fix it either. Same behavior. Bill On Sep 20, 2007, at 4:57 AM, Michael Binder wrote: However, that would require a user to click on it. I put it into the following handler which is called by both the closeStackRequest and shutdownRequest and it doesn't work. Hi Bill, I

Re: Can't trap Quit

2007-09-20 Thread Bill Vlahos
preCloseStack Bill Vlahos On Sep 18, 2007, at 10:48 AM, Ken Ray wrote: On Tue, 18 Sep 2007 05:58:53 -0400, Michael Binder wrote: I think bug 5362 = 4994. There is a workaround. After each Answer Dialog, just reset the defaultstack. Yup, that was it... thanks! Bill you now know what to do

Can't trap Quit

2007-09-13 Thread Bill Vlahos
prevents even the on shutdownRequest. Ken Ray helped me characterize this bug and entered the Buzilla ticket. He tried it in MetaCard and it doesn't seem to be a problem there. How have folks solved this in Rev? Thanks, Bill Vlahos ___ use

Re: Send email with attachment

2007-09-02 Thread Bill Vlahos
and the list know. This is something that a lot of us have been trying to figure out for a long time. Thanks. Derek Bump Dreamscape Software http://www.dreamscapesoftware.com Bill Vlahos wrote: Thanks Derek. What I want to do is essentially what Microsoft does in Word and Excel. You can

Re: Send email with attachment

2007-08-30 Thread Bill Vlahos
://www.dreamscapesoftware.com Bill Vlahos wrote: The following command works great for opening a new email message and putting the address(s) in it. What I would like to also do is add a specific attachment to the email as well but I don't see a parameter for doing that. This would be for Mac and Windows now and Linux

Send email with attachment

2007-08-26 Thread Bill Vlahos
out. revGoURL mailto:[EMAIL PROTECTED] I know there are ways to send email directly from Rev apps but in this case I would like to leverage the email program the user already has and not require setting up SMTP parameters. Thanks, Bill Vlahos

Ask window on attached to wrong window

2007-08-23 Thread Bill Vlahos
a similar command in Rev. Bill Vlahos ___ 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

Looking for documentation

2007-07-30 Thread Bill Vlahos
or not to include them? I don't see it in the documentation. Bill Vlahos ___ 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

Re: What I did with Rev last night

2007-07-04 Thread Bill Vlahos
I would be interested in hearing more about this program. I wrote the demo encrypt/decrypt stack in RevOnLine and it would be good to know how to tie into public and private keys. Bill Vlahos On Jul 4, 2007, at 1:20 PM, Brent Anderson wrote: Hello. A simple PGP Encrypt/Decrypt program

Re: [OT] iPhone anyone?

2007-07-01 Thread Bill Vlahos
and will probably look like the eraser end of a pencil. Although after using my finder I'd say it works pretty well and isn't something I'm likely to lose. Bill Vlahos On Jul 1, 2007, at 9:48 AM, Ken Ray wrote: - Absolutely could not type on the keyboard. Very difficult. Perhaps my fingers

Re: [OT] iPhone anyone?

2007-07-01 Thread Bill Vlahos
Been a Mac user too long. I meant to say, ...using my finger... Bill On Jul 1, 2007, at 3:53 PM, Bill Vlahos wrote: Although after using my finder I'd say it works pretty well and isn't something I'm likely to lose. ___ use-revolution mailing

Re: Mac UB standalones and OS versions

2007-06-03 Thread Bill Vlahos
is the minimum version we should support. Bill Vlahos On Jun 2, 2007, at 9:40 PM, Shari wrote: I don't know if Apple ever finally started giving out free updates to boost 10.2.8 higher or not. THAT would be the question, then. I couldn't upgrade that computer past 10.2.8 without paying again, so

Re: keymaker for rev

2007-06-01 Thread Bill Vlahos
Mark, What does KeyMaker do? Bill Vlahos On Jun 1, 2007, at 11:22 AM, Mark Talluto wrote: On May 31, 2007, at 11:52 PM, Peter Alcibiades wrote: Hi Mark, Is keymaker a 2.7.x stack? I cannot open it, and this is usually because of being on Linux and stuck on 2.6.1 Would you have

Re: Relative folder paths

2007-05-30 Thread Bill Vlahos
/Video into gVideoPath-- set up the graphics path for image controls set the defaultFolder to gProjectPath / Graphics/ end InitPathsDate: Fri, 25 May 2007 17:10:29 -0700From: Bill Vlahos [EMAIL PROTECTED]Subject: Relative folder pathsTo: How to use

Download file from a web server

2007-05-28 Thread Bill Vlahos
/Datafile.ifw;) into URL binfile:Datafile.ifw Any idea what's going on? Bill Vlahos ___ 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

Compact Stack

2007-05-27 Thread Bill Vlahos
for other types of changes? Bill Vlahos ___ 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

Stack version?

2007-05-26 Thread Bill Vlahos
to download the new version which would replace the old version. I can come up with a way to do this but I'm pretty sure there are more experienced Revolutionaries on this list have have thought this over already. Bill Vlahos ___ use-revolution mailing

Re: Stack version?

2007-05-26 Thread Bill Vlahos
will never see it. Andre On May 26, 2007, at 9:42 PM, Bill Vlahos wrote: I was wondering how others deal with versionioning their stacks. I don't mean the standalones which already have version information but regular stacks. I have a stack that is opened by a standalone stub. The standalone

Re: Stack version?

2007-05-26 Thread Bill Vlahos
Richard, That's great. I don't seem to be able to see any files. Do I need to be a member to get at it (I really hate Yahoo Groups). Bill On Saturday, May 26, 2007, at 06:32PM, Richard Gaskin [EMAIL PROTECTED] wrote: Bill Vlahos wrote: I was wondering how others deal with versionioning

Windows DLLs and path

2007-05-25 Thread Bill Vlahos
? Thanks, Bill Vlahos ___ 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   >