Re: revMail, OSX 10.4.4 and Umlaute

2006-01-17 Thread Dave Cragg


On 17 Jan 2006, at 07:21, Dave Cragg wrote:



 put uniDecode(uniEncode(Hier Ausfüllen),utf8) into tSubject
 revmail [EMAIL PROTECTED], tSubject,Text of Mail



Sorry, I repeated the original syntax error. It needs an extra comma.


  put uniDecode(uniEncode(Hier Ausfüllen),utf8) into tSubject
  revmail [EMAIL PROTECTED],,tSubject,Text of Mail

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: revMail, OSX 10.4.4 and Umlaute

2006-01-17 Thread Thierry Arbellot

Bugzilla 2259, reported in October 2004, status is still pending.

Thierry

On 2006, Jan 16, , at 22:58, R. Hillen wrote:


Hello,

On OSX 10.4.4 I´m using revMail to send some Data using the 
Mac-Mail-Programm..


After upgrading to 10.4.4. this doesn´t work. I found the cause was a  
german Umlaut in the text of the subject.


revmail [EMAIL PROTECTED],Hier Ausfüllen,Text of Mail

doesn´t work, but

revmail [EMAIL PROTECTED],Hier Ausfuellen,Text of Mail

will be ok.

Any hints, what to do?

Richard.___
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


create a new image from the pixels of another

2006-01-17 Thread Jason (Polydiam)
I want to take image, that has been rotated through the 'angle' command, and
copy its contents to a brand new image.

 

Is this possible?

 

Thanks

 

Jason

___
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: create a new image from the pixels of another

2006-01-17 Thread Klaus Major

Hi Jason,

I want to take image, that has been rotated through the 'angle'  
command, and

copy its contents to a brand new image.

Is this possible?


Yes.

But you will have to make sure that the old and the new image have  
exactly the same dimensions!


Like this:

...
set the height of img the new one to the height of img the rotated  
one

set the width of img the new one to the width of img the rotated one

set the imagedata of img the new one to the imagedata of img the  
rotated one

## imagedata is the secret word :-)
...

But you may be disappointed, since the free space (if not rotated  
by 90, 180 or 270 degrees)

will be filled with black in the new image :-/


Thanks

Jason


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


create a new image from the pixels of another

2006-01-17 Thread Jason (Polydiam)
Hi, Thank you for that,
One last thing, how do you create the empty image the new one through code
when it is needed?
 
Thank you
 
 
Hi Jason,
 
 I want to take image, that has been rotated through the 'angle'  
 command, and
 copy its contents to a brand new image.
 
 Is this possible?
 
Yes.
 
But you will have to make sure that the old and the new image have  
exactly the same dimensions!
 
Like this:
 
...
set the height of img the new one to the height of img the rotated  
one
set the width of img the new one to the width of img the rotated one
 
set the imagedata of img the new one to the imagedata of img the  
rotated one
## imagedata is the secret word :-)
...
 
But you may be disappointed, since the free space (if not rotated  
by 90, 180 or 270 degrees)
will be filled with black in the new image :-/
 
 Thanks
 
 Jason

 

 

 

I want to take image, that has been rotated through the 'angle' command,
and copy its contents to a brand new image.

 

Is this possible?

 

Thanks

 

Jason

___
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


create a new image from the pixels of another

2006-01-17 Thread Jason (Polydiam)
Hi, Thank you for that,
One last thing, how do you create the empty image the new one through code
when it is needed?
 
Thank you
 
Sorry I want to create a new image on a substack from code in the mainstack.





Hi, Thank you for that,
One last thing, how do you create the empty image the new one through code
when it is needed?
 
Thank you
 
Hi Jason,
 
 I want to take image, that has been rotated through the 'angle'  
 command, and
 copy its contents to a brand new image.
 
 Is this possible?
 
Yes.
 
But you will have to make sure that the old and the new image have  
exactly the same dimensions!
 
Like this:
 
...
set the height of img the new one to the height of img the rotated  
one
set the width of img the new one to the width of img the rotated one
 
set the imagedata of img the new one to the imagedata of img the  
rotated one
## imagedata is the secret word :-)
...
 
But you may be disappointed, since the free space (if not rotated  
by 90, 180 or 270 degrees)
will be filled with black in the new image :-/
 
 Thanks
 
 Jason

 

 

 

I want to take image, that has been rotated through the 'angle' command,
and copy its contents to a brand new image.

 

Is this possible?

 

Thanks

 

Jason

 

___
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: create a new image from the pixels of another

2006-01-17 Thread Klaus Major

Hi Jason,


Hi, Thank you for that,
One last thing, how do you create the empty image the new one  
through code

when it is needed?

Thank you

Sorry I want to create a new image on a substack from code in the  
mainstack.


no problem, pretty easy :-)

...
create img the new one
...

If you want to create a control in another stack do this:

...
set the defaultstack to name of other or substack here
create img the new one
...

Hope that helps.


Hi, Thank you for that,
One last thing, how do you create the empty image the new one  
through code

when it is needed?

Thank you


Best

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


File/Picture Chooser Widgets available for Windows XP

2006-01-17 Thread Bob Warren

Dear Windows XP Users,

Contrary to what I said yesterday, it was a glitch in the widgets 
themselves causing a minor problem when running in screen resolutions 
other than 1024x768. It has now been fixed and new widgets have been 
produced. At http://www.howsoft.com/downloads/runrev/ you can now 
download RunRev_Chooser_Widgets_DEMO_PACK_2.zip .


If you have any suggestions for the improvement of the widgets or the 
demo stack, please feel free.


You can communicate with me at:
[EMAIL PROTECTED] (but not through the RR server)
[EMAIL PROTECTED] (including through the RR server)

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


NumberFormat

2006-01-17 Thread liamlambert


Hi all
I am calling a col total from a data Base  and not getting the right  
format

Say the Total is 100.50
I am getting 100.5

this is the code



