Re: Copy image content for object image empty. (Image moving)

2005-09-17 Thread Klaus Major

Buenos diaz Gilberto,


Hi,


you can simply put one image into another one :-)
But this only works with imported images, NOT with referenced images!

I understand this.


on mouseUp
   put image img01 into image Visor ##of cd 17 of stack  
another  cool stack

end mouseUp

This works to the a thousand marvels. Thanks.


Great :-)

This is a little less scripting and you do not have to take care  
that  the dimensions
As you spoke of the dimensions I stayed thinking and when carrying  
out a code I found a detail that   I wanted to be able to clarify.


I made the following script in the image.

on mouseUp
   lock screen
   put image img01 of stack myStack into image Visor
   set the width of image Visor to 200
   set the height of image Visor to 200
   unlock screen
end mouseUp

And it happens that when I press the click in the image, the image  
goes moving up in a position and me the only thing that I make is  
to change their dimensions.


Why does this happen?


Sorry, no idea...


I don't have neither the smallest idea.


I also found that setting height and/or width will also change
the loc of an object.

I ususally work around this with:

on mouseUp
   put the loc of img visor into tOldloc
   lock screen
   put image img01 of stack myStack into image Visor
   set the width of image Visor to 200
   set the height of image Visor to 200
   set the loc of img visor to tOldloc
   ## :-)
   unlock screen
end mouseUp


of both images are identical(!) as you have with imagedata.
Hope that heps.


Yes and thanks you.

Greetings,

Gilberto Cuba



Regards from germany
Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de


Greetings,

My name is Gilberto Cuba and I live in Cuba.


I almost guessed ;-)

Have a nice weekend.


Regards

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de

___
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


ESRI ShapeFiles to PNG rasters conversion in transcript, Anyone ?

2005-09-17 Thread Pierre Sahores


Grettings All,

I'm on the way to convert a desktop Geographical Information System  
(GIS) to a web anabled client-server one. To be able to redraw  
dynamically the ArcView 3.2 shapefiles as PNG rasters, i'm looking  
around for any synthetic documentation in about both the ESRI  
shapefile format and Rev related previous works, if exists,


Thanks for any help,

Best Regards,


--
Bien cordialement, Pierre Sahores

100, rue de Paris
F - 77140 Nemours

skype : psahores

[EMAIL PROTECTED]
[EMAIL PROTECTED]

GSM:   +33 6 03 95 77 70
Pro:  +33 1 64 45 05 33
Fax:  +33 1 64 45 05 33

http://www.sahores-conseil.com/

WEB/VoD/ACID-DB services over IP
Mutualiser les deltas de productivité


___
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: ESRI ShapeFiles to PNG rasters conversion in transcript, Anyone ?

2005-09-17 Thread MisterX
Hi Pierre

don’t know if you've see this but it looks like a good start...

http://shapelib.maptools.org

you'll find a few apis for the ESRI format...

cheers
Xavier

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Pierre Sahores
Sent: Saturday, September 17, 2005 12:51 PM
To: How to use Revolution
Subject: ESRI ShapeFiles to PNG rasters conversion in transcript, Anyone ?


Grettings All,

I'm on the way to convert a desktop Geographical Information System
(GIS) to a web anabled client-server one. To be able to redraw dynamically
the ArcView 3.2 shapefiles as PNG rasters, i'm looking around for any
synthetic documentation in about both the ESRI shapefile format and Rev
related previous works, if exists,

Thanks for any help,

Best Regards,


--
Bien cordialement, Pierre Sahores

100, rue de Paris
F - 77140 Nemours

skype : psahores

[EMAIL PROTECTED]
[EMAIL PROTECTED]

GSM:   +33 6 03 95 77 70
Pro:  +33 1 64 45 05 33
Fax:  +33 1 64 45 05 33

http://www.sahores-conseil.com/

WEB/VoD/ACID-DB services over IP
Mutualiser les deltas de productivité


___
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: java?

2005-09-17 Thread Stephen Barncard
Why would you want to START a project in Hypercard at this late date, 
versus just doing it in Revolution? Hypercard is gone, dead, 
unsupported for almost 10 years.



