Re: [ANN] The Slug's color picker is on the road again for beta test

2010-04-08 Thread René Micout
THank you Slug ! René Le 7 avr. 2010 à 22:52, zryip theSlug a écrit : 2010/4/6 zryip theSlug zryip.thes...@gmail.com: Dear friends, A new version of the Slug's color picker is available for beta test on my website.

Re: Some problems with background behaviour

2010-04-08 Thread planix
Hi, Thanks for this. It has helped me to refine my way of thinking about backgrounds. I was just lumping all the objects in the card into one big background group just because they all appeared on all cards. It is obvious, once I think about it, that I am much better to take a modular approach

Re: Virgin's embarrassing weekend - website auditing software and trojans?

2010-04-08 Thread Pierre Sahores
Great Post Douglas and yes, it's doable to design some usefull soft to feet the described need in using Rev. If you feel confortable to list the main fonctionnalities such a soft need to include, don't hesite to drop me a mail offlist. It's certainly a way to code such a soft quickly.

Re: Virgin's embarrassing weekend - website auditing software and trojans?

2010-04-08 Thread David Bovill
Great story Douglas - and yes I would have thought / assumed there were plenty of systems for checking sites for hacks - but I don't know of any off hand - would love to know though! I was on a Virgin Train on Thursday and they claimed then that there was no WIFI due to a National Network

Re: sqlYoga: sqlite primary key and a few detailed questions

2010-04-08 Thread David Bovill
Thanks Andrew - I'll start looking and the logging in the plugin, and as you suggested I switched to looping through individual ids. The problem seems even more basic as: command hdb_DeleteHandler handlerID put sqlrecord_CreateObject (handler) into theRecordA sqlrecord_set theRecordA, id,

Re: Virgin's embarrassing weekend - website auditing software and trojans?

2010-04-08 Thread Pierre Sahores
Le 8 avr. 10 à 11:15, David Bovill a écrit : We don't have WIFI at all in the french railroads ! Some times EDGE and sometimes 3G... and never for more than 5mn without having to switch from a standard to an other... I was on a Virgin Train on Thursday and they claimed then that there

Re: lowering CPU cycles?

2010-04-08 Thread David Coker
There's the rub:  your cycles can either go to your app or something else, but there's only so many cycles to go around. To give more of your cycles to the rest of the system, change this:  wait 0 with messages ...to some other values like:  wait 20 with messages This will introduce a

Re: RevBrowser Crash

2010-04-08 Thread Mark Schonewille
Thanks, Scott. This gives me a reason to look into my own code again. Which version of Internet Explorer do you have installed? -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer

Re: RevBrowser Crash

2010-04-08 Thread Mark Schonewille
Bedankt, Henk. I'll contact you off-list, after testing my own stack once more. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer Share the clipboard of your computer with

OT?: fonts on the iPhone and iPad

2010-04-08 Thread Ian Wood
Just came across a handy list of the fonts and styles installed on the iPhone and iPad. http://www.michaelcritz.com/2010/04/02/fonts-for-ipad-iphone/ Handy for the people exploring revMobile. Ian ___ use-revolution mailing list

[OT] Mac Batch Converter

2010-04-08 Thread Richmond Mathewson
Jolly good: http://creativebe.com/dragoman/ ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: OT?: fonts on the iPhone and iPad

2010-04-08 Thread Richard Gaskin
Ian Wood wrote: Just came across a handy list of the fonts and styles installed on the iPhone and iPad. http://www.michaelcritz.com/2010/04/02/fonts-for-ipad-iphone/ Handy for the people exploring revMobile. Very helpful - thank you Ian. -- Richard Gaskin Fourth World Rev training and

Re: Creating files on on-rev

2010-04-08 Thread Kevin Stallibrass
Hi, Thanks for the suggestions everyone. Sarah - This command is used from an irev file located on the server. Do I still have to set permissions somewhere on the server? Mike - Your suggestion does not work for me so I'm suspecting either a config or permissions issue. The videos I'm