set the numberFormat to 00.00
get fld showid
put it into tshowid
 put SELECT sum (total) FROM showDb where showid = ' tshowid   
' into tTotal

 put revdb_querylist(,,gConID,tTotal) into tFinalTotal
 put tFinalTotal into fld FinalTotal

Thank's
Liam Lambert
[EMAIL PROTECTED]
IRELAND


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

2006-01-17 Thread Eric Chatonet

Hi Liam,

Specifying the numberFormat is not enough:
If you want the numberFormat applied, you *must* make any numeric  
calculation :-)

For instance:

put tFinalTotal * 1 into fld FinalTotal

Le 17 janv. 06 à 17:44, liamlambert a écrit :



Hi all
I am calling a col total from a data Base  and not getting the  
right format

Say the Total is 100.50
I am getting 100.5

this is the code



set the numberFormat to 00.00
get fld showid
put it into tshowid
 put SELECT sum (total) FROM showDb where showid = ' tshowid   
' into tTotal

 put revdb_querylist(,,gConID,tTotal) into tFinalTotal
 put tFinalTotal into fld FinalTotal


Best Regards from Paris,
Eric Chatonet
 
--

http://www.sosmartsoftware.com/[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


NumberFormat

2006-01-17 Thread liamlambert

Thank's  * 2
Liam Lambert
[EMAIL PROTECTED]
IRELAND


___
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, OSX 10.4.4 and Umlaute

2006-01-17 Thread R. Hillen


Hello Sarah, Dave and Thiery,

Am 17.01.2006 um 17:11 schrieb [EMAIL PROTECTED]:



Message: 10
Date: Mon, 16 Jan 2006 22:58:33 +0100
From: R. Hillen [EMAIL PROTECTED]
Subject: revMail, OSX 10.4.4 and Umlaute
To: use-revolution@lists.runrev.com
Message-ID: [EMAIL PROTECTED]
Content-Type: text/plain; charset=ISO-8859-1; delsp=yes; format=flowed




Thank you all for yout quick and helpfull answers.
Richard.
___
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: File/Picture Chooser Widgets available for Windows XP

2006-01-17 Thread Bob Warren

Dear Ken,

Thanks very much indeed for the quick feedback. My hair began to stand 
on end at the bugs you seem to have found until I read the following:

-
Ken Ray wrote:
For troubleshooting, I'm running WinXP Pro, SP2, and the path to the 
folder I downloaded and executed stuff from is:


c:\Documents and Desttings\Ken\Desktop\RunRev_Chooser_Widgets_DEMO_PACK_2

-
I suspect that you might not have read __readme.txt. The relevant part 
is as follows:


DEMO PACK

The demo pack consists of the following files:

1) __readme.txt (this file)

2) _file_chooser.exe
3) _file_chooser.ini
4) _file_chooser_filters.ini

5) _picture_chooser.exe
6) _picture_chooser.ini
7) _picture_chooser_filters.ini

8) TEST_Launch_File_Choosers_Windows_46.rev

You can copy the exe files to any folder and execute them.
This will show you how the widgets run according to the defaults (i.e. 
with no ini parameter input).


If you then copy the ini files to the same folder and after run the exe 
files, you can see how they run with an example set of ini parameters.


To use TEST_Launch_File_Choosers_Windows_46.rev (8) above), copy files 
2-7 to your Revolution folder (used as the default folder).
You can then use this stack to alter all the ini parameters without 
effort and to launch the widgets to study the effects.


-
The point is that the EXE files can be run from any folder, accompanied 
by their respective INI's. But if you run the DEMO stack, the default 
folder becomes that of Revolution itself, and the demo stack expects to 
find the widget EXEs in the same folder (i.e. that of Revolution).

-
Did you follow the instructions? If not, please try it. If so, please 
let me know as soon as you can so that I can look into the problems 
involved (somehow). Here, I am using WinXP Pro, SP1, and the widgets 
work perfectly in all respects.


 5) I really think it would be great to add a resizable option to 
the INI
 files, which would start at the predefined width/height, and allow 
the user

 at runtime to resize it if they wanted to.

This is already in the pipeline for #2.
Although the overall size of the widget can be changed through the INI 
file, the proportion of the widths of the left (folders) pane and the 
right (files) pane is fixed at 2/3:1/3. This may be more or less correct 
generically, but of course the convenience of this proportion depends 
heavily on the lengths of the user's folder names and file names!


Another way of handling it would be to maintain the fixing of the 
overall window size in the INI file, but to allow the operator to drag 
the division between the left and right panes (e.g. as in the CHM-style 
RR Help).


Or perhaps both would be better: allow the operator to re-size the 
window AND drag the division between the L-R panes.


-
 6) I'd suggest making the INI files follow the real INI format
 (param=value), that way it eliminates potential issues with people 
wanting
 to change one param on line 5, but accidentally changing one on line 
6. If

 you do that, you can use split to easily get the data into a readable
 form.

I thought of doing it that way, but then decided against it. But I'm not 
being dogmatic about it. If you don't mind, I think I'll hang fire on 
that one for the moment until you get the existing version working and I 
see what the opinion of other users is. OK?


-
I have not received any Use_Revolution lists for over a day now, so I am 
not sure what feedback has/has not been published. I presume that you 
wrote to me off-list? I am sure you will not mind if I post this reply 
to the List. Apart from stressing the importance of reading the README 
file, I think the points you have raised would be of general interest. OK?


Once again, many thanks for your useful feedback (as always).

Best regards,
Bob
-
-
Ken Ray wrote:

 Bob,

 I took a look at your picture and file choosers - neat stuff! Just a 
couple

 of bugs/quick suggestions:

 1) It appears as though some of the settings in the INI file don't 
work (at

 least for Picture Chooser). Turning off bold and Italic worked, as did
 changing the drive letter, but nothing else seemed to.

 2) When I changed the drive letter to d:, when the Picture Chooser 
