Re: How do you program a save dialog when no changes in the file has been made?

2010-11-08 Thread charles61
on closestackrequest if the dirty of field text then -- do the save dialog here else pass closestackrequest end if end closestackrequest note: this is a simplified example, and does not cover all real life possibilities On 7 Nov 2010, at 23:46, charles61 wrote

Behavior Problem

2010-11-08 Thread charles61
I have two sets of checkboxes, which are grouped (marked ad major) I have the following script in a button: on mouseUp switch case (hilitedButton of group marked is not 0 and hilitedButton of group major is not 0 ) set the hilite of button RBE to true set the hilite of

How do you program a save dialog when no changes in the file has been made?

2010-11-07 Thread charles61
I have code in my save menu that brings up a dialog for saving a file with Don't Save, Cancel and Save. After the user saves the file the first time, the code will automatically insert the name of the file into the dialog above when the user wants to save it again or get ready to open a new file.

Problematic script on Windows 7!

2010-11-05 Thread charles61
The following script, which works fine on the Mac, gets flagged by Windows 7 in a windows standalone. The line that is cited: Send 'mouseUp' to button b is displayed in bug report on the standalone that it cannot find a handler with the above line. After the message, printing of a single page

Re: Problematic script on Windows 7!

2010-11-05 Thread charles61
://clipboardlink.economy-x-talk.com Op 6 nov. 2010 om 02:11 heeft charles61 [hidden email] het volgende geschreven: The following script, which works fine on the Mac, gets flagged by Windows 7 in a windows standalone. The line that is cited: Send 'mouseUp' to button b

Re: Problematic script on Windows 7!

2010-11-05 Thread charles61
, charles61 wrote: Mark, There are no pass mouseUp' commands in any of the checkboxes. Most of the checkboxes don't have a script. They do have a custom property, uMylabel, which is used in a group script to populate a field with the labels on print only cards. The checkboxes that do

Re: Skipping a mark card

2010-11-04 Thread charles61
Jim, That is interesting! How would I script this using preOpenCard? Charles Szasz csz...@mac.com On Nov 3, 2010, at 5:40 PM, Jim Ault [via Runtime Revolution] wrote: You might try preOpenCard which is sent before the user see the card being opened. On Nov 3, 2010, at 1:56 PM,

Re: Skipping a mark card

2010-11-04 Thread charles61
Craig, Thanks! I will try your script little later today. Charles Szasz csz...@mac.com On Nov 4, 2010, at 10:27 AM, dunbarx [via Runtime Revolution] wrote: Charles: Just one possible way: on preOpenCard if the yourSpecialProperty of this stack is skip then go next marked

Re: Skipping a mark card

2010-11-04 Thread charles61
Jim, Thanks! I will try your script little later today. Charles Szasz csz...@mac.com On Nov 4, 2010, at 10:38 AM, Jim Ault [via Runtime Revolution] wrote: (untested, but might work) In the stack script on preopencard if the number of marked cards is the number of cards then

What is wrong with this script?

2010-11-04 Thread charles61
I am trying to use the following in another handler to send a mouseUp to hilited checkboxes on marked cards but it does not work. Any suggestions? on doStuff3 put the num of this card into tStartCard lock screen repeat with y = 1 to the number of cards if the mark of card y true

Re: What is wrong with this script?

2010-11-04 Thread charles61
Craig, Yes I got it to work on a test stack that I was working with. A typo was the culprit. Charles Szasz csz...@mac.com On Nov 4, 2010, at 7:01 PM, dunbarx [via Runtime Revolution] wrote: It does work. It's a bit wordy, but works fine. If you have these buttons in a background, you

Re: What is wrong with this script?

2010-11-04 Thread charles61
Craig, Thanks for that suggestion! I will indeed try it out. I did find some glitches with my posted script in my actual project. The script did not seem to work as well when I had grouped some checkboxes so that I could show an alert message when none checkboxes had been checked in the

Re: What is wrong with this script?

