XML-RPC Support?

2002-11-09 Thread Dan Shafer
Has anyone developed any libraries or tools for doing XML-RPC from RR? ___ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution

Re: New Card yields a different size?

2002-11-09 Thread Troy Rollins
On 11/9/02 4:09 PM, "Barry Levine" <[EMAIL PROTECTED]> wrote: > I could use a little advice if someone feels so inclined. Any chance you have menus enabled on one but not another, or something to that effect? -- Troy RPSystems, Ltd. www.rpsystems.net ___

Re: Poke the IPTC annotation data space of images?

2002-11-09 Thread Sannyasin Sivakatirswami
Thanks Gary: That get's me up to speed on this area, but since I don't know C++. Getting from where Rev is today to Revolution with a cross platform IPTC DataSet plug-in doesn't appear very doable. I guess for now I will have to go with the stack model where images carry associated data as custom

New Card yields a different size?

2002-11-09 Thread Barry Levine
When I use the menu command "New Card" to add a card to my stack (development environment), the resulting card is taller (about 15-20 pixels) than the first card even though the card properties declare both cards to be the same size. The first card of the stack is 620x460 pixels. I could use a

Re: Building "serious" scientific applications with RunRev...

2002-11-09 Thread Alex Rice
On Saturday, November 9, 2002, at 08:26 AM, Oliver Hardt wrote: i do not agree with the general statement "if you want to program a serious scientific app, you better learn C". from my experience that is true only for some problems. for example, if you would like to analyze fMRI data with

Re: status of ODBC on OS X; is this a waste of time?

2002-11-09 Thread Alex Rice
On Saturday, November 9, 2002, at 01:13 PM, Kevin Miller wrote: On 8/11/02 1:49 pm, Tuviah Snyder <[EMAIL PROTECTED]> wrote: I'll leave Kevin to comment on licensing issues. Postgres will be the same as the other specific databases: most of the feature set will only work with the pro versio

Re: status of ODBC on OS X; is this a waste of time?

2002-11-09 Thread Kevin Miller
On 8/11/02 1:49 pm, Tuviah Snyder <[EMAIL PROTECTED]> wrote: > I'll leave Kevin to comment on licensing issues. Postgres will be the same as the other specific databases: most of the feature set will only work with the pro version. ODBC will continue to be fully functional in the Small Business

Re: selecting tab button from script

2002-11-09 Thread Mark Swindell
on 11/9/02 10:53 AM, Jan Schenkel at [EMAIL PROTECTED] wrote: > set the menuHistory of btn 'tabbedBtn' to 2 Thank you! I put the following in the opencard handler in the stack script and it appears to work great. if exists (btn "MainTabbedButton") then set the menuHistory of btn "MainTa

Menu problem

2002-11-09 Thread Robert Presender
Hi, Need help again re menus. Using OS 10.2.1, 1.1.1 r2, 1.5A7r1 I have a menubar with several btn menus as pulldown: one of the menus has several items: New Trans - Sort - I would like to have the Sort item to be cascading(?) like: - Sort (arrow symbol) By Date

RE: Poke the IPTC annotation data space of images?

2002-11-09 Thread Gary Rathbone
There's a lot of information at http://www.iptc.org/site/standards.html including "...some sample software written in C++ to provide a guide to programmers wishing to extract IPTC DataSets from JPEG image files..." You might also want to take a look at http://www.breezesys.com/BreezeBrowser/iptc.

Recording sound

2002-11-09 Thread Richard D. Miller
Being Mac people...we're in the process of moving a project over to Windows XP and are having problems recording sound. The sound is coming in through the Firewire port on our Sony VAIO laptop (via an analog video camera hooked up through an analog-to-digital converter). When we try using the Sound

Re: selecting tab button from script

2002-11-09 Thread Jan Schenkel
--- Mark Swindell <[EMAIL PROTECTED]> wrote: > What is the proper way to hilite/select a tabbed > button from a script? I > have two nearly identical navigation tabbed button > sets on two different > groups, and when I jump groups it goes to the > correct card but doesn't > hilite the proper tab

RE: Creating links

2002-11-09 Thread Gary Rathbone
Put your script in a button making sure the "Can Receive Keybaord Focus" box is unchecked in the 'button' tab of the properties window. This keeps the text selected when you click the button. Regards Gary Rathbone BSc MBCS Chartered Information Systems Practitioner -Original Message- Fr

Re: use-revolution digest, Vol 1 #824 - 8 msgs

2002-11-09 Thread Jmicha5059
Most fMRI analyses are now done with SPM. This system uses scripts in Matlab and very few C routines. Matlab scripts are about as far from programminmg as you can get. The attitude that "serious" programming is done only with procedural languages is just a sentiment expressed by people who h

selecting tab button from script

2002-11-09 Thread Mark Swindell
What is the proper way to hilite/select a tabbed button from a script? I have two nearly identical navigation tabbed button sets on two different groups, and when I jump groups it goes to the correct card but doesn't hilite the proper tab upon getting there. The "select menuItem x of menu 'button

Re: sending email

2002-11-09 Thread Shao Sean
> a) field to enter server > b) field to enter user > c) field to enter password > d) field to enter recipient > e) field to enter subject > f) field to enter body of email msg just create a field and then when the user (or your code) wants to send the email, just use the built-in commands to pass

Re: Building "serious" scientific applications with RunRev...

2002-11-09 Thread Oliver Hardt
i do not agree with the general statement "if you want to program a serious scientific app, you better learn C". from my experience that is true only for some problems. for example, if you would like to analyze fMRI data with an algorithm of your own, well, you'll better learn C. and sometim

RE: RTF Reader in Rev

2002-11-09 Thread Roger . E . Eller
> Wait for 2.0 nd the rtfText property ;-) That sounds great, but let's take it a step further. Where I work, MS-Word (.doc) is a corporate standard for memos, etc. sent via e-mail. We also have several unix (not linux) based machines that people use. They have to get PC/Mac users to print these

Re: Web Access - launch Browser

2002-11-09 Thread David Wilkinson
Jeanne Thanks for your response. Unfortunately, I don't think it is the complete answer since the original scriptlet was: put the selectedtext into tAppName Answer file "Select Text file to open " If tAppName is not empty then put"file:" & it into tFileN

Re: Clearing QT video when it's done

2002-11-09 Thread Mark Luetzelschwab
Use the playStopped message inside of the player script from memory, so check syntax :) on playStopped if the currentTime of me = the duration of me then # hide the movie or whatever set the fileName of me to empty hide me set the topLeft of me to the bottomRight of thi