Re : Confused

2008-11-20 Thread Francis Nugent Dixon

Hi from Paris,

Jo, I had this problem early on and decided to develop a standard  It  
may look a tad heavy at first, but I have build lots of stacks with  
external files (music, photos, data, etc.). I have never regretted  
making this decision. You can always strip the idea down to what you  
need.


I have a folder standard :

Revolution
Folderforstackswithnoexternalfiles
Models
StackName1
Data -- .txt files usually, especially 2 data bases - see  
below)
Music-- .MP3 files only - I suppose you can use .aif  
files, but they are so heavy !

Photos   -- .jpg files
Program  -- .rev file
Documentation -- Anything I might want to pass on to the User.
Backups -- .txt file backups of the Data base BEFORE each  
execution.

StackName2
Data

   etc.

Any stack with no external file goes into the folder  
Folderforstackswithnoexternalfiles Choose the name you want.
When I create a new stack, I try to base it on one of the many models  
that I have in my Model folder.    Otherwise, it becomes a  
new model.
For any stacks with external files, I create a complete set of  
subfolders (whose names are always the same) under a subfolder which  
has the name of the stack. I NEVER deviate from this rule, even if  
some of my stacks don't need some of the subfolders. Empty folders  
dont take up much space :) I usually add a Read-Me file to each of  
the subfolders, to explain to my user how the files of the folder are  
used.