2010-11-04 Thread charles61
Craig, Your script not only worked faster but it was also worked better with the grouped checkboxes than my script. Thanks!!! Charles Szasz csz...@mac.com On Nov 4, 2010, at 7:31 PM, dunbarx [via Runtime Revolution] wrote: Charles. Good. This never happens to me. Your script can

Re: What is wrong with this script?

2010-11-04 Thread charles61
Craig, Your script the first time but I got an error the second time I tried printing saying; flagging the line end mouseUp to button b and reporting the error message: button Print; execution error at line 287 (Chunk: no such object) near 27, char 31 I went to line 27 which had the code:

Re: What is wrong with this script?

2010-11-04 Thread charles61
Crag, I checked and rechecked the script but there were no typos or spaces. I ran the script several more times and got a dialog message: The handler: mouseUp has reached the recursion limit of: 40. Execution will be terminated to prevent hang. i have never gotten this message before!

Re: What is wrong with this script?

2010-11-04 Thread charles61
Craig, I should mention that the recursive message came after I discovered that I left out the following: of marked card y for the first part of if the style of button b on doStuff3 ---Sends mouseUp to checkboxes that are checked on marked cards repeat with y = 1 to the number of

Re: What is wrong with this script?

2010-11-04 Thread charles61
. Landman Gay [via Runtime Revolution] wrote: On 11/4/10 7:55 PM, charles61 wrote: When I of marked card y, the script that looks like the following caused the printing to hang and I had to force quit Rev 4.0 and relaunch Rev. This, plus the recursion error you got, likely indicates

Skipping a mark card

2010-11-03 Thread charles61
I have a project that uses marked cards to navigate them. Aside from unmarking a card, is there a way to skip a mark card when you are using a script (go to next marked card) to go to marked cards? -- View this message in context:

Re: Skipping a mark card

2010-11-03 Thread charles61
Richmond, Thanks for your humor! Charles Szasz csz...@mac.com On Nov 3, 2010, at 10:07 AM, Richmond Mathewson-2 [via Runtime Revolution] wrote: 'Skipping the difficult bits' is a well-documented sport, as well as 'Jumping to conclusions' and 'Running a temperature':

Re: Skipping a mark card

2010-11-03 Thread charles61
Hi Craig, I have a special marked card that is always marked. This because I also want it to be included when a text file is saved. I only want the special card to be accessible via a button. In addition, I have other marked cards that the user has access to while using my application. I

Re: Skipping a mark card

2010-11-03 Thread charles61
Craig, I found that by checking the Find Command ignores box of the special marked card that I don't want the user to access using the marked command works! But this card has to be the last marked card in the stack to work. When the user is on the next to last marked card and clicks on a

Re: Skipping a mark card

2010-11-03 Thread charles61
Craig, I forgot to add that I had to use the following script in my navigation button in addition to checking the Find Command ignores box of the special marked card: on mouseUp if dontSearch of next marked card = false then go next marked card end if end mouseUp Charles

Re: Underscore in script for windows?

2010-11-01 Thread charles61
Ken, Thanks very much! Charles Szasz csz...@mac.com On Nov 1, 2010, at 4:12 PM, Ken Ray [via Runtime Revolution] wrote: I am using the following script to open a text file for both windows and Macintosh. My question is do I need two separate scripts one for the Mac and one for

Underscore in script for windows?

2010-10-28 Thread charles61
I am using the following script to open a text file for both windows and Macintosh. My question is do I need two separate scripts one for the Mac and one for for Windows (XP, Vista, Windows 7) with a space instead of an underscore? For example /S504_Student for /S504 Student for Windows. if

Close File question

2010-10-26 Thread charles61
I have the name and location of a file in a variable, gOpenDataFile. For example: /Users/cszasz/Documents/School Personnel/Tom Jones.txt Can I use the following: Put empty into gOpenDataFile to close a file? The reason I ask is that I have been unable to use the Close File command to close

Re: Close File question

