Re: Text to speech synched to video

2009-11-16 Thread Phil Davis
Hi - Conceptually this isn't hard at all. Here's how it could work: 1. Create a callback list for the movie. (Look up "callbacks" in the docs. "The callbacks" is a player property.) A callback list is a set of lines where each line contains two items: a movie time reference and

[ANN] tText - a text editor you extend with Revolution plugins

2009-11-16 Thread Jerry Daniels
NOTE: I meant to post this on Friday and seem to have failed. Don't want to be annoying, but having a text editor you can extend with Revolution is something many of us have wanted. So here's the post I meant to make... There's the post on our blog with the video showing our new text edit

Re: [ANN] tText now available for PC as well as Mac

2009-11-16 Thread David Coker
>David, > >I've sent you emails with the download info. Let me know if you have >not gotten them. > >Best, > >Jerry Daniels Hello Jerry, Just double checked my inbox ( spam filters), found nothing there other than the original download links pointing to the Mac versions. Wait! Scratch that.. j

Text to speech synched to video

2009-11-16 Thread revolution
I need to have a text file read using the system's text to speech engine and have it synched to a video. No talking heads just description of the activity in the video but there would be periods where no speech is required, in other words, intermitent speech timed to the video. Along the lines of t

Re: [ANN] tText now available for PC as well as Mac

2009-11-16 Thread Jerry Daniels
David, I've sent you emails with the download info. Let me know if you have not gotten them. Best, Jerry Daniels The latest Rev Editor Video: http://reveditor.com/feature-friday-part-2-ttext-a-super-text-edit On Nov 16, 2009, at 8:50 PM, David Coker wrote: You heard all about it on Fr

Re: [ANN] tText now available for PC as well as Mac

2009-11-16 Thread David Coker
>You heard all about it on Friday, and now it's also available starting >today for proud owners of PCs as well as Macs. > >http://reveditor.com/tag/ttext I'm ready... just point me to the download. :) David C. ___ use-revolution mailing list use-rev

[ANN] tText now available for PC as well as Mac

2009-11-16 Thread Jerry Daniels
tText - take control of your text with the world's first text editor to use Revolution stacks as plugins. You heard all about it on Friday, and now it's also available starting today for proud owners of PCs as well as Macs. http://reveditor.com/tag/ttext Best, Jerry Daniels The latest Re

Re: Safari caches revlet

2009-11-16 Thread Brian Yennie
One common technique if you want to force a new version to be loaded is to use a "cache busting" URL to the Revlet in your HTML. Just add a query string to the end, and change it to reflect a new version. myrevlet.rev ===> myrevlet.rev?v=1.0 ===> myrevlet.rev?v=2.0 > etc. From then on, w

Re: Safari caches revlet

2009-11-16 Thread Scott Rossi
Recently, Jim Lambert wrote: > Anyone know of a way to force Safari to reload a revlet other than emptying > the cache? > When I upload a new version of a revlet, Firefox dutifully loads the new > version, but Safari insists on using a cached version. Not sure if this is possible, but the same is

Safari caches revlet

2009-11-16 Thread Jim Lambert
Anyone know of a way to force Safari to reload a revlet other than emptying the cache? When I upload a new version of a revlet, Firefox dutifully loads the new version, but Safari insists on using a cached version. Thanks, Jim Lambert___ use-revolution

revVideoGrabber on Vista and Windows 7

2009-11-16 Thread Neil Allan
Has anyone had any success using the revVideoGrabber on windows 7? When I try to initialize an instance of it I only get a white screen where my webcam image should be. The stack works ok on xp, and I don't have vista to try it. I know that Video For windows is pretty much obsolete nowadays but

Re: aeMoveDone (was:use-revolution Digest, Vol 74, Issue 28)

2009-11-16 Thread René Micout
That work ! Thank you Malte René Le 16 nov. 09 à 20:22, Malte Pfaff-Brill a écrit : local M1,M2,pointArrivée1,pointArrivée2 on mouseUp if the short name of the target <> "theNameOfTheContolThatShouldStartIt" then pass mouseUp end if get the points of grc "RacineTest" put line 1 of it