came up,

 it had both C:  and D: highlighted.

 3) The filters file for Picture Chooser didn't work either - it only
 displayed All Files as an option in the filter popup, even though there
 were more choices 

Re: More Newby Questions

2006-01-17 Thread Devin Asay

Ben,

Check out the pendingMessages function and the cancel command. Used  
in tandem, they can cancel all, well, pending messages generated by  
the send in time command.


Devin

On Jan 16, 2006, at 4:02 PM, Ben Bock wrote:

I have a timed quiz spread across several cards, each card has a  
Next Page button.  The quiz starts with a button.


To start the quiz, a button has:

on mouseUp
startTimer

go next

end mouseUp


The card script has:


on startTimer

send timesUp to me in 120 seconds

end startTimer

on timesUp

go card Finish Card

end timesUp



This works, but..

If the person finishes the quiz before the timer, I want them to be  
able to stop the timer process.  Otherwise, the timer may run out  
and send them to the Finished card after they have begun another  
task, and cause confusion.


So I made a button on the last page page of the quiz, an I'm  
Finished button.  The variable Nevermind is sent by this button:


on mouseUp

  NeverMind

  go next

end mouseUp


I have tried adding statements to the stack script, like:

if NeverMind then exit timesUp



or



on Nevermind exit startTimer

end NeverMind



Also variations of these.  Nothing works when I move through it,  
the timer simply runs out and moves to the Finish Card.



Any help appreciated.

Thank you,

Ben


___
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



Devin Asay
Humanities Technology and Research Support Center
Brigham Young University

___
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: File/Picture Chooser Widgets available for Windows XP

2006-01-17 Thread Ken Ray
On 1/17/06 11:41 AM, Bob Warren [EMAIL PROTECTED] wrote:

 Dear Ken,
 
 Thanks very much indeed for the quick feedback. My hair began to stand
 on end at the bugs you seem to have found until I read the following:
 -
 Ken Ray wrote:
 For troubleshooting, I'm running WinXP Pro, SP2, and the path to the
 folder I downloaded and executed stuff from is:
 
 c:\Documents and Desttings\Ken\Desktop\RunRev_Chooser_Widgets_DEMO_PACK_2
 
 -
 I suspect that you might not have read __readme.txt.

Actually, I did, but...

 -
 The point is that the EXE files can be run from any folder, accompanied
 by their respective INI's. But if you run the DEMO stack, the default
 folder becomes that of Revolution itself, and the demo stack expects to
 find the widget EXEs in the same folder (i.e. that of Revolution).
 -
 Did you follow the instructions? If not, please try it. If so, please
 let me know as soon as you can so that I can look into the problems
 involved (somehow). Here, I am using WinXP Pro, SP1, and the widgets
 work perfectly in all respects.

Actually I was not running the Rev file, but only the EXEs, which should
work from any folder (as you identified). So unfortunately the bugs still
stand. :-(

 
 5) I really think it would be great to add a resizable option to
 the INI
 files, which would start at the predefined width/height, and allow
 the user
 at runtime to resize it if they wanted to.
 
 This is already in the pipeline for #2.
 Although the overall size of the widget can be changed through the INI
 file, the proportion of the widths of the left (folders) pane and the
 right (files) pane is fixed at 2/3:1/3. This may be more or less correct
 generically, but of course the convenience of this proportion depends
 heavily on the lengths of the user's folder names and file names!
 
 Another way of handling it would be to maintain the fixing of the
 overall window size in the INI file, but to allow the operator to drag
 the division between the left and right panes (e.g. as in the CHM-style
 RR Help).
 
 Or perhaps both would be better: allow the operator to re-size the
 window AND drag the division between the L-R panes.

Agreed.

 -
 6) I'd suggest making the INI files follow the real INI format
 (param=value), that way it eliminates potential issues with people
 wanting
 to change one param on line 5, but accidentally changing one on line
 6. If
 you do that, you can use split to easily get the data into a readable
 form.
 
 I thought of doing it that way, but then decided against it. But I'm not
 being dogmatic about it. If you don't mind, I think I'll hang fire on
 that one for the moment until you get the existing version working and I
 see what the opinion of other users is. OK?

Fine by me...

 -
 I have not received any Use_Revolution lists for over a day now, so I am
 not sure what feedback has/has not been published. I presume that you
 wrote to me off-list?

Yes.

 I am sure you will not mind if I post this reply
 to the List. Apart from stressing the importance of reading the README
 file, I think the points you have raised would be of general interest. OK?

Sure! 
 
 Once again, many thanks for your useful feedback (as always).

No problem...


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


Re: File/Picture Chooser Widgets available for Windows XP

2006-01-17 Thread Bob Warren

Dear Ken,

I do hope that all of this doesn't add up to a programming principle I 
learned many years ago. On a different machine, even with the same 
operating system, a program can still crash for reasons which are not 
immediately apparent. We just have to test, test, and test again, on 
machines of all shapes and sizes. The problem might, for example, be one 
of timing. The machine I used to create the widgets is a particularly 
fast one, with a dual processor. If your machine is slower, this might 
somehow cause problems.


Another interesting piece of data is the fact that although the widget 
stacks and standalones work perfectly here on my machine using Win XP 
Pro (SP1), I have Windows ME installed on the same machine, and the 
widgets don't run at all under Win ME! All kinds of crazy things 
occurred. For example, a simple call to a handler on card Card3 from 
the stack script just caused everything to freeze.