2010-10-26 Thread charles61
for Mac and Windows on *every* Rev-compatible platform. No additional software needed. On 26 okt 2010, at 17:29, charles61 wrote: I have the name and location of a file in a variable, gOpenDataFile. For example: /Users/cszasz/Documents/School Personnel/Tom Jones.txt Can I

Re: Close File question

2010-10-26 Thread charles61
: 50277553 Download the Installer Maker plugin for Runtime Revolution at http://qurl.tk/ce Create installers for Mac and Windows on *every* Rev-compatible platform. No additional software needed. On 26 okt 2010, at 17:29, charles61 wrote: I have the name and location of a file

Re: Close File question

2010-10-26 Thread charles61
://qurl.tk/ce Create installers for Mac and Windows on *every* Rev-compatible platform. No additional software needed. On 26 okt 2010, at 18:00, charles61 wrote: Mark, I also tried the following which did not work. Any suggestions? close file URL (file: gOpenDataFile

Re: Close File question

2010-10-26 Thread charles61
the full path to the file. I noticed you are using a relative path. Not sure if that makes a difference but give it a shot. Also try closing the file using a literal, that is using the value and not the variable. Bob On Oct 26, 2010, at 8:29 AM, charles61 wrote: I have the name

Need help with this script...

2010-10-25 Thread charles61
I have the following script where the user is given the option of not saving a new file, canceling, or saving it. The problem is that when the I select New in the File dialog the dialog with the three options does not appear and the fields in the open file are cleared out. switch pWhich

Re: Progress bar with lock?

2010-10-22 Thread charles61
Hugh, Thanks for this suggestion! I will give it a try. Charles Szasz csz...@mac.com On Oct 22, 2010, at 3:26 AM, FlexibleLearning-2 [via Runtime Revolution] wrote: Hi Charles, According to the Scripter's Scrapbook: A useful tip for displaying a modal that will not block, for

Progress bar with lock?

2010-10-21 Thread charles61
I have an app that I am working on that takes a few seconds to clear fields, reset radio buttons and checkboxes before it goes to the second card. During this time, the screen is locked. I wanted to show a progress bar during this process is going on. Is there anyway to show a progress bar while

Re: Progress bar with lock?

2010-10-21 Thread charles61
for Runtime Revolution at http://qurl.tk/ce Create installers for Mac and Windows on *every* Rev-compatible platform. No additional software needed. On 21 okt 2010, at 21:14, charles61 wrote: I have an app that I am working on that takes a few seconds to clear fields, reset radio

Re: Progress bar with lock?

2010-10-21 Thread charles61
Scott, That is a good idea! It seems easy to do and would serve the same purpose. Thanks very much! Charles Szasz csz...@mac.com On Oct 21, 2010, at 3:19 PM, Scott Rossi [via Runtime Revolution] wrote: Recently, charles61 wrote: I have an app that I am working on that takes a few

Re: Progress bar with lock?

2010-10-21 Thread charles61
of people here on the list would pay for that. I know I would! I cannot code in c++ or java so I cannot do it. Bob On Oct 21, 2010, at 12:14 PM, charles61 wrote: I have an app that I am working on that takes a few seconds to clear fields, reset radio buttons and checkboxes

Sending mouseup to checkboxes on different card

2010-10-20 Thread charles61
I am trying to devise a script to send a mouseUp to checkboxes on different cards that are already checked. The following script works for checkboxes on the first card but gives an execution error message on the second card saying there is no such object. I checked the fields and script in this

Re: Sending mouseup to checkboxes on different card

2010-10-20 Thread charles61
Hi Craig! I checked for line breaks but there is none. I think the one in my posting was due to cutting and pasting the code to Nabble. My sample stack of two cards has four checkboxes on one card and four on the second. Each checkbox has code to show a field that when it is checked. To see

Re: Sending mouseup to checkboxes on different card

2010-10-20 Thread charles61
:49 -0700 charles61 apparently wrote: Hi Craig! I checked for line breaks but there is none. I think the one in my posting was due to cutting and pasting the code to Nabble. My sample stack of two cards has four checkboxes on one card and four on the second. Each checkbox has code