wanted to build standalone apps I would use hypercard/revolution for that. But
I don't think there is a good hypercard/revolution solution for online
distribution (i.e. you cannot yet run a stack from within a browser).


uh... as a CGI you canas well as anything else like PHP, PERL or 
PYTHON... with some help from your ISP


as far as Java, there's some experts here that could say a few words 
pro and con.




I know some people were working on a java hypercard. So maybe they might have
some ideas?


___
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


show hidden fields

2005-09-17 Thread rev
Hi All

I have managed to hide a field dependant on its background colour (background
colour set by a differnt script) but I'd like to show all the fields that I
have hidden.

I used this script
on mouseUp
  repeat for x=1 to the number of fields
show fld x of stack doubledelete
  end repeat
end mouseUp

but I'm getting an error

executing at 2:00:27 PM
Typerepeat: error in 'for' condition expression
Object  Button
Linerepeat for x=1 to the number of fields
Hintbutton id 1016 of card id 1002 of stack C:/Documents and
Settings/Bob/Desktop/doubledelete.rev


Any ideas.

PS the stack is on revonline in my user space nijinsky

Cheers :-)
Bob

PS Klaus I knoew you are online. Thanks for the help yesterday.:-)

___
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: show hidden fields

2005-09-17 Thread Alex Tweedly

[EMAIL PROTECTED] wrote:


Hi All

I have managed to hide a field dependant on its background colour (background
colour set by a differnt script) but I'd like to show all the fields that I
have hidden.

I used this script
on mouseUp
 repeat for x=1 to the number of fields
   show fld x of stack doubledelete
 end repeat
end mouseUp

 


It should be
  repeat with x = 1 to the number of fields

(You're mixing it up withrepeat for N times:-)

--
Alex Tweedly   http://www.tweedly.net



--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.1/104 - Release Date: 16/09/2005

___
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: show hidden fields

2005-09-17 Thread Dave Cragg


On 17 Sep 2005, at 14:01, [EMAIL PROTECTED] wrote:


Hi All

I have managed to hide a field dependant on its background colour  
(background
colour set by a differnt script) but I'd like to show all the  
fields that I

have hidden.

I used this script
on mouseUp
  repeat for x=1 to the number of fields
show fld x of stack doubledelete
  end repeat
end mouseUp

but I'm getting an error


repeat with not repeat for


Cheers

Dave
___
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: show hidden fields

2005-09-17 Thread rev

Quoting Alex Tweedly [EMAIL PROTECTED]:


[EMAIL PROTECTED] wrote:


Hi All

Hi Alex


I have managed to hide a field dependant on its background colour 
(background

colour set by a differnt script) but I'd like to show all the fields that I
have hidden.

I used this script
on mouseUp
 repeat for x=1 to the number of fields
   show fld x of stack doubledelete
 end repeat
end mouseUp



It should be
  repeat with x = 1 to the number of fields

(You're mixing it up withrepeat for N times:-)


:-)

Perfect

Worked a treat. I was getting into a bit of a bother working around it with
showinvisibles  etc.

Hope the weather up you way is better than Glasgow.

Cheers
Bob


--
Alex Tweedly   http://www.tweedly.net



--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.1/104 - Release Date: 16/09/2005

___
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: show hidden fields

2005-09-17 Thread rev

Quoting Dave Cragg [EMAIL PROTECTED]:

Thanks Dave

Working perfectly now.

cheers
bob



On 17 Sep 2005, at 14:01, [EMAIL PROTECTED] wrote:


Hi All

I have managed to hide a field dependant on its background colour  
(background

colour set by a differnt script) but I'd like to show all the  fields that I
have hidden.

I used this script
on mouseUp
  repeat for x=1 to the number of fields
show fld x of stack doubledelete
  end repeat
end mouseUp

but I'm getting an error


repeat with not repeat for


Cheers

Dave
___
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


SSL and HTTPS

2005-09-17 Thread david bovill
Is there any documentation on how to use certificates with REV -  
particularly on OSX? Any experts on this out there?


I am starting to use certificates from www.cacert.org to secure all  
web services called from Rev.


Anyone using certs?
___
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: java?

2005-09-17 Thread Gordon Tillman

Howdy Eric,

On Sep 17, 2005, at 00:55, Eric Engle wrote:


a) Whether and where an integrated visual IDE for java could be  
found -- of
course, ideally it would be like hypercard with a palette to choose  
interface