But before I go off and try to find other XP machines to test my 
widgets, I have a thought. I find it strange that you would have 
actually run the programs from Documents and Settings. In certain 
senses, this is a special folder that is protected in certain ways 
(but exactly how I can't really say). Please do me the favour of copying 
the the EXE and INI files to some other folder (e.g. C:\kentemp) and let 
me know if you still encounter the same problems.


-
Ken Ray wrote:


On 1/17/06 11:41 AM, Bob Warren [EMAIL PROTECTED] wrote:

 


Dear Ken,

Thanks very much indeed for the quick feedback. My hair began to stand
on end at the bugs you seem to have found until I read the following:
-
Ken Ray wrote:
   


For troubleshooting, I'm running WinXP Pro, SP2, and the path to the
folder I downloaded and executed stuff from is:
 


c:\Documents and Desttings\Ken\Desktop\RunRev_Chooser_Widgets_DEMO_PACK_2
 


-
I suspect that you might not have read __readme.txt.
   



Actually, I did, but...

 


-
The point is that the EXE files can be run from any folder, accompanied
by their respective INI's. But if you run the DEMO stack, the default
folder becomes that of Revolution itself, and the demo stack expects to
find the widget EXEs in the same folder (i.e. that of Revolution).
-
Did you follow the instructions? If not, please try it. If so, please
let me know as soon as you can so that I can look into the problems
involved (somehow). Here, I am using WinXP Pro, SP1, and the widgets
work perfectly in all respects.
   



Actually I was not running the Rev file, but only the EXEs, which should
work from any folder (as you identified). So unfortunately the bugs still
stand. :-(

 


5) I really think it would be great to add a resizable option to
 


the INI
   


files, which would start at the predefined width/height, and allow
 


the user
   


at runtime to resize it if they wanted to.
 


This is already in the pipeline for #2.
Although the overall size of the widget can be changed through the INI
file, the proportion of the widths of the left (folders) pane and the
right (files) pane is fixed at 2/3:1/3. This may be more or less correct
generically, but of course the convenience of this proportion depends
heavily on the lengths of the user's folder names and file names!

Another way of handling it would be to maintain the fixing of the
overall window size in the INI file, but to allow the operator to drag
the division between the left and right panes (e.g. as in the CHM-style
RR Help).

Or perhaps both would be better: allow the operator to re-size the
window AND drag the division between the L-R panes.
   



Agreed.

 


-
   


6) I'd suggest making the INI files follow the real INI format
(param=value), that way it eliminates potential issues with people
 


wanting
   


to change one param on line 5, but accidentally changing one on line
 


6. If
   


you do that, you can use split to easily get the data into a readable
form.
 


I thought of doing it that way, but then decided against it. But I'm not
being dogmatic about it. If you don't mind, I think I'll hang fire on
that one for the moment until you get the existing version working and I
see what the opinion of other users is. OK?
   



Fine by me...

 


-
I have not received any Use_Revolution lists for over a day now, so I am
not sure what feedback has/has not been published. I presume that you
wrote to me off-list?
   



Yes.

 


I am sure you will not mind 

Re: File/Picture Chooser Widgets available for Windows XP

2006-01-17 Thread Sivakatirswami
Mac user here: OSX. I work with images on a daily basis, 20 days a  
month, so I'm always interested in tools. basically I have three  
little apps that load pix, preview pix, allow re-naming files in the  
directory, re-order, build html around them set captions etc. and  
would always like to see more handlers in this vein as my own tool  
set I consider relatively primitive.


Why not just post the app as a stack? then anyone of us on any  
platform can test it? Or are you going for commercial--and therefore  
need to keep the code locked  up?


Sivakatirswami



Dear Windows XP Users,

I have produced 2 standalone widgets for the selection of files or  
pictures (with preview). They are free, and you can use them as you  
wish.


To download the demo pack, please navigate to:-

http://www.howsoft.com/downloads/runrev/

- where you will find the file:

RunRev_Chooser_Widgets_DEMO_PACK_1.zip

This ZIP archive contains a readme file which gives full  
instructions for use and testing.


My real intention is to produce similar widgets for Linux, but I  
thought it would be easier to do a Windows XP version first to gain  
experience, since I am more familar with Windows. I will be working  
on the Linux versions as of now.


Once the similar Linux versions have been produced, I will almost  
certainly beautify the widgets in #2, allowing the user to include  
his own background image and perhaps using little pictures for the  
HD tree nodes instead of the symbols + and -- that I have used  
in #1.


Thereafter, if the demand exists, we can look into the problem of  
producing versions for MAC - facilitated by the existence of the  
Linux versions. Unfortunately, I don't possess a Macintosh  
computer, nor am I likely to on account of their very high price in  
Brazil. But first things first, let's see if you think the widgets  
are worth developing further!


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



___
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: File/Picture Chooser Widgets available for Windows XP

2006-01-17 Thread Bob Warren

Ken:

I have just run the widgets on my wife's machine: Win XP, SP2, 
Portuguese. The programs ran perfectly. I also tried changing every 
parameter in every INI file. They were all actioned correctly.


There is something going on here that I don't understand. Could it be 
what I suggested about running the progs from the Documents and 
Settings? I've not tried it here 'cos I'm a bit afraid to. I've never 
tried running ordinary apps in this way. The point is that the widgets 
can actually write their output files on the disk. I don't know (or even 
really want to know) what Windows thinks about that.


Anyway, perhaps the situation will clarify when you tell me what happens 
when you run the widgets from a normal directory.


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


Re: create a new image from the pixels of another

2006-01-17 Thread Chipp Walters

Jason,

If you're currently already using the rotate image command, then why not 
just:


copy img myAlreadyRotatedImage to stack newStack

??

Seems a lot easier than going through all the imagedata stuff.