Re: Sending mouseup to checkboxes on different card

2010-10-20 Thread charles61
Revolution] wrote: On 20.10.10 at 07:49 -0700 charles61 apparently wrote: Hi Craig! I checked for line breaks but there is none. I think the one in my posting was due to cutting and pasting the code to Nabble. My sample stack of two cards has four checkboxes on one card and four

Re: Sending mouseup to checkboxes on different card

2010-10-20 Thread charles61
This weird! The script editor shows that the checkboxes on the second card are being examined in the repeat loop but the checkboxes that are checked are not receiving the mouseUp command. This is also supported that the checkboxes are not showing the fields that are not hidden. So, I don't

Re: Sending mouseup to checkboxes on different card

2010-10-20 Thread charles61
Charles Szasz csz...@mac.com Klaus, Thanks for your suggestion! I will try it. Thanks again! On Oct 20, 2010, at 12:05 PM, Klaus on-rev [via Runtime Revolution] wrote: Hi Charles, Robert, I tried your suggestion. But I get the same results: the checkboxes received the

Re: Sending mouseup to checkboxes on different card

2010-10-20 Thread charles61
Klaus, Your script worked! What changes do I have to make if I wanted to use this script to send a mouseUp to checkboxes on marked cards? I did not use marked cards in my sample stack. Charles Szasz csz...@mac.com On Oct 20, 2010, at 12:05 PM, Klaus on-rev [via Runtime Revolution]

Re: Sending mouseup to checkboxes on different card

2010-10-20 Thread charles61
Klaus, Thanks! Charles Szasz csz...@mac.com On Oct 20, 2010, at 12:35 PM, Klaus on-rev [via Runtime Revolution] wrote: Hi Charles, Klaus, Your script worked! Go figure :-) What changes do I have to make if I wanted to use this script to send a mouseUp to

Re: Sending mouseup to checkboxes on different card

2010-10-20 Thread charles61
Robert, I understand your previous e-mail about using custom handlers. I have never used this concept before. But I am not following you when you sent the following: f one uses full reference in the called script (that is script in btn b of cd y refers to itself as btn b of cd y) then going

Re: Sending mouseup to checkboxes on different card

2010-10-20 Thread charles61
Robert, Thanks for your explanation and your time! Charles Szasz csz...@mac.com On Oct 20, 2010, at 1:01 PM, Robert Brenstein [via Runtime Revolution] wrote: On 20.10.10 at 09:47 -0700 charles61 apparently wrote: Robert, I understand your previous e-mail about using custom

Save and Print Card Problem

2010-10-18 Thread charles61
I have a stack that has 72 cards. When the user selects a set of cards and completes some fields, radio buttons and checkboxes, the results are loaded into another set of cards that are used for printing. The print cards are devoid of buttons. Then the user clicks on the Print button and the

Unable to select text in script editor!!

2010-09-18 Thread charles61
I am using Rev 4.0 Build 950 for the Mac. I have been experiencing sporadic problems in the script editor. At times, I unable to select text. In these situations, I can insert the cursor before text or after text to move forward to add or move backwards to delete text. I have checked my

Need help with ListMagic!

2010-09-17 Thread charles61
I am using ListMagic (LM) in my project. I have two LM tables - student and adult. The adult table works fine but I have been having persistent problems with the student table for the past two weeks! The two tables are on different cards. I am using Rev. Enterprise 4.0 Built 950 on the Mac. The

Re: Grouping checkboxes with label fields

2010-09-14 Thread charles61
Thanks to everyone for their suggestions! Although Jacquline's suggestion may be the easiest to implement, I am going to try each suggestion to see which works best for me. Thanks everybody! -- View this message in context:

Grouping checkboxes with label fields

2010-09-13 Thread charles61
I have a series of cards that have checkboxes. Some of the checkboxes have labels fields under them because the label of the checkbox will not hold the content of the information displayed. Here is my question: I want to modify the following group script for checkboxes to display the content of

