Re: RevMail

2010-04-19 Thread Jean-Pierre Soto

Hello,

I want to send more than 20Ko text. Is there a way to do that?




Le 19 avr. 10 à 01:40, Sarah Reichelt a écrit :

You say you are using Rev 2.8, so what size of email is failing for  
you?


___
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: Specialfolderpath (26) and roaming

2010-04-19 Thread ron barber
Hi,
At one point I thought this discussion was decided in favor of using
specialfolderpath(35) rather than (26). If I remember, it had
something to do with the way Win 7 handled installations. Is it better
to use (26) or (35)?

Thanks
Ron


On Apr 19, 2010, at 10:29 AM, J. Landman Gay wrote:

David Glasgow wrote:
Hello folks,
My platform specific saving data script now works fine thanks for
the advice so far.
However, I was thrown a bit because Specialfolderpath (26) on my
Vista machine points to a folder /appdata/roaming

But it's inside your user folder. Pre-Vista, it points to the user
data in application data, and Vista + it points to the user data in
appdata/roaming. It's just a change in folder structure. Both places
are the approved location for storing user-specific data.

As far as I can make out, if a user is logged into a server, this
directory is saved there, and will be accessible whatever machine is
subsequently used to log in.  I have to say I don't quite understand
how that would work in practice, because presumably each machine
could have a different variant of appdata/roaming..

No, it should save to the local drive. SpecialFolderPath points to the
local system.

Apart form not quite getting what is going on with the roaming thing,
my questions are:
1/ Does Specialfolderpath (26) serve different purposes on other Win
versions?

No. Same thing.

2/ Does it matter that a standalone for a single user  non networked
computer is saving information in the /appdata/roaming directory?

No. Both save to the local drive.

-- 
Jacqueline Landman Gay | jac...@hyperactivesw.com
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
___
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: my arrowKey handler is working

2010-04-19 Thread Andre.Bisseret


Le 19 avr. 10 à 03:13, J. Landman Gay a écrit :




In the script, shift+right arrow moves to card 1 of next bg,
shift+left arrow goes to last card of previous bg. This works now,
but stops when it gets to the fourth bg either way. Is there a way to
make it keep going, as in a loop, repeating the cycle,
1,2,3,4,1,2,3,4...etc?


It should work identically to HC. The only thing I can think of is  
that some other key-related handler is blocking arrowkey messages on  
that bg. So check the script in bg 4 for any key-related things.





Bonjour,

Haroldo, here in my stack Testing Haroldo'script ;-)) (4 Bgs with 3  
cards each) it'is exactly what I get with your script: shift+left  
arrow (or shift+right arrow) keeps repeating the cycle  
1,2,3,4,1,2,3,4...etc (or the reverse respectively).
In other words, when on first card of bg 4, shift+right arrow go to  
first card of bg 1 and when on last card of bg 1, shift+left arrow go  
to last card of bg 4


Best regards from Grenoble

André

___
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: RevMail

2010-04-19 Thread Sarah Reichelt
One suggestion made to me was to put the text int eh clipboard, then
create a blank email and ask the user to paste the contents in.
It's not elegant, but it should work.

Cheers,
Sarah


On Mon, Apr 19, 2010 at 5:54 PM, Jean-Pierre Soto
jean-pierre.s...@wanadoo.fr wrote:
 Hello,

 I want to send more than 20Ko text. Is there a way to do that?




 Le 19 avr. 10 à 01:40, Sarah Reichelt a écrit :

 You say you are using Rev 2.8, so what size of email is failing for you?

 ___
 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


Classic Mac stack and Unicode?

2010-04-19 Thread Richmond Mathewson

 Can anybody tell me:

1. When RR became as fully unicode compliant as it it now?

2. Whether Classic builds ever functioned fully with Unicode?

I tried this with RunRev 2.0.1:

on mouseUp
  set the useUnicode to true
  set the unicodeText of fld fTEXT to numToChar(2325)
end mouseUp

and it worked a charm, BUT on doing this:

