Re: OT: Future of PHP - LAMP Based Web Site Technology

2007-08-25 Thread Josh Mellicker
Here's part of Apple.com written in php: http://www.apple.com/software/pro/training/centers.php Hehe, they have the old header from months ago... someone needs to wake up in that department. On Aug 24, 2007, at 6:06 PM, Brian Yennie wrote: Sivakatirswami, FWIW, Flickr actually *is*

Saving a field containing text and images

2007-08-25 Thread Éric Miclo
Hello, Does anybody know how to save the content of a field populated with text and images (chars set with imageSource)? Thanks a lot for any advice. Best, ÉrIC -- My NeXT computer will Be a Mac too! -- ___ use-revolution mailing list

Re: Saving a field containing text and images

2007-08-25 Thread Eric Chatonet
Bonjour Eric, Le 25 août 07 à 13:45, Éric Miclo a écrit : Hello, Does anybody know how to save the content of a field populated with text and images (chars set with imageSource)? Thanks a lot for any advice. Best, ÉrIC It depends where you want to save your field. But in Rev, if you

Rev Studio and Vista

2007-08-25 Thread Len Morgan
I've just gotten a new computer and want to retire my old (XP Pro) desktop. The new machine is a laptop and I'm a heavy user of Galaxy/GLX2. I can't seem to find where to install the plugins (in general) under Vista. The \Documents and Settings\USERNAME\My Revolution Studio isn't anywhere

Re: Rev Studio and Vista

2007-08-25 Thread Jerry Daniels
Len, I've looked at Vista and it has the same set up system as XP. You do have a folder where your documents are supposed to reside. You can discover that with the specialFolderPath function, if need be. HOWEVER, on installing Revolution, it does NOT create the third party plugins folder

Re: Saving a field containing text and images

2007-08-25 Thread Éric Miclo
Bonjour Éric, Merci pour la réponse rapide, comme d'habitude. J'ai fait des essais en enregistrant le htmlText du champ, mais il faut ensuite exporter toutes les images, ce qui peut entraîner la création de nombreux fichiers. J'aurais bien voulu enregistrer le tout dans un fichier rtf, mais

question about saveStackRequest

2007-08-25 Thread Andre Garzia
Hello Folks, I am trying to monitor when the IDE saves a stack. I tried using saveStackRequest on a backscript and on a frontscript, both without success. I can't put the handler inside the given stacks because I don't know in advance which stack will be monitored. The idea is to watch when a

Re: Saving a field containing text and images

2007-08-25 Thread Richard Gaskin
Éric Miclo wrote: I've made some testing by saving the field's htmlText , but after that you need to export all the images and it can lead to the creation of a huge number of files. I'd prefered saving all in a rtf, but here I don't know how to do it. If you need these files to be opened

Re: question about saveStackRequest

2007-08-25 Thread Eric Chatonet
Hi ANdre, You might try to trap 'revSaveStackRequest', a message listed among the ones a plugin can receive. Sounds a good direction to go :-) Le 25 août 07 à 17:31, Andre Garzia a écrit : Hello Folks, I am trying to monitor when the IDE saves a stack. I tried using saveStackRequest on a

Re: Saving a field containing text and images

2007-08-25 Thread Stephen Barncard
It's possible but complicated. I don't know if you need a document readable by something else, but if it's all to be saved and loaded by your app, it can be done. I've experimented with with saving all fields and images in a group as text descriptions. to keep the size down, all images are

Re: question about saveStackRequest

2007-08-25 Thread Richard Gaskin
Eric Chatonet wrote: Le 25 août 07 à 17:31, Andre Garzia a écrit: I am trying to monitor when the IDE saves a stack. I tried using saveStackRequest on a backscript and on a frontscript, both without success. ... In my tests here, my scripts running as a front or back script can't see that

Re: Rev Studio and Vista

2007-08-25 Thread Ken Ray
On Sat, 25 Aug 2007 09:14:33 -0500, Len Morgan wrote: I've just gotten a new computer and want to retire my old (XP Pro) desktop. The new machine is a laptop and I'm a heavy user of Galaxy/GLX2. I can't seem to find where to install the plugins (in general) under Vista. The \Documents

Re: Saving a field containing text and images