Optimizing print code

2010-09-10 Thread charles61
I have developed the following print card code for both the Mac and Windows. When I tested it the Print Dialog seems to take longer to show up despite improvements I made to both print scripts. I would certainly appreciate any suggestions on how to speed up the print dialog appearing! Here is

ListMagic Users: Cannot import LM data with the status of checkboxes

2010-08-10 Thread charles61
I love List Magic. It makes it extremely easy to make lists in Rev apps. After using the syntax given in the docs to export and then import LM lists, I found that the status of the checkboxes in the second header are not being imported when you import the list back into your app. Has any LM users

Creating a folder using get specialFolderPath

2010-08-09 Thread charles61
I have the following handler that creates a text file (list) on the user's application support folder on OS X: if the platform = MacOS then get specialFolderPath(home) specialFolderPath(asup) / list put it into tfilePath end if I tried the following to create a folder in the

Re: A real problem with Prefs!!

2010-08-06 Thread charles61
Chipp, Thanks! I will save it and use it in my next project! Charles Szasz csz...@mac.com On Aug 5, 2010, at 8:53 PM, Chipp Walters [via Runtime Revolution] wrote: Charles, I will sometimes have a getPrefsFolder() function. Something like: function getPrefsFolder get the

Re: E-mailing data file

2010-08-05 Thread charles61
Thanks to everyone for your suggestions! -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/E-mailing-data-file-tp2313404p2314908.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-revolution

Saving data in List Magic tables

2010-08-05 Thread charles61
I have a standalone consisting of a splash stack and an app stack. I have set up a script that the user can insert some information into two tables - one for students and one for adults. These tables are on two different cards in my app stack. I have been testing my standalone on Windows XP

Re: Saving data in List Magic tables

2010-08-05 Thread charles61
!! Charles Szasz csz...@mac.com On Aug 5, 2010, at 10:35 AM, Richard Gaskin [via Runtime Revolution] wrote: charles61 wrote: I have a standalone consisting of a splash stack and an app stack. I have set up a script that the user can insert some information into two tables - one

Re: Saving data in List Magic tables

2010-08-05 Thread charles61
Klaus, I appreciate your comments along with Richard's. Thanks so much! Charles Szasz csz...@mac.com On Aug 5, 2010, at 10:47 AM, Klaus on-rev [via Runtime Revolution] wrote: Hi Charles, additionally to Richard's answer, plese see my coments below your code. I have a standalone

Re: E-mailing data file

2010-08-05 Thread charles61
Richard, Wow! I really appreciate your suggestions on e-mailing data. This is something I hope to add on to my app after it is deployed. I don't have any experience with CGI. So thanks again!!! Charles Szasz csz...@mac.com On Aug 5, 2010, at 10:54 AM, Richard Gaskin [via Runtime

Re: E-mailing data file

2010-08-05 Thread charles61
Richard, Thanks and I will check Jacque's tutorial for CGIs! Charles Szasz csz...@mac.com On Aug 5, 2010, at 11:08 AM, Richard Gaskin [via Runtime Revolution] wrote: charles61 wrote: Wow! I really appreciate your suggestions on e-mailing data. This is something I hope to add

Re: Saving data in List Magic tables

2010-08-05 Thread charles61
Richard, I check the standalones setting and found for the Mac, .rev is being used. I will uncheck that and try using .dat again. Thanks! Charles Szasz csz...@mac.com On Aug 5, 2010, at 11:00 AM, Richard Gaskin [via Runtime Revolution] wrote: charles61 wrote: Regarding the .Rev

Re: Saving data in List Magic tables

2010-08-05 Thread charles61
Richard, What is the best location for an app to be installed on OSX? Charles Szasz csz...@mac.com On Aug 5, 2010, at 10:35 AM, Richard Gaskin [via Runtime Revolution] wrote: charles61 wrote: I have a standalone consisting of a splash stack and an app stack. I have set up