I put an absolutely standard openStack script in ALL my stacks (even  
if they don't have external files). Depending on the needs of each  
stack, I can add unique commands at the end of the standard script. In  
various scripts throughout the rest of the stack, I make available  
whichever global variables I need from the Openstack script.  
Obviously, they never change during execution. I have Language  
buttons in most of my stacks. Click a button and all the labels and  
messages change to the new language (I have family in 4 continents !)


As a result, whatever I need for any type of stack is always  
available.  If I add new functions to the stack later on, the  
infrastructure is already there.


Since I moved to 3.0 recently, I also use this setup for standalone  
Rev stacks, and the Data subfolder now also contains the exported  
Data Bases to be loaded into the standalone stack. I have standard  
Export and Import scripts for use in a standalone environment. I  
create one data base for each platform (Mac or PC).  When I have built  
my stack, I export the contents to the data bases, empty the stack and  
save the .rev file to the Program Folder. When I move the folder  
subset to another platform (The folder subset will go into the  
Revolution folder which I create the first time). All I have to do  
is to create an alias of the .rev app and move it to the deskTop.


BTW, I use GVxxx for global variable names, and LVxxx for local  
variables.


Best Regards

-Francis

OpenStack script follows : (be careful of wraparounds !)

on openStack
  --
  global GVThisPlatform,GVStackName,GVStackPath,GVStackLanguage
  global  
GVDataPath 
,GVMusicPath 
,GVPhotosPath,GVPrintPath,GVProgramPath,GVBackupPath,GVDeskTop

  --
  -- 1 - Identify current platform and set a few global variables.
  --
  put the platform into LVHoldPlatform -- Get the  
Machine Platform.
  if LVHoldPlatform = MacOS then -- Is it a  
Mac ?
put Mac into GVThisPlatform  -- Show it  
is a Mac.
put /Revolution/ into GVStackPath-- Set Mac  
StackPath Header.

  end if
  if LVHoldPlatform = Win32 then -- Is it a  
PC ?
put PC into GVThisPlatform   -- Show it  
is a PC.
 put line 1 of the volumes into LVPCID -- Pick up  
PC Systems Disk Drive ID.
put LVPCID  /Revolution/ into GVStackPath   -- Set PC  
StackPath Header with Disk ID.

  end if
  --
  put 1 into GVStackLanguage   -- Set  
Language - Assume English when loading stack.

  --
  -- 2 - Set my Revolution Paths. These point to Revolution  
folders which are identical in levels and names, on both
  -- the Mac and the PC. I use here GVStackPath and  
GVStackName which have previously been initialized.

  --
  -- Note that (for some reason) the Disk element on a Mac  
does not form part of the path. On the PC, it is usually C:

  --
  put GVStackPath  GVStackName  /Data/  into GVDataPath
  put GVStackPath  GVStackName  /Music/ into GVMusicPath
  put GVStackPath  GVStackName  /Photos/into GVPhotosPath
  put GVStackPath  GVStackName  /Print/ into GVPrintPath
  put GVStackPath  GVStackName  /Program/   into GVProgramPath
  put GVStackPath  GVStackName  /Multiples/ into GVMultiplesPath
  put GVStackPath  GVStackName  /Backups/   into 

Re: How to manage german mutated vowel in SQLite

2008-11-20 Thread Reinhold Venzl-Schubert

Hello!

I found the solution myself!

SQLite interprets the  '  in  '{\rtf \mac *CR*\'8A\'9A\'9F} as the  
end of a value.

Therefore the instruction is to long.

I replaced all  '  witn  ' '  and then it works well.
SQLite seems to cut of the second  '  itself, because in the  
database I find only on  ' 


Allthough this group had been a great help for me.
To word it in english forced me to think more exactly about my problem.

:-)
Reinhold



In my program I use a SQLite database, to store sentences in german
language.
I can store sentences as rtf-text with mutated vowels and can get them
back from SQLite, everything works well.

But now I want to export some records and reimport them later.

This is my export-script:

put SELECT * FROM Text_table into tSQL
put revdb_querylist(,,gConID,tSQL) into Text_data

Text_data:
1   Text_table  {\rtf\mac *CR*} {\rtf\mac *CR*aou}  {\rtf\mac 
*CR*\'8A\'9A
\'9F}   

For my import-script I changed the TABs in Text-data like this:

put INSERT INTO Text_table VALUES (null, '{\rtf\mac *CR*}', '{\rtf
\mac *CR*\'8A\'9A\'9F}') into tSQL
put revdb_execute(gConID,tSQL) into tTmp

When there is a german mutated vowel in the value SQLite refuses to
create a new record.

What can I do?


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

2008-11-20 Thread Joe Lewis Wilkins

Hi from San Diego,

Francis, I hope you didn't create all of this just for my edification.  
(smile)


Thanks a lot. Maybe I'll get so organized one day. Actually, one of my  
basic problems is a fantastic memory, so I get along with pretty  
intolerable situations that would force others to organize; while I  
just keep remembering and remembering; only to find that when the  
memory gets into the range of gigabytes that I've stretched it too  
far. (sigh!) I guess the time has come.


Joe Wilkins

On Nov 20, 2008, at 3:46 AM, Francis Nugent Dixon wrote:


Hi from Paris,

Jo, I had this problem early on and decided to develop a standard   
It may look a tad heavy at first, but I have build lots of stacks  
with external files (music, photos, data, etc.). I have never  
regretted making this decision. You can always strip the idea down  
to what you need.


I have a folder standard :






___
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


Kermit file transfer

2008-11-20 Thread -= JB =-

Does Rev support Kermit file transfer and if so how?

thanks,
-=JB=-
___
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: How to manage german mutated vowel in SQLite

2008-11-20 Thread Jan Schenkel
Hi Reinhold,

The question must have slipped by me, but the best way
to avoid this problem, is by using placeholders and
variables - the RevDB drivers will then do the
necessary substitutions.

So your code would become something like:
##
put INSERT INTO Text_table VALUES (null,:1,:2) into
tSQL
put '{\rtf\mac *CR*}' into tData[1]
put '{\rtf\mac *CR*\'8A\'9A\'9F}' into tData[2]
put revdb_execute(gConID,tSQL,tData) into tTmp
##

Important to note is that you're giving the _name_ of
the variable as a parameter, inside a quoted string.
You can use a list of names, or (as I did here) the
name of an array, and then the RevDB system picks up
the data.

HTH,

Jan Schenkel.
--
Quartam Reports  PDF Library for Revolution
http://www.quartam.com


--- Reinhold Venzl-Schubert
[EMAIL PROTECTED] wrote:
 Hello!
 
 I found the solution myself!
 
 SQLite interprets the  '  in  '{\rtf \mac
 *CR*\'8A\'9A\'9F} as the  
 end of a value.
 Therefore the instruction is to long.
 
 I replaced all  '  witn  ' '  and then it works
 well.
 SQLite seems to cut of the second  '  itself,
 because in the  
 database I find only on  ' 
 
 Allthough this group had been a great help for me.
 To word it in english forced me to think more
 exactly about my problem.
 
 :-)
 Reinhold
 
 
  In my program I use a SQLite database, to store
 sentences in german
  language.
  I can store sentences as rtf-text with mutated
 vowels and can get them
  back from SQLite, everything works well.
 
  But now I want to export some records and reimport
 them later.
 
  This is my export-script:
 
  put SELECT * FROM Text_table into tSQL
  put revdb_querylist(,,gConID,tSQL) into Text_data
 
  Text_data:
  1   Text_table  {\rtf\mac *CR*} {\rtf\mac *CR*aou}
 {\rtf\mac *CR*\'8A\'9A
  \'9F}   
 
  For my import-script I changed the TABs in
 Text-data like this:
 
  put INSERT INTO Text_table VALUES (null,
 '{\rtf\mac *CR*}', '{\rtf
  \mac *CR*\'8A\'9A\'9F}') into tSQL
  put revdb_execute(gConID,tSQL) into tTmp
 
  When there is a german mutated vowel in the value
 SQLite refuses to
  create a new record.
 
  What can I do?
 
 ___
 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: SQLite revQueryDatabase where param won't detect invalid target

2008-11-20 Thread Jan Schenkel
--- Paul Murray [EMAIL PROTECTED] wrote:
 Jan,
 Thanks very much for your help!
 
 btw... got a syntax error on:
 put revDataFromQuery(wgdbConID,doSQL,anonID) into
 tRecordCount
 
 so I checked the documentation, and although it
 implies the first two
 parameters are optional,
 I had to add a couple of leading commas to get it to
 work:
 put revDataFromQuery(,,wgdbConID,doSQL,anonID)
 into tRecordCount
 
 Very minor compared to much research time you saved
 me!
 Thanks again.
 Paul
 

Oops, I was too quick in sending it off, but I'm glad
you picked it up and found the fix. Glad to be of
assistance!

Cheers,

Jan Schenkel.

Quartam Reports  PDF Library for Revolution
http://www.quartam.com

=
As we grow older, we grow both wiser and more foolish at the same time.  (La 
Rochefoucauld)


  
___
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: Converting Hypercard Stack -- No Scripts?

2008-11-20 Thread David Brooks
Yesterday a colleague teaching statistics brought me a HC stack he's  
used. He had to run it on an old machine.


It was copied to a 3.5 disk and I moved it into my iMac and converted  
it to RunRev. I could get to a script using put the script of ...  
and copying it from the message box. (Finding a disc reader wasn't so  
simple either.)


Right after that, this thread started -- and I remembered an earlier  
similar thread. Setting the HCaddressing to false does indeed permit  
access to button scripts.


Thanks again to this list and to the extraordinary members of the  
RunRev community.


Best,

Dave B.


On Nov 19, 2008, at 5:30 PM, Ben Rubinstein wrote:


Joe Lewis Wilkins wrote:
That also happened to me right after I got 3.0. If I remember  
correctly, everything was OK after I compacted the stack before  
opening it in Rev. Of course, that meant I had to be able to open  
it in HC to do that. Seems like there was something else, too. I  
think it was Jacqui who put me on the right track.


hcAddressing?

- 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


___
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: Converting Hypercard Stack -- No Scripts?

2008-11-20 Thread Ben Rubinstein

J. Landman Gay wrote:

It might be a bug. But it also might be that the uncompacted HC stack 
was just too far gone to decipher correctly.


I don't think it's anything to do with that; I had the same experience with a 
stack that was converted from HyperCard several years ago, probably with Rev 
2.1, and has been through a few versions of Rev since.  It's a Rev stack, 
which happens to have it's origins in a HyperCard stack; but something breaks 
in Rev 3.0 when attempting to edit the scripts.


Sivakatirswami - could you try setting the hcAddressing to false?  I don't 
know that it's that, but it would be worth ruling it out.




I was recently turned on to Mini VMac.


Is this better than SheepShaver, which is what I used when I first moved to an 
Intel Mac to look at legacy classic stuff, including HyperCard?  SheepShaver 
runs MacOS 9.something, supports colour, ethernet etc...


http://gwenole.beauchesne.info/projects/sheepshaver/

- 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


$ reports '223' With Swiss French Keyboard on Windows

2008-11-20 Thread Trevor DeVore
Anyone know why rawkeydown reports 223 when pressing the $ key on a  
Swiss French keyboard on Windows? After the $ character is entered  
then the Revolution field reports that the character number is 36 but  
that isn't much help if you are trying to filter input. On Mac the  
same keyboard layout reports 36 in rawkeydown.


I've tested on Windows XP running under VMWare Fusion and OS X 10.5.

Regards,

--
Trevor DeVore
Blue Mango Learning Systems
ScreenSteps: http://www.screensteps.com
Developer Resources: http://revolution.bluemangolearning.com

Email has been scanned for viruses by Altman Technologies' email management 
service - www.altman.co.uk/emailsystems
___
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: $ reports '223' With Swiss French Keyboard on Windows

2008-11-20 Thread Jacques Hausser

Hi Trevor,

Strange... I have no Windows available home, but I made a little  
standalone to check it with Crossover, and the $ character number  
becomes... 92 ! And it's not the only case, even if for most of chars  
the numbers are corrects. For the French french keyboard $ number  
is 59 and for the American one it is 36, OK.
I think the responsability is on the Windoïds for Mac, it should be  
tested on a native Windows.


Jacques

Le 20 nov. 2008 à 17:43, Trevor DeVore a écrit :

Anyone know why rawkeydown reports 223 when pressing the $ key on  
a Swiss French keyboard on Windows? After the $ character is entered  
then the Revolution field reports that the character number is 36  
but that isn't much help if you are trying to filter input. On Mac  
the same keyboard layout reports 36 in rawkeydown.


I've tested on Windows XP running under VMWare Fusion and OS X 10.5.

Regards,

--
Trevor DeVore
Blue Mango Learning Systems
ScreenSteps: http://www.screensteps.com
Developer Resources: http://revolution.bluemangolearning.com

Email has been scanned for viruses by Altman Technologies' email  
management service - www.altman.co.uk/emailsystems

___
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


**
Prof. Jacques Hausser
Department of Ecology and Evolution
Biophore / Sorge
University of Lausanne
CH 1015 Lausanne
please use my private address:
6 route de Burtigny
CH-1269 Bassins
tel/fax:++ 41 22 366 19 40
mobile: ++ 41 79 757 05 24
E-Mail: [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: $ reports '223' With Swiss French Keyboard on Windows

2008-11-20 Thread Jacques Hausser
Complement: in both Swiss french and French keyboards, rawkeydown = 36  
corresponds to the localisation of $ on American keyboard.


Le 20 nov. 2008 à 18:25, Jacques Hausser a écrit :


Hi Trevor,

Strange... I have no Windows available home, but I made a little  
standalone to check it with Crossover, and the $ character number  
becomes... 92 ! And it's not the only case, even if for most of  
chars the numbers are corrects. For the French french keyboard $  
number is 59 and for the American one it is 36, OK.
I think the responsability is on the Windoïds for Mac, it should  
be tested on a native Windows.


Jacques

Le 20 nov. 2008 à 17:43, Trevor DeVore a écrit :

Anyone know why rawkeydown reports 223 when pressing the $ key on  
a Swiss French keyboard on Windows? After the $ character is  
entered then the Revolution field reports that the character number  
is 36 but that isn't much help if you are trying to filter input.  
On Mac the same keyboard layout reports 36 in rawkeydown.


I've tested on Windows XP running under VMWare Fusion and OS X 10.5.

Regards,

--
Trevor DeVore
Blue Mango Learning Systems
ScreenSteps: http://www.screensteps.com
Developer Resources: http://revolution.bluemangolearning.com

Email has been scanned for viruses by Altman Technologies' email  
management service - www.altman.co.uk/emailsystems

___
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


**
Prof. Jacques Hausser
Department of Ecology and Evolution
Biophore / Sorge
University of Lausanne
CH 1015 Lausanne
please use my private address:
6 route de Burtigny
CH-1269 Bassins
tel/fax:++ 41 22 366 19 40
mobile: ++ 41 79 757 05 24
E-Mail: [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: $ reports '223' With Swiss French Keyboard on Windows

2008-11-20 Thread Trevor DeVore

On Nov 20, 2008, at 12:25 PM, Jacques Hausser wrote:

Strange... I have no Windows available home, but I made a little  
standalone to check it with Crossover, and the $ character number  
becomes... 92 ! And it's not the only case, even if for most of  
chars the numbers are corrects. For the French french keyboard $  
number is 59 and for the American one it is 36, OK.
I think the responsability is on the Windoïds for Mac, it should  
be tested on a native Windows.


I have a customer that sees the same behavior on a native Windows  
machine and I just ran a test on a Windows XP machine here with the  
same results. Perhaps it is a Revolution bug.


Regards,

--
Trevor DeVore
Blue Mango Learning Systems
www.bluemangolearning.com-
www.screensteps.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 : Confused

2008-11-20 Thread william humphrey
Fantastic memory huh? Just wait until you see what a little age does to that
memory...

On Thu, Nov 20, 2008 at 10:41 AM, Joe Lewis Wilkins [EMAIL PROTECTED] wrote:

 Hi from San Diego,

 Francis, I hope you didn't create all of this just for my edification.
 (smile)

 Thanks a lot. Maybe I'll get so organized one day. Actually, one of my
 basic problems is a fantastic memory, so I get along with pretty intolerable
 situations that would force others to organize; while I just keep
 remembering and remembering; only to find that when the memory gets into the
 range of gigabytes that I've stretched it too far. (sigh!) I guess the time
 has come.

 Joe Wilkins

 On Nov 20, 2008, at 3:46 AM, Francis Nugent Dixon wrote:

  Hi from Paris,

 Jo, I had this problem early on and decided to develop a standard  It may
 look a tad heavy at first, but I have build lots of stacks with external
 files (music, photos, data, etc.). I have never regretted making this
 decision. You can always strip the idea down to what you need.

 I have a folder standard :






 ___
 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




-- 
http://www.bluewatermaritime.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: Converting Hypercard Stack -- No Scripts?

2008-11-20 Thread J. Landman Gay

Ben Rubinstein wrote:

J. Landman Gay wrote:

It might be a bug. But it also might be that the uncompacted HC stack 
was just too far gone to decipher correctly.


I don't think it's anything to do with that; I had the same experience 
with a stack that was converted from HyperCard several years ago, 
probably with Rev 2.1, and has been through a few versions of Rev 
since.  It's a Rev stack, which happens to have it's origins in a 
HyperCard stack; but something breaks in Rev 3.0 when attempting to edit 
the scripts.


You may be right, I'd forgotten about the HCAddressing. That could 
explain a lot. The script editor rewrite is probably not handling that 
very well.


I did have several HC stacks that opened with missing pieces and 
truncated data, and needed to be re-compacted before moving them to Rev. 
But if the stack in question does open and does work, then your 
explanation sounds more likely.


I need to make a note of this...I don't have the fabled gigabyte memory. :)

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


Tablet PC And Rev

2008-11-20 Thread Tim Bleiler

Hi,

Anyone try using Rev with a Tablet PC lately. I don't have one of  
these machines but I have a client who is thinking of getting one.  
There hasn't been any discussion on the list about these devices  
recently but in some older posts there were issues with stylus input  
into Rev fields. Is that still an issue? Are there other issues  
related to the touch screen? Is it possible to accommodate the screen  
twisting and changing orientation at runtime? Any comments on Tablet  
PC and Rev from someone with experience is greatly appreciated.


Thanks

Tim Bleiler
Instructional Designer
University at Buffalo
Phone: 716-829-3867

___
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: Converting Hypercard Stack -- No Scripts?

2008-11-20 Thread J. Landman Gay

Ben Rubinstein wrote:


I was recently turned on to Mini VMac.


Is this better than SheepShaver, which is what I used when I first moved 
to an Intel Mac to look at legacy classic stuff, including HyperCard?  
SheepShaver runs MacOS 9.something, supports colour, ethernet etc...


http://gwenole.beauchesne.info/projects/sheepshaver/


Forgot to answer this. I use both. But Sheepshaver crashes a lot more, 
and mini vMac is very stable. If I have to look at a stack with color, 
for example, I might boot it in Sheepshaver. But for simple compactions 
or script editing, I like mini vMac better. It seems solid as a rock.



--
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: Kermit file transfer

2008-11-20 Thread Andre Garzia
Kermit as in Old School BBS file transfer protocol?

On Thu, Nov 20, 2008 at 1:27 PM, -= JB =- [EMAIL PROTECTED] wrote:
 Does Rev support Kermit file transfer and if so how?

 thanks,
 -=JB=-
 ___
 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




-- 
http://www.andregarzia.com All We Do Is Code.
___
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: Tablet PC And Rev

2008-11-20 Thread Marian Petrides, MD


On Nov 20, 2008, at 12:23 PM, Tim Bleiler wrote:


Hi,

Anyone try using Rev with a Tablet PC lately. I don't have one of  
these machines but I have a client who is thinking of getting one.  
There hasn't been any discussion on the list about these devices  
recently but in some older posts there were issues with stylus input  
into Rev fields. Is that still an issue?

Tim,

I have a tablet but do most of my development on a Mac and then port  
over to Windows.  So I don't have experience actually CREATING stacks  
on a tablet but I do have a little experience running ported stacks on  
it (see my reply to your second question below.


If you are talking about entering text into an input field using the  
stylus, I haven't tried that, but I'll see if I can get around to  
creating a little stack to test it.  If you could give a specific  
example, I'll try to implement that.


Are there other issues related to the touch screen? Is it possible  
to accommodate the screen twisting and changing orientation at  
runtime?


I have a stack that was initially designed to be 800X400 (to allow it  
to play even in Win 95). It uses graphic buttons, radio buttons and  
check boxes and works fine on my HP 2710p tablet running Vista.  The  
only issue is that when I rotate the screen, the stack is a bit too  
wide to display completely in portrait view.  The fit is pretty close,  
so I didn't even notice it until you asked, but I suspect a stack that  
is much wider than 800 pixels won't work very well.


HTH.

Marian
___
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: Kermit file transfer

2008-11-20 Thread -= JB =-

Yes, that is what I am interested in.  Do you know how?


On Nov 20, 2008, at 10:38 AM, Andre Garzia wrote:


Kermit as in Old School BBS file transfer protocol?

On Thu, Nov 20, 2008 at 1:27 PM, -= JB =- [EMAIL PROTECTED]  
wrote:

Does Rev support Kermit file transfer and if so how?

thanks,
-=JB=-
___
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





--
http://www.andregarzia.com All We Do Is Code.
___
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


ANN: Flow Chart Software Project

2008-11-20 Thread Mark Schonewille

Hello,

The Flow Char Software Project is a great example of what one may  
accomplish with Revolution. This programme lets you build a diagram  
from ready-made components. Create pictures of management hierarchies,  
production processes, programming code, personal relationships, and so  
on. Just click on a button to create a shape, drag the shape to the  
right place and connect it to other shapes to compose a flow chart.


More info is available at http://flowproject.economy-x-talk.com/index.php 
. Special code for readers of this list only: DSCRR (valid until 31  
December).


Having that said, I have two questions. First of all, does anyone know  
a great name for this programme? I have been thinking about a name  
since the start of the project, but still have no inspiration. Any  
ideas?


The seconds question considers Apple's logos. I have been searching  
for a good modern Mac OS X logo. Apple has logo's available, which  
indicate that software runs on a Mac, but there are no logos that  
indicate that software runs on Mac OS X, e.g. in addition to Mac OS 9,  
Linux, Darwin or even Windows (all these operating systems run or ran  
on a Mac). Does anyone know where to find a good, high-resolution Mac  
OS X logo?


Best regards,

Mark
--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
http://economy-x-talk.com
http://www.salery.biz
Dutch forum: http://runrev.info/rrforum

Color Converter has been updated! Get it at
http://colorconverter.economy-x-talk.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: Tablet PC And Rev

2008-11-20 Thread Tim Bleiler

Marian,

Thanks for your reply. It sounds like most simple stacks should run  
fine. Most of my text input would be pretty simple. I wonder if when  
the screen is rotated the working ScreenRect returns values  
consistent with the new screen orientation.



Tim Bleiler
Instructional Designer, HSIT
University at Buffalo
Phone: 716-829-3867


On Nov 20, 2008, at 1:43 PM, Marian Petrides, MD wrote:



On Nov 20, 2008, at 12:23 PM, Tim Bleiler wrote:


Hi,

Anyone try using Rev with a Tablet PC lately. I don't have one of  
these machines but I have a client who is thinking of getting one.  
There hasn't been any discussion on the list about these devices  
recently but in some older posts there were issues with stylus  
input into Rev fields. Is that still an issue?

Tim,

I have a tablet but do most of my development on a Mac and then  
port over to Windows.  So I don't have experience actually CREATING  
stacks on a tablet but I do have a little experience running ported  
stacks on it (see my reply to your second question below.


If you are talking about entering text into an input field using  
the stylus, I haven't tried that, but I'll see if I can get around  
to creating a little stack to test it.  If you could give a  
specific example, I'll try to implement that.


Are there other issues related to the touch screen? Is it possible  
to accommodate the screen twisting and changing orientation at  
runtime?


I have a stack that was initially designed to be 800X400 (to allow  
it to play even in Win 95). It uses graphic buttons, radio buttons  
and check boxes and works fine on my HP 2710p tablet running  
Vista.  The only issue is that when I rotate the screen, the stack  
is a bit too wide to display completely in portrait view.  The fit  
is pretty close, so I didn't even notice it until you asked, but I  
suspect a stack that is much wider than 800 pixels won't work very  
well.


HTH.

Marian
___
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: Kermit file transfer

2008-11-20 Thread François Chaplais

There is a wikipedia entry on this
http://en.wikipedia.org/wiki/Kermit_(protocol)
They mention a kermit app for the mac, which I may have used a long  
time ago, to replace it later by ftp within NCSA telnet.
On MacOS X Leopard, man kermit does not return anything in the  
terminal.


Le 20 nov. 08 à 19:38, Andre Garzia a écrit :


Kermit as in Old School BBS file transfer protocol?

On Thu, Nov 20, 2008 at 1:27 PM, -= JB =- [EMAIL PROTECTED]  
wrote:

Does Rev support Kermit file transfer and if so how?

thanks,
-=JB=-
___
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





--
http://www.andregarzia.com All We Do Is Code.
___
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: Kermit file transfer

2008-11-20 Thread -= JB =-

I think the App they recommend is C-Kermit for OS X 10.4.11 which is
what I am using but I wanted to include the Kermit option in a serial
communication program I wrote in Rev if it is possible.

-=JB=-


On Nov 20, 2008, at 12:07 PM, François Chaplais wrote:


There is a wikipedia entry on this
http://en.wikipedia.org/wiki/Kermit_(protocol)
They mention a kermit app for the mac, which I may have used a long  
time ago, to replace it later by ftp within NCSA telnet.
On MacOS X Leopard, man kermit does not return anything in the  
terminal.


Le 20 nov. 08 à 19:38, Andre Garzia a écrit :


Kermit as in Old School BBS file transfer protocol?

On Thu, Nov 20, 2008 at 1:27 PM, -= JB =- [EMAIL PROTECTED]  
wrote:

Does Rev support Kermit file transfer and if so how?

thanks,
-=JB=-
___
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





--
http://www.andregarzia.com All We Do Is Code.
___
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



___
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


Rev Crash on HP Printer

2008-11-20 Thread Dan Friedman
Greetings.

If I type answer printer in the message box with the default printer set
to a HP LaserJet 1022n, Revolution 3.0 crashes.  Rev 2.5.1 does not.

Anyone experience this or know of a workaround?


Thank you in advance,

Dan


___
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: Tablet PC And Rev

2008-11-20 Thread Marian Petrides, MD

Tim

I just created a stack with a single button and a single field named  
MyField containing the following script:


On MouseUp
Ask What is your name?
Get it
put it into field MyField
End mouseUp

It runs fine in both orientations, but the sticky wicket is that it  
does not allow input from the stylus--not even if you try to use the  
Tablet PC Input Panel (the insert button is dimmed out on the Input  
Panel).  So the only way to enter text is by the keyboard.   And THAT  
is problematic when the tablet is in portrait orientation because the  
keyboard is hidden behind the tablet screen.  It IS possible but it is  
very kludgy.  And, more importantly, you can NOT enter handwritten  
text.  Or maybe you can and I just don't know how to capture such input.


Sorry.

M
On Nov 20, 2008, at 2:04 PM, Tim Bleiler wrote:


Marian,

Thanks for your reply. It sounds like most simple stacks should run  
fine. Most of my text input would be pretty simple. I wonder if when  
the screen is rotated the working ScreenRect returns values  
consistent with the new screen orientation.



Tim Bleiler
Instructional Designer, HSIT
University at Buffalo
Phone: 716-829-3867


On Nov 20, 2008, at 1:43 PM, Marian Petrides, MD wrote:



On Nov 20, 2008, at 12:23 PM, Tim Bleiler wrote:


Hi,

Anyone try using Rev with a Tablet PC lately. I don't have one of  
these machines but I have a client who is thinking of getting one.  
There hasn't been any discussion on the list about these devices  
recently but in some older posts there were issues with stylus  
input into Rev fields. Is that still an issue?

Tim,

I have a tablet but do most of my development on a Mac and then  
port over to Windows.  So I don't have experience actually CREATING  
stacks on a tablet but I do have a little experience running ported  
stacks on it (see my reply to your second question below.


If you are talking about entering text into an input field using  
the stylus, I haven't tried that, but I'll see if I can get around  
to creating a little stack to test it.  If you could give a  
specific example, I'll try to implement that.


Are there other issues related to the touch screen? Is it possible  
to accommodate the screen twisting and changing orientation at  
runtime?


I have a stack that was initially designed to be 800X400 (to allow  
it to play even in Win 95). It uses graphic buttons, radio buttons  
and check boxes and works fine on my HP 2710p tablet running  
Vista.  The only issue is that when I rotate the screen, the stack  
is a bit too wide to display completely in portrait view.  The fit  
is pretty close, so I didn't even notice it until you asked, but I  
suspect a stack that is much wider than 800 pixels won't work very  
well.


HTH.

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


___
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: Tablet PC And Rev

2008-11-20 Thread Tim Bleiler

Marian,

Thanks. Your experience with text input is consistent with older  
comments I found in the archives of this list. Has this problem been  
reported as a bug or is it more appropriately entered as a feature  
request? Sometimes my searches miss things.


--Tim


On Nov 20, 2008, at 3:39 PM, Marian Petrides, MD wrote:


Tim

I just created a stack with a single button and a single field  
named MyField containing the following script:


On MouseUp
Ask What is your name?
Get it
put it into field MyField
End mouseUp

It runs fine in both orientations, but the sticky wicket is that it  
does not allow input from the stylus--not even if you try to use  
the Tablet PC Input Panel (the insert button is dimmed out on the  
Input Panel).  So the only way to enter text is by the keyboard.
And THAT is problematic when the tablet is in portrait orientation  
because the keyboard is hidden behind the tablet screen.  It IS  
possible but it is very kludgy.  And, more importantly, you can NOT  
enter handwritten text.  Or maybe you can and I just don't know how  
to capture such input.


Sorry.

M
On Nov 20, 2008, at 2:04 PM, Tim Bleiler wrote:


Marian,

Thanks for your reply. It sounds like most simple stacks should  
run fine. Most of my text input would be pretty simple. I wonder  
if when the screen is rotated the working ScreenRect returns  
values consistent with the new screen orientation.



Tim Bleiler
Instructional Designer, HSIT
University at Buffalo
Phone: 716-829-3867


On Nov 20, 2008, at 1:43 PM, Marian Petrides, MD wrote:



On Nov 20, 2008, at 12:23 PM, Tim Bleiler wrote:


Hi,

Anyone try using Rev with a Tablet PC lately. I don't have one  
of these machines but I have a client who is thinking of getting  
one. There hasn't been any discussion on the list about these  
devices recently but in some older posts there were issues with  
stylus input into Rev fields. Is that still an issue?

Tim,

I have a tablet but do most of my development on a Mac and then  
port over to Windows.  So I don't have experience actually  
CREATING stacks on a tablet but I do have a little experience  
running ported stacks on it (see my reply to your second question  
below.


If you are talking about entering text into an input field using  
the stylus, I haven't tried that, but I'll see if I can get  
around to creating a little stack to test it.  If you could give  
a specific example, I'll try to implement that.


Are there other issues related to the touch screen? Is it  
possible to accommodate the screen twisting and changing  
orientation at runtime?


I have a stack that was initially designed to be 800X400 (to  
allow it to play even in Win 95). It uses graphic buttons, radio  
buttons and check boxes and works fine on my HP 2710p tablet  
running Vista.  The only issue is that when I rotate the screen,  
the stack is a bit too wide to display completely in portrait  
view.  The fit is pretty close, so I didn't even notice it until  
you asked, but I suspect a stack that is much wider than 800  
pixels won't work very well.


HTH.

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


___
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: Tablet PC And Rev

2008-11-20 Thread Marian Petrides, MD
I doubt it is a bug... seems more like a feature request to me.  Alas,  
I have no idea whether it has been entered as either. Sorry.

On Nov 20, 2008, at 3:18 PM, Tim Bleiler wrote:

Thanks. Your experience with text input is consistent with older  
comments I found in the archives of this list. Has this problem been  
reported as a bug or is it more appropriately entered as a feature  
request? Sometimes my searches miss things.



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

2008-11-20 Thread Joe Lewis Wilkins

Hi Bill,

Perhaps you haven't noticed. I'm almost 76, but I take a lot of great  
supplements. (smile) And the short term memory has suffered some, but  
the long term is longer than ever, and maybe even better for the kinds  
of things I really want to remember. It gets selective after a while.  
(smile)


Joe Wilkins

On Nov 20, 2008, at 10:21 AM, william humphrey wrote:

Fantastic memory huh? Just wait until you see what a little age does  
to that

memory...

On Thu, Nov 20, 2008 at 10:41 AM, Joe Lewis Wilkins  
[EMAIL PROTECTED] wrote:



Hi from San Diego,

Francis, I hope you didn't create all of this just for my  
edification.

(smile)

Thanks a lot. Maybe I'll get so organized one day. Actually, one of  
my
basic problems is a fantastic memory, so I get along with pretty  
intolerable

situations that would force others to organize; while I just keep
remembering and remembering; only to find that when the memory gets  
into the
range of gigabytes that I've stretched it too far. (sigh!) I guess  
the time

has come.

Joe Wilkins


--
Please avoid sending me Word or PowerPoint attachments.
See   http://www.gnu.org/philosophy/no-word-attachments.html

Joe Lewis Wilkins
[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: Converting Hypercard Stack -- No Scripts?

2008-11-20 Thread Joe Lewis Wilkins
OK, I give up. Fabled? I would say legendary, according to my first  
wife. (smile)


Joe Wilkins

On Nov 20, 2008, at 10:23 AM, J. Landman Gay wrote:

I need to make a note of this...I don't have the fabled gigabyte  
memory. :)





___
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: ANN: Flow Chart Software Project

2008-11-20 Thread Sarah Reichelt
 Having that said, I have two questions. First of all, does anyone know a
 great name for this programme? I have been thinking about a name since the
 start of the project, but still have no inspiration. Any ideas?

ProFlow ?


 The seconds question considers Apple's logos. I have been searching for a
 good modern Mac OS X logo. Apple has logo's available, which indicate that
 software runs on a Mac, but there are no logos that indicate that software
 runs on Mac OS X, e.g. in addition to Mac OS 9, Linux, Darwin or even
 Windows (all these operating systems run or ran on a Mac). Does anyone know
 where to find a good, high-resolution Mac OS X logo?


If you use the Universal logo, that indicates OS X. Here is a link to
Apple's Logo site. They want you to sign an agreement before using the
logos, but it's all on this page:
http://developer.apple.com/softwarelicensing/agreements/maclogo.html

Cheers,
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: ANN: Flow Chart Software Project

2008-11-20 Thread Mark Schonewille

Hi Sarah,

I sent in the papers for that logo a long time ago, but never heard  
back from Apple. I'm not really looking for something that implies,  
I am looking for an OS X logo.


Thank you for the name suggestion. I've put it on the list.

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
http://economy-x-talk.com
http://www.salery.biz
Dutch forum: http://runrev.info/rrforum

Color Converter has been updated! Get it at
http://colorconverter.economy-x-talk.com !

On 21 nov 2008, at 01:48, Sarah Reichelt wrote:
great name for this programme? I have been thinking about a name  
since the

start of the project, but still have no inspiration. Any ideas?


ProFlow ?

If you use the Universal logo, that indicates OS X. Here is a link to
Apple's Logo site. They want you to sign an agreement before using the
logos, but it's all on this page:
http://developer.apple.com/softwarelicensing/agreements/maclogo.html

Cheers,
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: ANN: Flow Chart Software Project

2008-11-20 Thread Neal Campbell
It might be too American, but how about Flowbee?

(I need a haircut btw)
Neal Campbell
Abroham Neal Software
Programming Services for Windows, OS X and Linux
(540) 242 0911
-
Try Spot for OS X, the intelligent DXCluster Client at
www.abrohamnealsoftware.com -  $15.99
-
For a great dog book, visit www.abrohamneal.com
-
See the FlexRadio Systems Flex-5000a in
action at www.flex-videos.com




On Thu, Nov 20, 2008 at 7:48 PM, Sarah Reichelt
[EMAIL PROTECTED] wrote:
 Having that said, I have two questions. First of all, does anyone know a
 great name for this programme? I have been thinking about a name since the
 start of the project, but still have no inspiration. Any ideas?

 ProFlow ?


 The seconds question considers Apple's logos. I have been searching for a
 good modern Mac OS X logo. Apple has logo's available, which indicate that
 software runs on a Mac, but there are no logos that indicate that software
 runs on Mac OS X, e.g. in addition to Mac OS 9, Linux, Darwin or even
 Windows (all these operating systems run or ran on a Mac). Does anyone know
 where to find a good, high-resolution Mac OS X logo?


 If you use the Universal logo, that indicates OS X. Here is a link to
 Apple's Logo site. They want you to sign an agreement before using the
 logos, but it's all on this page:
 http://developer.apple.com/softwarelicensing/agreements/maclogo.html

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

___
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: ANN: Flow Chart Software Project

2008-11-20 Thread Mark Schonewille

Thanks Neal. I've added it to the list.

When does one need a haircut, who decides this? :-)

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
http://economy-x-talk.com
http://www.salery.biz
Dutch forum: http://runrev.info/rrforum

Color Converter has been updated! Get it at
http://colorconverter.economy-x-talk.com !

On 21 nov 2008, at 01:53, Neal Campbell wrote:


It might be too American, but how about Flowbee?

(I need a haircut btw)
Neal Campbell
Abroham Neal Software
Programming Services for Windows, OS X and Linux
(540) 242 0911

___
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: ANN: Flow Chart Software Project

2008-11-20 Thread Stephen Barncard

here's one I found in google images
http://blogs.sun.com/draks/resource/MacLogo.jpg

here are many
http://images.google.com/images?um=1hl=ensafe=offclient=safarirls=en-usq=mac+logobtnG=Search+Images



Hi Sarah,

I sent in the papers for that logo a long time ago, but never heard 
back from Apple. I'm not really looking for something that 
implies, I am looking for an OS X logo.


Thank you for the name suggestion. I've put it on the list.

--
Best regards,

Mark Schonewille



--


stephen barncard
s a n  f r a n c i s c o
- - -  - - - - - - - - -



___
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: ANN: Flow Chart Software Project

2008-11-20 Thread Mark Schonewille

Those are the wrong ones.

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
http://economy-x-talk.com
http://www.salery.biz
Dutch forum: http://runrev.info/rrforum

Color Converter has been updated! Get it at
http://colorconverter.economy-x-talk.com !

On 21 nov 2008, at 02:56, Stephen Barncard wrote:


here's one I found in google images
http://blogs.sun.com/draks/resource/MacLogo.jpg

here are many
http://images.google.com/images?um=1hl=ensafe=offclient=safarirls=en-usq=mac+logobtnG=Search+Images


___
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: ANN: Flow Chart Software Project

2008-11-20 Thread Neal Campbell
Flowbee is a bizarre device that you put on the end of your vacuum
cleaner hose and turn it on and brush it thru your hair. It supposedly
cuts your hair and vacuums it up at the same time, making sure your
hair is the exact length everywhere (why you would want that is not
explained!)

They sold it via TV commercials (like Silver Star is on European TV)
non-stop for many years!

Neal Campbell
Abroham Neal Software
Programming Services for Windows, OS X and Linux
(540) 242 0911
-
Try Spot for OS X, the intelligent DXCluster Client at
www.abrohamnealsoftware.com -  $15.99
-
For a great dog book, visit www.abrohamneal.com
-
See the FlexRadio Systems Flex-5000a in
action at www.flex-videos.com




On Thu, Nov 20, 2008 at 8:04 PM, Mark Schonewille
[EMAIL PROTECTED] wrote:
 Thanks Neal. I've added it to the list.

 When does one need a haircut, who decides this? :-)

 --
 Best regards,

 Mark Schonewille

 Economy-x-Talk Consulting and Software Engineering
 http://economy-x-talk.com
 http://www.salery.biz
 Dutch forum: http://runrev.info/rrforum

 Color Converter has been updated! Get it at
 http://colorconverter.economy-x-talk.com !

 On 21 nov 2008, at 01:53, Neal Campbell wrote:

 It might be too American, but how about Flowbee?

 (I need a haircut btw)
 Neal Campbell
 Abroham Neal Software
 Programming Services for Windows, OS X and Linux
 (540) 242 0911

 ___
 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: ANN: Flow Chart Software Project

2008-11-20 Thread Paul Looney

Mark,
For your consideration:

FastFlo Charter

Paul Looney
___
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: ANN: Flow Chart Software Project

2008-11-20 Thread Mark Schonewille

Hi,

There was a person who believed the code to be a license key. To avoid  
any confusion: the code can be used on the website to obtain the  
software at a reduced price (but I didn't want to spam, so I didn't  
elaborate on that). Apologies to those who had the impression to get  
the software for free, but I can't post license keys here. If you have  
any questions, you can always write me off-list.


--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
http://economy-x-talk.com
http://www.salery.biz
Dutch forum: http://runrev.info/rrforum

Color Converter has been updated! Get it at
http://colorconverter.economy-x-talk.com !

On 20 nov 2008, at 21:00, Mark Schonewille wrote:


Hello,

The Flow Char Software Project is a great example of what one may  
accomplish with Revolution. This programme lets you build a diagram  
from ready-made components. Create pictures of management  
hierarchies, production processes, programming code, personal  
relationships, and so on. Just click on a button to create a shape,  
drag the shape to the right place and connect it to other shapes to  
compose a flow chart.


More info is available at http://flowproject.economy-x-talk.com/index.php 
. Special code for readers of this list only: DSCRR (valid until 31  
December).


snip
___
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: ANN: Flow Chart Software Project

2008-11-20 Thread Stephen Barncard

sorry.


Those are the wrong ones.



--


stephen barncard
s a n  f r a n c i s c o
- - -  - - - - - - - - -



___
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


Jan Schenkel's merge tutorials

2008-11-20 Thread Peter Alcibiades

Jan, many thanks - great tutorials, very illuminating.  Why, after this,
merge might even persuade me to give up awk

Peter
-- 
View this message in context: 
http://www.nabble.com/Jan-Schenkel%27s-merge-tutorials-tp20616121p20616121.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