Re: Need someone with knowlege of sound files

2010-04-08 Thread Fred Moyer
Hi Everyone: Thanks for your replies regarding my need for help. Really impressive stuff that people have sent me. However, it does seem to be all about Midi. I really need help with audio files (AIFF, Wave, etc.) For example, I would like to be able to slow down music without changing

Re: Creating files on on-rev

2010-04-08 Thread Björnke von Gierke
Did not work... hmm Other things to try: check the defaultFolder: is it valid and correct? does your .irev file run properly (if there's any error before the file access, it might fail to write the file) if your irev file does not return anything (no single put data anywhere) then it

Re: Need someone with knowlege of sound files

2010-04-08 Thread Colin Holgate
Look at using Send. You may be able to compensate for the timing errors, at least on playback. Here's a pseudo code strategy: Make a list that represents the start ticks plus the value of each note tick value. For example, if you start the playback at exactly 4000 ticks after starting up Rev,

Re: Need someone with knowlege of sound files

2010-04-08 Thread Richard Gaskin
Fred Moyer wrote: Thanks for your replies regarding my need for help. Really impressive stuff that people have sent me. However, it does seem to be all about Midi. I really need help with audio files (AIFF, Wave, etc.) For example, I would like to be able to slow down music without changing

Re: Need someone with knowlege of sound files

2010-04-08 Thread Colin Holgate
on playtick put item nexttick of allticks - the ticks into tickgap send playtick to me in add 1 to nexttick play tick End playtick A word got cut off there, it should say send playtick to me in . ___ use-revolution mailing list

Re: Datagrid: How get column data from other column behavior

2010-04-08 Thread Trevor DeVore
On Apr 6, 2010, at 5:07 PM, JosepM wrote: 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? Use GetDataOfIndex(). Data Grid API:

Re: sqlYoga: sqlite primary key and a few detailed questions

2010-04-08 Thread Trevor DeVore
On Apr 6, 2010, at 1:44 PM, David Bovill wrote: 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

Re: sqlYoga: failing to do simple record deletion?

2010-04-08 Thread Trevor DeVore
On Apr 6, 2010, at 3:09 PM, David Bovill wrote: 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

Re: getting info from a Data Grid - which out of three methods is best?

2010-04-08 Thread Trevor DeVore
On Apr 7, 2010, at 5:03 PM, Josh Mellicker wrote: Would you: 1. scan the grid line by line, trying for a value match with data grid commands? 2. get the dgData and loop through the array? 3. get the dgText and loop through the tab delimited data? (NOTE: We can't really depend on the

Re: Need someone with knowlege of sound files

2010-04-08 Thread René Micout
There is (for me) too much latency with using play audioclip... But, for your project the latency is perhaps not important... ? Second thing : tick = 1/60 second so I prefer use millisecond... René Le 8 avr. 2010 à 15:05, Fred Moyer a écrit : Hi Everyone: Thanks for your replies regarding

Re: Need someone with knowlege of sound files

2010-04-08 Thread Richmond Mathewson
Worth a look: http://www.ronimusic.com/amsldox.htm ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Creating files on on-rev

2010-04-08 Thread Michael Kann
Kevin, I remember having similar problems when I started putting files on my server. A very helpful soul recommended that I use Filezilla to upload my files because the built-in FTP for the server was screwing up the line endings. I took the advice and it worked (I'm on Windows XP). Make sure

Re: Some problems with background behaviour

2010-04-08 Thread Peter Brigham MD
On Apr 8, 2010, at 4:12 AM, planix wrote: ... Unfortunately, I think the problem I have is actually that one of my fields is a dropdown list- so a button. It seems that these do propogate across all backgrounds. So, I will work on remembering the state of the dropdown buttons for each

Re: RevBrowser Crash

2010-04-08 Thread Scott Rossi
Recently, Mark Schonewille wrote: Thanks, Scott. This gives me a reason to look into my own code again. Which version of Internet Explorer do you have installed? IE7 v7.0.6001 Maybe the issue you've run into is due to IE8? Regards, Scott Rossi Creative Director Tactile Media, UX Design

Re: RevBrowser Crash

2010-04-08 Thread J. Landman Gay
Scott Rossi wrote: Recently, Mark Schonewille wrote: Thanks, Scott. This gives me a reason to look into my own code again. Which version of Internet Explorer do you have installed? IE7 v7.0.6001 Maybe the issue you've run into is due to IE8? Mark had contacted support about this and Ollie

Rev with Java Thread

2010-04-08 Thread Shani
Hi, Is there is any example of RevTalk using Thread in JAVA. Regards, SHANI ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Some problems with background behaviour

2010-04-08 Thread Peter Brigham MD
Be aware that using the menuhistory in the handlers I originally suggested depends on the contents of the button remaining unchanging, since the menuhistory returns the number of the line selected. If you are working with a pulldown menu that will be changing its contents then you'll have

Re: Some problems with background behaviour

2010-04-08 Thread Peter Brigham MD
Sorry, the last line of the preopencard handler should be deleted (it uses a virtual setprop handler that was not included and is only useful for optionMenus, which is what I chiefly use). *** Be aware that using the menuhistory in the handlers I originally suggested depends on

Advanced Externals part 1

2010-04-08 Thread Generic Email
http://www.runrev.com/developers/lessons-and-tutorials/tutorials/advanced-externals-part-1/ This seems a bit out of date for Visual Studio Express 2008. Does anyone know if there are updated instructions?___ use-revolution mailing list

Re: [ANN] The Slug's color picker is on the road again for beta test

2010-04-08 Thread zryip theSlug
2010/4/8 René Micout rene.mic...@numericable.com: THank you Slug ! René You're welcome René! 8-) I have a few more features to add and I'll be back soon with a new version. Regards, -- -Zryip TheSlug- wish you the best! 8) http://www.aslugontheroad.co.cc

Re: [OT] Mac Batch Converter

2010-04-08 Thread Bob Sneidar
I suppose it was too much to hope for to think I could convert my encoded M4P files from the iTunes store to MP3's... Bob On Apr 8, 2010, at 5:24 AM, Richmond Mathewson wrote: Jolly good: http://creativebe.com/dragoman/ ___ use-revolution

Re: [OT] Mac Batch Converter

2010-04-08 Thread Colin Holgate
On Apr 8, 2010, at 6:08 PM, Bob Sneidar wrote: I suppose it was too much to hope for to think I could convert my encoded M4P files from the iTunes store to MP3's... You can do that yourself, by burning an audio CD and then convert that back to MP3 or M4A.

doom and gloom in the iPhone world

2010-04-08 Thread Colin Holgate
Not that I want people here to be upset too, but just to make sure that Rev are aware of what is going on... In the iPhone 4.0 SDK agreement you now have to agree to only write your applications in Objective-C (or Javascript playing in WebKit), and you can't use any sort of interpretation

revMobile

2010-04-08 Thread Simon Parker
How does this affect revMobile? http://www.appleinsider.com/articles/10/04/08/apples_iphone_4_sdk_license_bans_flash_java_mono_apps.html Best regards Simon Sent from my iPad ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit

Re: revMobile

2010-04-08 Thread Jim Kanter
Let's hope Apple changes the license or someone finds an effective workaround. The kool-aid is definitely wearing off for this guy. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and

Re: [OT] Mac Batch Converter

2010-04-08 Thread Bob Sneidar
Thanks yes I knew that, but not lossless. A long while back, there was an app that was able to take an M4P file, and export it as an M4A file. I think Apple got wind of it and immediately changed their encoding format without telling anyone. After updating iTunes I was dismayed to find I could

Re: [OT] Mac Batch Converter

2010-04-08 Thread stephen barncard
If there's up-tuning going on, it's almost always done by the artists and their producers, not the companies. On 8 April 2010 16:46, Bob Sneidar b...@twft.com wrote: Thanks yes I knew that, but not lossless. A long while back, there was an app that was able to take an M4P file, and export it

Re: revMobile

2010-04-08 Thread Jerry Daniels
I have trouble believing that a pre compiler is a problem. Any framework is essentially the same thing. RevMobile doesn't actually compile anything as far as I can tell. It creates a file(s) to be compiled by Objective-C, yes? Best, Jerry Daniels Use tRev's buy link during your free trial to

Re: revMobile

2010-04-08 Thread Neal Campbell
Lets just wait and hear from the guys who talk with Apple's lawyers. There are quite a few companies in this limbo besides Adobe (Monotouch, ComponentOne, etc) so we can wait with bated breath the word from Kevin! Neal Campbell Abroham Neal Software www.abrohamnealsoftware.com (540) 645 5394 NEW

Re: revMobile

2010-04-08 Thread J. Landman Gay
Jerry Daniels wrote: I have trouble believing that a pre compiler is a problem. Any framework is essentially the same thing. RevMobile doesn't actually compile anything as far as I can tell. It creates a file(s) to be compiled by Objective-C, yes? Yeah. Nobody panic. As far as I can tell, the

Re: revMobile

2010-04-08 Thread Colin Holgate
On Apr 8, 2010, at 7:51 PM, Jerry Daniels jerry.dani...@me.com wrote: I have trouble believing that a pre compiler is a problem. Any framework is essentially the same thing. RevMobile doesn't actually compile anything as far as I can tell. It creates a file(s) to be compiled by Objective-C,

Re: [OT] Mac Batch Converter

2010-04-08 Thread Mark Swindell
Would this help? In Quicktime Player, open the AV Controls (Window/Show A/V Contols). There you can change both playback speed and pitch shift independently. I think you can even save as the file to reflect your changes. Mark On Apr 8, 2010, at 4:49 PM, stephen barncard wrote: If there's

Re: revMobile

2010-04-08 Thread Jerry Daniels
This link is interesting: http://news.ycombinator.com/item?id=1250946 In the post referenced above, the multi-platform aspect of pre-compilers is called out as one of the main reasons for the new rule. This is worth a read and from one of the foremost finders of software developers which

Re: revMobile

2010-04-08 Thread Jerry Daniels
Gruber just post a more studied view of Apple's latest ruling (the infamous Section 331) which we have been discussing in this thread: http://daringfireball.net/2010/04/why_apple_changed_section_331 I anticipate this latest change to the rules will generate quite fierce debate among all

Re: revMobile

2010-04-08 Thread Tereza Snyder
On Apr 8, 2010, at 9:38 PM, Jerry Daniels wrote: Gruber just post a more studied view of Apple's latest ruling (the infamous Section 331) which we have been discussing in this thread: http://daringfireball.net/2010/04/why_apple_changed_section_331 I anticipate this latest change to

Datagrid - Selecting a line after sorting ..

2010-04-08 Thread JACK RARICK
Hey all! I have a datagrid with one hundred rows and six columns. The user clicks on a cell somewhere in the middle of the grid that immediately performs an action and resorts the grid. The row number is stored - but how do I get the original line reselected so the user knows where he was?

Re: revMobile

2010-04-08 Thread Richard Gaskin
Jerry Daniels wrote: I anticipate this latest change to the rules will generate quite fierce debate among all concerned Perhaps translated: Class action suit. ;) Like taking out a single sniper by dropping napalm across an entire jungle, if Apple was targeting Adobe they sure took out a

Re: Need someone with knowlege of sound files

2010-04-08 Thread Fred Moyer
On Apr 8, 2010, at 1:00 PM, use-revolution-requ...@lists.runrev.com wrote: There is (for me) too much latency with using play audioclip... But, for your project the latency is perhaps not important... ? Latency is very important. Is there some way to play sounds in Revolution without