Re: Bespoke development
[EMAIL PROTECTED] wrote: I am available for custom development work in Revolution As are many of us, but we don't use this list to advertise it. Your best bet is to contact Runtime and get your name on their developer's list. -- Jacqueline Landman Gay | [EMAIL PROTECTED] 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
Bespoke development
I am available for custom development work in Revolution and am currently looking for new projects. If you need help developing software, are new to Revolution, lack time for a project, need an extra hand, have an idea for software but need assistance in bringing it to life, or have a lot on your plate and need a subcontractor, please send me a note off-list. I've produced shareware since 1999 and have been making software with Revolution for six years. Some examples of expertise include text and data manipulation, tables, image work, educational software, games, database, utilities, internet programs, file handling, playing sounds and movies, recursive algorithms, data formatting, precise timing and messages, regular expressions and faster non-regex searches, animation, cyclic effects such as color throbbing, and custom content management. Best wishes, Curry Kenworthy http://curryk.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: Error -43 starting recording
Hi Peter, http://docs.info.apple.com/article.html?artnum=107032 -- Mac http://service.real.com/help/errors/error43.html -- Win Hope this helps. Le 7 mars 08 à 18:49, Peter T. Evensen a écrit : I'm trying to 'record sound file "compare.wav"' and I'm getting "Error -43 starting recording." What does that mean? -43 on Mac means file not found. I am on Windows XP, running Rev 2.8.1 I had this working a while ago. Now when I come back to the project, it isn't working. Thanks! -- Peter T. Evensen Best regards from Paris, Eric Chatonet. Plugins and tutorials for Revolution: http://www.sosmartsoftware.com/ Email: [EMAIL PROTECTED]/ ___ 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: QT: Application and Microsoft Terminal Server error
On 7/3/08 18:11, William de Smet wrote: I am about to launch my first public application made with RR. At the school where I work we will start using terminal server with terminal server clients. We now have 3 machines to test the environment. So I tested my application (put it on our server 2003) and lauched it through a ts client. The screen remained black and I could barely see the images. I know terminal server is a different way of working but why did I get a black screen? This is a known bug, which has finally - hurrah! - been fixed in 2.9: http://quality.runrev.com/qacenter/show_bug.cgi?id=1076 Using the 2.8.1 engine, I think you can only avoid this problem by raising the colours to thousands or millions in the TS client. However, I'd recommend instead that you get hold of the 2.9 beta, and try building your app in that instead; it should fix this problem, and it is a much better engine anyway; but of course you will need to test it properly, as it is a beta and there are some new bugs in there. But if you find them now while it's still in beta, you can contribute to getthing them fixed! HTH, - Ben ___ 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: Wait with messages
All , Problem was solved by INCREASING the wait with milliseconds ?! Worse with wait 0 milliseconds Original wait was 1 millisecond Works like lightening with 5 Milliseconds , Now I can press a button on any card and exit the loop instantly. Regards Camm - Original Message - From: "Mark Schonewille" <[EMAIL PROTECTED]> To: "How to use Revolution" Sent: Saturday, February 23, 2008 6:09 PM Subject: Re: Wait with messages > Oh... Camm, not Curry, so sorry for that. > > It is really friendly of you to thank me(?) in advance, but do you > have any more questions or are you going to try to change your repeat > loop now? > > I don't get what you want to say by > > > I thought if not checking for x after each function in the loop it > > would > > mean 10 x 250ms wait to exit > > Why would it mean 2500ms wait to exit and what is it? Of course, if > you put a wait statement in your repeat loop, like > > wait for 250 millisecs with messages > > it will delay for 250 millics, but if you look at my example, you'll > see that waiting with 0 millisecs is sufficient, i.e. no delay unless > other messages are being sent (such as mouseUp). > > Best regards, > > Mark Schonewille > > -- > > Economy-x-Talk Consulting and Software Engineering > http://economy-x-talk.com > http://www.salery.biz > > Convert colours between different colour spaces with Color Converter. > Download at http://economy-x-talk.com/cc.html > > > > Op 23-feb-2008, om 18:31 heeft Camm29 het volgende geschreven: > > > Thanks for that , > > > > 1 is put into x within a button script on mouseup . > > > >> Why do i check (x=1) 2 times ? > > > > Well I actually check for(x=1) 10 times ?! > > I think I've missed the concept of messages > > I thought if not checking for x after each function in the loop it > > would > > mean 10 x 250ms wait to exit > > > > Each do something (10 off ) in the loop retrieves different data > > (each takes > > 250ms) via the rs232 port and displays > > on a card in real time until the stop button is pressed. > > > > Thanks in advance > > Camm > > > > - Original Message - > > From: "Mark Schonewille" <[EMAIL PROTECTED]> > > To: "How to use Revolution" > > Sent: Friday, February 22, 2008 1:37 PM > > Subject: Re: Wait with messages > > > > > >> Hi Curry, > >> > >> There might be a problem caused by the fact that the script is > >> currently running, but since I don't see how you change x, I am not > >> sure about this. Usually, I use a custom property or the hilite of a > >> button rather than a variable (which in your case seems to be set and > >> read in the same script). Also, I can imagine that waiting with > >> messages halfway the repeat loop doesn't work perfectly. I always put > >> the wait statement at the end of the loop. > >> > >> Also, the repeat loop itself doesn't run with messages. What always > >> works for me is: > >> > >> repeat forever with messages -- I rarely use forever btw > >>if someCondition then > >> -- do something > >>else exit repeat > >>wait 0 millisecs with messages > >> end repeat > >> > >> You might need to re-think the design of your repeat loop. Why do you > >> need to check x two times? Is it possible for the user to determine > >> whether s/he will click before the first or the second wait > >> statement? > >> > >> Best regards, > >> > >> Mark Schonewille > >> > >> -- > >> > >> Economy-x-Talk Consulting and Software Engineering > >> http://economy-x-talk.com > >> http://www.salery.biz > >> > >> Convert colours between different colour spaces with Color Converter. > >> Download at http://economy-x-talk.com/cc.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 > > > -- > No virus found in this incoming message. > Checked by AVG Free Edition. > Version: 7.5.516 / Virus Database: 269.20.8/1288 - Release Date: 19/02/2008 20:47 > > ___ 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
QT: Application and Microsoft Terminal Server error
Hi there, I am about to launch my first public application made with RR. At the school where I work we will start using terminal server with terminal server clients. We now have 3 machines to test the environment. So I tested my application (put it on our server 2003) and lauched it through a ts client. The screen remained black and I could barely see the images. I know terminal server is a different way of working but why did I get a black screen? On startup I use: on preopenStack set the loc of me to the screenLoc set the navigationarrows to false set the backdrop to white set the decorations of stack "XXX" to none hide menubar --- for OSX hide taskbar --- for Windows end preopenStack Can anyone tell me why it doesn't work now? What code do I have to use to make it work? Thanks! greetings, William de Smet ___ 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
Error -43 starting recording
I'm trying to 'record sound file "compare.wav"' and I'm getting "Error -43 starting recording." What does that mean? -43 on Mac means file not found. I am on Windows XP, running Rev 2.8.1 I had this working a while ago. Now when I come back to the project, it isn't working. Thanks! -- Peter T. Evensen Juice Plus+ Independent Distributor 314-629-5248 or 888-628-4588 http://www.PetersRoadToHealth.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
Correction to: my cursor shows as black
Hi all, In this post: http://www.nabble.com/my-cursor-shows-as-all-black-to15860638.html I made the following statement: **IMPORTANT - make one pixel "outside" the cursor area to be white or black. That is incorrect. It should read... **IMPORTANT - make one pixel "outside" the cursor area (the black outline) to be white. This forces RunRev to set the colors in the Colors property to be: First Color = white Second Color = black Third Color = white Which is the correct way to display a cursor with transparency in RunRev. And as Jacqueline kindly pointed out: Only one more thing: if you are planning to go cross platform with this app, your cursor can't be 32 pixels square. Linux and Mac support only 16 pixel square cursors. Caveat: Windows does support either 16x16 or 32x32 Regards, Mark Stuart -- View this message in context: http://www.nabble.com/Correction-to%3A-my-cursor-shows-as-black-tp15897800p15897800.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: NEWS FLASH -iPhone SDK event -- iTunes APP store
The iPhone version of XCODE is designed for the iPhone (XCODE Touch) - input and the other features of the iPhone require it. Also, there is a technical requirement that you use an Intel Mac with Leopard. Looks like a major (maybe impossible) job for Rev to be involved in this. sims Actually modified xcode code generation for the iPhone has been around for many months, but unsupported by Apple because this was done by the developer community. That's how a number of iPhone apps were developed, though without the benefit of being able to use a debugger or the simulator. That meant that prior to the release of this SDK, standard code (with some limitations of course - no multiple windows etc) was already being used to make apps for the iPhone. Apple's SDK just takes all this much further. All the input stuff is in the OS code or frameworks that's built in so you get to inherit lots of stuff automatically as long as you are using Cocoa. There's some new capabilities that are available, but for now, being able to create the kind of apps that we are able to do today (ok, 1 window apps) would already be nice. Jesse ___ 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: NEWS FLASH -iPhone SDK event -- iTunes APP store
On Mar 7, 2008, at 3:55 PM, Stephen Barncard wrote: so the next question is: Does the rev team use XCODE for compiling the Mac and windows versions of rev? The iPhone version of XCODE is designed for the iPhone (XCODE Touch) - input and the other features of the iPhone require it. Also, there is a technical requirement that you use an Intel Mac with Leopard. Looks like a major (maybe impossible) job for Rev to be involved in this. sims ClipaSearch Pro http://www.ClipaTools.com Across Platforms - Code and Culture http://www.ezpzapps.com/blog/ ___ 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: NEWS FLASH -iPhone SDK event -- iTunes APP store
so the next question is: Does the rev team use XCODE for compiling the Mac and windows versions of rev? Awesome stuff. Now the development is all done using Xcode and Cocoa. I'm wondering if it would be possible to port the Revolution engine over? What the App Store needs is the kind of explosion of applications that we enjoyed when Hypercard first came on the scene and Steve Jobs said that they would be hosting FREE applications, not just software for retail. Jesse Sng -- stephen barncard s a n f r a n c i s c o - - - - - - - - - - - - ___ 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: 2.9 or 2.8.1 – Same problem
I noticed the same problem with an app of mine which worked perfectly on XP but when moved to Vista, printing just blew away Rev. My printer is a Xerox Phasor 8400DN that I talk to over my network so our printer setups are different enough to (possibly) exclude driver issues although we could both just be "lucky." :-) My problem is that it is not consistent. Sometimes it DOES work. Go figure... len morgan Tom Johnson wrote: All, I'm having a pretty server problem when printing. I'm not sure if it's Vista or my printer, computer, OS combination causing the problem but it nasty. I have a card with a screen captured image on it and a series of fields and check boxes that make up a form. The image is a black and white gif that is only about 65k. I have 33 different form configurations in this app. When I first started to set up the printing routine for the app. it crashed Rev every time. So I started removing one field at a time and I got to a point where it would print. If I add one more field I get a blank page off the printer. This was with 2.8.1. So I tried it in 2.9, same results. Here's another thing, when I try to print the script of the app from the script editor, it kills Rev. When I try to print using one of the exercise/examples in the "Getting Started Working with Scripts" it crashes Rev. Now here's the kicker. When I run the exact same print routine I have below on XP, no problem, it prints just fine. Thanks Tom Here's the configuration I'm running: Vista Home Premium Toshiba - Satelite A215 AMD Turion 64 x2 Mobile Technology TL-56 1.80 GHz 1 Gb of RAM 250 Gb HD Printer - Lexmark, X9350 wit the latest drivers Here's the print script: on mouseUp -- script of print button on this card set the printscale to .68 set the printmargins to 18,18,18,18 set the printpapersize to 612,792 -- 8.5x11 inches, US Letter size set the width of this stack to 840 set the height of this stack to 1083 hide me -- hide the print button open printing print this card close printing set the height of this stack to 700 set the width of this stack to 882 show me end mouseUp ___ 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: Extracting pitch information from sound files
I do this all the time for pitch correction of enthusiastic but less talented singers (I own a recording studio). I use software that is designed specifically for the task but I need to not only get the pitch information but I also have to keep the formant information so that the phrasing stays the same when I change the pitch. If you are ONLY interested in pitch information, your best bet is probably some sort of FFT library that would take the wav file and return a set of "buckets" that would tell you the amplitude (i.e., volume) of each frequency in a sound over a sample period. The pitch is USUALLY the highest amplitude in that sample set. As others have suggested, this is a very math intensive task and while you COULD do it in Rev/Transcript, you'd be much better served with something a little faster and lower level. It should be noted that if you are looking for something more than monotonic detection (i.e., only one pitch in the sound like a single note on a guitar vs a strum of all of the strings), this is not currently available (reliably any way) at any price. Polyphonic sounds get to be very complex. Human ears are much better at this than computers for the time being. len morgan David Glasgow wrote: The subject line pretty much says it all, but more specifically I want to statistically analyse change in pitch, not play it, save it as sound or relate it directly to any musical system. So any kind of rational number would be fine, and I would then chuck away the .wav .aiff or whatever. 1/ How hard would it be to parse sound files recorded in Rev and extract just the chunks of data relating to pitch ? 2/ Does it make any difference if the sound is complex (like an animal call) or simple like a signal from a tone generator? 3/ Are any of the formats offered by Rev easier to handle in this respect? 4/ Assuming standard bit rates, how much pitch data would be generated by, say a ten second recording? 5/ I have settled for post hoc parsing rather than 'on the fly' processing because I assumed the overhead would be too great for the latter to work. Is that right? 5/ Are there any other sensible questions I should be asking? Best Wishes, David Glasgow Carlton Glasgow Partnership http://www.i-psych.co.uk ___ 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: NEWS FLASH -iPhone SDK event -- iTunes APP store
And check this out - the iTunes App store?? AWESOME FOR DEVELOPERS Native iPhone apps will be distributed through the iTunes App Store, with wireless downloads. Developers pick the price, and get 70% of revenue. The 70% will be paid out to developers monthly, and there are no other recurring fees. The iTunes App Store will handle over the air updates to your applications. Developers of free applications will not be charged for Apple to deliver their applications through iTunes. Awesome stuff. Now the development is all done using Xcode and Cocoa. I'm wondering if it would be possible to port the Revolution engine over? What the App Store needs is the kind of explosion of applications that we enjoyed when Hypercard first came on the scene and Steve Jobs said that they would be hosting FREE applications, not just software for retail. Jesse Sng ___ 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: Extracting pitch information from sound files
On 7 Mar 2008, at 09:37, David Glasgow wrote: 1/ How hard would it be to parse sound files recorded in Rev and extract just the chunks of data relating to pitch ? The way sound is digitally recorded does not have chunks relating to pitch specifically. An audio file is essentially a long list of numbers that describe the changing amplitude of the waveform of sound - this theoretically encompasses all the properties of sound - pitch, timbre and timing. 2/ Does it make any difference if the sound is complex (like an animal call) or simple like a signal from a tone generator? Yes. The simpler the sound the easier it will be. 3/ Are any of the formats offered by Rev easier to handle in this respect? The difference between uncompressed sound file formats (.wav and .aiff for instance) is really only in the file headers - the audio data itself is generally the same. 4/ Assuming standard bit rates, how much pitch data would be generated by, say a ten second recording? Typically, uncompressed sound files store a certain number of samples per second per channel. The CD standard is 44100 samples per second, with each sample being a two-byte signed integer (the sample size). So ten seconds from a stereo CD would be 10 * 44100 * 2 * 2 = 3528000 bytes. 5/ I have settled for post hoc parsing rather than 'on the fly' processing because I assumed the overhead would be too great for the latter to work. Is that right? Probably. 5/ Are there any other sensible questions I should be asking? I'd probably start looking for any command-line tools that you could call from Rev. Maybe google 'pitch extraction', 'audio analysis' as a start. Best, Mark ___ 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: Extracting pitch information from sound files
David, I'm not sure pitch analyzis is a job for Rev... At least Rev can be used to build a front-end for data display, but for sound analyzis per se, you'll be more comfortable with software built for that purpose : just off the top of my head : some Csound functions or various phase vocoders (some available as shareware, some for a licence fee like the IRCAM tool (I forgot the name)... May be can you pick up some specific C/C++ libraries on the web and use them as externals in your Rev app... hope that helps, JB > The subject line pretty much says it all, but more specifically I > want to statistically analyse change in pitch, not play it, save it > as sound or relate it directly to any musical system. So any kind of > rational number would be fine, and I would then chuck away > the .wav .aiff or whatever. > > 1/ How hard would it be to parse sound files recorded in Rev and > extract just the chunks of data relating to pitch ? > > 2/ Does it make any difference if the sound is complex (like an > animal call) or simple like a signal from a tone generator? > > 3/ Are any of the formats offered by Rev easier to handle in this > respect? > > 4/ Assuming standard bit rates, how much pitch data would be > generated by, say a ten second recording? > > 5/ I have settled for post hoc parsing rather than 'on the fly' > processing because I assumed the overhead would be too great for the > latter to work. Is that right? > > 5/ Are there any other sensible questions I should be asking? > > Best Wishes, > > David Glasgow > Carlton Glasgow Partnership > > http://www.i-psych.co.uk > > ___ > use-revolution mailing list > use-revolution@lists.runrev.com > Please visit this url to subscribe, unsubscribe and manage your subscription > preferences: ___ 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
Extracting pitch information from sound files
The subject line pretty much says it all, but more specifically I want to statistically analyse change in pitch, not play it, save it as sound or relate it directly to any musical system. So any kind of rational number would be fine, and I would then chuck away the .wav .aiff or whatever. 1/ How hard would it be to parse sound files recorded in Rev and extract just the chunks of data relating to pitch ? 2/ Does it make any difference if the sound is complex (like an animal call) or simple like a signal from a tone generator? 3/ Are any of the formats offered by Rev easier to handle in this respect? 4/ Assuming standard bit rates, how much pitch data would be generated by, say a ten second recording? 5/ I have settled for post hoc parsing rather than 'on the fly' processing because I assumed the overhead would be too great for the latter to work. Is that right? 5/ Are there any other sensible questions I should be asking? Best Wishes, David Glasgow Carlton Glasgow Partnership http://www.i-psych.co.uk ___ 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