Also, you might want to check out the 'angle' property as it is a way to 
rotate an image temporarily (not sure if that's needed in this case).


best,

Chipp

___
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


Basic SQL database question

2006-01-17 Thread David Bovill
I have a remote PostGres database which I am testing using the  
Database Query tool.


I can connect and set the table and use the default sql select *  
statement


I have created the form and connected the fields to the table using  
the property inspector. There are 3 fields - id (primary key), title  
and text...


If i try to add any data - either by creating an update button or by  
making the fields auto update Rev complains:


UPDATE roles SET diz :1 WHERE id = 

Now the primary key is set to id - so this should work - but should  
the tool not issue an INSERT statement and not an UPDATE (there is no  
data yet in the db).

___
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: File/Picture Chooser Widgets available for Windows XP

2006-01-17 Thread Bob Warren

Dear Sivakatirswami,

If you are working with MAC, the stacks wouldn't do you much good at the 
moment. This is on account of the fact that the Mac file system is 
vastly different from the Windows one. My plan is to convert the Windows 
XP version to Linux first, and I anticipate that this might cause me a 
considerable amount of work. But I possess a Linux machine and I can do 
the job. Thereafter, conversion to the Mac file system should be easier, 
but I cannot do it myself because I do not have a Macintosh computer. 
Nor am I likely to acquire one in the near future. Even the $500 Mac 
Mini costs about 3 times the US price here in Brazil, not only in 
general practice but also according to the manufacturer's recommendation!


So if a MAC version is eventually to see the light of day, somebody else 
would have to do the conversion (from the proposed Linux version).


The standalone widgets for Windows XP are free, and I have no commercial 
ambitions. Nor do I intend to commercailise the proposed Linux and Mac 
versions. Also, I hope to become progressively more involved in Linux, 
which suggests the appropriateness of open source and such. However, 
what concerns me is that these widgets should be available to the RR 
community and that they should work reliably. At the moment, I am 
entirely responsible for their reliability. Once I allow all and sundry 
to muck about with my stacks, I can no longer be responsible for them.


Whether or not, or at what point, I will make the widget stacks 
available to the RR community is still an open question though. I may 
change my mind in the future. Regarding the MAC version, which I am 
unable to achieve myself (unless you buy me a computer), I would prefer 
to pass on the future Linux version to a single individual or body for 
conversion. This way, responsibility would be strictly limited and, 
hopefully, a more reliable result would be achieved.


On top of what I have said, I would also like to point out that these 
stacks are far from trivial. At first sight, one would think that such 
widgets should be simple. In fact, they are quite complex, and it took 
me months to write them. (Of course, I have very little experience in 
Rev, so I am prepared to believe that another programmer might be able 
to produce better widgets in a much more efficient way. However, for 
some reason, nobody appears to have done it so far, and I wonder if it 
might have something to do with the complexity of the task, among other 
things.) With the Linux version ready, I would be quite happy to pass 
the stacks across to the RR team for conversion to MAC. However, 
adapting someone else's complicated program is a daunting task, even for 
the experts on the RR team, and anyway they are busy people. Somehow, I 
can't see it happening.


Regards,
Bob

--
Sivakatirswami wrote:

Mac user here: OSX. I work with images on a daily basis, 20 days a  
month, so I'm always interested in tools. basically I have three  
little apps that load pix, preview pix, allow re-naming files in the  
directory, re-order, build html around them set captions etc. and  
would always like to see more handlers in this vein as my own tool  
set I consider relatively primitive.


Why not just post the app as a stack? then anyone of us on any  
platform can test it? Or are you going for commercial--and therefore  
need to keep the code locked  up?


Sivakatirswami



Dear Windows XP Users,

I have produced 2 standalone widgets for the selection of files or  
pictures (with preview). They are free, and you can use them as you  
wish.


To download the demo pack, please navigate to:-

http://www.howsoft.com/downloads/runrev/

- where you will find the file:

RunRev_Chooser_Widgets_DEMO_PACK_1.zip

This ZIP archive contains a readme file which gives full  
instructions for use and testing.


My real intention is to produce similar widgets for Linux, but I  
thought it would be easier to do a Windows XP version first to gain  
experience, since I am more familar with Windows. I will be working  
on the Linux versions as of now.


Once the similar Linux versions have been produced, I will almost  
certainly beautify the widgets in #2, allowing the user to include  
his own background image and perhaps using little pictures for the  
HD tree nodes instead of the symbols + and -- that I have used  
in #1.


Thereafter, if the demand exists, we can look into the problem of  
producing versions for MAC - facilitated by the existence of the  
Linux versions. Unfortunately, I don't possess a Macintosh  computer, 
nor am I likely to on account of their very high price in  Brazil. 
But first things first, let's see if you think the widgets  are worth 
developing further!


Best,
Bob



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your  

Re: File/Picture Chooser Widgets available for Windows XP

2006-01-17 Thread Bob Warren

OK, thanks Ken.
All I can do now is to try and find an XP machine that gives a similar 
result.

I'll let you know what I turn up.

Bob

Ken Ray wrote:


On 1/17/06 1:08 PM, Bob Warren [EMAIL PROTECTED] wrote:

 


Ken:

I have just run the widgets on my wife's machine: Win XP, SP2,
Portuguese. The programs ran perfectly. I also tried changing every
parameter in every INI file. They were all actioned correctly.

There is something going on here that I don't understand. Could it be
what I suggested about running the progs from the Documents and
Settings? 
   



Sorry, but no... I even moved the files into c:\kentemp and got the same
result. It's odd that some settings work (setting the indent, setting the
disk), and others don't. I changed all of the size lines to 1000 just to
make sure I didn't do anything subtle that might be missed, but to no avail.


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


minimum Date from an array

2006-01-17 Thread Ramesh Ramchandani

Hello,

I am new to Rev

I have an array of dates that I am sending to the graph object.

Is there a way to check the Minimum and maximum value of the dates  
from the array.


The graph object that I am using is using this code

set the graphX of group graph to vWeek

// vWeek is my array of dates

put the graphX of me into tXData
put min(tXData) into tXMin

at the above line Rev gives me an error that value is not a number

I would appreciate help on this.

Thank you all in anticipation

Ramesh


___
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: Basic SQL database question

2006-01-17 Thread Scott Kane
David,

 Now the primary key is set to id - so this should work - 
 but should  
 the tool not issue an INSERT statement and not an UPDATE 
 (there is no  
 data yet in the db). ___

I assumed the same thing.  But I could not get it to do
this.  There is an advanced Rev tutorial on the DB QB
and this may have the answer, but I don't know as I haven't
shelled out for it yet (there is a bunch of advanced tutorials
that look worthwhile getting access to).  I found I could do
everything *except* insert using the tool.  For that reason
I have pursued coding for the functionality needed.  Of course
I'd *love* to be corrected here  ;-)