elements (buttons, fields, movies, images) and for scripting them.
b) A simple java for compiling applets. I don't need or even want  
to make java
standalones! I want not to have to choose between the various  
development
possibilities that java offers -- all I want is to compile simple  
applets. If I
wanted to build standalone apps I would use hypercard/revolution  
for that. But

I don't think there is a good hypercard/revolution solution for online
distribution (i.e. you cannot yet run a stack from within a browser).


Why don't you download and install Netbeans 4.1 from http:// 
www.netbeans.org?


You do not need the version that includes the Sun Java Application  
Server (SJAS), just the regular version is fine.


I have done scads of development in Netbeans, so if you have  
questions getting started, contact me off-list and I'll give you my  
number.


--gordy ([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


OPML

2005-09-17 Thread david bovill

Anyone got some code for OPML export / import?
___
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: java?

2005-09-17 Thread Mark Wieder
Eric-

Friday, September 16, 2005, 10:55:27 PM, you wrote:

 My current development strategy is to use hypercard for classic and then port

While I agree with Stephen here on the fuggedabouditness of
hypercard for new projects...

 a) Whether and where an integrated visual IDE for java could be found -- of

 b) A simple java for compiling applets. I don't need or even want to make java

a) and b) http://www.eclipse.org  That'll also take care of your
Python and PHP and Perl and Ruby and whatnot with various plugins.

