Re: Message Box History
dunb...@aol.com wrote: Once again, since I cannot remember anything anymore, where are this and similar underground goodies documented? They aren't, because they are part of the IDE code. They're just custom handlers and properties, meant only for internal use, like anything we'd write ourselves. But you can go digging and find stuff if you're brave enough. Just note that because they're internal, they are subject to change without notice. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com ___ 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: Message Box History
DunbarX wrote: Once again, since I cannot remember anything anymore, where are this and similar underground goodies documented? Many of them aren't; I'm still waiting for a leak on all the options for the _internal command. But there's a lot of good stuff in the Engine Change Log, down in the section toward the bottom labeled "Currently Unsupported Feature". Here's one related to the Message Box that's kinda cool if you need it: -- the revMessageBoxRedirect ~ This global property allows you to configure what happens when the value of the 'msg' pseudo-variable changes. When set to empty, the old behaviour will be used. When set to the long id of a field, the old behaviour is replicated but instead of 'msg' being put into field 1 of card 1 of stack "Message Box", it is put into the target field. (Note that this form will also cause the field's stack to be modeless'ed and raised). When set to the long id of a non-field object, the specified object will receive a 'msgChanged' message meaning that you have complete control over what to do with the updated value of 'msg'. NB. This property is only available in the IDE engine. -- -- Richard Gaskin Fourth World Rev training and consulting: http://www.fourthworld.com Webzine for Rev developers: http://www.revjournal.com revJournal blog: http://revjournal.com/blog.irv ___ 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: Message Box History
Craig- Wednesday, November 25, 2009, 12:52:42 PM, you wrote: > Now that is a much cleaner solution. > Once again, since I cannot remember anything anymore, where are this and > similar underground goodies documented? You want all the undocumented stuff *documented*? Bwahaha... Anyway, it's in the preOpenStack handler of stack "MessageBox". There's lots of stuff in custom properties of the revPreferences stack that probably should be somewhere else, but that's where the IDE puts it, so we're stuck with it. -- -Mark Wieder mwie...@ahsoftware.net ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution
Re: Re: 4d - Write
Malte, 1) If you have a 4d issue, it might be easier to just have someone who knows what they are doing fix it, provided that the application isn't compiled and thus the source isn't available. 2) I still would like to know what version of 4D we are looking at so I can figure out which version of 4D Write we are going to want to try to use. In answer to the question you are going to ask, I am not aware of any batch-conversion tool because it's (generally) pretty easy to just write one. So send me some more info. On Wed, Nov 25, 2009 at 15:47, Malte Pfaff-Brill wrote: > Hi Mikey, > > thanks for your reply. Good to have a 4d Guru around. :-) I have no doubt > that 4d is a good tool, however as with any tool it depends to a huge degree > on the person using it to create Software for other people. Sometimes the > solutions generated in any tool may not reflect the reality of the person > that should use the final product. I am currently fighting such a case where > I am forced to replace at least parts of a 4d system and thus have to > convert some hundret of 4d write documents. So I am hoping that some kind of > batch converter application exists that may export to any kind of open > format that could be parsed by me for further processing. > > > All the best, > > Malte > ___ > use-revolution mailing list > use-revolution@lists.runrev.com > Please visit this url to subscribe, unsubscribe and manage your > subscription preferences: > http://lists.runrev.com/mailman/listinfo/use-revolution > -- On the first day, God created the heavens and the Earth On the second day, God created the oceans. On the third day, God put the animals on hold for a few hours, and did a little diving. And God said, "This is good." ___ 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: Message Box History
I would LOVE to know all the underground goodies, because I'd like to put them into a "Tao of RR" document. On Wed, Nov 25, 2009 at 15:52, wrote: > Now that is a much cleaner solution. > > Once again, since I cannot remember anything anymore, where are this and > similar underground goodies documented? > > In a message dated 11/25/09 3:49:37 PM, mwie...@ahsoftware.net writes: > > > > put the cREVSingleLineHistory of stack "revPreferences" > > > > ___ > use-revolution mailing list > use-revolution@lists.runrev.com > Please visit this url to subscribe, unsubscribe and manage your > subscription preferences: > http://lists.runrev.com/mailman/listinfo/use-revolution > -- On the first day, God created the heavens and the Earth On the second day, God created the oceans. On the third day, God put the animals on hold for a few hours, and did a little diving. And God said, "This is good." ___ 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: Message Box History
Now that is a much cleaner solution. Once again, since I cannot remember anything anymore, where are this and similar underground goodies documented? In a message dated 11/25/09 3:49:37 PM, mwie...@ahsoftware.net writes: > put the cREVSingleLineHistory of stack "revPreferences" > ___ 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: Message Box History
The late Eric Chatonet's Message Box picker might be good. http://www.sosmartsoftware.com/?r=revolution&l=en Message Box Picker 1.1 Utility for Revolution Studio or Enterprise Freeware Additional functionalities for the message box This utility reorganizes the message history and puts the messages into chronological order, deletes any doubles and installs in the message box a drop-down menu that can be completely personalized and that makes it possible to bring up or to send a message with one mouse click. Bilingual utility (installer and uninstaller.) Help stack is included. Identical appearance on all platforms. - Stephen Barncard San Francisco http://houseofcubes.com/disco.irev 2009/11/25 > I modified the script of the "message field" in the message box for my own > purposes, but if you add just one line to the "enterInField" and > "returnInField" handlers there, you can send the contents of the field to > some storage > facility every time you use it: > > put me [&& the date && the time] & return after yourMessageHistoryContainer > > Never had an issue with it, though it is fiddling with the IDE a bit. > > Craig Newman > In a message dated 11/25/09 3:29:09 PM, howard.bornst...@gmail.com writes: > > > > I know you can use the up and down arrow keys to cycle through the > > history > > of previous items in the message box, but I don't know off-hand a way to > > see > > the entire list at once. Maybe someone else knows that trick. > > > > ___ > 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 > ___ 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
Import an app or doc icon into Revolution
I made an Application which copies files, apps or folders from one location to another. Basically its a backup program. Now I had an idea of displaying the Icon of the relevant file in a list of all files which are going to be copied. Until now I show only the path and the file name. Does anyone know how to read the small version of a document or application icon from any file under MacOSX ? Cheers Rolf ___ 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: Message Box History
Howard- Wednesday, November 25, 2009, 12:28:56 PM, you wrote: > I know you can use the up and down arrow keys to cycle through the history > of previous items in the message box, but I don't know off-hand a way to see > the entire list at once. Maybe someone else knows that trick. put the cREVSingleLineHistory of stack "revPreferences" -- -Mark Wieder mwie...@ahsoftware.net ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution
Re: Re: 4d - Write
Hi Mikey, thanks for your reply. Good to have a 4d Guru around. :-) I have no doubt that 4d is a good tool, however as with any tool it depends to a huge degree on the person using it to create Software for other people. Sometimes the solutions generated in any tool may not reflect the reality of the person that should use the final product. I am currently fighting such a case where I am forced to replace at least parts of a 4d system and thus have to convert some hundret of 4d write documents. So I am hoping that some kind of batch converter application exists that may export to any kind of open format that could be parsed by me for further processing. All the best, Malte ___ 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: Message Box History
I modified the script of the "message field" in the message box for my own purposes, but if you add just one line to the "enterInField" and "returnInField" handlers there, you can send the contents of the field to some storage facility every time you use it: put me [&& the date && the time] & return after yourMessageHistoryContainer Never had an issue with it, though it is fiddling with the IDE a bit. Craig Newman In a message dated 11/25/09 3:29:09 PM, howard.bornst...@gmail.com writes: > I know you can use the up and down arrow keys to cycle through the > history > of previous items in the message box, but I don't know off-hand a way to > see > the entire list at once. Maybe someone else knows that trick. > ___ 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: Message Box History
On Wed, Nov 25, 2009 at 8:53 AM, Mike Kerner wrote: > I thought I vaguely recalled a way to pull up message box history. Maybe > I'm thinking of some plugin. I know you can use the up and down arrow keys to cycle through the history of previous items in the message box, but I don't know off-hand a way to see the entire list at once. Maybe someone else knows that trick. -- Regards, Howard Bornstein --- www.designeq.com ___ 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: Interesting blog post - comments anyone?
Heather, I hope the following is tame enough for you, although I suspect it may not be. :-))) Marian I'm a full-time physician educator with a medical school faculty appointment and no formal training in programming. I've been using Revolution since it first came out and have been able to write several fairly complex interactive applications that are published by the leading press in my field using Revolution. Frankly, without Revolution I would not have had the time to even THINK of undertaking such an endeavor. To my mind, what Revolution offers to people like me is the ability to create a customized application that would take me forever to explain to a professional programmer who knows nothing about Transfusion Medicine and would likely cost a fortune to implement. All it took was some time learning basic syntax and the ability to set down the logic I created in a series of IF-THEN or CASE algorithms--not exactly rocket science. So, before you belittle Revolution for the statements you quoted, namely: >>“Empowers people who would never have attempted programming to create >>successful applications,” and that this, ”Enables software construction >>for everyone.” please consider that even non-professional programmers are capable of logical thinking and that some of us just need to get the job done in way that works properly and preferable that doesn't interfere with our day jobs. I could not have written the two apps I have published thusfar were it not for Revolution, so Revolution DID empower me to take on an unfamiliar task and construct software that "just works." I'm sure my code is not nearly as elegant as that I've seen other folks do with Revolution, but it did the trick for me and for that I am forever grateful. Marian Petrides, MD Associate Professor of Clinical Pathology University of Missouri School of Medicine Columbia, MO, USA On Nov 25, 2009, at 11:51 AM, Heather Nagey wrote: > I just came across this: > > http://community.zdnet.co.uk/blog/0,100567,10014516o-2000458459b,00.htm > > Thought it would interest you guys! If you feel the urge to post a comment, > the blogger is inviting debate - just keep it positive... it's probably best > not to wade in guns blazing if you disagree with his view. I think there is > an interesting debate to be had here. > > Nice to see Rev starting to attract widespread media interest :) > > Regards, > > Heather > > Heather Nagey > Customer Services Manager > http://www.runrev.com/ > RunRev - Software construction for everyone > follow me on twitter > http://www.twitter.com/lainopik > > ___ > 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 ___ 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: Help key
Thanks Mark, Richmond & Jim for your answers, My first try was with a combination of a modifier key and ?. But i'd like to use just one key for it. It is not for going to the general help, but only some objects do have this special help function, so the 'help key' has to work together with the mouse, meaning you move the mouse around and press the 'help key' and the question mark shows up, if your mouse is over an object that has this special help function. That's why I searched on. F1 (as some other F keys), will not work completely, as it leaves a square or an arrow down (non printable char) in the field if the focus is on a non locked field. That's why I had to abandon the 'h' key. What about F6, which does not seem to put anything into a field? Is it used for something on mac or windows? . Or does anyone else have another idea? Thanks, Beat ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution
Re: How do I determine/set the active layer of a graphic?
Thanks Craig, In my opinion the problem still is that the two graphics are squares. When I use the mouseloc I can set the layer of the graphic on top but only a small part of the whole graphic is the clock arm: "If the mouseloc is within the rect of grc ... ". But the actual clock arm is set by the startangle of the grc. Any suggestions on how to combine the mouseloc and the startangle of the grc? greetings, William 2009/11/25 > In a real clock, if the hands overlap, you have to carefully grab one or > the other to move them. If the big hand is over the little hand, you have > to > grab the outer portion of it. > > Is it that you need the small graphic to come to the front when you need it > to? I think you had the right idea, that if the mouseLoc is within the rect > of the small hand, then you can do what you want. This will be evaluated > regardless of whether the big hand in in front or not. > > Use the mouseMove message to test the mouseLoc. If it is within the rect of > the small hand and the layer of the small hand is less than the layer of > the big hand, then bring the small hand to the front. You seem more than > able > to write this. > > Craig Newman > > > In a message dated 11/25/09 9:19:09 AM, williamdes...@gmail.com writes: > > > > But then I still need to click on the outer size of the bigger clock arm > > to > > rotate it. > > The problem is that both graphics are squares and they overlap. > > Is there a way to determine on which graphic I click (or am about to > > click). > > Maybe with mouseLoc? > > > > Any suggestions? > > > > ___ > 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 > ___ 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
Interesting blog post - comments anyone?
I just came across this: http://community.zdnet.co.uk/blog/0,100567,10014516o-2000458459b,00.htm Thought it would interest you guys! If you feel the urge to post a comment, the blogger is inviting debate - just keep it positive... it's probably best not to wade in guns blazing if you disagree with his view. I think there is an interesting debate to be had here. Nice to see Rev starting to attract widespread media interest :) Regards, Heather Heather Nagey Customer Services Manager http://www.runrev.com/ RunRev - Software construction for everyone follow me on twitter http://www.twitter.com/lainopik ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution
Re: How to print a file from RunRev on Windows?
Sorry, I mean print the content of the file, I create a pdf and I need to print it on Windows and Mac, but the same for .doc or .txt Salut, Josep M El 25/11/2009, a las 14:14, "Jim Bufalini-3 [via Runtime Revolution]" escribió: > JosepM wrote: > > > > Sombody have any experience about print files from Windows? In Mac I > > can do > > using shell commands, but in windows I a little lost. Using .vbs? Is > > valid > > for all windows versions? > > Any universal solution? > > What do you mean by "print files?" Do you mean a directory listing > or print > the contents of the files or? > > Aloha from Hawaii, > > Jim Bufalini > > ___ > use-revolution mailing list > [hidden email] > Please visit this url to subscribe, unsubscribe and manage your > subscription preferences: > http://lists.runrev.com/mailman/listinfo/use-revolution > > > View message @ > http://n4.nabble.com/How-to-print-a-file-from-RunRev-on-Windows-tp787418p787537.html > To unsubscribe from How to print a file from RunRev on Windows?, > click here. > -- View this message in context: http://n4.nabble.com/How-to-print-a-file-from-RunRev-on-Windows-tp787418p787696.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ 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
Message Box History
I thought I vaguely recalled a way to pull up message box history. Maybe I'm thinking of some plugin. -- On the first day, God created the heavens and the Earth On the second day, God created the oceans. On the third day, God put the animals on hold for a few hours, and did a little diving. And God said, "This is good." ___ 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: CantModify/saveStackRequest
On 22.11.09 at 13:40 -0600 J. Landman Gay apparently wrote: Mike Kerner wrote: Sorry, y'all, it's been the better part of a year. If I have a stack that I want the user to be able to interact with, including fields, but I don't want the changes to be saved, do I just catch saveStackRequest, or is there some other way? Set the cantmodify property of the stack to true, then save the stack. This is a permanent property you only have to set once during development. Make sure your stack is final before you set it, or the stack won't save your own development changes either. ;) -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com An alternative could be to open as modeless. If user opens the stack directly, you can switch the mode the preopenstack or by setting the style property. Unless I am mistaken, modeless stacks do not retain user entries. Robert ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution
Re: How do I determine/set the active layer of a graphic?
In a real clock, if the hands overlap, you have to carefully grab one or the other to move them. If the big hand is over the little hand, you have to grab the outer portion of it. Is it that you need the small graphic to come to the front when you need it to? I think you had the right idea, that if the mouseLoc is within the rect of the small hand, then you can do what you want. This will be evaluated regardless of whether the big hand in in front or not. Use the mouseMove message to test the mouseLoc. If it is within the rect of the small hand and the layer of the small hand is less than the layer of the big hand, then bring the small hand to the front. You seem more than able to write this. Craig Newman In a message dated 11/25/09 9:19:09 AM, williamdes...@gmail.com writes: > But then I still need to click on the outer size of the bigger clock arm > to > rotate it. > The problem is that both graphics are squares and they overlap. > Is there a way to determine on which graphic I click (or am about to > click). > Maybe with mouseLoc? > > Any suggestions? > ___ 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: 4d - Write
Oh, and Malte, how many do you have? Give me some more info on this. Mike -- On the first day, God created the heavens and the Earth On the second day, God created the oceans. On the third day, God put the animals on hold for a few hours, and did a little diving. And God said, "This is good." ___ 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: 4d - Write
LOL. As a 4D geek, the answer is yes. I have dealt with 4D Write documents. And Calc, and Draw, and Chart and...anyway, what do you want to put them in? Do you know what version of 4D your customer is using? Don't knock the 4D productivity apps. 4D is an outstanding, exceptionally-well-integrated tool (in fact, I would argue that it might be the best integrated tool out there), and that integration crosses well to all of the add-ons for the environment. That said, it is proprietary, so in times like this, getting what you want back isn't always easy if you don't know someone who knows 4D. -- On the first day, God created the heavens and the Earth On the second day, God created the oceans. On the third day, God put the animals on hold for a few hours, and did a little diving. And God said, "This is good." ___ 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
How do I determine/set the active layer of a graphic?
Hi there, I got two graphical clock arms (ovals with set startangles) that can rotate on mouseup. Their size is different: 450x450 and 327x327. They need to rotate independent from each other and that works but only when I click on the outer size of the bigger clock arm (and not on the middle because then you got the overlap of the smaller clock arm). So I tried to set the layer of both graphics with: on mouseup set the layer of me to top end mouseup But then I still need to click on the outer size of the bigger clock arm to rotate it. The problem is that both graphics are squares and they overlap. Is there a way to determine on which graphic I click (or am about to click). Maybe with mouseLoc? Any suggestions? Greetings, William ___ 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: Application Browser not showing group items
On Nov 25, 2009, at 9:10 AM, Thierry D. wrote: I've seen it, but wat I missed was to close and re-open the Application Browser after setting this property to true Right-click and select Refresh from the contextual menu. -- Trevor DeVore Blue Mango Learning Systems ScreenSteps: http://www.screensteps.com Releasable Revolution Resources for Developers: http://revolution.bluemangolearning.com ___ 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: Application Browser not showing group items
Siince 2 days, the Application browser doesn't show me any controls belonging to a group ! I can see them on the screen, can list them from the properties palette ( top - right inspect button ). Is the selectGroupedControls property of the group set to false? If so then the Application Browser won't list the controls. Hi Trevor, You Win ! I've seen it, but wat I missed was to close and re-open the Application Browser after setting this property to true Thanks a lot, Thierry ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution
Re: dataGrid Request
On Nov 24, 2009, at 11:36 AM, Mike Kerner wrote: I couldn't find an independent email for you, so I'm not sure where to send feature requests. I imagine you could just log them in RQCC. In datagrids, I can use resetControl to clear all the data, but it doesn't clear the columns. Obviously I can set the dgProps["Columnns"] to empty, but it would be nice if resetControl also cleared the column headers (and/or defaulted everything). Noted. -- Trevor DeVore Blue Mango Learning Systems ScreenSteps: http://www.screensteps.com Releasable Revolution Resources for Developers: http://revolution.bluemangolearning.com ___ 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: Application Browser not showing group items
On Nov 25, 2009, at 5:22 AM, Thierry D. wrote: Siince 2 days, the Application browser doesn't show me any controls belonging to a group ! I can see them on the screen, can list them from the properties palette ( top - right inspect button ). Is the selectGroupedControls property of the group set to false? If so then the Application Browser won't list the controls. -- Trevor DeVore Blue Mango Learning Systems ScreenSteps: http://www.screensteps.com Releasable Revolution Resources for Developers: http://revolution.bluemangolearning.com ___ 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: Help key
> How about F1 ? For Windows, F1 is the help key. ;-) Aloha from Hawaii, Jim Bufalini ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution
RE: How to print a file from RunRev on Windows?
JosepM wrote: > Sombody have any experience about print files from Windows? In Mac I > can do > using shell commands, but in windows I a little lost. Using .vbs? Is > valid > for all windows versions? > Any universal solution? What do you mean by "print files?" Do you mean a directory listing or print the contents of the files or? Aloha from Hawaii, Jim Bufalini ___ 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: Help key
How about F1 ? ___ 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: Help key
Hi Beat, Usually, I provide help through the command-? shortcut and sometimes I add the help key as an alternative. The help key only exists on extended keyboard and not on the MacBook for example. I don't see a help key on my (old) Windows keyboard. The excape key would be a very bad replacement for the help key. Far from intuitive. I'd go with control-? on Linux and Windows and command-? on Mac. You need to test whether this works. On my keyboard, the question mark key is the same as shift-slash. So, often I do this: switch theKey case "/" case "?" go to stack "Help" break end switch Best, Mark -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer Download Strõm Flow Chart Software http://flowproject.economy-x-talk.com Op 25 nov 2009, om 13:42 heeft Beat Cornaz het volgende geschreven: Is the 'help' key (on mac keyboards) a good idea? I am looking for a good key to invoke a special help function. If the user presses this key, then visual feedback by means of an image of a question mark will be displayed if the cursor is within an object that has this special help function. By clicking, the user will be taken to that special help part. I have considered the 'h' key, but it interferes with fields, meaning if the focus is on a field, it will write 'h' to the field. Function keys leave also a trace in a field (the square for unprintable chars). The control or command keys are being used for other things. The 'help' key (keyNr 268762986) can be trapped and does not do anything in a field, so it looks promising. I noticed that in other apps, if pressed, it shows a question mark, but not in my stack. (I can code for the question mark and all other stuff I need). I guess my question is : Does this key also exist on all Windows keyboards (or is there an equivalent) AND can I safely use the 'help' key in my app, so it does not interfere with anything that is there anyway. And will this work on all systems (I am on Mac), like XP, Vista, Windows 7 etc. If the 'help' key is not universal, would the Escape key be a solution? Or any other suggestions? Thanks a lot, Beat ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution
Re: How to transfer a UNIX executable through Rev
I believe that did it. Enormous thanks to you. Richard Thierry D. wrote: Le 25 nov. 09 à 13:07, Richard Miller a écrit : Thierry, Could be. I'm not familiar with this. I'm trying this: get shell ("chmod + x MyExecutableFileName") typo ? Need to be +x , not + x ! When I run this in the msg box, it returns "1". But I see no change to the app. It still looks like a text document... not a Unix Executable File try get shell( "ls -l" ) then. you should see in something like this : -rw-rw-r-- 1 thierry thierry 2979 Feb 5 2007 rev2perlInit.c -rw-r--r-- 1 thierry thierry 2559 Mar 28 2007 ToCopyInStack.dat -rwxrwxrwx 1 thierry thierry 3797 Mar 28 2007 TranslatePm2c.pl -rw-r--r-- 1 thierry thierry577 Feb 2 2007 rev2perl.c r: read w: write x: executable 1st 3 letters for user, next 3 for group, last 3 for others. On my samples, you can see that TranslatePm2c.pl can be executed by all, but not the other files. Regards, Thierry Here's what I am doing. Not sure why this doesn't work. Could it be that you only need to set the executable bit ? chmod +x HTH, Thierry I want to transfer the UNIX executable portion of a Mac rev application bundle via ftp. I take the file; compress it to a .gz file; ftp it; then decompress it. The file size is identical upon arrival, but it is no longer recognized as an executable... only a text document. I am using "binfile" throughout (put the compress of url "binfile:xxx" into url "binfile:xxx.gz"). What am I missing? I am transferring from a Mac server to a Mac computer. ___ 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 ___ 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
Help key
Is the 'help' key (on mac keyboards) a good idea? I am looking for a good key to invoke a special help function. If the user presses this key, then visual feedback by means of an image of a question mark will be displayed if the cursor is within an object that has this special help function. By clicking, the user will be taken to that special help part. I have considered the 'h' key, but it interferes with fields, meaning if the focus is on a field, it will write 'h' to the field. Function keys leave also a trace in a field (the square for unprintable chars). The control or command keys are being used for other things. The 'help' key (keyNr 268762986) can be trapped and does not do anything in a field, so it looks promising. I noticed that in other apps, if pressed, it shows a question mark, but not in my stack. (I can code for the question mark and all other stuff I need). I guess my question is : Does this key also exist on all Windows keyboards (or is there an equivalent) AND can I safely use the 'help' key in my app, so it does not interfere with anything that is there anyway. And will this work on all systems (I am on Mac), like XP, Vista, Windows 7 etc. If the 'help' key is not universal, would the Escape key be a solution? Or any other suggestions? Thanks a lot, Beat ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution
Re: How to transfer a UNIX executable through Rev
Le 25 nov. 09 à 13:07, Richard Miller a écrit : Thierry, Could be. I'm not familiar with this. I'm trying this: get shell ("chmod + x MyExecutableFileName") typo ? Need to be +x , not + x ! When I run this in the msg box, it returns "1". But I see no change to the app. It still looks like a text document... not a Unix Executable File try get shell( "ls -l" ) then. you should see in something like this : -rw-rw-r-- 1 thierry thierry 2979 Feb 5 2007 rev2perlInit.c -rw-r--r-- 1 thierry thierry 2559 Mar 28 2007 ToCopyInStack.dat -rwxrwxrwx 1 thierry thierry 3797 Mar 28 2007 TranslatePm2c.pl -rw-r--r-- 1 thierry thierry577 Feb 2 2007 rev2perl.c r: read w: write x: executable 1st 3 letters for user, next 3 for group, last 3 for others. On my samples, you can see that TranslatePm2c.pl can be executed by all, but not the other files. Regards, Thierry Here's what I am doing. Not sure why this doesn't work. Could it be that you only need to set the executable bit ? chmod +x HTH, Thierry I want to transfer the UNIX executable portion of a Mac rev application bundle via ftp. I take the file; compress it to a .gz file; ftp it; then decompress it. The file size is identical upon arrival, but it is no longer recognized as an executable... only a text document. I am using "binfile" throughout (put the compress of url "binfile:xxx" into url "binfile:xxx.gz"). What am I missing? I am transferring from a Mac server to a Mac computer. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution
Re: How to transfer a UNIX executable through Rev
Thierry, Could be. I'm not familiar with this. I'm trying this: get shell ("chmod + x MyExecutableFileName") When I run this in the msg box, it returns "1". But I see no change to the app. It still looks like a text document... not a Unix Executable File. Richard Thierry D. wrote: Le 25 nov. 09 à 08:12, Richard Miller a écrit : Here's what I am doing. Not sure why this doesn't work. Could it be that you only need to set the executable bit ? chmod +x HTH, Thierry I want to transfer the UNIX executable portion of a Mac rev application bundle via ftp. I take the file; compress it to a .gz file; ftp it; then decompress it. The file size is identical upon arrival, but it is no longer recognized as an executable... only a text document. I am using "binfile" throughout (put the compress of url "binfile:xxx" into url "binfile:xxx.gz"). What am I missing? I am transferring from a Mac server to a Mac computer. ___ 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 ___ 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: Air to go outside the browser
Hiya, I think this was done earlier with Zinc: http://www.multidmedia.com/ Cheers, Luis. On 25 Nov 2009, at 03:59, Thomas McGrath III wrote: It seems Air is heading in the other direction as we are in Rev. ADOBE(R) Flash(R) Platform: New Beta Releases Now Available -- -- Our engineering teams have been working hard to refine and build new features into the runtimes and frameworks of the Adobe(R) Flash(R) Platform. New beta releases are now available and we'd like you to check them out. - ADOBE(R) AIR(R) 2: Outside the browser - We'd like you to take an early look at the new beta release of Adobe (R) AIR(R) 2 software, now available on Adobe Labs: Adobe AIR 2 software is the next version of the Adobe Flash Platform runtime for delivering web applications beyond the browser. Now, Adobe AIR lets you use ActionScript(R) or JavaScript languages to quickly build powerful web applications for the desktop on Mac OSX, Microsoft(R) Windows(R), and Linux(R) operating systems. New features include performance improvements that help pave the way for mobile devices, multi-touch and gestures, enhanced support for mass storage devices, peer-to-peer networking, and UDP networking. You can now use Adobe AIR 2 to extend your applications even further with platform-specific native code. Adobe AIR 2 builds on the success of AIR 1.0, which has been installed on more than 200 million desktop computers and adopted across industries by leading companies, such as BBC, DIRECTV, Fedex, The New York Times Company and Salesforce.com. Adobe AIR has also been recognized through awards from MIT Technology Review, Popular Science, CNET, WebWare, and many other industry leaders. Capabilities such as user notifications, local file access, and secure local database have made AIR an important addition to the standard toolbox for web developers. Integration with popular web IDEs such as Flex(R) Builder(R), Aptana Studio(TM), Adobe Flash CS4 Professional, and Adobe Dreamweaver(R) software makes it easy to build applications with your existing tools while reusing existing code. Tom McGrath III Lazy River Software 3mcgr...@comcast.net iTunes Library Suite - libITS Information and download can be found on this page: http://www.lazyriversoftware.com/RevOne.html ___ 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 ___ 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
4d - Write
Hi all, anyone of you ever had to deal with 4d Write documents? Any clue on how to convert them to a more sensible format, ideally something we can display in rev? I would appreciate any pointers. All the best, malte ___ 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
Application Browser not showing group items
Hi, Siince 2 days, the Application browser doesn't show me any controls belonging to a group ! I can see them on the screen, can list them from the properties palette ( top - right inspect button ). Running Rev4 on MacOS x Any insights ? Regards, Thierry ___ 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
How to print a file from RunRev on Windows?
Hi, Sombody have any experience about print files from Windows? In Mac I can do using shell commands, but in windows I a little lost. Using .vbs? Is valid for all windows versions? Any universal solution? Salut, Josep -- View this message in context: http://n4.nabble.com/How-to-print-a-file-from-RunRev-on-Windows-tp787418p787418.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-revolution
Re: How to transfer a UNIX executable through Rev
Le 25 nov. 09 à 08:12, Richard Miller a écrit : Here's what I am doing. Not sure why this doesn't work. Could it be that you only need to set the executable bit ? chmod +x HTH, Thierry I want to transfer the UNIX executable portion of a Mac rev application bundle via ftp. I take the file; compress it to a .gz file; ftp it; then decompress it. The file size is identical upon arrival, but it is no longer recognized as an executable... only a text document. I am using "binfile" throughout (put the compress of url "binfile:xxx" into url "binfile:xxx.gz"). What am I missing? I am transferring from a Mac server to a Mac computer. ___ 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: Error: wait aborted
The "wait aborted" message typically appears when you use command-period (control-period onWindows) to stop a running script and there are "waits" outstanding. For example, during a download. Would that explain it? Cheers Dave On 24 Nov 2009, at 21:44, Dan Friedman wrote: > Greetings! > > Many of my users are reporting that my application is throwing this error (I > have the debug options on when I created the standalone): > > Type: wait: aborted > Object: button 'revLibURL' of group 'revLibraries' of card 'card id > 1002' > of stack '/Users/teacher/Downloads/myApp.app/Contents/MacOS/myApp' > Line: wait for messages > Line Num: 720 > Hint: ulStartRead > > This comes from "revLibURL", so it's not something I wrote. I can't repeat > this (and I've tried!) as I believe it's probably a local network timeout > issue. However, I'd like to know what this means. Anyone know? My > application reads and writes data to a server. So, it's coming from a read > that's formatted like this: > > put url ("http://www.myServer.com/folder/file.txt";) into dataToWrite > > Or a write like this: > > put dataToWrite into url > ("ftp://uName:pw...@xxx.xxx.xxx.xx/folder/file.txt";) > > Any thoughts? Thank you in advance for you time... > > -Dan___ > 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 ___ 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