on mouseUp
  set the useUnicode to true
  set the unicodeText of fld fTEXT to numToChar(57386)
end mouseUp

I got a generic 'ugly' instead of the complicated char
I wanted.

Cross-tested this with RunRev 4; no problems there.
___
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: Classic Mac stack and Unicode?

2010-04-19 Thread Mark Schonewille

Hi Richmond,

You need unicode fonts that are compatible with Mac OS 9. Rev may work  
with unicode in Mac OS 9, but it will probably crash at some point. I  
don't think that any unicode features changed until 2.8 or 2.9 (which  
aren't available for Mac OS 9).


--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer

We have updated TwistAWord. Download TwistAWord 1.1 at http://www.twistaword.net

Op 19 apr 2010, om 13:53 heeft Richmond Mathewson het volgende  
geschreven:



Can anybody tell me:

1. When RR became as fully unicode compliant as it it now?

2. Whether Classic builds ever functioned fully with Unicode?

I tried this with RunRev 2.0.1:

on mouseUp
 set the useUnicode to true
 set the unicodeText of fld fTEXT to numToChar(2325)
end mouseUp

and it worked a charm, BUT on doing this:

on mouseUp
 set the useUnicode to true
 set the unicodeText of fld fTEXT to numToChar(57386)
end mouseUp

I got a generic 'ugly' instead of the complicated char
I wanted.

Cross-tested this with RunRev 4; no problems there.


___
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: Classic Mac stack and Unicode?

2010-04-19 Thread Richmond Mathewson

 On 19/04/2010 14:57, Mark Schonewille wrote:

Thanks for your advice!

Hi Richmond,

You need unicode fonts that are compatible with Mac OS 9. 


Presumably that means that non-standard mappings won't work 