Scott


___
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: Basic SQL database question

2006-01-17 Thread David Bovill

Were you using PostGreSQL?

I got an INSERT to work now by coding a raw SQL exec:

Now even using the standard Database Query Builder for automatic  
updating of these 2 fields I get the following error:


UPDATE failed on SQL command: UPDATE roles SET diz = :1 WHERE id  
= 1

RevDb error:

Is this a bug with the RunRev implementation for PostGreSQL?

Trevor - I get similar errors with your library - guess this is  
because it sits on top of RunRev stuff?



On 17 Jan 2006, at 21:32, Scott Kane wrote:


David,



Now the primary key is set to id - so this should work -
but should
the tool not issue an INSERT statement and not an UPDATE
(there is no
data yet in the db). ___



I assumed the same thing.  But I could not get it to do
this.  There is an advanced Rev tutorial on the DB QB
and this may have the answer, but I don't know as I haven't
shelled out for it yet (there is a bunch of advanced tutorials
that look worthwhile getting access to).  I found I could do
everything *except* insert using the tool.  For that reason
I have pursued coding for the functionality needed.  Of course
I'd *love* to be corrected here  ;-)

Scott

___
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: Basic SQL database question

2006-01-17 Thread Trevor DeVore

On Jan 17, 2006, at 12:51 PM, David Bovill wrote:


Were you using PostGreSQL?

I got an INSERT to work now by coding a raw SQL exec:

Now even using the standard Database Query Builder for automatic  
updating of these 2 fields I get the following error:


UPDATE failed on SQL command: UPDATE roles SET diz = :1 WHERE  
id = 1

RevDb error:

Is this a bug with the RunRev implementation for PostGreSQL?

Trevor - I get similar errors with your library - guess this is  
because it sits on top of RunRev stuff?


Most likely.  It could be a bug in 1) binding with PostGreSQL or 2)  
the PostGreSQL revdb code.  I would try coding a raw SQL update  
statement and see what happens.  If that works then I would assume it  
is a binding issue.


--
Trevor DeVore
Blue Mango Multimedia
[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: Basic SQL database question

2006-01-17 Thread Scott Kane


 Were you using PostGreSQL?

No SQLite with Altuits AltSQLite.  A nice
library BTW.

Scott


___
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: minimum Date from an array

2006-01-17 Thread Alex Tweedly

Ramesh Ramchandani wrote:


Hello,

I am new to Rev

I have an array of dates that I am sending to the graph object.

Is there a way to check the Minimum and maximum value of the dates  
from the array.


The graph object that I am using is using this code

set the graphX of group graph to vWeek

// vWeek is my array of dates

put the graphX of me into tXData
put min(tXData) into tXMin


min() used on an array will only work if the array contains only numbers.

You could convert the array values from dates to seconds and then use min.
But even easier would be to use the sort feature; you'll need the dates 
to be (for example) one per line,



combine tXData using CR



and then do


sort lines of tXData ascending dateTime



then line 1 of tXData is the min(), and line -1 of tXData is the max()


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



--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.375 / Virus Database: 267.14.19/231 - Release Date: 16/01/2006

___
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


disappearing image

2006-01-17 Thread Jeff Hudson

In Dreamcard

I am on card 35.

When I paste an image everything looks great.  I move to the next  
card and come back the image has no pictures but I can inspect the  
image layer.  The information does not seem to stay.


cards 1 thru 34 still work.


could grouping differently at this point have affected the process.

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


Re: Basic SQL database question

2006-01-17 Thread David Bovill

On 17 Jan 2006, at 22:11, Trevor DeVore wrote:


On Jan 17, 2006, at 12:51 PM, David Bovill wrote:



Most likely.  It could be a bug in 1) binding with PostGreSQL or 2)  
the PostGreSQL revdb code.  I would try coding a raw SQL update  
statement and see what happens.  If that works then I would assume  
it is a binding issue.


The raw SQL works for UPDATE and INSERT. But I am not sure what you  
mean by a binding issue - connecting is OK?



NB: this seems to be where the beta 2.0 library fails:

Database error: Error: ERROR:  syntax error at or near 'roles' at  
character 15

 SQL: SELECT * FROM 'roles' WHERE 'id' = -1

IS there a problem with the quoting of 'roles' for PostGreSQL perhaps?
___
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: Basic SQL database question

2006-01-17 Thread Trevor DeVore

On Jan 17, 2006, at 2:32 PM, David Bovill wrote:


On 17 Jan 2006, at 22:11, Trevor DeVore wrote:


On Jan 17, 2006, at 12:51 PM, David Bovill wrote:



Most likely.  It could be a bug in 1) binding with PostGreSQL or  
2) the PostGreSQL revdb code.  I would try coding a raw SQL update  
statement and see what happens.  If that works then I would assume  
it is a binding issue.


The raw SQL works for UPDATE and INSERT. But I am not sure what you  
mean by a binding issue - connecting is OK?


Whenever you see a :1 (or :2, :3) in a query it is using binding.   
Take a look at the last parameter description in the docs for  
revQueryDatabase and read the Comments section.  I don't think the  
docs refer to this as binding but that is one name for what they are  
doing.



NB: this seems to be where the beta 2.0 library fails:

Database error: Error: ERROR:  syntax error at or near 'roles' at  
character 15

 SQL: SELECT * FROM 'roles' WHERE 'id' = -1

IS there a problem with the quoting of 'roles' for PostGreSQL perhaps?