Video "See what our customers think of Rev!"

2009-11-16 Thread Alejandro Tejada
Hi All, I just watch the video "See what our customers think of Rev!" http://runrev.com/#TB_inline?height=485&width=690&inlineId=hiddenVideo5 I could recognize some faces, but not all. :-) Could you post the names of the persons featured in this video in their presentation order? Thanks in adva

"How to do this in a Revlet?" thread Part 3

2009-11-16 Thread Alejandro Tejada
Hi all, Now is my turn to ask for insights to implement this swf effect in a revlet: http://www.magictoolbox.com/magicmagnify/ Notice how smoothly the masked image move along with the circle in this page. Actually, i have tried to recreate this effect using Scott Rossi's stack named "spotlight

Re: Resizeable Fields

2009-11-16 Thread Richmond Mathewson
Sivakatirswami wrote: Before I go re-inventing the wheel, has anyone invented user re-sizeable fields? I suppose sticky palette with the Select and Browse tools could also work , but not as cool as some mousedown/drag event... if so, can you post the code here? (I'm watching with interest all

aeMoveDone (was:use-revolution Digest, Vol 74, Issue 28)

2009-11-16 Thread Malte Pfaff-Brill
René, aeMoveDone is sent to the moving object, not to the script that called aeMoveTo. So if you trap it at card level (or in the control itself) it will work. Also rememeber to check for the position you arrived at, as aeMoveDone will be sent after every aeMoveTo has finished. e.g. if yo

Re: use-revolution Digest, Vol 74, Issue 28

2009-11-16 Thread René Micout
local M1,M2,pointArrivée1,pointArrivée2 on mouseUp get the points of grc "RacineTest" put line 1 of it into pointDépart1 put line 2 of it into pointArrivée1 set the loc of grc "Mèche" to pointDépart1 put the long ID of grc "Mèche" into M1 get the points of grc "RacineTest2" p

Re: use-revolution Digest, Vol 74, Issue 28

2009-11-16 Thread Malte Pfaff-Brill
René á ecrit: Hello Malte, A question about the new animationEngine 3 : Is it possible to use aeMoveto for move independently many graphics in the same time (different loc, different speed, etc.) ? Hi, yes that is possible. If you want them to start synchronously, you might wish to do an aeL

Re: Learning about GLOBALS late in life . . .

2009-11-16 Thread Colin Holgate
On Nov 16, 2009, at 1:41 PM, Richmond Mathewson wrote: > > >but Mark's was pedagogically more useful as I had 'forgotten' about locals I always strive to be pedagogically less useful. Interestingly, I knew the answer not from knowing Rev, and certainly not HyperCard (which doesn't work that

Re: Learning about GLOBALS late in life . . .

2009-11-16 Thread Richmond Mathewson
Colin Holgate wrote: On Nov 16, 2009, at 12:22 PM, Mark Wieder wrote: global t ...but do you really want to do that? Yes, definitely, if it's part of an answer to a question about making globals work. Now, Richmond may well want to learn about locals too, but I was just ans

Re: Learning about GLOBALS late in life . . .

2009-11-16 Thread Mark Wieder
Colin- Monday, November 16, 2009, 9:29:30 AM, you wrote: > Yes, definitely, if it's part of an answer to a question about > making globals work. Now, Richmond may well want to learn about > locals too, but I was just answering the question he asked! -- -Mark Wieder mwie...@ahsoftware.net __

RE: Setting Stack Externals on Mac

2009-11-16 Thread Jim Bufalini
Thanks Thierry, It was actually your lesson that I was looking for as I don't want the external attached to the standalone and from your code example I see that you point to the .bundle folder. Aloha from Hawaii, Jim Bufalini > -Original Message- > From: use-revolution-boun...@lists.run

Re: Printing faxing

2009-11-16 Thread Hershel Fisch
Hi and thanks, to elaborate on my question, there are several programs that communicate with the print dialog , 4 sight fax, the user opens a doc clicks print, selects the 4SightFax printer, clicks print and the document opens up in the 4sightFax application, the user can repeat as desired for mult

Re: Setting Stack Externals on Mac

2009-11-16 Thread Thierry D .
Le 16 nov. 09 à 18:22, Jim Bufalini a écrit : Hello, Can someone give me the code for setting the externals of a stack on a Mac Standalone? On PC it is: Have a look at runrev lessons. Trevor did a nice lesson about this. HTH, Thierry ___ use

Re: Moving a point above a line

2009-11-16 Thread René Micout
Sorry Malte, but I have the response when I read the Animation Engine présentation... I have purchase Animation Engine, I think I can continue in a best way Bons souvenirs de Paris René Le 16 nov. 09 à 17:11, René Micout a écrit : Hello Malte, A question about the new animationEngine 3 : Is i

Re: Learning about GLOBALS late in life . . .

2009-11-16 Thread Richmond Mathewson
Mark Wieder wrote: Richmond- Monday, November 16, 2009, 9:00:46 AM, Colin wrote: top. So this would work for example: global t ...but do you really want to do that? This would also work... local LEFTT, TOPP Thanks for that one; especially "going local". What a great

Re: Learning about GLOBALS late in life . . .

2009-11-16 Thread Colin Holgate
On Nov 16, 2009, at 12:22 PM, Mark Wieder wrote: >> global t > > ...but do you really want to do that? Yes, definitely, if it's part of an answer to a question about making globals work. Now, Richmond may well want to learn about locals too, but I was just answering the question he asked!

Re: Learning about GLOBALS late in life . . .

2009-11-16 Thread Mark Wieder
Richmond- Monday, November 16, 2009, 9:00:46 AM, Colin wrote: > top. So this would work for example: > global t ...but do you really want to do that? This would also work... local LEFTT, TOPP on mouseDown put the top of fld "acre" into TOPP put the left of fld "acre" into LEFTT grab

Setting Stack Externals on Mac

2009-11-16 Thread Jim Bufalini
Hello, Can someone give me the code for setting the externals of a stack on a Mac Standalone? On PC it is: put ( & slash & "Externals" & slash & ".dll" & cr) after tExternals set the externals of this stack to tExternals On Mac there is an ".bundle which in turn has a "Contents" folder which in

Re: Learning about GLOBALS late in life . . .

2009-11-16 Thread Colin Holgate
On Nov 16, 2009, at 11:53 AM, Richmond Mathewson wrote: > > and the third line within the 'on mouseUp' > threw "a bluey" Either put the global thing in each handler, or just once at the top. So this would work for example: global t on mousedown put random(100) into t end mousedown on mou

Re: Learning about GLOBALS late in life . . .

2009-11-16 Thread Jacques Hausser
Richmond If the globals are defined in a handler, they must be defined in each handler using them... if you define them at the script level, no problem Jacques Le 16 nov. 2009 à 17:53, Richmond Mathewson a écrit : > tried this: > > on mouseDown > global LEFTT, TOPP > put the top of fld "acre

Learning about GLOBALS late in life . . .

2009-11-16 Thread Richmond Mathewson
tried this: on mouseDown global LEFTT, TOPP put the top of fld "acre" into TOPP put the left of fld "acre" into LEFTT grab me end mouseDown on mouseUp put the bottom of fld "acre" into DOWP put the right of fld "acre" into RITE put RITE - LEFTT into WIDD put DOWP - TOPP into HI

Re: csv parser

2009-11-16 Thread Dom
Chris Sheffield wrote: > Great. Thanks, Alex. This will definitely come in handy. Point taken about > using tabs vs. commas as the delimiter. That would be my preference too, > but I'm not sure I have control in this case. We'll see. I must add that here in France -- and certainly in other europ

Re: Releasing a commercial revweb site

2009-11-16 Thread Andre Garzia
Richard, it pays to be wise and patient. In doubt wait for both. Check with your group of users first, if problems arise, then wait longer. RevWeb is just starting, there's a lot of room for improvements. Andre On Mon, Nov 16, 2009 at 1:25 PM, Richard Miller wrote: > Andre, > > Thanks for your

Re: Moving a point above a line

2009-11-16 Thread René Micout
Hello Malte, A question about the new animationEngine 3 : Is it possible to use aeMoveto for move independently many graphics in the same time (different loc, different speed, etc.) ? René Le 16 nov. 09 à 15:18, Malte Pfaff-Brill a écrit : Bonjour René, I hope you do not mind the shameless

Re: Releasing a commercial revweb site

2009-11-16 Thread Edward D Lavieri Jr
Hi Richard, My client had browser / plug-in problems. He is not computer savvy, so he needed a super simple solution. We live in different states, so it was difficult to help him troubleshoot. He was never able to get the plug-in to work in IE or FireFox. I tested both of those browsers w

Re: Releasing a commercial revweb site

2009-11-16 Thread Richard Miller
Hi Ed, What kind of problems did you encounter? This could be very helpful info. Thanks. Richard Edward D Lavieri Jr wrote: Hi Richard, I recently took this leap, but on a smaller scale. Even after thorough local testing on multiple PC and Mac operating systems, my client had problems. Th

Re: csv parser

2009-11-16 Thread Chris Sheffield
Great. Thanks, Alex. This will definitely come in handy. Point taken about using tabs vs. commas as the delimiter. That would be my preference too, but I'm not sure I have control in this case. We'll see. Thanks again, Chris On Nov 13, 2009, at 4:04 PM, Alex Tweedly wrote: > Chris Sheffield w

Re: Releasing a commercial revweb site

2009-11-16 Thread Richard Miller
Andre, Thanks for your thoughts. Are you suggesting to wait for another version (or two) of the plugin, or wait until I've seen how it goes with a group of users. or both? Richard Andre Garzia wrote: Richard, I would wait some more, try conducting a beta test with a selected group o

Re: Releasing a commercial revweb site

2009-11-16 Thread Edward D Lavieri Jr
Hi Richard, I recently took this leap, but on a smaller scale. Even after thorough local testing on multiple PC and Mac operating systems, my client had problems. This taught me to wait until well after the first non-beta release. Once things are truly stable, I will dip my feet back in t

Re: Moving a point above a line

2009-11-16 Thread Alejandro Tejada
Hi Malte, This is a great demo stack! Thanks for sharing. :-) Actually, if Rene project's allows, i wholeheartly recommend that he adquires Malte's library. Although it might sounds obvious, but the most important is that you will have access to support from Malte's experience for your project.