Rev may work with unicode in Mac OS 9, but it will probably crash at 
some point. I don't think that any unicode features changed until 2.8 
or 2.9 (which aren't available for Mac OS 9).


I wonder why the Standalone settings stack for RunRev 4 sports a Classic 
section when it cannot build Classic standalones?


This should definitely go in 4.5 as it is misleading.



--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer

We have updated TwistAWord. Download TwistAWord 1.1 at 
http://www.twistaword.net


Op 19 apr 2010, om 13:53 heeft Richmond Mathewson het volgende 
geschreven:



Can anybody tell me:

1. When RR became as fully unicode compliant as it it now?

2. Whether Classic builds ever functioned fully with Unicode?

I tried this with RunRev 2.0.1:

on mouseUp
 set the useUnicode to true
 set the unicodeText of fld fTEXT to numToChar(2325)
end mouseUp

and it worked a charm, BUT on doing this:

on mouseUp
 set the useUnicode to true
 set the unicodeText of fld fTEXT to numToChar(57386)
end mouseUp

I got a generic 'ugly' instead of the complicated char
I wanted.

Cross-tested this with RunRev 4; no problems there.


___
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


Using Sounds in Rev

2010-04-19 Thread Steven Axtell
I would like to incorporate special sounds in my program.  One, in particular, 
is a clicking sound that would occur when a button is pressed.  How can I do 
that?

Thanks,

Steven Axtell 

___
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: Using Sounds in Rev

2010-04-19 Thread Mark Schonewille

Hi Steven,

Just import a clicking wav sound into your stack using the menu File/ 
Import as control/Audio file. If your sound is called click.wav, you  
can play it in a mouseDown handler:


on mouseDown
  play ac click.wav
end mouseDown

on mouseUp
  -- make your button do
  -- whatever you want it to do
  -- here
end mouseUp

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer

We have updated TwistAWord. Download TwistAWord 1.1 at http://www.twistaword.net

Op 19 apr 2010, om 14:30 heeft Steven Axtell het volgende geschreven:

I would like to incorporate special sounds in my program.  One, in  
particular, is a clicking sound that would occur when a button is  
pressed.  How can I do that?


Thanks,

Steven Axtell


___
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: RevMail

2010-04-19 Thread Richard Gaskin

Jean-Pierre Soto wrote:

I want to send more than 20Ko text. Is there a way to do that?


After a bit of web searching it seem Rev folks aren't the only ones bit 
by this Microsoft bug/feature.  Various limitations in IE and Outlook 
suggest it may not be possible to reliably create a new email form with 
more than somewhere between 500 and 2k chars (depending on the specifics 
of the user's setup).


Perhaps the most reliable method would be to bypass Windows altogether 
and use a CGI to send the email.


Here's the handler I use in my CGI library for sending email:

on cgiSendMail pTo, pFrom, pSubject, pMessage
  put /usr/sbin/sendmail -t into tSendMailProg
  open process tSendMailProg for write
  write From:  pFrom  cr to process tSendMailProg
  write To:  pTo  cr to process tSendMailProg
  write Subject:  pSubject  cr  cr to process tSendMailProg
  write pMessage  cr to process tSendMailProg
  close process tSendMailProg
  wait until tSendMailProg is not among the lines of the openProcesses
end cgiSendMail

If you use the POST method you should be able to send email with more 
than 2k characters.


For getting started with Rev CGIs I know of no better resource than 
Jacque's excellent guide:


http://www.hyperactivesw.com/cgitutorial/


WARNING: Writing CGIs in Rev is highly addictive and may have adverse 
effects on your productivity for at least three days once you get hooked 
and start writing all sorts of fun stuff. :)


--
 Richard Gaskin
 Fourth World
 Rev training and consulting: http://www.fourthworld.com
 Webzine for Rev developers: http://www.revjournal.com
 revJournal blog: http://revjournal.com/blog.irv
___
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: Using Sounds in Rev

2010-04-19 Thread Steven Axtell

Mark,

Thank you much.

Steven Axtell




Hi Steven,

Just import a clicking wav sound into your stack using the menu File/ 
Import as control/Audio file. If your sound is called click.wav, you  can 
play it in a mouseDown handler:


on mouseDown
  play ac click.wav
end mouseDown

on mouseUp
  -- make your button do
  -- whatever you want it to do
  -- here
end mouseUp

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer

We have updated TwistAWord. Download TwistAWord 1.1 at 
http://www.twistaword.net


Op 19 apr 2010, om 14:30 heeft Steven Axtell het volgende geschreven:

I would like to incorporate special sounds in my program.  One, in 
particular, is a clicking sound that would occur when a button is 
pressed.  How can I do that?


Thanks,

Steven Axtell


___
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: Specialfolderpath (26) and roaming

2010-04-19 Thread David Glasgow

On 19 Apr 2010, at 1:30 pm, Jacqueline Landman Gay wrote:

 But it's inside your user folder. Pre-Vista, it points to the user data in 
 application data, and Vista + it points to the user data in appdata/roaming. 
 It's just a change in folder structure. Both places are the approved location 
 for storing user-specific data.
 
 As far as I can make out, if a user is logged into a server, this
 directory is saved there, and will be accessible whatever machine is
 subsequently used to log in.  I have to say I don't quite understand
 how that would work in practice, because presumably each machine
 could have a different variant of appdata/roaming..
 
 No, it should save to the local drive. SpecialFolderPath points to the local 
 system.
 
 Apart form not quite getting what is going on with the roaming thing,
 my questions are:
 1/ Does Specialfolderpath (26) serve different purposes on other Win
 versions?
 
 No. Same thing.
 
 2/ Does it matter that a standalone for a single user  non networked
 computer is saving information in the /appdata/roaming directory?
 
 No. Both save to the local drive.
 
 -- 
 Jacqueline Landman Gay | jac...@hyperactivesw.com
 HyperActive Software


Thanks for that! 

How nice to get a 'nothing to worry about' reply.

David G
___
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: Datagrid: How get column data from other column behavior

2010-04-19 Thread JosepM

Thanks Malte, works perfectly... :)


El 07/04/2010, a las 16:37, Malte Pfaff-Brill [via Runtime Revolution]  
escribió:

 Hi Josep,

 funny. I had to solve the same thing today. :-)

 on FillInData pData