2007-08-25 Thread Éric Miclo
Hello Richard, Well, I'd like to save the field in RTF with images embeded so other apps could open it. The problem is that I don't know how to add an image to a RTF file. I've played with base64Encode, imageData, etc without result. In fact I have no idea in what format the image has to be

Re: Saving a field containing text and images

2007-08-25 Thread Phil Jimmieson
Quoting Éric Miclo [EMAIL PROTECTED]: Hello Richard, Well, I'd like to save the field in RTF with images embeded so other apps could open it. The problem is that I don't know how to add an image to a RTF file. I've played with base64Encode, imageData, etc without result. In fact I have no idea

Re: Saving a field containing text and images

2007-08-25 Thread Éric Miclo
Le 25 août 07 à 19:17, Phil Jimmieson a écrit : Quoting Éric Miclo [EMAIL PROTECTED]: Hello Richard, Well, I'd like to save the field in RTF with images embeded so other apps could open it. The problem is that I don't know how to add an image to a RTF file. I've played with base64Encode,

Re: Saving a field containing text and images

2007-08-25 Thread Richard Gaskin
Éric Miclo wrote: Well, I'd like to save the field in RTF with images embeded so other apps could open it. The problem is that I don't know how to add an image to a RTF file. I've played with base64Encode, imageData, etc without result. In fact I have no idea in what format the image has to

FTPing a Rev OSX app

2007-08-25 Thread Richard Miller
I'm sure this has been talked about before, but I can't seem to put my finger on the answer. I need to download via ftp (via RunRev code) a Mac Rev app off our remote server (a Mac Mini server) as part of an automatic file updating process when our Rev application starts up. What's the

Re: jjAnswerFTPfile and jjAnswerFTPfolder

2007-08-25 Thread Josh Mellicker
Added cute little blue folder icons. Done for now... I think! latest version: http://leapingbrain.com/products/jjanswerFTPdemo.rev.zip On Aug 24, 2007, at 5:52 PM, Josh Mellicker wrote: - Fixed a bug causing stack not to show. - Make folder button now works. - Syntax now includes

Converting stacks in XPS file format

2007-08-25 Thread Alejandro Tejada
Hi all, I have been reading about the XPS file format proposed by Microsoft. Does anyone have a handler to convert text fields, vector graphics and images from a stack in a XPS document? Thanks in advance. alejandro Visit my site: http://www.geocities.com/capellan2000/

Re: FTPing a Rev OSX app

2007-08-25 Thread Andre Garzia
Richard, never transfer MacOS files thru ftp without putting them on a safe container. Best way to transfer your application is by using a zip file. Zip the application bundle and use RevZip functions to extract it later. This is actually how Revolution own updater works I think. Andre On

Re: FTPing a Rev OSX app

2007-08-25 Thread Stephen Barncard
OR... you could host just the main stack on a server which could be updated by FTP and make a 'splash screen' standalone to launch it. The stack can be directly loaded from the server. Since it all goes to memory, the functionality won't suffer at all. Richard, never transfer MacOS

Make box of checkbox transparent

2007-08-25 Thread Mikey
I have a stack that has a background color. I'd like my checkboxes to be transparent so as to carry the background color through. This is on XP. How would I go about doing that? Opaque doesn't help. Blending doesn't seem to, either. ___

Re: question about saveStackRequest

2007-08-25 Thread J. Landman Gay
Andre Garzia wrote: In my tests here, my scripts running as a front or back script can't see that event. I believe that the IDE is sending that directly to the stack without going thru the message path, is this possible? The docs say that when the user chooses to save, Rev locks messages to

Re: question about saveStackRequest

2007-08-25 Thread J. Landman Gay
Richard Gaskin wrote: if not gREVSuppressMessages or (gREVSuppressMessages and revOKTarget()) then pass saveStackRequest else pass saveStackRequest to metaCard end saveStackRequest So it seems the passing of the native message is conditional. I didn't dig through the code to try to

how to get the frame rate of a Quicktime movie?

2007-08-25 Thread Josh Mellicker
I found the following post from 2002: Thanks Karl Here's what I have come up with so far. To determine the frame-rate of a video clip: It seems that if you advance the video clip from 0 by 1 frame (play step forward) and divide the timescale property by the currenttime property, the