Re: Releasing a commercial revweb site

2009-11-16 Thread Andre Garzia
Richard, I would wait some more, try conducting a beta test with a selected group of users, pick 50 or something and see if it works for them, if you just launch the site with no focus group test, if risk a huge support issue. Andre On Mon, Nov 16, 2009 at 9:55 AM, Richard Miller wrote: > I'm

Re: Moving a point above a line

2009-11-16 Thread Malte Pfaff-Brill
Bonjour René, I hope you do not mind the shameless plug. I quickly whipped up a revLet how this could be done with animationEngine: http://derbrill.on-rev.com/ae3/movePoly.html The stack is here: http://derbrill.on-rev.com/ae3/movePolygonalTest.rev All the best, Malte

Re: Moving a point above a line

2009-11-16 Thread René Micout
Hello Alejandro, Thank you, I try it René Le 16 nov. 09 à 14:41, Alejandro Tejada a écrit : Hi René, Could you post a small stack sample? In the meanwhile, visit the site of Scott Rossi: http://www.tactilemedia.com/site_files/software/tutorials.html From my site, download: http://www.cape

Re: Moving a point above a line

2009-11-16 Thread Alejandro Tejada
Hi René, Could you post a small stack sample? In the meanwhile, visit the site of Scott Rossi: http://www.tactilemedia.com/site_files/software/tutorials.html >From my site, download: http://www.capellan2000.000space.com/walkingman_2.zip http://www.capellan2000.000space.com/walkingman_Rossi.zip