-- 
-Mark Wieder
 [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: No LF when printing scripts.

2005-09-17 Thread Mark Wieder
Dave-

Friday, September 16, 2005, 1:58:22 PM, you wrote:

 I have searched the archives and have not been able to find anything.

BZ #1377

-- 
-Mark Wieder
 [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


ANN my wee hide fields stack; Usefull for newbies I hope.

2005-09-17 Thread rev
Hi All.

I've been playing with a method of hiding fields. I wanted to hide the fields
dependant on a keypress. Then I thouhgt how will the user know if the field is
to be deleted? Have a play and I hope it is usefull. It is in my userspace
nijinsky  on revonline.

How it works.
Put the cursor in the top field and press control and right click the mouse.
This turns the field red. Now I have a script that will hide the field only
if the field is red by pressing thte delete key. To get rid of the red press
the escape key. Now the delete key wont make the field disapear. :-) Both the
fields have slightly different scripts for you to compare.

There is also a button that will make the fields reapear.

Now there is another thing that you may find usefull in the top field's script.
It only works if the mainstack is doubledelete. So open another stack and
change the mainstak of doubledelete to the mainstack of your other app. The top
button wont respond.

This would be usefull if you are making an app with some functions only
available to an administrator etc.

Hope you enjoy and thankd to the helpers, in alphabetical order... Alex, Dave,
Klaus etc etc.

Cheers
Bob

___
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: Text to speech engines for Windows

2005-09-17 Thread Bob Earp
Thanks Phil for an excellent resonse, I'll do some digging around and see 
what solution suits me best.


Bob...

_
Take advantage of powerful junk e-mail filters built on patented Microsoft® 
SmartScreen Technology. 
http://join.msn.com/?pgmarket=en-capage=byoa/premxAPID=1994DI=1034SU=http://hotmail.com/encaHL=Market_MSNIS_Taglines 
 Start enjoying all the benefits of MSN® Premium right now and get the 
first two months FREE*.


___
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: java?

2005-09-17 Thread Richard Gaskin

Eric Engle wrote:

My current development strategy is to use hypercard for classic and then port
to metacard for windows and os x. It seems a workable strategy. 


Workable in the sense that you can drive a nail with a screwdriver if 
you're sufficiently determined; just not optimal. :)


Rev's language and object model go far beyond HC's.  Limiting yourself 
to HyperCard and working in that foreign and, unfortunately at this 
point, obsolete file format just adds an extra step and offers little 
benefit for the trouble.


Moreoer, it locks you into Classic at a time when Apple's doing 
everything they can do put that OS to rest, so it'll only become 
increasingly difficult to maintain such a workflow.  For example, Apple 
has already said that there will be no Classic support in their new 
Mactel machines, and those are only nine months away.


What would be the difficulty in authoring Rev stacks natively in Rev?

If the HC UI is attractive have you considered Alain Farmer's FreeGUI?
Remember that unlike HC, with Transcript the IDE UI is 100% cutomizable.

...

 But I don't think there is a good hypercard/revolution solution for
online distribution (i.e. you cannot yet run a stack from within a
browser).


Just for clarification, the Web and the Internet are not synonymous, and 
the HTTP is not limited to browsers per se.


So while it's not possible to run a stack from within a browser you 
can craft a nearly infinite variety of other UIs for online distribution.


If you need to run your app specifically inside of a browser window, 
Java or Flash are great solutions.


But if the goal is to deliver applications over the Internet using 
standard protocols (HTTP, FTP), that's already built into Rev.  And 
thanks to Dave Cragg's work on libURL, most of what you'd need to do are 
one-liners.


With Rev you also have a POST command to send info to a CGI, and if you 
can run Rev on the server you can have Transcript driving both the 
client and server sides.


And you also have raw socket support to you can make just about anything 
else your heart desires, from chat clients to even custom web servers 
(Scott Raney made a simple web server some years ago, and Andre's 
expanded that into quite a sweet suite).


While the promised simplicity of having Java run automatically in a 
browser seems attractive, in practice it doesn't seem simple to achieve. 
 Maybe it's a Mozilla/Firefox thang, but I run across a good many Java 
applets that just don't run well with Apple's JVM.


And when they do, the nature of browser-delivered media means I have to 
download the entire UI and code every time I access it.


In contrast, a custom web app built with Rev can maintain its own 
persistent cache completely under your control, so it operates more like 
the AOL client in which UI elements are downloaded only once and reused 
locallty, so the experience just gets snappier and snappier with each 
session.


And then there are the UI considerations, described at:
http://www.fourthworld.com/embassy/articles/netapps.html

So in short, if you truly need to deply within the confines of a browser 
window, with some effort you may find Java a great solution.


But if the goal is Internet deployment, you may find you can do 
everything you need, and perhaps a bit more, right in Transcript.


--
 Richard Gaskin
 Fourth World Media Corporation
 ___
 [EMAIL PROTECTED]   http://www.FourthWorld.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: java?

2005-09-17 Thread Dan Shafer
Eclipse is very cool but my experience with it under OS X was far  
less than satisfying. I couldn't get out of their tutorial in Java.



On Sep 17, 2005, at 9:16 AM, Mark Wieder wrote:


a) and b) http://www.eclipse.org  That'll also take care of your
Python and PHP and Perl and Ruby and whatnot with various plugins.





~~
Dan Shafer, Information Product Consultant and Author
http://www.shafermedia.com
Get my book, Revolution: Software at the Speed of Thought
From http://www.shafermediastore.com/tech_main.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


getting the palm folder (windows)

2005-09-17 Thread rev
Hi All.
How do I find out the location of a users palm PDA sync folder on windows from
the registry?

I looked in the docs and the google list search but found nothing (although I'm
sure it is ther somewhere. :-)  )


I want to populate a field on startup with this so I can add this to a PDB name
for accessing the data.


After that I'd like to know how to do this in MacOSX (but I'll walk before I can
run first) :-)


All the best
Bob

___
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


701 eLearning tips, for free

2005-09-17 Thread Marielle Lange

http://www.masie.com/701tips/
Thanks to The MASIE Center’s TRENDS readers and Learning Consortium  
Members, over 1000 e-Learning tips were received, analyzed, and  
categorized. These tips are from senior managers and training  
professionals from major corporations around the world. We have  
edited and compiled 141 pages and 14 chapters covering the ABC’s of  
getting started to global implementation strategies. We hope you  
enjoy this free digital book!


Which tips are the best ones, in your view?

Marielle
 
-
Marielle Lange (PhD),  Psycholinguistics, Lecturer in Psychology and  
Informatics

University of Edinburgh, UK