set the text of field 1 of me to pData
local tIndex,tControl,tarray
put the dgControl of me into tControl
put the dgIndex of me into tIndex
put the dgDataOfLine[tIndex] of tControl into tarray
set the textColor of field 1 of me to tArray[Col 4]
 end FillInData

 Hope that helps,

 Malte
 ___
 use-revolution mailing list
 [hidden email]
 Please visit this url to subscribe, unsubscribe and manage your  
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution


 View message @ 
 http://n4.nabble.com/Datagrid-How-get-column-data-from-other-column-behavior-tp1753513p1754434.html
 To unsubscribe from Datagrid: How get column data from other column  
 behavior, click here.



-- 
View this message in context: 
http://n4.nabble.com/Datagrid-How-get-column-data-from-other-column-behavior-tp1753513p2015881.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: Using Sounds in Rev

2010-04-19 Thread Mark Swindell
on mousedown -- one click
play click.wav 
end mouseDown

or 
on mouseStillDown -- clicks continuously
play click.wav
end mouseStillDown

Hope this helps,
Mark


On Apr 19, 2010, at 5:30 AM, Steven Axtell wrote:

 I would like to incorporate special sounds in my program.  One, in 
 particular, is a clicking sound that would occur when a button is pressed.  
 How can I do that?
 
 Thanks,
 
 Steven Axtell 
 
 ___
 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: Scrolling in image

2010-04-19 Thread Trevor DeVore

On Apr 16, 2010, at 7:35 PM, edward cawley wrote:

I have a large map image on a card, bigger than the cd window. I  
would like to scroll around the map by moving the image within the  
window using the mouse.


There is a lesson on this at lessons.runrev.com that might be helpful.

How do I scroll a card that is taller or wider than the window? : http://lessons.runrev.com/buckets/784/lessons/11788 



--
Trevor DeVore
Blue Mango Learning Systems
ScreenSteps: http://www.screensteps.com
Releasable Revolution Resources for Developers: 
http://revolution.bluemangolearning.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: Scrolling in image

2010-04-19 Thread Richmond Mathewson

 On 19/04/2010 16:45, Trevor DeVore wrote:

On Apr 16, 2010, at 7:35 PM, edward cawley wrote:

I have a large map image on a card, bigger than the cd window. I 
would like to scroll around the map by moving the image within the 
window using the mouse.


There is a lesson on this at lessons.runrev.com that might be helpful.

How do I scroll a card that is taller or wider than the window? : 
http://lessons.runrev.com/buckets/784/lessons/11788


If you have a socking great image you can Group it (Yup; I know a group 
consisting of only one object sounds daft)
and then set the dimensions of the group to the windows size; then check 
the Vertical and Horixontal scrools in the

prefs palette.

This will allow you to scroll the image.



___
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: Quick Key Equivalents

2010-04-19 Thread Roger Guay
Thank you, Jacqueline, but unless I'm missing something, that isn't quite what 
I'm after. 

I seem to recall that one is able to make menus ala standard Mac format, where 
the menu item is left-justified and keyboard shortcuts (with standard symbols 
for the commandKey etc.) are right-justified. I would like to know how to do 
this in a *popup* menu for example, where each menu item has shortcut key 
combinations. Can you tell me if this is possible, and if so, how? TIA for your 
help.

Cheers,
Roger Guay


On Apr 19, 2010, at 5:30 AM, use-revolution-requ...@lists.runrev.com wrote:

 Message: 17
 Date: Sun, 18 Apr 2010 20:23:01 -0500
 From: J. Landman Gay jac...@hyperactivesw.com
 Subject: Re: Quick Key Equivalents
 To: How to use Revolution use-revolution@lists.runrev.com
 Message-ID: 4bcbb075.2080...@hyperactivesw.com
 Content-Type: text/plain; charset=ISO-8859-1; format=flowed
 
 Roger Guay wrote:
 Could someone please remind how to include quick keyboard equivalents
 in the text lines (menu items) of a popup menu? For example, I would
 like to have Edit mode as a menu item with the option of using the
 Control and e keys. Thanks for your help.
 
 Look at acceleratorModifiers in the dictionary, along with 
 acceleratorKey. There's an example in the acceleratorModifers entry on 
 how to set both.
 
 -- 
 Jacqueline Landman Gay | jac...@hyperactivesw.com
 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