That is very possible.  I haven't done any testing with PostGreSQL so  
the the quoting of columns may not be correct.  If you (or anyone  
else wants to provide that info I can easily update the library.


--
Trevor DeVore
Blue Mango Multimedia
[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: Quicktime player issue

2006-01-17 Thread J. Landman Gay

Eric Chatonet wrote:

Hi Christian,

Le 16 janv. 06 à 20:50, Christian Langers a écrit :
I think on Windows with Rev 2.6.1 and the latest Quicktime (i think  
this occurs with other configurations too), the player component  when 
hidden on a cd stops to play after about 2 secs...


Not a bug, fortunately just normal behavior: the visible of a player  
has to be true to work (QT monitoring issue).


Actually, the last time I checked, this only happens on Windows. On Mac 
OS X you can hide a player and it still works.


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


Re: Basic SQL database question

2006-01-17 Thread David Bovill

On 18 Jan 2006, at 00:01, Trevor DeVore wrote:

Whenever you see a :1 (or :2, :3) in a query it is using binding.   
Take a look at the last parameter description in the docs for  
revQueryDatabase and read the Comments section.  I don't think  
the docs refer to this as binding but that is one name for what  
they are doing.


OK - will look at these more closely...

That is very possible.  I haven't done any testing with PostGreSQL  
so the the quoting of columns may not be correct.  If you (or  
anyone else wants to provide that info I can easily update the  
library.


I have doen some more raw SQL using Trevor's library:

It seems that PostGreSql statements do not like quoted SQL values, so:

SELECT * FROM 'roles' WHERE id = '-1'

does not work, while

SELECT * FROM roles WHERE id = -1

does.

Hope this helps.
___
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


Mactel/Rosetta

2006-01-17 Thread Richard Gaskin

Has there been a statement on Rosetta compatibility for Rev?

--
 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: save all?

2006-01-17 Thread Richard Gaskin

Peter T. Evensen wrote:
My projects consist of multiple (main) stacks.  It would be nice if the 
IDE had a save all option so I could save all the changes without 
having to switch to each stack or quit revolution to see if I get Save 
changes? dialog.  Does Rev have this?   Just wondering if I overlooked 
something.


You can make a plugin for it easily enough:

on mouseUp
  repeat for each line tStack in the windows
   -- Exclude IDE stacks:
   if char 1 to 3 of tStack = rev then next repeat
   -- do the deed:
   save stack tStack
  end repeat
end mouseUp

--
 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: Re: save all?

2006-01-17 Thread Jerry Muelver
- Original Message - 
From: Richard Gaskin



You can make a plugin for it easily enough:

on mouseUp
  repeat for each line tStack in the windows
   -- Exclude IDE stacks:
   if char 1 to 3 of tStack = rev then next repeat
   -- do the deed:
   save stack tStack
  end repeat
end mouseUp



That's it?! That's all it takes to write a plug-in? Boy, have I got some 
dandy plug-ins rattling around in the recesses of my alleged mind. You've 
created a monster, Richard!


 Jerry 


___
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: save all?

2006-01-17 Thread Richard Gaskin

Jerry Muelver wrote:

- Original Message - From: Richard Gaskin


You can make a plugin for it easily enough:

on mouseUp
  repeat for each line tStack in the windows
   -- Exclude IDE stacks:
   if char 1 to 3 of tStack = rev then next repeat
   -- do the deed:
   save stack tStack
  end repeat
end mouseUp



That's it?! That's all it takes to write a plug-in?


Yep, that's it.  A plugin is just a stack that sits in your Plugins 
folder, and can be opened conveniently from the Development-Plugins menu.


Like anything else, some plugins can be harder to write than others. 
But you can get your feet wet with simple things, and add more goodies 
to your toolchest as you go.



Boy, have I got some dandy plug-ins rattling around in
the recesses of my alleged mind. 
You've created a monster, Richard!


I hope so.  The world can always use more productivity monsters. :)

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


save all?

2006-01-17 Thread Peter T. Evensen
My projects consist of multiple (main) stacks.  It would be nice if the IDE 
had a save all option so I could save all the changes without having to 
switch to each stack or quit revolution to see if I get Save changes? 
dialog.  Does Rev have this?   Just wondering if I overlooked something.


Peter T. Evensen
http://www.PetersRoadToHealth.com
314-629-5248 or 888-628-4588 


___
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: save all?

2006-01-17 Thread Ken Ray
On 1/17/06 5:52 PM, Peter T. Evensen [EMAIL PROTECTED] wrote:

 My projects consist of multiple (main) stacks.  It would be nice if the IDE
 had a save all option so I could save all the changes without having to
 switch to each stack or quit revolution to see if I get Save changes?
 dialog.  Does Rev have this?   Just wondering if I overlooked something.

Actually, you can type Command-Option-S on the Mac, and it should do exactly
that (although for some reason I end up with an open script editing window
when I'm done). But at least it works...

(Jerry, you can still write your plugins anyway... :-)


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


RE: Re: save all?

2006-01-17 Thread Scott Kane

 That's it?! That's all it takes to write a plug-in? Boy, have 
 I got some 
 dandy plug-ins rattling around in the recesses of my alleged 
 mind. You've 
 created a monster, Richard!

While Richards stack is very cool, Chipp
from Altuit offers a nice plugin toolbar
and a stack saving stack that goes onto 
the Plugin toolbar.  Makes it nice and
handy to access...  You can take a look
at:

http://www.altuit.com/webs/altuit2/RunRev/default.htm

At the risk of sounding like I'm always plugin Altuit,
they really do have some nice implementations of things
and credit where credit is due...  ;-)

Scott


___
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


Striped List Fields

2006-01-17 Thread Scott Kane
I've been messing around with getting a striped
list field using Monsieur X's striped example on
Rev online.  I can adjust the size of the lines
(his example is a little large g), but I can
not find the code (script) for setting the actual
blue/white stripes (I've also looked at all of
the properties and can't see anything there).

Does anybody know either how this was implemented
(any editing done on the two lists he uses causes
the stripes to disappear) or perhaps another method?
Note - he has no images in his example.  Apart from
the line size (and the color needs to be a little
softer blue than in the example) the example stack
works fine and the two lists are synchronized perfectly...

Scott


___
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: Striped List Fields

2006-01-17 Thread Mark Smith
I'm sure Xavier won't mind me butting in here...the relevent script  
is the card script - there is an 'on stripes' handler. It sets the  
hilited lines of the fld 1. It's a very neat and simple implementation.


Mark

On 18 Jan 2006, at 01:28, Scott Kane wrote:


I've been messing around with getting a striped
list field using Monsieur X's striped example on
Rev online.  I can adjust the size of the lines
(his example is a little large g), but I can
not find the code (script) for setting the actual
blue/white stripes (I've also looked at all of
the properties and can't see anything there).

Does anybody know either how this was implemented
(any editing done on the two lists he uses causes
the stripes to disappear) or perhaps another method?
Note - he has no images in his example.  Apart from
the line size (and the color needs to be a little
softer blue than in the example) the example stack
works fine and the two lists are synchronized perfectly...

Scott


___
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: Striped List Fields

2006-01-17 Thread Scott Kane
OK - solved it beautifully by searching
the Rev list.  Sarah has beaten this problem
very elegantly.  For those who want to do it
I recommend her steps listed here:

http://article.gmane.org/gmane.comp.ide.revolution.user/17202/match=stri
pe


Cheers

Scott


___
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: Striped List Fields

2006-01-17 Thread Scott Kane
 I'm sure Xavier won't mind me butting in here...the relevent script  
 is the card script - there is an 'on stripes' handler. It sets the  
 hilited lines of the fld 1. It's a very neat and simple 
 implementation.

I must be due for new glasses again.  g

Scott


___
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: save all?

2006-01-17 Thread Chipp Walters

Jerry,

If you're in the Rev environment, it's probably better to use the 
revSave version of save, that way the IDE knows the stack has been saved.


revSave stack tStack

best,

Chipp

Jerry Muelver wrote:

- Original Message - From: Richard Gaskin


You can make a plugin for it easily enough:

on mouseUp
  repeat for each line tStack in the windows
   -- Exclude IDE stacks:
   if char 1 to 3 of tStack = rev then next repeat
   -- do the deed:
   save stack tStack
  end repeat
end mouseUp



That's it?! That's all it takes to write a plug-in? Boy, have I got some 
dandy plug-ins rattling around in the recesses of my alleged mind. 
You've created a monster, Richard!


___
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: Mactel/Rosetta

2006-01-17 Thread J. Landman Gay

Richard Gaskin wrote:

Has there been a statement on Rosetta compatibility for Rev?



I don't know if anything official has gone out, but Kevin did mention 
it to the list:


http://article.gmane.org/gmane.comp.ide.revolution.user/74423

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


OS X standalone problem

2006-01-17 Thread Sarah Reichelt
Hi All,

I'm having a very strange problem today which I hope someone can help me with.

I have a standalone app, built using the splash screen method. It runs
perfectly on my computer (10.4.3) and on another iMac (10.4.4) but on
an iBook (10.4.4) it only runs once. After that it gets to the splash
screen but crashes during the preOpenStack handler in the next stack
opened. If I extract a new copy of the app from the zip file, it too
will work once.

Here's the really weird bit: when it crashes, I get the usual dialog
saying The application has unexpectedly quit... and it has several
buttons, one of which is Reopen. If I click the Reopen button, the
application works perfectly, however closing and then trying to run it
again fails every time.

The standalone was built using Rev 2.6.1 but the next thing I will try
is building using an older version, however I am hoping that someone
will come up with an explanation. What is different about reopen
instead of just opening the app normally? Any why does it run first
time and not afterwards unless by a reopen?

HELP!
Sarah
___
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: Striped List Fields

2006-01-17 Thread MisterX
 I must be due for new glasses again.  g

Hi Scott

that's why I made the lines so big ;)

glad you liked it ;)

cheers
Xavier
http://monsieurx.com 

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Scott Kane
 Sent: Wednesday, 18 January, 2006 03:08
 To: 'How to use Revolution'
 Subject: RE: Striped List Fields
 
  I'm sure Xavier won't mind me butting in here...the 
 relevent script is 
  the card script - there is an 'on stripes' handler. It sets the 
  hilited lines of the fld 1. It's a very neat and simple 
  implementation.
 
 I must be due for new glasses again.  g
 
 Scott
 
 
 ___
 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: Striped List Fields

2006-01-17 Thread Scott Kane
Hi Xavier,

 that's why I made the lines so big ;)

LOL!  :-)

 
 glad you liked it ;)

You have some really good routines.  :-)