Homepage:  http://homepages.lexicall.org/mlange/
Lexicall project: http://lexicall.org
Revolution-education project: http://revolution.lexicall.org

___
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: Copy image content for object image empty. (Image moving)

2005-09-17 Thread Gilberto Cuba Ricardo

Thank you another time.

Best regards,

Gilberto Cuba

- Original Message - 
From: Klaus Major [EMAIL PROTECTED]

To: How to use Revolution use-revolution@lists.runrev.com
Sent: Saturday, September 17, 2005 6:03 AM
Subject: Re: Copy image content for object image empty. (Image moving)



Buenos diaz Gilberto,


Hi,


you can simply put one image into another one :-)
But this only works with imported images, NOT with referenced images!

I understand this.


on mouseUp
   put image img01 into image Visor ##of cd 17 of stack  
another  cool stack

end mouseUp

This works to the a thousand marvels. Thanks.


Great :-)

This is a little less scripting and you do not have to take care  
that  the dimensions
As you spoke of the dimensions I stayed thinking and when carrying  
out a code I found a detail that   I wanted to be able to clarify.


I made the following script in the image.

on mouseUp
   lock screen
   put image img01 of stack myStack into image Visor
   set the width of image Visor to 200
   set the height of image Visor to 200
   unlock screen
end mouseUp

And it happens that when I press the click in the image, the image  
goes moving up in a position and me the only thing that I make is  
to change their dimensions.


Why does this happen?


Sorry, no idea...


I don't have neither the smallest idea.


I also found that setting height and/or width will also change
the loc of an object.

I ususally work around this with:

on mouseUp
   put the loc of img visor into tOldloc
   lock screen
   put image img01 of stack myStack into image Visor
   set the width of image Visor to 200
   set the height of image Visor to 200
   set the loc of img visor to tOldloc
   ## :-)
   unlock screen
end mouseUp


of both images are identical(!) as you have with imagedata.
Hope that heps.


Yes and thanks you.

Greetings,

Gilberto Cuba



Regards from germany
Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de


Greetings,

My name is Gilberto Cuba and I live in Cuba.


I almost guessed ;-)

Have a nice weekend.


Regards

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de




___
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


Anybody for a Revolution review for maccompanion?

2005-09-17 Thread Marielle Lange
I came across a mac software newsletter which had in its last issue  
(this september) an article on:
Cross-Platform Software Development from a Macintosh Perspective,  
Part I by Jonathan Hoyle
http://www.maccompanion.com/archives/september2005/Columns/ 
According_to_Hoyle_1.htm


No mention of dreamcard or revolution. If one of you feel like  
writing a software review, the instructions can be found at:

http://www.maccompanion.com/info/submittals.html

 


Marielle Lange (PhD),  Psycholinguist

Homepage:  http://homepages.lexicall.org/mlange/
Lexicall project: http://lexicall.org
Revolution-education project: http://revolution.lexicall.org

___
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: getting the palm folder (windows)

2005-09-17 Thread Ken Ray
On 9/17/05 2:48 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

 Hi All.
 How do I find out the location of a users palm PDA sync folder on windows from
 the registry?

I don't think it's in the registry since the user can't change it (AFAIK).
The path is:

  C:\Program Files\PalmOne\hotSyncName\

 After that I'd like to know how to do this in MacOSX (but I'll walk before I
 can run first) :-)

On OSX it's:

  /Users/userName/Documents/Palm/Users/hotSyncName/

HTH,

Ken Ray
Sons of Thunder Software
Web site: http://www.sonsothunder.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


Multimedia Scripting conference stack has been updated

2005-09-17 Thread J. Landman Gay
Trevor DeVore's scripting conference on Multimedia has been re-uploaded 
with its accompanying chat transcript, and can be downloaded in the 
usual place:


http://support.runrev.com/scriptingconferences/

This was a very good conference on a topic that affects most stack 
developers, and Trevor's chat covered interesting and important material 
above and beyond that in the original stack. It's a good read. The 
after-hours portion of the chat contains a peripherally-related 
discussion about sound editing and then veers off into setprop/getprop 
handlers and their capabilities.


Check it out, there's something for everyone in there.

--
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