Re: Code Libraries and Standalone Applications

2010-04-19 Thread Peter Haworth
Thanks for the responses.  I've implemented the stackFiles property  
and all seems to be working fine for now.


I prefer the single, separate, code library file to embedding it in  
the app, mainly because that makes it shareable by any and all apps I  
send to people without including the same code separately in each app,  
but stackFiles is working for me for now.


On the issue of the long IDs for behaviors, I've found that the  
behavior does not have to be a long ID - button 1234 of stack xyz  
seems to work just fine - so including the stack that contains my  
behavior buttons seems like the way to go although, as with code  
libraries, I'd prefer to have a shareable, separate library of  
behaviors.


Thanks for pointing me in the right direction.

Pete Haworth







___
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: Specialfolderpath (26) and roaming

2010-04-19 Thread J. Landman Gay

ron barber wrote:

Hi,
At one point I thought this discussion was decided in favor of using
specialfolderpath(35) rather than (26). If I remember, it had
something to do with the way Win 7 handled installations. Is it better
to use (26) or (35)?


It depends on what you want. Folder (26) points to user-specific data, 
and (35) points to shared data for all users. So if you want your app to 
use the same data for every installed account, you'd put it into 35; if 
you only want the data to be used by a single user account (like a prefs 
file, maybe) then use 26.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
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


Re: Quick Key Equivalents

2010-04-19 Thread J. Landman Gay

Roger Guay wrote:

Thank you, Jacqueline, but unless I'm missing something, that isn't
quite what I'm after.

I seem to recall that one is able to make menus ala standard Mac
format, where the menu item is left-justified and keyboard shortcuts
(with standard symbols for the commandKey etc.) are right-justified.
I would like to know how to do this in a *popup* menu for example,
where each menu item has shortcut key combinations. Can you tell me
if this is possible, and if so, how? TIA for your help.


I don't think you can do that with a standard popup button, since 
buttons only accept one shortcut that applies to the whole button (and 
not all button styles support modifier and accelerator keys anyway.) 
What you'd need to do instead, I think, is create a menu stack 
containing a pulldown button for each item, and then assign an 
accelerator and modifier to each button. Finally, assign the stack to 
the master button as its menu by setting the menuname (you can do that 
in the button's property inspector.)


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
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


Re: Punching holes in a graphic

2010-04-19 Thread Alejandro Tejada
About Len Morgan, Did you verify if he is fine, in good health?
Probably he had an emergency and is unable to answer
or keep working in Rev.

The drop effect that you added to this stack is really nice! :-D
http://berndniggemann.on-rev.com/barrel/barrelwithDrop-0-4.rev.zip

Alejandro

on Sun, 18 Apr 2010
Bernd Niggemann wrote:

 Hi Alejandro,
 thank you for the kind words.

 Alejandro Tejada wrote:
 By the way, i really liked the Water Tank
 that you published in this message:
 http://mail.runrev.com/pipermail/use-revolution/2010-March/137089.html

 glad you liked it, unfortunately Len Morgan seems not to have found it.

 regards
 Bernd
___
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


Icon builder

2010-04-19 Thread Richmond Mathewson

 Am I going senile or do I recall that at some
time there was some sort of iconbuilder
included with RunRev?

Probably the answer is 'both' . . .  :)
___
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


Record Audio in Rev on Linux OS?

2010-04-19 Thread John Patten

Hi All...

I think I know the answer, but want to make sure. Is is possible to  
record audio in a stack that is running on Linux (Ubuntu)?


Thank you!

John Patten
___
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


Heather Are You All OK with the Ash!