Re: Saving data in List Magic tables

2010-08-05 Thread charles61
] wrote: charles61 wrote: I have a standalone consisting of a splash stack and an app stack. I have set up a script that the user can insert some information into two tables - one for students and one for adults. These tables are on two different cards in my app stack. I have

Re: Saving data in List Magic tables

2010-08-05 Thread charles61
: charles61 wrote: After going to Key Ray's site, I found asup as code for Application Support constant for OS X. Is this the best place to put your app when you install it on an user's OS X computer? Now you've gone an opened up a can of worms, Charles! :) This question touches

E-mailing data file

2010-08-04 Thread charles61
I created an app that generates a data file. The files are saved on the user's hard drive. I want to add an e-mail button that would allow the user to send the file by e-mail by selecting the file within the app to send to another person who is using my program. How can I do that? -- View

Re: E-mailing data file

2010-08-04 Thread charles61
Richard, The only problem is that I am dealing with individual computers running the program and not a server. Any other ideas? Charles Szasz csz...@mac.com On Aug 4, 2010, at 10:07 AM, Richard Gaskin [via Runtime Revolution] wrote: charles61 wrote: I created an app that generates

Re: A real problem with Prefs!!

2010-08-03 Thread charles61
Mark, Thanks for your suggestion. Here is what I am trying to do. My app has a preferences for the user to complete. It includes the name of the user, telephone number and e-mail address that are used on a couple of cards as part of a document that is later printed out. When the app is first

Re: A real problem with Prefs!!