Moving a point above a line

2009-11-16 Thread René Micout
Hello, this is my problem : I have a line (grc "RacineTest2") and a "point" (grc "Mèche") My goal is to move independently many "points" above many lines... So the move command is not a solution because it stop a point during the move of another point... I have test 3 solutions : A = send in x

Releasing a commercial revweb site

2009-11-16 Thread Richard Miller
I'm within a week of releasing a fairly extensive commercial revweb project, which will immediately have traffic in the thousands (based on my existing Rev software and user database). I'm feeling a little uncertain about this, given the state of the plugin (which mostly works quite well). I've

AW: OT: Urgent, how to force eject a CD from MacBook

2009-11-16 Thread Tiemo Hollmann TB
Hi Jacques, MERCI MERCI BEAUCOUP!!! You saved not only my day, you saved my week! Thank you! Tiemo > -Ursprüngliche Nachricht- > Von: use-revolution-boun...@lists.runrev.com [mailto:use-revolution- > boun...@lists.runrev.com] Im Auftrag von Jacques Hausser > Gesendet: Montag, 16. November

AW: OT: Urgent, how to force eject a CD from MacBook

2009-11-16 Thread Tiemo Hollmann TB
Hi Sarah, holding down the mouse, didn't worked. The slot in my Mac Book has such a kind of a felt curtain and I can't see behind the curtain, where a notch could be, I don't want to push into the blind and perhaps destroy anything. Do you have an idea, where the noth is exactly located and how dee

