Re: Desktop innovation? Future of the desktop?

2010-04-06 Thread Peter Alcibiades
There's real innovation, for better or worse, going on in Linux desktops in the last year or two. KDE4 made an effort to redefine the desktop metaphor, its probably just about usable now, and now Gnome from a different starting point. Its a bit lost on me, perhaps its a matter of age. Simplicit

Re: Trapping the escape key inside a loop

2010-04-06 Thread David Coker
> You have to give your repeat loop a break so the system has time to > detect the escape key. > Try this: > > global gStop > > on mouseUp >   put false into gStop >   repeat with x = 1 to 1000 >      put x into fld 1 >      if gStop = true then exit repeat >      wait 0 milliseconds with messages

Re: MouseMove - Moving a stack brutally stops when the decoration change

2010-04-06 Thread zryip theSlug
2010/4/7 Sarah Reichelt : >> To dock / undock the picker with the RR tools palette I'm using an >> mouseMove handler. When the picker palette is inside or outside the >> tools palette the titlebar of the picker appears / disappears. For >> that, I change the decorations property of the stack. >> >>

Re: MouseMove - Moving a stack brutally stops when the decoration change

2010-04-06 Thread Sarah Reichelt
> To dock / undock the picker with the RR tools palette I'm using an > mouseMove handler. When the picker palette is inside or outside the > tools palette the titlebar of the picker appears / disappears. For > that, I change the decorations property of the stack. > > However the fact to change the

Re: Trapping the escape key inside a loop

2010-04-06 Thread Sarah Reichelt
On Wed, Apr 7, 2010 at 10:14 AM, David Coker wrote: > Howdy folks, > Scratching my head in wonderment again, trying to figure out why I > can't trap the escape key. > Here is a sample script that I've been playing with outside of my real > app that is pretty close to the real thing: > > global gSt

Trapping the escape key inside a loop

2010-04-06 Thread David Coker
Howdy folks, Scratching my head in wonderment again, trying to figure out why I can't trap the escape key. Here is a sample script that I've been playing with outside of my real app that is pretty close to the real thing: global gStop on mouseUp put 0 into gStop do ThisHandler do ThatHandler re

Re: MouseMove - Moving a stack brutally stops when the decoration change

2010-04-06 Thread zryip theSlug
2010/4/6 zryip theSlug : None opinion or advice? Really nobody? Thanks ;) -- -Zryip TheSlug- wish you the best! 8) http://www.aslugontheroad.co.cc ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsu

Re: Why is ComboBox button never transparent?