2010-04-19 Thread Sivakatirswami
Just checking... last time the ash was a disaster for Scotland... is our 
RunRev Team OK?


Om Shanti
Sivakatirswami

Production Manager
   www.HinduismToday.com
Web Coordinator
   www.HimalayanAcademy.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: my arrowKey handler is working

2010-04-19 Thread Robert Brenstein
Hi Jacqueline, it's nice to be here learning Revolution. Thank you 
for the long answer and the suggestions. This stack is for my own 
use. It's a book catalog for my private library. I've working on it 
for several years in Hypercard. It has aproximately 1500 cards, four 
backgrounds. It not only holds the book data, but also has a couple 
of cards with Dewey Decimal Classification class codes, a list of 
authors and an A to Z table with cutter numbers, so it also assigns 
cutter numbers for the authors, via scripts, etc. There are a lot of 
scripts, and there are many adjustments to make before it will work 
100 percent in Revolution.


Since you seem to be making progress with the arrowkey issue, let me 
use the opportunity to mention the issue of backgrounds. You want to 
read on this in rev docs as this is an aspect of revolution which 
differs from hypercard, although it is possible to use rev's 
backgrounds in a fashion similar to hypercard. However, in many 
instances, what was achieved in hc with different backgrounds, one 
often does it in revolution with substacks. So, if you haven't 
ventured there yet, consider checking these out.


Robert
___
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: Scrolling in image

2010-04-19 Thread Alejandro Tejada
On Mon, Apr 19, 2010
Trevor DeVore wrote:
 There is a lesson on this at lessons.runrev.com that might be helpful.
 How do I scroll a card that is taller or wider than the window?
 http://lessons.runrev.com/buckets/784/lessons/11788

In this lesson, imported image has a dimension
of 1171 x 795.

Which is the largest image dimension
that could be imported to Rev?

Alejandro
___
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: Record Audio in Rev on Linux OS?

2010-04-19 Thread Peter Alcibiades

Dunno about Rev directly, but you can go out to shell, and then use the Linux
command line tools.  The easiest gui recording tool is krecord, but there
are lots of non-gui ones.  Use zenity to get a gui for them.  Then when
you've captured the file, go out to the shell again to play it.  Or maybe
this is what you were trying to avoid?  Most things that Rev cannot do can
be done in the shell.
-- 
View this message in context: 
http://n4.nabble.com/Record-Audio-in-Rev-on-Linux-OS-tp2016409p2016534.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: Icon builder

2010-04-19 Thread J. Landman Gay

Richmond Mathewson wrote:

 Am I going senile or do I recall that at some
time there was some sort of iconbuilder
included with RunRev?

Probably the answer is 'both' . . .  :)


No, just the senile part. :) You may be thinking of the Altuit utility.

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
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


Re: Heather Are You All OK with the Ash!

2010-04-19 Thread Alex Tweedly

Sivakatirswami wrote:
Just checking... last time the ash was a disaster for Scotland... is 
our RunRev Team OK?


It's not causing any problems here other than the shutting down of air 
space (and hence just about all air travel). So unless the Rev team are 
travelling, and can't get home, there should be no problem for them.


-- Alex.
___
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: Record Audio in Rev on Linux OS?

2010-04-19 Thread Alejandro Tejada
On Mon Apr 19 15:45:13 CDT 2010
Peter Alcibiades wrote:

 Dunno about Rev directly, but you can go out to shell, and then use the Linux
 command line tools.  The easiest gui recording tool is krecord, but there
 are lots of non-gui ones.  Use zenity to get a gui for them.  Then when
 you've captured the file, go out to the shell again to play it.  Or maybe
 this is what you were trying to avoid?  Most things that Rev cannot do can
 be done in the shell.

In Windows, i use SoX (Sound eXchange):
http://sox.sourceforge.net/

This utility works great! :-)
But i am curious to know if, in Linux, Rev could
use and control command line utilities like SoX.