Scott


___
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: Mactel/Rosetta

2006-01-17 Thread Richard Gaskin

J. Landman Gay wrote:

Richard Gaskin wrote:

Has there been a statement on Rosetta compatibility for Rev?


I don't know if anything official has gone out, but Kevin did mention 
it to the list:


http://article.gmane.org/gmane.comp.ide.revolution.user/74423


Related, but not the same question.

That post from Kevin addresses universal binaries, which would be nice 
of course, but if Rosetta works at least okay with Rev we're not in as 
much of a critical rush.


The Intel iMacs are shipping now, and the test kits from Apple have been 
available for the last 9 months.


It seems reasonable that someone at RunRev has run Rev under Rosetta and 
can report what we can expect from that while we wait for the ultimate 
goal of universal binaries.


--
 Richard Gaskin
 Managing Editor, revJournal
 ___
 Rev tips, tutorials and more: http://www.revJournal.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


[OT] SoCal Linux Expo

2006-01-17 Thread Richard Gaskin

Any of you folks going to the Fourth Annual Southern California Linux Expo?

It's held 11-12 February, at the Radisson Hotel near LAX.

Details:
http://www.socallinuxexpo.org/

I'm thinking of going (great lineup, and only $65), and if other Revvers 
are headed that way it would good to hook up.  Drop me a note if you're 
planning on going.


--
 Richard Gaskin
 Managing Editor, revJournal
 ___
 Rev tips, tutorials and more: http://www.revJournal.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