2010-08-03 Thread charles61
Hi Mark, I tried your suggestion and it works on both my windows and mac apps!! Here is my revised stack script of my app stack: on preOpenStack set the loc of this stack to the screenloc loadPrefs end preOpenStack on loadPrefs pFilename local tPrefs -- put url (binfile:

A real problem with Prefs!!

2010-08-02 Thread charles61
I successful finished testing my app within the IDE. I created a standalone and then launched it on Windows XP. I got the following error message from the Bug Report as an email: Object: stack 'C:/Documents and Settings/All Users/Application Data/MyProduct/S504.rev' Line Num: 65 Hint: loadPrefs

Re: A real problem with Prefs!!

2010-08-02 Thread charles61
Hi Mark! I had that code in the actual Prefs stack but not in my app stack script. If I put the following: put tPrefs into url (binfile: specialFolderPath(26) / 504_prefs) before loadPrefs in app stack script I should be okay? Charles Szasz csz...@mac.com On Aug 2, 2010, at 9:02 PM,

Unique problem

2010-07-27 Thread charles61
I have developed an app that deals with student files and adult files. When the user goes to the student section, the file menu items for adults is disabled. And, when the user goes to the adult section, the file menu items for students is disabled. I set up my app like so that the user would not

Re: Unique problem

2010-07-27 Thread charles61
don't think there is a system message that gets fired off when you open a file. Bob On Jul 27, 2010, at 10:16 AM, charles61 wrote: I have developed an app that deals with student files and adult files. When the user goes to the student section, the file menu items for adults

Re: Unique problem

2010-07-27 Thread charles61
, 2010, at 10:16 AM, charles61 wrote: I have developed an app that deals with student files and adult files. When the user goes to the student section, the file menu items for adults is disabled. And, when the user goes to the adult section, the file menu items for students is disabled

Re: Unable to save prefs in Windows/Mac standalones

2010-07-24 Thread charles61
Richmond, Apparently you only read the header of my posting and my script. I am NOT saving preferences in a standalone. If you look at my script you will see that I am trying to save my preferences as a separate file. The Preferences are read into the program each time it is launched. With this

Unable to get saved preferences file into a standalone at launched

2010-07-24 Thread charles61
I have two stacks: a splash and an app stack (S504). I have a stack prefs which is part of the app stack. The Prefs stack is not moved out as a separate stack when the standalone is made. I used an installer to install my program in the AllUsersAppData directory for windows Xp. When I run the

Re: Unable to save prefs in Windows/Mac standalones

2010-07-24 Thread charles61
PM, charles61 wrote: Richmond, Apparently you only read the header of my posting and my script. I am NOT saving preferences in a standalone. If you look at my script you will see that I am trying to save my preferences as a separate file. The Preferences are read into the program

Re: Unable to get saved preferences file into a standalone at launched

2010-07-24 Thread charles61
. If the preferences file doesn't exist, load the preferences stack, get the user to fill it in, and when the prefs are saved, tell the appstack to try and reload the preferences file. On Sat, Jul 24, 2010 at 8:33 AM, charles61 [hidden email] wrote: I have two stacks: a splash and an app

Unable to save prefs in Windows/Mac standalones

2010-07-22 Thread charles61
I have two stacks: a splash and an app stack (S504). I have a stack prefs which is part of the app stack. The Prefs stack is not moved out as a separate stack when the standalone is made. I used an installer to install my program in the AllUsersAppData directory for windows Xp. When I run the

Unable to save prefs in Windows/Mac standalones

2010-07-22 Thread charles61
I have two stacks: a splash and an app stack (S504). I have a stack prefs which is part of the app stack. The Prefs stack is not moved out as a separate stack when the standalone is made. I used an installer to install my program in the AllUsersAppData directory for windows Xp. When I run the

A problem with radio buttons group...

2010-07-13 Thread charles61
I have two groups of button sets, part1 and part2. Each group has two buttons: Part1 group: buttons 1a and 1b; and Part2 group: buttons 2a and 2b. The following script is on a single card with the card script setting groups of buttons to zero when the user gets to the card. I get the desire

Re: A problem with radio buttons group...

2010-07-13 Thread charles61
case, change both to true checking the opposite button, so would check for part1b true and part2b true. 4th case, check for part2b true as your change there. On Tue, Jul 13, 2010 at 3:34 PM, charles61 [hidden email] wrote: I have two groups of button sets, part1 and part2. Each group

New Window App allows programming for iPhone!

2010-07-07 Thread charles61
I just came across a link to a new Windows program, DragonFireSDK, that allows Windows users to program for the iPhone without using Apple's SDK. I believe the program sells for $49. I went to the site last night but did not write down the details. I tried to go to the site a moment ago to

A problem with this prefers script...

2010-07-07 Thread charles61
I am trying to set up a preference file. I have two stacks - a splash stack and an app stack. The Prefs stack is a substack of the app stack and is not a separate stack I trying to use the url and binfile with specialfolder to set up my preference file in the appropriate place for windows

Re: A problem with this prefers script...

2010-07-07 Thread charles61
Klaus, Thank! I understand now that I left out the name of the file. But what is the suffix at the end of your_prefs_file.prf? Charles Szasz csz...@mac.com On Jul 7, 2010, at 1:42 PM, Klaus on-rev [via Runtime Revolution] wrote: Hi Charles, I am trying to set up a preference

Re: A problem with this prefers script...

2010-07-07 Thread charles61
I want to thank everyone for their help! I have to go back and review information on file management. For others who may have this same question or problem, here is my script for loading prefs: on loadPrefs pFilename local tPrefs -- put url (binfile: pFilename) into tPrefs IF the

App deployment on Windows

2010-07-03 Thread charles61
What are the standard locations for deploying ann app on Windows XP, Vista and Windows 7? -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/App-deployment-on-Windows-tp2277320p2277320.html Sent from the Revolution - User mailing list archive at Nabble.com.

Re: App deployment on Windows

2010-07-03 Thread charles61
computer over the local network. On 3 jul 2010, at 18:49, charles61 wrote: What are the standard locations for deploying ann app on Windows XP, Vista and Windows 7? ___ use-revolution mailing list [hidden email] Please visit

Re: App deployment on Windows

2010-07-03 Thread charles61
Richmond I am concern about the location of the installation because of the virtualization that Vista and Windows 7 employs. Charles Szasz csz...@mac.com On Jul 3, 2010, at 1:33 PM, Richmond Mathewson-2 [via Runtime Revolution] wrote: On 07/03/2010 07:49 PM, charles61 wrote: What

Icon sizes for Windows XP, Vista and 7

2010-07-02 Thread charles61
What are the sizes of icons needed for Windows XP, Vista and Windows 7 when you are making a Windows executable? -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Icon-sizes-for-Windows-XP-Vista-and-7-tp2276826p2276826.html Sent from the Revolution - User mailing

Re: Icon sizes for Windows XP, Vista and 7

2010-07-02 Thread charles61
Scott, Thanks so much for that information! I will put it in my Rev Notebook! Charles Szasz csz...@mac.com On Jul 2, 2010, at 7:18 PM, Scott Rossi [via Runtime Revolution] wrote: Recently, charles61 wrote: What are the sizes of icons needed for Windows XP, Vista and Windows 7 when

Re: How do you fix this?

2010-07-01 Thread charles61
is not hidden. I guess my question is how do other developers handle this type of situation when they hide the menubar on the first card? Or what do you suggest? Charles Szasz csz...@mac.com On Jul 1, 2010, at 12:23 PM, J. Landman Gay [via Runtime Revolution] wrote: charles61 wrote: I had

Re: How do you fix this?

2010-07-01 Thread charles61
Jacqueline, I managed to fix my problem by removing the script to hide the menu bar. This along with the Set as stack Menu bar for the Mac resolved my problem. Charles Szasz csz...@mac.com On Jul 1, 2010, at 12:23 PM, J. Landman Gay [via Runtime Revolution] wrote: charles61 wrote: I

How do you fix this?

2010-06-30 Thread charles61
I had problems with the cutting off of the bottom because of not setting the Set as Stack Menu bar in the Menu Builder. I have set the Destroystack of my splash, app and substacks to false. Now when I created my Mac app, I get the top of my second card showing the upper 1/4 inch of blue from the

Imbedding e-mail address in an About dialog...

2010-06-29 Thread charles61
How do you imbed an e-mail address link in the generic About dialog generated by the Menu Builder? I wanted to put a link in the About dialog so the user could click on it that would launch the user's e-mail application. -- View this message in context:

specialFolderPath question

2010-06-28 Thread charles61
I have the following script (partial script to save space) in an altAccordion group. When the user clicks on selection_1 the user is not always taken to the path indicated in the script. In these situations, the user is taken to the last path, which may selection_2. I thought that the path in the

Re: specialFolderPath question

2010-06-28 Thread charles61
Shao, No, I didn't. I was aware that the defaultFolder have to be set! Charles Szasz csz...@mac.com On Jun 28, 2010, at 11:37 AM, Shao Sean-2 [via Runtime Revolution] wrote: Did you try setting the defaultFolder before doing the answer file command?

Re: specialFolderPath question

2010-06-28 Thread charles61
Klaus, Thanks for your suggestions! Charles Szasz csz...@mac.com On Jun 28, 2010, at 12:13 PM, Klaus on-rev [via Runtime Revolution] wrote: Hi charles61, I have the following script (partial script to save space) in an altAccordion group. When the user clicks on selection_1

Radio button group

2010-06-26 Thread charles61
i have the following script for a group of three radio buttons to check to see if any of the radio buttons has been selected. If one has been selected the script then checks to see if a field e-mail has been completed. According to the Rev docs, the hilitedButton of a group is an integer

Re: Radio button group

2010-06-26 Thread charles61
Please disregard my previous posting concerning radio buttons. I found my error. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Radio-button-group-tp2269461p2269522.html Sent from the Revolution - User mailing list archive at Nabble.com.

Optimized print code for OSX

2010-06-25 Thread charles61
I have the following script that I am using to print a card. I have incorporated some scripts to hide buttons and some edit boxes and to show label fields instead of edit boxes. The code seems slow in executing when I click on Preview in the OSX print dialog. Aside from using the printing off the

  1   2   >