Some years ago, i created a GUI for the command line
utility Potrace and the only problem that i found was
the limitation in pixels of images imported into Rev:
http://quality.runrev.com/qacenter/show_bug.cgi?id=2429

Everything else, worked fine:
http://capellan2000.000space.com/Potrace_Interface1.jpg
http://capellan2000.000space.com/Potrace_Interface2.jpg
http://capellan2000.000space.com/Potrace_Interface3.jpg

Alejandro
___
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: Heather Are You All OK with the Ash!

2010-04-19 Thread Dave Cragg

On 19 Apr 2010, at 22:11, Alex Tweedly wrote:

 Sivakatirswami wrote:
 Just checking... last time the ash was a disaster for Scotland... is our 
 RunRev Team OK?
 
 It's not causing any problems here other than the shutting down of air space 
 (and hence just about all air travel). 


There was a shortage of broccoli at my supermarket today. In Scotland, this is 
a reason to celebrate.  :-)

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: Heather Are You All OK with the Ash!

2010-04-19 Thread J. Landman Gay

Dave Cragg wrote:

On 19 Apr 2010, at 22:11, Alex Tweedly wrote:


Sivakatirswami wrote:

Just checking... last time the ash was a disaster for Scotland...
is our RunRev Team OK?


It's not causing any problems here other than the shutting down of
air space (and hence just about all air travel).



There was a shortage of broccoli at my supermarket today. In
Scotland, this is a reason to celebrate.  :-)


:) I saw something on CNN that said Europe was having a veggie shortage 
because the produce in Africa couldn't be flown in.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
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


Re: Heather Are You All OK with the Ash!

2010-04-19 Thread Ian Wood


On 20 Apr 2010, at 00:41, J. Landman Gay wrote:

:) I saw something on CNN that said Europe was having a veggie  
shortage because the produce in Africa couldn't be flown in.


OT: the other side of this is that several of the African farmer's co- 
ops are big in trouble, putting thousands of people out of work.


http://news.bbc.co.uk/1/hi/world/africa/8629079.stm

The effect of the eruptions goes beyond Europe. :-(

Ian
___
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: my arrowKey handler is working

2010-04-19 Thread Haroldo Mauro Jr.
At 21:49 +0200 19/04/10, Robert Brenstein wrote:
Hi Jacqueline, it's nice to be here learning Revolution. Thank you for the 
long answer and the suggestions. This stack is for my own use. It's a book 
catalog for my private library. I've working on it for several years in 
Hypercard. It has aproximately 1500 cards, four backgrounds. It not only 
holds the book data, but also has a couple of cards with Dewey Decimal 
Classification class codes, a list of authors and an A to Z table with cutter 
numbers, so it also assigns cutter numbers for the authors, via scripts, etc. 
There are a lot of scripts, and there are many adjustments to make before it 
will work 100 percent in Revolution.

Since you seem to be making progress with the arrowkey issue, let me use the 
opportunity to mention the issue of backgrounds. You want to read on this in 
rev docs as this is an aspect of revolution which differs from hypercard, 
although it is possible to use rev's backgrounds in a fashion similar to 
hypercard. However, in many instances, what was achieved in hc with different 
backgrounds, one often does it in revolution with substacks. So, if you 
haven't ventured there yet, consider checking these out.

Robert


Thank you for mentioning it. Yes, I am aware of the background issue. I got 
Revolution about 5 years ago but got very confused with groups and substacks, 
so I put it away and only now I am working with it again.

Harold
___
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: Heather Are You All OK with the Ash!

2010-04-19 Thread Richmond Mathewson

 On 20/04/2010 02:19, Dave Cragg wrote:

On 19 Apr 2010, at 22:11, Alex Tweedly wrote:


Sivakatirswami wrote:

Just checking... last time the ash was a disaster for Scotland... is our RunRev 
Team OK?


It's not causing any problems here other than the shutting down of air space 
(and hence just about all air travel).


There was a shortage of broccoli at my supermarket today. In Scotland, this is 
a reason to celebrate.  :-)

Dave


Every good Scot knows that vegetables are bad for one!
___
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