2010-04-06 Thread Bill Vlahos
Excellent! I set the blendlevel ink from srcCopy (the default) to scrAnd and it looks correct. It seems like this is a bug. Bill Vlahos _ InfoWallet (http://www.infowallet.com) is about keeping your important life information with you, accessible, and secure. On Apr 6, 2010, a

Re: Creating files on on-rev

2010-04-06 Thread Sarah Reichelt
On Tue, Apr 6, 2010 at 11:18 PM, Kevin Stallibrass wrote: > On Kevin's on-rev how to videos, he uses > > put something after URL "file:log.txt" > > which is apparently meant to create a text file on the server. I've tried it > but no such file appears anywhere. It depends where the script is. If

Datagrid: How get column data from other column behavior

2010-04-06 Thread JosepM
Hi, I need to customize one column behavior in function of the data of other column. How can get the value of the other column from the script of the behavior for the column? Any idea? Salut, Josep -- View this message in context: http://n4.nabble.com/Datagrid-How-get-column-data-from-other

Re: Saving audioclips to a file as ...

2010-04-06 Thread stephen barncard
I've added my votes and a comment to Quality Center: Report #8134 Export audioclip object Last Modified: 2009-06-26 22:09:41 and Report #6375 Extend Icon/Image References to Include Binary Data in Custom Properties Last Modified: 2010-04-06 11:32:40 I added audioclips to this idea. sqb On 6 A

sqlYoga: failing to do simple record deletion?

2010-04-06 Thread David Bovill
What am I doing wrong - must be something simple and obvious, but I can't figure out how to delete records, I'm adding them OK - but somewhere in the stew is a bug stopping me deleting them. This is what I do: on hdb_DeleteHandler >put GetSelectedID() into handlerID > >put sqlrecord_Create

Re: Altering custom properties

2010-04-06 Thread Jeff Massung
On Tue, Apr 6, 2010 at 1:07 PM, Mark Schonewille < m.schonewi...@economy-x-talk.com> wrote: > Jeff, > > What's wrong with the solution I proposed? Nothing at all. In fact, I ended up doing something similar based on your idea and it worked great. ;-) Jeff M. ___

Re: Altering custom properties

2010-04-06 Thread DunbarX
Mark. Too long. Craig In a message dated 4/6/10 2:07:22 PM, m.schonewi...@economy-x-talk.com writes: > What's wrong with the solution I proposed? > > ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscrib

Re: Altering custom properties

2010-04-06 Thread DunbarX
Jeff: Ah. Forgot about that, and I had a heated discussion with someone on the HC list decades ago about this very thing. You cannot set chunks of a property, even a built-in one. He wanted to be able to change the script of an object in just the way you want to change a custom property (he ha

Re: Java Socket read problem

2010-04-06 Thread Phil Davis
Comment inserted below - On 4/6/10 10:54 AM, Shani wrote: HI, I have problem with the revcode. It cant display This result. Server Started Client Syas: AllowServer I start the process then write "AllowServer" as a client but it cant work. Kindly tell me on which line is the problem, Java pr

Re: Altering custom properties

2010-04-06 Thread Mark Schonewille
Jeff, What's wrong with the solution I proposed? -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer Economy-x-Talk is always looking for new software development projects. Feel

Re: Altering custom properties

2010-04-06 Thread J. Landman Gay
Jeff Massung wrote: Well, I'm shooting for less than 3, but less than 1 would be very cool, too. ;-) Well, this: on mouseup end mouseup It's less than one line of code, although I admit it doen't do much. :) For your original question, no, there's no shorter way to do it. You have to get, c

Re: Altering custom properties

2010-04-06 Thread Jeff Massung
I wrote several 1-liners that don't compile [as examples of what I'd like to be able to do]. On Tue, Apr 6, 2010 at 12:57 PM, wrote: > Jeff. > > But you wrote several one-liners yourself. I am missing something. > > ___ use-revolution mailing list use-

MouseMove - Moving a stack brutally stops when the decoration change

2010-04-06 Thread zryip theSlug
Hi all, When I worked on my color picker, I met a behavior that surprised me. To dock / undock the picker with the RR tools palette I'm using an mouseMove handler. When the picker palette is inside or outside the tools palette the titlebar of the picker appears / disappears. For that, I change th

Re: Altering custom properties

2010-04-06 Thread DunbarX
Jeff. But you wrote several one-liners yourself. I am missing something. Craig In a message dated 4/6/10 1:55:43 PM, mass...@gmail.com writes: > Well, I'm shooting for less than 3, but less than 1 would be very cool, > too. > ___ use-revolution mai

Re: Altering custom properties

2010-04-06 Thread Jeff Massung
Well, I'm shooting for less than 3, but less than 1 would be very cool, too. ;-) On Tue, Apr 6, 2010 at 12:39 PM, wrote: > Jeff. > > Do you mean "can I do this in less than one line of code?" > > ___ use-revolution mailing list use-revolution@lists.run

Java Socket read problem

2010-04-06 Thread Shani
HI, I have problem with the revcode. It cant display This result. Server Started Client Syas: AllowServer I start the process then write "AllowServer" as a client but it cant work. Kindly tell me on which line is the problem, Java program is working. Th eproblem is rev side. StartProcessBut

sqlYoga: sqlite primary key and a few detailed questions

2010-04-06 Thread David Bovill
I've had some time to start implementing the local handler database in sqlYoga: and have noticed a couple of things: 1. An sqlite table "handler" db with a field "id" set as a primary key does not show in the db schema of sqlYoga. Do I have to script this using something ike "sqlrecord_se

Re: Altering custom properties

2010-04-06 Thread DunbarX
Jeff. Do you mean "can I do this in less than one line of code?" Craig Newman ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.

Re: Altering custom properties

2010-04-06 Thread Mark Schonewille
Hi Jeff, You could create a custom property set with cTest[1] = 1 cTest[2] = 2 cTest[3] = 3 etc. This would allow you to change cTest[3] as follows: set the cTest[3] of me to "***" -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-

Altering custom properties

2010-04-06 Thread Jeff Massung
Is there a simple way of just changing a chunk in a custom property without fetching, changing, and resetting it? For example, let's say I have a custom property "cTest" that has "1,2,3,4,5,6" in it, and I'd like to make item 3 of cTest "***" instead. I can't do either of the following: set item

Re: Desktop innovation? Future of the desktop?

2010-04-06 Thread Richard Gaskin
Peter Alcibiades wrote: I don't use gnome, and preferred kde 3.5 to 4.x, and fluxbox to both of them, but evidently some are really really enthusiastic about the innovation which Gnome 3 supposedly represents. Gnome enthusiasts like Richard G may find this interesting. Peter http://blogs.tech

Re: Wildcard expressions and unicode ???

2010-04-06 Thread Richmond Mathewson
On 06/04/2010 14:57, Peter Brigham MD wrote: Try this? Untested but should work. (The untested part is the first handler -- the offsets() function I have been using for years.) on mouseup set the useUnicode to true put numtochar(57888) into targetChar put the unicodetext of fld "FIRST

Re: Creating files on on-rev

2010-04-06 Thread Björnke von Gierke
Check for permissions. Like most web servers, the on-rev server uses the unix style permission system. So, to write a file anywhere, you need to give permission to the running processes owner ("user" in unix-speak) for the folder you want to write stuff to. Otherwise the write will fail. Someti

Re: Wildcard expressions and unicode ???

2010-04-06 Thread Richmond Mathewson
On 06/04/2010 14:57, Peter Brigham MD wrote: Try this? Untested but should work. (The untested part is the first handler -- the offsets() function I have been using for years.) on mouseup set the useUnicode to true put numtochar(57888) into targetChar put the unicodetext of fld "FIRST

Re: Creating files on on-rev

2010-04-06 Thread Michael Kann
With the file a.irev on the server we can make a file appear by typing http://taishan.on-rev.com/a.irev in your browser. --- -- a.irev on server --- -- address in browser http://taishan.on-rev.com/a.irev Mi

Creating files on on-rev

2010-04-06 Thread Kevin Stallibrass
On Kevin's on-rev how to videos, he uses put something after URL "file:log.txt" which is apparently meant to create a text file on the server. I've tried it but no such file appears anywhere. He goes on to use this when sending mail (which is what I'm attempting to do) but I'm unable to te

Re: Wildcard expressions and unicode ???

2010-04-06 Thread Peter Brigham MD
Try this? Untested but should work. (The untested part is the first handler -- the offsets() function I have been using for years.) on mouseup set the useUnicode to true put numtochar(57888) into targetChar put the unicodetext of fld "FIRST" into uText put offsets(targetChar,uText)

Re: Need someone with knowlege of sound files

2010-04-06 Thread René Micout
Hello Richard, See this page in FaceBook : http://www.facebook.com/pages/Exagofon/243964086559 Some explanation in english. I do translate all stuff in english... But, the time... I do also continue to write the manual... The application continues to evolve, now there is 16 sort of "modules" and t

Re: Need someone with knowlege of sound files

2010-04-06 Thread Richard Gaskin
René Micout wrote: > I am also working on musical projects (like Exagofon : > see > http://www.youtube.com/watch?v=v9zRXi7D_lE) with RunRev. That's a beautiful interface! I wish my French was better than it is, since I can understand only very little of that wonderful presentation. Do you ha

Re: Why is ComboBox button never transparent?

2010-04-06 Thread Michael Kann
blendlevel --- On Mon, 4/5/10, Bill Vlahos wrote: > From: Bill Vlahos > Subject: Why is ComboBox button never transparent? > To: "How to use Revolution" > Date: Monday, April 5, 2010, 11:36 PM > Regardless of the Opaque setting, a > ComboBox button is never transparent. Is this a bug or is > t

Re: Saving audioclips to a file as ...

2010-04-06 Thread Mark Schonewille
Hi, Audioclips can't be exported, but videoclips can: put the text of vc "sleighbells.mpg" into url "binfile:path-to- video.mpg" Old chestnut indeed. I'd expect that fixing this bug is 5 minutes work. I wonder why this has to take more than 6 years. -- Best regards, Mark Schonewille Eco

Wildcard expressions and unicode ???

2010-04-06 Thread Richmond Mathewson
I suppose it was inevitable . . . :) As I wrote yesterday, I found out how to search for and replace unicode characters in a field: on mouseUp set the useUnicode to true if the unicodeText of fld "FIRST" contains (numToChar(57888) & numToChar(57999)) then get the unicodeText of

Re: Need someone with knowlege of sound files

2010-04-06 Thread René Micout
Hello Fred, I am also working on musical projects (like Exagofon : see > http://www.youtube.com/watch?v=v9zRXi7D_lE) with RunRev. I use QuickTime Synthesizer to create sounds and notes with PlayCommand Agent X (on Macintosh OS X) of Jon Bettencourt (see Shakobox > Jacque LandMan Gay) I work also