Re: OT: Urgent, how to force eject a CD from MacBook

2009-11-16 Thread Jacques Hausser
Another possibility: in case of problem, it is frequently possible to eject a disc from the disk utility. good luck ! Jacques Le 16 nov. 2009 à 11:28, Sarah Reichelt a écrit : >> need urgent help. I was burning a CD in my Mac Book but canceled the job >> while running. >> >> Now the CD can't

Re: Printing faxing

2009-11-16 Thread Sarah Reichelt
On Mon, Nov 16, 2009 at 7:32 PM, Hershel Fisch wrote: > Hi every body, I have an urge to create a front end for hylafax+ Fax server, > I¹d like to know from the print dialog how  to save a pdf to Rev on osx? Or > from a generic print driver how or if there is a possibility to print to a > Rev exe.

Re: OT: Urgent, how to force eject a CD from MacBook

2009-11-16 Thread Sarah Reichelt
> need urgent help. I was burning a CD in my Mac Book but canceled the job > while running. > > Now the CD can't be ejected anymore, it turns, but neither with the eject > button, nore from within  liquid app it can be ejected. > > I have booted twice, while booting, the CD turns but can not be eje

AW: OT: Urgent, how to force eject a CD from MacBook

2009-11-16 Thread Tiemo Hollmann TB
Noop, the CD turns, the Mac trys to read it, but doesn't eject it. Thanks for any other idea? Any brute force? Tiemo > -Ursprüngliche Nachricht- > Von: use-revolution-boun...@lists.runrev.com [mailto:use-revolution- > boun...@lists.runrev.com] Im Auftrag von Richmond Mathewson > Gesendet:

Re: OT: Urgent, how to force eject a CD from MacBook

2009-11-16 Thread Richmond Mathewson
Tiemo Hollmann TB wrote: Hello, need urgent help. I was burning a CD in my Mac Book but canceled the job while running. Now the CD can't be ejected anymore, it turns, but neither with the eject button, nore from within liquid app it can be ejected. I have booted twice, while booting, the

OT: Urgent, how to force eject a CD from MacBook

2009-11-16 Thread Tiemo Hollmann TB
Hello, need urgent help. I was burning a CD in my Mac Book but canceled the job while running. Now the CD can't be ejected anymore, it turns, but neither with the eject button, nore from within liquid app it can be ejected. I have booted twice, while booting, the CD turns but can not be ejec

Re: matchChunk works?

2009-11-16 Thread paolo mazza
Thanks a lot. -- View this message in context: http://n4.nabble.com/matchChunk-works-tp620097p622046.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visi