Re: Solution for closeField problem

2007-06-01 Thread Ken Ray
On Fri, 01 Jun 2007 00:54:11 -0400, [EMAIL PROTECTED] wrote:

 Jacque,
 I've not used the Command C shortcut in Rev for a long time - because 
 it didn't work reliably. The problem appeared to show up as soon as I 
 selected Copy on the menu - I don't think the selection even made it 
 to the clipboard. Sorry I haven't had time to investigate more 
 thoroughly.

Ah, now I understand... if you select from the menu, you're doing a 
mouseDown on the button that drops the Edit menu, which would trigger 
the select empty and remove the hilite from the currently selected 
text so there's nothing to copy.

So I guess the select empty fix would have to check to see if the 
object you're mousing down on is a button in a menugroup. Another vote 
for true menus! :-)


Ken Ray
Sons of Thunder Software, Inc.
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.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: Valentina db is royalty free, even for Embedded Valentina Server.

2007-06-01 Thread Ruslan Zasukhin
On 1/6/07 5:11 AM, -= JB =- [EMAIL PROTECTED] wrote:

Hi,

 I have read some about Valentina.  They say it is fast and can be used with
 the Studio version of Rev.  Oracle needs the higher version of Rev.
 
 I tried to read the license to learn about any royalties I would need to pay
 with Valentina but I really didn't find the answer.

Most info about licensing you can read here:

http://www.valentina-db.com/dokuwiki/doku.php?id=paradigma:public:en:licens
ing:licensing

 Does Valentina require any royalties with software I sell if I decide to use
 it as my chosen database.

No royalties. 
 
V4REV:  
you can develop single user desktop application, e.g. Game, CD based
catalog, Accounting, ... And sale million copies.

VDN (+V4REV):
you get the same V4REV as above,
plus you get Valentina Embedded Server which you can distribute
royalty free even million copies. This option is perfect for SOHO
and educational markets.

 What features does Oracle have that would make me consider using it instead of
 Valentina or vice versa.

Question on many pages answer :-)

Oracle vs Valentina
-

* Oracle is a monster, in good term of this word. They have tons features
which Valentina do not have, and even not going to have.

E.g. They have very powerful support of Java, own syntax of stored
procedures, and so on.

Oracle is #1 if you need work on some cool hardware with 128 CPU, and a lots
of users around.


Valentina vs Oracle
-

* PRICE 
* I think Valentina is a lots times cheaper of Oracle right?

* the most difference you start to see if you want sale 1000 copies
of your app. With Oracle you need pay FOR EACH server.
The same for mySQL btw.

* SPEED
* Valentina is faster of Oracle if work on single CPU and not only.

We did have few developers which have use Valentina in their companies,
just to export data from Oracle, import them into Valentina
and then do faster analyze.

I remember some Korea guys, they have told about join speed of query
Oracle 3 min, Valentina 3 seconds. Near to million records in tables.

* SIZE
* Valentina is about 4MB for Win and 10 MB for MAC.
so it not add huge size for your app.

 I am assuming if I choose Valentina I need the Developers Kit if I am going to
 market the software.  Any info about Valentina and Revolution good or bad
 would be nice to know.  I have been to the website already.

Note, before buy you can just play with Valentina for REV and Valentina
Server and Valentina Studio.


-- 
Best regards,

Ruslan Zasukhin
VP Engineering and New Technology
Paradigma Software, Inc

Valentina - Joining Worlds of Information
http://www.paradigmasoft.com

[I feel the need: the need for speed]


___
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


Another vote for sdb!!

2007-06-01 Thread Peter Alcibiades
Yes, this is another vote for sdb!  Do we need to make a small contribution to 
get it hosted someplace?  You can't whet our appetite and then not let us 
have a try!

Peter
___
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: All this talk about DataBases - but how to select?

2007-06-01 Thread Scott Kane

From: -= JB =- [EMAIL PROTECTED]


It's in your Rev directly if you are using it inside the IDE.  :-)


My bad.  It should read directory as in a folder.   Open your Rev folder 
(where Rev lives on your computer) and you'll find it there.  You can open 
the file using any text editor.  The file name is 2020VisionDatabase.txt 
without the quotes.


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: A Brief Introduction to SDB

2007-06-01 Thread Luis

Hiya,

That sounds perfect for a Rev only DB. Any infos on availability?

Cheers,

Luis.


On 31 May 2007, at 16:41, Rob Cozens wrote:

From the Database chapter of the Serendipity Reference stack (which  
is, itself, an SDB front end).:


Database handlers are used to create, access, and maintain stacks  
created in the Serendipity Database--Binary (SDB) format.


SDBs databases support:

* single-user exclusive update access with multi-user read-only  
access.

* client-server exclusive update, shared update  read-only access.
* multiple record types
* variable-length records, fields,  keys
* access by
* Exact or approximate key
* Relative position (first,prev,next,last)
* Record Id (SDB card Id)
* Raw record number (SDB card #-3)
* Inverted key fields
* update  retrieval of individual fields
* selection based on field contents

In general, data is passed between the calling stack  SDB via two  
buffer areas, referred to in examples as sdbBuffer and  
binaryBuffer.  The contents of sdbBuffer can change from  
operation to operation; but the general format for reads  writes  
places the record type in word 1 of line 1, followed by the record  
key.  Lines 2 to -1 contain the record data (or a portion thereof).


BinaryBuffer is used to file or retrieve binary data which cannot  
be stored in a Transcript field.


Both buffers are passed by reference.  For example, the calling  
handler would place the record type  key in sdbBuffer* before  
calling getSDBRecord, and it would find the actual record type   
key in line 1 of sdbBuffer followed by the record content after  
successful completion of the call.  If the record includes binary  
data, it is returned in binaryBuffer.  Since binaryBuffer is passed  
by reference, it must be initialized to empty even if no binary  
data is sent or received.


SDB record types are a maximum of 4 characters, and cannot contain  
leading or embedded blanks.  Record types are case sensitive.


There are six predefined record types:

* 0 designates that word 2 of sdbBuffer contains the SDB record  
id (ie: the Revolution card id) instead of a key.


* # designates that word 2 of sdbBuffer contains the raw SDB  
record number (ie: the Revolution card number - 3) instead of a key.


* + designates the next record (of the same record type) relative  
to the user's current position.


* - designates the previous record (of the same record type)  
relative to the user's current position.


* DICT designates the SDB Data Dictionary Record.

* INVX designates the SDB Inverted Field Index Record.

SDB records are delimited lists of fields (items).  The field  
delimiter used is specified by the calling handler.  IMPORTANT: Num- 
to-char(30), End of Record, is used by SDB Utilities for database  
backup  restore; thus its use in user data or as a field delimiter  
is prohibited. Also, although SDB accepts any field delimiter  
values from 1 to 256, it is recommended that a delimiter  128 be  
used to avoid potential conflicts when running cross-platform in  
client/server mode.


All SDB commands return true or false in word 1 of the result.  If  
word 1 is true, an error occurred,	and the error description is in  
line 2.  Otherwise the result (for reads  writes) returns the  
record number in word 2, the record count in word 3, and the  
Revolution card id for the record in word 4.  Note the record  
number and record count are specific to the record type; so do not  
confuse the returned record number with the raw SDB record number.


The checkSDBResult command, when called immediately after a  
database handler call, will sound an alert, display an error  
message, and return true if the call generated an error.  If the  
original call was successful, checkSDBResult returns the original  
result.


The SDB handlers determine what database to access by referencing  
Library stack local variable, sdbDbId, which is returned by  
openSDBFile.  A user stack can have more than one SDB database open  
at the same time and maintain a current position in each; however  
it is the responsibility of the user stack to maintain a table of  
the ids of all open databases and to set the id of the correct  
database before each call [see getSDBDbId  setSDBDbId].


SDB includes three template stacks to be used to build standalone  
applications:  SDB_Utilities.rev, SDB_Server.rev, and  
SDB_Test_Client.rev.


SDB_Utilities.rev, is used to build a standalone application to  
create, open, backup,  restore SDB Database files, and to serve as  
the application to open an SDB databse if the user double-clicks on  
it instead of opening it from your application.  DO NOT use the  
stack itself, but build a standalone for your platform using SDB  
Utilities.rev, optionally including Revolution's animation  
library.  If you are building for Mac OS, set the creator code for  
the standalone to sDIP.


SDB_Server.rev is used to build the 

Re: Valentina db is royalty free, even for Embedded Valentina Server.

2007-06-01 Thread Luis
Don't forget the additional connection costs: http:// 
www.paradigmasoft.com/en/products/developer/vertical/CONNECTIONS


Cheers,

Luis.


On 1 Jun 2007, at 08:15, Ruslan Zasukhin wrote:


On 1/6/07 5:11 AM, -= JB =- [EMAIL PROTECTED] wrote:

Hi,

I have read some about Valentina.  They say it is fast and can be  
used with

the Studio version of Rev.  Oracle needs the higher version of Rev.

I tried to read the license to learn about any royalties I would  
need to pay

with Valentina but I really didn't find the answer.


Most info about licensing you can read here:

http://www.valentina-db.com/dokuwiki/doku.php? 
id=paradigma:public:en:licens

ing:licensing

Does Valentina require any royalties with software I sell if I  
decide to use

it as my chosen database.


No royalties.

V4REV:
you can develop single user desktop application, e.g. Game, CD  
based

catalog, Accounting, ... And sale million copies.

VDN (+V4REV):
you get the same V4REV as above,
plus you get Valentina Embedded Server which you can distribute
royalty free even million copies. This option is perfect for SOHO
and educational markets.

What features does Oracle have that would make me consider using  
it instead of

Valentina or vice versa.


Question on many pages answer :-)

Oracle vs Valentina
-

* Oracle is a monster, in good term of this word. They have tons  
features

which Valentina do not have, and even not going to have.

E.g. They have very powerful support of Java, own syntax of stored
procedures, and so on.

Oracle is #1 if you need work on some cool hardware with 128 CPU,  
and a lots

of users around.


Valentina vs Oracle
-

* PRICE
* I think Valentina is a lots times cheaper of Oracle right?

* the most difference you start to see if you want sale 1000  
copies

of your app. With Oracle you need pay FOR EACH server.
The same for mySQL btw.

* SPEED
* Valentina is faster of Oracle if work on single CPU and not  
only.


We did have few developers which have use Valentina in their  
companies,

just to export data from Oracle, import them into Valentina
and then do faster analyze.

I remember some Korea guys, they have told about join speed of  
query
Oracle 3 min, Valentina 3 seconds. Near to million records in  
tables.


* SIZE
* Valentina is about 4MB for Win and 10 MB for MAC.
so it not add huge size for your app.

I am assuming if I choose Valentina I need the Developers Kit if I  
am going to
market the software.  Any info about Valentina and Revolution good  
or bad

would be nice to know.  I have been to the website already.


Note, before buy you can just play with Valentina for REV and  
Valentina

Server and Valentina Studio.


--
Best regards,

Ruslan Zasukhin
VP Engineering and New Technology
Paradigma Software, Inc

Valentina - Joining Worlds of Information
http://www.paradigmasoft.com

[I feel the need: the need for speed]


___
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: All this talk about DataBases - but how to select?

2007-06-01 Thread -= JB =-


On Jun 1, 2007, at 2:07 AM, Scott Kane wrote:


It's in your Rev directly if you are using it inside the IDE.  :-)

Scott


   Hi Scott,

   Thanks for the reply.  If it is directly in Rev how do I look at
   it, move it or remove it if I want to.

   -=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: On Board Sound -- Midi in Custom Props (Barry Barber)

2007-06-01 Thread [EMAIL PROTECTED]
Biurnke (yes, I know its phonetic spelling - I hope - but Ive never seen it 
without question marks on my mail)

Apart from the fun, maybe someone should explain to you that Royalties usually 
have to be paid everytime you use somebody elses music. Royalty-free 
collections are sold so as to give a lot of stuff you can use as many times as 
you like without further payments.
Im English born and bred but its fooled me several times too.
All the best
Barry
PS Sorry if this comes up twice, the first one seems to have bounced.


--
Leggi GRATIS le tue mail con il telefonino i-mode™ di Wind
http://i-mode.wind.it/


___
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: Valentina db is royalty free, even for Embedded Valentina Server.

2007-06-01 Thread -= JB =-


On Jun 1, 2007, at 12:15 AM, Ruslan Zasukhin wrote:


clipped



Note, before buy you can just play with Valentina for REV and Valentina
Server and Valentina Studio.


--
Best regards,

Ruslan Zasukhin
VP Engineering and New Technology
Paradigma Software, Inc

Valentina - Joining Worlds of Information
http://www.paradigmasoft.com

[I feel the need: the need for speed]



   Thanks for taking the time to answer.  Your info was a great help.

   -=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: All this talk about DataBases - but how to select?

2007-06-01 Thread -= JB =-


On May 31, 2007, at 10:07 PM, -= JB =- wrote:



   That is very nice.

   Where exactly is the text file being saved right now?

   thanks,
   -=JB=-



   Don't get me wrong.  I know the handler to save the data
   is in the script of the okay button and the handler script
   is located in the keymaker stack not the customer stack.

   I am not able to find the actual text file after it's saved.  Is
   it saved as a file on my hard drive and I just can't find it or
   is it somehow saved as a file inside the stack.

   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: All this talk about DataBases - but how to select?

2007-06-01 Thread Scott Kane

From: -= JB =- [EMAIL PROTECTED]


   I am not able to find the actual text file after it's saved.  Is
   it saved as a file on my hard drive and I just can't find it or
   is it somehow saved as a file inside the stack.


It's in your Rev directly if you are using it inside the IDE.  :-)

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: Valentina db is royalty free, even for Embedded Valentina Server.

2007-06-01 Thread Ruslan Zasukhin
On 1/6/07 1:03 PM, Luis [EMAIL PROTECTED] wrote:

 Don't forget the additional connection costs: http://
 www.paradigmasoft.com/en/products/developer/vertical/CONNECTIONS

Right, although so far we see that 80-90% of VDN developers do not use them
at all and go with default configuration.


-- 
Best regards,

Ruslan Zasukhin
VP Engineering and New Technology
Paradigma Software, Inc

Valentina - Joining Worlds of Information
http://www.paradigmasoft.com

[I feel the need: the need for speed]


___
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: Solution for closeField problem

2007-06-01 Thread Michael Binder

Paul wrote:

The problem occurs when the user clicks a button, or uses the menu to
leave the card. On OS X the closeField command is not sent when leaving
a field under these circumstances - the field never loses focus.

Is there a good way to send a message (like closeField) when the user
edits a field then clicks elsewhere?


Ken wrote:

Ah, now I understand... if you select from the menu, you're doing a
mouseDown on the button that drops the Edit menu, which would trigger
the select empty and remove the hilite from the currently selected
text so there's nothing to copy.

So I guess the select empty fix would have to check to see if the
object you're mousing down on is a button in a menugroup.


So then, 'select empty' does work in the mousedown of non menu buttons?
For menu buttons, how about just putting the 'select empty' in the
menupick handler?

on menupick whichitem
   if whichitem  copy and whichitem Paste then select empty

--Michael Binder

___
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: Another vote for sdb!!

2007-06-01 Thread Scott Kane

From: Peter Alcibiades [EMAIL PROTECTED]

Yes, this is another vote for sdb!  Do we need to make a small 
contribution to

get it hosted someplace?  You can't whet our appetite and then not let us
have a try!


Agreed.  I have a domain name RevDownunder.com and gigs of server space. 
I'd be happy to put it (and any other stacks people want to share) there if 
desired.


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


problem with encryption

2007-06-01 Thread David Beck


Despite all my efforts I can not ecnrypt a string the same way with Rev 
and php. The following rev code;


encrypt hello using aes-128-cbc with key 0123456789abcdef and iv 
01234567012345

put it

produces:

åU[·á$,^Ám¡u

The php code:

$td = mcrypt_module_open( MCRYPT_RIJNDAEL_128, '', 'cbc', '' );
mcrypt_generic_init( $td, '0123456789abcdef', '0123456789012345' );
$data = mcrypt_generic( $td, 'hello' );
mcrypt_generic_deinit($td);
mcrypt_module_close($td);
echo( $data );

should be exactly equivilent, but produces:

Ý~Õ xëCàñTš6

Does anybody know why these two are producing two different strings or 
has anybody been able to get rev and php successfully talking the same 
encryption language? I can not get encryption / decryption to work 
between platforms.


I have tried many different ciphers all with a similar result.

Thanks very much for any help,

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


Macintosh UB standalone

2007-06-01 Thread Shari

Okay, I've tried this eight ways to Sunday, and the results are simple:

If I turn a stack into a Universal Standalone in Metacard 2.8.1 with 
the 2.8.1 MC IDE, on my MacPro Macintel OS 10.4.7:


It launches fine on the MacPro.
Fails to launch on my non-Macintel BW G-3 OSX 10.2.8


If I take the SAME stack, move it to the G-3, and turn it into a 
Standalone via Metacard 2.7.3, MC IDE 2.7.4, it runs fine on the G-3.


The stack is the same.  Only the engine and IDE are different.  Any 
suggestions?  Any known issues with Universal builds?


I was really hoping for one Mac build to fit all OSX Macs, and be 
Macintel native, too :-)


(Tariel, I will give your SS code a try as soon as I have this 
problemo ironed out, thank you!  :-)


Shari
--
Windows and Macintosh shareware games
BIackjack Gold
http://www.gypsyware.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


Mac UB Standalone (addendum)

2007-06-01 Thread Shari

According to a post in the archives, v.2.7.4 should have a UB engine?

My 2.7.4 only has a regular OSX engine, where can I download the 
2.7.4 UB engine?  All I found on the RunRev site was 2.8.1, which I 
have already.

--
Windows and Macintosh shareware games
BIackjack Gold
http://www.gypsyware.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: problem with encryption

2007-06-01 Thread Thierry


Le 1 juin 07 à 15:18, David Beck a écrit :



Despite all my efforts I can not ecnrypt a string the same way with  
Rev and php. The following rev code;


encrypt hello using aes-128-cbc with key 0123456789abcdef and  
iv 01234567012345


Hmm, possibly a typo,
but are you aware your IV value is a bit different ( 89 missing in  
the middle ) ?


HTH
Thierry


mcrypt_generic_init( $td, '0123456789abcdef', '0123456789012345' );
$data = mcrypt_generic( $td, 'hello' );
mcrypt_generic_deinit($td);
mcrypt_module_close($td);
echo( $data );

should be exactly equivilent, but produces:

Ý~Õ xëCàñTš6

Does anybody know why these two are producing two different strings  
or has anybody been able to get rev and php successfully talking  
the same encryption language? I can not get encryption /  
decryption to work between platforms.


I have tried many different ciphers all with a

___
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: All this talk about DataBases - Valentina

2007-06-01 Thread Lynn Fredricks
 I have read some about Valentina.  They say it is fast 
 and can be used with
 the Studio version of Rev.  Oracle needs the higher 
 version of Rev.
 
 I tried to read the license to learn about any royalties 
 I would need to pay
 with Valentina but I really didn't find the answer.
 
 Does Valentina require any royalties with software I sell 
 if I decide to use
 it as my chosen database.
 
 What features does Oracle have that would make me 
 consider using it
 instead of Valentina or vice versa.
 
 I am assuming if I choose Valentina I need the Developers 
 Kit if I am going
 to market the software.  Any info about Valentina and 
 Revolution good or
 bad would be nice to know.  I have been to the website already.

Unless you want to do something that violates the EULA, Valentina is royalty
free. With the ADKs its pretty simple - you can develop and deploy as many
as many apps as you like and ship as many units as you like.

With VDN, you can deploy the Valentina Embedded Server in its default
5-connection verision also without limitation.

There are two options to consider if you need more than this default 5:

1. Connections. You can buy additional connections that you in turn can sell
to your customers. So if you have 5 customers for example, and they wanted:
7 connections, 10 connections, 6 connections, 20 connections and 8
connections, then you wou would need (2,5,1,15,3) 26 additional connections.
You can buy these in volume and get the price way down on a per connection
basis.

2. Embedded Server - Infinite. There's a per deployment no limits connection
version of Embedded Server you can sell your customers. It cost $400.

The Embedded Server option really comes into its own with VDN Pro and VDN
Enterprise. VDN Pro also includes VPHP, VRUBY and VODBC. With VDN
Enterprise, you also get the SSL and Bonjour adapters (you can get these
also with any version of VDN, at a separate cost). With these options, you
are effectively able to deploy the equivalent of our high end Valentina
Office Server.

Something I would like to point out with these options, compared with mySQL,
Oracle, MS SQL Server, is that, except for some very minimal requirements
(copyrights, etc), mostly rebrand our servers. Even if you get a deal with
the company to deploy their server, their server is very strongly branded.
Your customer really becomes THEIR customer. You don't have to lock your
customer into Valentina certainly. But the methodology we use basically
ensures that we don't compete against our own customers.

Best regards,

Lynn Fredricks
President
Paradigma Software
http://www.paradigmasoft.com

Valentina SQL Server: The Ultra-fast, Royalty Free Database Server 

___
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: On Board Sound -- Midi in Custom Props

2007-06-01 Thread Lynn Fredricks
  Royalty Free means no licensing required (unlimited use). 
  Here in 
  the USA, some stock media requires licensing for specific 
 time periods 
  and/or the type of use.  The tm|audio package does not have these 
  restrictions.
 
  And yes, the tm|audio sound collection sells for US$79.
 
 Ah, so royalty free is not free at all... Corporate speak is funny :D

That's the difference between royalty free and free. Hey, if you really
are in the software industry, you should always know to read carefully when
you see the word free :-)

Even before the term Free Software became so charged, there has been many
a free product with strings attached for donations, recommendations,
sending cookies, chocolate, etc

Best regards,

Lynn Fredricks
Worldwide Business Operations
Runtime Revolution Ltd
http://www.runrev.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: Solution for closeField problem

2007-06-01 Thread SimPLsol
.. another vote for 'true' menus...

Ken,
Amen.
PL


**
 See what's free at 
http://www.aol.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: All this talk about DataBases - but how to select?

2007-06-01 Thread -= JB =-


On Jun 1, 2007, at 3:44 AM, Scott Kane wrote:


From: -= JB =- [EMAIL PROTECTED]


It's in your Rev directly if you are using it inside the IDE.  :-)


My bad.  It should read directory as in a folder.   Open your Rev 
folder (where Rev lives on your computer) and you'll find it there.  
You can open the file using any text editor.  The file name is 
2020VisionDatabase.txt without the quotes.


Cheers

Scott


   Thank you!
   -=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


Mac UB standalones and OS versions

2007-06-01 Thread Shari
After a couple of hours of reading old archived posts dating back a 
couple years I came across one tiny tidbit that may explain why the 
UB standalone fails to launch on my G-3.


Can anyone verify this?  Nowhere in the docs of either Revolution or 
Metacard could I find a mention of this.  I did a pretty exhaustive 
search and if the info is out there, it is well hidden.


Universal Binaries for Mac only launch on systems OSX 10.3.x and higher...

Is this true?

Shari
--
Windows and Macintosh shareware games
BIackjack Gold
http://www.gypsyware.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: All this talk about DataBases - Valentina

2007-06-01 Thread -= JB =-


On Jun 1, 2007, at 7:56 AM, Lynn Fredricks wrote:




Unless you want to do something that violates the EULA, Valentina is 
royalty
free. With the ADKs its pretty simple - you can develop and deploy 
as many

as many apps as you like and ship as many units as you like.

With VDN, you can deploy the Valentina Embedded Server in its default
5-connection verision also without limitation.

There are two options to consider if you need more than this default 5:

1. Connections. You can buy additional connections that you in turn 
can sell
to your customers. So if you have 5 customers for example, and they 
wanted:

7 connections, 10 connections, 6 connections, 20 connections and 8
connections, then you wou would need (2,5,1,15,3) 26 additional 
connections.
You can buy these in volume and get the price way down on a per 
connection

basis.

2. Embedded Server - Infinite. There's a per deployment no limits 
connection

version of Embedded Server you can sell your customers. It cost $400.

The Embedded Server option really comes into its own with VDN Pro and 
VDN

Enterprise. VDN Pro also includes VPHP, VRUBY and VODBC. With VDN
Enterprise, you also get the SSL and Bonjour adapters (you can get 
these
also with any version of VDN, at a separate cost). With these options, 
you

are effectively able to deploy the equivalent of our high end Valentina
Office Server.

Something I would like to point out with these options, compared with 
mySQL,
Oracle, MS SQL Server, is that, except for some very minimal 
requirements
(copyrights, etc), mostly rebrand our servers. Even if you get a deal 
with
the company to deploy their server, their server is very strongly 
branded.
Your customer really becomes THEIR customer. You don't have to lock 
your

customer into Valentina certainly. But the methodology we use basically
ensures that we don't compete against our own customers.

Best regards,

Lynn Fredricks
President
Paradigma Software
http://www.paradigmasoft.com

Valentina SQL Server: The Ultra-fast, Royalty Free Database Server



   Thanks for taking the time to explain it in detail.
   -=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


(info) command instead of on doesn't work yet on Revolution Player

2007-06-01 Thread André.Bisseret

Hello,

I am beginning to use command suchName instead of on suchName.
I used this new form in a small stack I am developping ; all worked  
well in Rev but not in Revolution Player.


After a while, I only replaced command by on and all is OK now.

This post just to inform those who could be in my case : Revolution  
Player does not accept command yet.


Hoping this might help,

Best regards from Grenoble
André
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: A Brief Introduction to SDB

2007-06-01 Thread Rob Cozens

Hi Luis,


That sounds perfect for a Rev only DB. Any infos on availability?


You may have read Andre Garzia's offer to once again provide a public 
download site for Serendipity Library.  However, given the other 
issues I'm focused on, I'm not sure when I will finish testing SDB II 
to the state where I feel it is ready for public download.


Basic SDB functionality is in place and working--except for inverted 
indexes, and I am ready to provide copies and support to a few 
interested parties who are willing to (a) work with the software and 
(b) provide me feedback.


Anyone interested should eMail me privately, and I'll have something 
for you by Monday at the latest.


Rob Cozens CCW
Serendipity Software Company

And I, which was two fooles, do so grow three;
 Who are a little wise, the best fooles bee.

 from The Triple Foole by John Donne (1572-1631) 


___
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


How To Send resizeControl?

2007-06-01 Thread Scott Rossi
Hi List:

I have a frontscript that contains a custom resizeControl handler.  How do I
call this handler from a script?

I want to use a script to set the dimensions of a control, and then call
resizeControl.  If I send resizeControl to the object being resized, I get
can't find handler.  If I just call resizeControl, I get the same.

Is it possible to trigger resizeControl from a script?

Thanks  Regards,

Scott Rossi
Creative Director
Tactile Media, Multimedia  Design


___
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: USB or Bluetooth GPS

2007-06-01 Thread Camm29
Yeah , I have a working Bluetooth/USB system on Rev

Though Rev has to see it as a RS232 Com Port 0 -9 !

So the Bluetooth and/or USB driver software must make a Virtual RS232 Com
Port 0 - 9

Best Regards
Camm

- Original Message -
From: Chris Condit [EMAIL PROTECTED]
To: use-revolution@lists.runrev.com
Sent: Thursday, May 31, 2007 8:52 PM
Subject: USB or Bluetooth GPS


 Revolutionaries-

 I've been working on making what I call Dynamic Digital Maps  using
 Rev  (you're welcome to piggy-back using my DDM-Template to make your
 own, see URL below).  The DDM allows one to open jpeg map images in
 the DDM, and supply georeference information on the image, it so you
 can get latitude-longitude read outs as you scroll the mouse over the
 image.  Now that classes are out, I'd like to take some time this
 summer to build in the capability to track your location from a GPS
 system as you are viewing the map (that is, to have the GPS signal
 drive the cursor location instead of having the mouse do it).

 I've been looking over various GPS devices, and see a couple that
 might work that use either USB or supply Communication with Host
 platform Via Bluetooth Serial Port Profile and wonder if anyone can
 give me a pointer as to which, if either I might be able to use with
 Revolution.

 In January this year, Sarah Reichelt allowed that:
 The [...] problem is that Rev cannot talk directly to a USB port.
 For all the interface things that I do, I use serial ports and I
 connect them to my Mac using a USB to serial adapter. Once you
 install the driver for such a device, Rev sees it as a serial device
 even though it is connected via USB, so then the standard serial
 commands work fine.

 I can get a Keyspan serial adapter to hook up to a GPS, but that
 seems like a more cumbersome way to go than straight USB or
 Bluetooth.  Especially so, since USGlobalSat has two GPS that are
 WAAS enabled (for higher accuracy), one that uses a USB (for $80),
 and the other that uses Bluetooth for $160.

 Appreciate any help
 cheers
 Chris
 --
 Dr. Christopher D. Condit,  Associate Prof.,  Dept. of Geosciences
 Univ. Massachusetts,  611 North Pleasant St., Amherst, MA, 01003-9297
 [EMAIL PROTECTED]  413-545-0272
 My Web Page:  http://www.geo.umass.edu/faculty/condit.htm
 Revolution Dynamic Digital Maps: http://ddm.geo.umass.edu

 ___
 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


 --
 Internal Virus Database is out-of-date.
 Checked by AVG Free Edition.
 Version: 7.5.446 / Virus Database: 269.8.0/817 - Release Date: 24/05/2007
16:01


___
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: Jukebox Test

2007-06-01 Thread Jim Lambert

Scott,

Works beautifully on Mac Dual 500 mHz PPC G4
OSX 10.3.9
QT 7.1.6

Jim Lambert
___
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: Connecting to postgres

2007-06-01 Thread Hershel Fisch
On 5/31/07 6:01 PM, Hershel Fisch [EMAIL PROTECTED] wrote:

 Hi all, I'm trying to connect to postgres remotely osx without success.
 Any help?
 
 Port number?
 Pg_hba.config settings ?
Looks like all the above is ok because I could connecet with other tools, so
the problem looks to be in RR currently using 2.8.0 and 2.8.1.
Any where I could get a copy 2.7.x enterprise? I use my own license.
Thanks, Hershel


___
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


Any where I could get a copy 2.7.x enterprise? I'll use my own license.

2007-06-01 Thread Hershel Fisch


___
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: keymaker for rev

2007-06-01 Thread Mark Talluto


On May 31, 2007, at 11:52 PM, Peter Alcibiades wrote:


Hi Mark,

Is keymaker a 2.7.x stack?  I cannot open it, and this is usually  
because of
being on Linux and stuck on 2.6.1   Would you have an old style  
version

of it?  Be very interested,

Regards

Peter



Hi Peter,

It is a 2.7 stack.  Sorry about that.  It does need to be as it is  
just a data management stack.  I just uploaded it as a 2.6 stack.


www.canelasoftware.com/pub/rev/Key_Maker.rev.zip

Mark Talluto
--
CANELA Software
http://www.canelasoftware.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: Mac UB standalones and OS versions

2007-06-01 Thread J. Landman Gay

Shari wrote:
After a couple of hours of reading old archived posts dating back a 
couple years I came across one tiny tidbit that may explain why the UB 
standalone fails to launch on my G-3.


Can anyone verify this?  Nowhere in the docs of either Revolution or 
Metacard could I find a mention of this.  I did a pretty exhaustive 
search and if the info is out there, it is well hidden.


Universal Binaries for Mac only launch on systems OSX 10.3.x and higher...

Is this true?


I couldn't find a specific statement in the Apple Developer area, but 
the stuff I did read seems to indicate it is true.


--
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: Mac UB standalones and OS versions

2007-06-01 Thread Shari
Just in case anybody else searches the archives with the same 
questions, here is the latest update on creating standalones for Mac 
OSX prior to 10.3.x.


I couldn't do it with MC 2.8.1 on my Macintel, even using the PPC 
engine.  I couldn't do it with MC 2.8.1 on the G-3, even using the 
PPC engine.  I had to launch 2.7.4 on the G-3, and do the build with 
it, in order for the standalone to be happy on the G-3 running OS 
10.2.8.


So. I am wondering if there is a bug in v.2.8.1 of MC/Rev 
regarding PPC Mac standalones?





Shari wrote:
After a couple of hours of reading old archived posts dating back a 
couple years I came across one tiny tidbit that may explain why the 
UB standalone fails to launch on my G-3.


Can anyone verify this?  Nowhere in the docs of either Revolution 
or Metacard could I find a mention of this.  I did a pretty 
exhaustive search and if the info is out there, it is well hidden.


Universal Binaries for Mac only launch on systems OSX 10.3.x and higher...

Is this true?







I couldn't find a specific statement in the Apple Developer area, 
but the stuff I did read seems to indicate it is true.


Jacqueline Landman Gay | [EMAIL PROTECTED]
HyperActive Software   | http://www.hyperactivesw.com
___




--
Windows and Macintosh shareware games
BIackjack Gold
http://www.gypsyware.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: Mac UB standalones and OS versions

2007-06-01 Thread J. Landman Gay

Shari wrote:
Just in case anybody else searches the archives with the same questions, 
here is the latest update on creating standalones for Mac OSX prior to 
10.3.x.


I couldn't do it with MC 2.8.1 on my Macintel, even using the PPC 
engine.  I couldn't do it with MC 2.8.1 on the G-3, even using the PPC 
engine.  I had to launch 2.7.4 on the G-3, and do the build with it, in 
order for the standalone to be happy on the G-3 running OS 10.2.8.


So. I am wondering if there is a bug in v.2.8.1 of MC/Rev regarding 
PPC Mac standalones?


Since you aren't using the Rev builder, you might want to take this over 
to the MC list. There are some special requirements for building 
standalones with the 2.7 + engine, and it may be that you haven't 
created a special standalone engine for MC builds in 2.8.x yet.


--
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: Connecting to postgres

2007-06-01 Thread Hershel Fisch
On 6/1/07 2:13 PM, Hershel Fisch [EMAIL PROTECTED] wrote:

 On 5/31/07 6:01 PM, Hershel Fisch [EMAIL PROTECTED] wrote:
 
 Hi all, I'm trying to connect to postgres remotely osx without success.
 Any help?
 
Looks like I'm using osx 10.2.x and that¹s the problem possible I need a
2.6.x version. And one still have it to get a copy?
Thanks, Hershel

___
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: Connecting to postgres

2007-06-01 Thread J. Landman Gay

Hershel Fisch wrote:

On 6/1/07 2:13 PM, Hershel Fisch [EMAIL PROTECTED] wrote:


On 5/31/07 6:01 PM, Hershel Fisch [EMAIL PROTECTED] wrote:


Hi all, I'm trying to connect to postgres remotely osx without success.
Any help?


Looks like I'm using osx 10.2.x and that¹s the problem possible I need a
2.6.x version. And one still have it to get a copy?


ftp://ftp.runrev.com/pub/revolution/downloads/distributions/2.6.1

You'll need a 2.6.1 license key.

--
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: How To Send resizeControl?

2007-06-01 Thread J. Landman Gay

Scott Rossi wrote:

Hi List:

I have a frontscript that contains a custom resizeControl handler.  How do I
call this handler from a script?

I want to use a script to set the dimensions of a control, and then call
resizeControl.  If I send resizeControl to the object being resized, I get
can't find handler.  If I just call resizeControl, I get the same.

Is it possible to trigger resizeControl from a script?


It should be. I have a couple things like that in a frontscript, and 
when I type the handler name into the message box they run. You should 
be able to just use resizeControl (no send). I'm not sure why it 
isn't working for you. Does it work from the message box?


--
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: Connecting to postgres

2007-06-01 Thread Hershel Fisch
On 6/1/07 3:15 PM, J. Landman Gay [EMAIL PROTECTED] wrote:

 Hershel Fisch wrote:
 Looks like I'm using osx 10.2.x and that¹s the problem possible I need a
 2.6.x version. And one still have it to get a copy?
 
 ftp://ftp.runrev.com/pub/revolution/downloads/distributions/2.6.1
 
 You'll need a 2.6.1 license key.
Thanks
I just receive a text file of 0 byte
Hershel

___
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


App Launch from Document in OS X

2007-06-01 Thread Thomas Speitel
I've got an OS X application that saves text files with the  
appropriate creator type (Apple approved) saved with the text file. I  
would like the user to be able to double click on the document which  
will then launch the application and put the document into a field.  
How can I make this happen?

Thanks.
Tom Speitel
___
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: Mac UB standalones and OS versions

2007-06-01 Thread Chris Sheffield
I'm wondering if there's a problem with the 2.8.1 engine. Other non- 
Rev universal apps I have (installers, for example) run perfectly  
fine under 10.2.x. And I'm almost positive that standalones built  
with previous Rev engines have run fine for me. I'm going to double  
check this though.


Chris


On Jun 1, 2007, at 12:47 PM, J. Landman Gay wrote:


Shari wrote:
After a couple of hours of reading old archived posts dating back  
a couple years I came across one tiny tidbit that may explain why  
the UB standalone fails to launch on my G-3.
Can anyone verify this?  Nowhere in the docs of either Revolution  
or Metacard could I find a mention of this.  I did a pretty  
exhaustive search and if the info is out there, it is well hidden.
Universal Binaries for Mac only launch on systems OSX 10.3.x and  
higher...

Is this true?


I couldn't find a specific statement in the Apple Developer area,  
but the stuff I did read seems to indicate it is true.


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


--
Chris Sheffield
Read Naturally
The Fluency Company
http://www.readnaturally.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: Mac UB standalones and OS versions

2007-06-01 Thread Chris Sheffield
Confirmed! UBs built with 2.8.1 *do not* run under OS X 10.2.x. But  
one built with 2.8.0 does. At least in my testing. What changed? If  
no one else has, I'll submit this as a bug. It's a nasty one.


Chris


On Jun 1, 2007, at 1:17 PM, Chris Sheffield wrote:

I'm wondering if there's a problem with the 2.8.1 engine. Other non- 
Rev universal apps I have (installers, for example) run perfectly  
fine under 10.2.x. And I'm almost positive that standalones built  
with previous Rev engines have run fine for me. I'm going to double  
check this though.


Chris


On Jun 1, 2007, at 12:47 PM, J. Landman Gay wrote:


Shari wrote:
After a couple of hours of reading old archived posts dating back  
a couple years I came across one tiny tidbit that may explain why  
the UB standalone fails to launch on my G-3.
Can anyone verify this?  Nowhere in the docs of either Revolution  
or Metacard could I find a mention of this.  I did a pretty  
exhaustive search and if the info is out there, it is well hidden.
Universal Binaries for Mac only launch on systems OSX 10.3.x and  
higher...

Is this true?


I couldn't find a specific statement in the Apple Developer area,  
but the stuff I did read seems to indicate it is true.


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


--
Chris Sheffield
Read Naturally
The Fluency Company
http://www.readnaturally.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


--
Chris Sheffield
Read Naturally
The Fluency Company
http://www.readnaturally.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: Mac UB standalones and OS versions

2007-06-01 Thread Chris Sheffield
One more update. Turns out a PPC standalone built with 2.8.1 does not  
work either, which makes the issue even more serious. :-(


On Jun 1, 2007, at 1:32 PM, Chris Sheffield wrote:

Confirmed! UBs built with 2.8.1 *do not* run under OS X 10.2.x. But  
one built with 2.8.0 does. At least in my testing. What changed? If  
no one else has, I'll submit this as a bug. It's a nasty one.


Chris


On Jun 1, 2007, at 1:17 PM, Chris Sheffield wrote:

I'm wondering if there's a problem with the 2.8.1 engine. Other  
non-Rev universal apps I have (installers, for example) run  
perfectly fine under 10.2.x. And I'm almost positive that  
standalones built with previous Rev engines have run fine for me.  
I'm going to double check this though.


Chris


On Jun 1, 2007, at 12:47 PM, J. Landman Gay wrote:


Shari wrote:
After a couple of hours of reading old archived posts dating  
back a couple years I came across one tiny tidbit that may  
explain why the UB standalone fails to launch on my G-3.
Can anyone verify this?  Nowhere in the docs of either  
Revolution or Metacard could I find a mention of this.  I did a  
pretty exhaustive search and if the info is out there, it is  
well hidden.
Universal Binaries for Mac only launch on systems OSX 10.3.x and  
higher...

Is this true?


I couldn't find a specific statement in the Apple Developer area,  
but the stuff I did read seems to indicate it is true.


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


--
Chris Sheffield
Read Naturally
The Fluency Company
http://www.readnaturally.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


--
Chris Sheffield
Read Naturally
The Fluency Company
http://www.readnaturally.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


--
Chris Sheffield
Read Naturally
The Fluency Company
http://www.readnaturally.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: problem with encryption

2007-06-01 Thread David Beck


Theirry -

Sorry about the confusion. The IV value was different (I've tried this 
many times with many IVs and must have slipped up) but even when the 
correction is made the two strings produced are still different. I can't 
produce the same string with any of the ciphers that both Rev and PHP 
support and I've tried them all (aes, blowfish, cast, rc2). Could there 
be something that Rev or PHP (the mcrypt library) is doing to the data 
or key / iv (for example padding) that the other is not?


Has anybody been able to get Rev and php encryption working together?

Thanks,

David


Hmm, possibly a typo,
but are you aware your IV value is a bit different ( 89 missing in  
the middle ) ?


HTH
Thierry



___
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: Connecting to postgres please help

2007-06-01 Thread Hershel Fisch
On 6/1/07 3:15 PM, J. Landman Gay [EMAIL PROTECTED] wrote:

 
 ftp://ftp.runrev.com/pub/revolution/downloads/distributions/2.6.1
 
 You'll need a 2.6.1 license key.
Thanks, got it, but doesn't work as well.
I have MacSql works fine remotely can't figure out what the problem is.
 As of now every thing is on hold and waiting for a solution.
Hershel

___
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: Connecting to postgres

2007-06-01 Thread J. Landman Gay

Hershel Fisch wrote:

On 6/1/07 3:15 PM, J. Landman Gay [EMAIL PROTECTED] wrote:


Hershel Fisch wrote:

Looks like I'm using osx 10.2.x and that¹s the problem possible I need a
2.6.x version. And one still have it to get a copy?

ftp://ftp.runrev.com/pub/revolution/downloads/distributions/2.6.1

You'll need a 2.6.1 license key.

Thanks
I just receive a text file of 0 byte


It's a link to a folder. Go there in your browser and choose the 
distribution you want.


--
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: App Launch from Document in OS X

2007-06-01 Thread Sarah Reichelt

On 6/2/07, Thomas Speitel [EMAIL PROTECTED] wrote:

I've got an OS X application that saves text files with the
appropriate creator type (Apple approved) saved with the text file. I
would like the user to be able to double click on the document which
will then launch the application and put the document into a field.


In the Standalone settings, make sure your custom file type  creator
are entered in the appropriate fields in the OS X section. Then it
should just work, provided there is no conflict on your system.

Regards,
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: How To Send resizeControl?

2007-06-01 Thread Scott Rossi
Recently, J. Landman Gay wrote:

 Is it possible to trigger resizeControl from a script?
 
 It should be. I have a couple things like that in a frontscript, and
 when I type the handler name into the message box they run. You should
 be able to just use resizeControl (no send). I'm not sure why it
 isn't working for you. Does it work from the message box?

No, that's the trouble.  It doesn't work anywhere by script; only when I
physically drag (resize) a control.  Tried scripting from the msg box and
from a button.  I get same error message regardless: can't find handler.

What can I do?

Regards,

Scott Rossi
Creative Director
Tactile Media, Multimedia  Design


___
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


APPLE APPROVAL

2007-06-01 Thread Joe Lewis Wilkins
I've kind of lost touch with the process over the past few years. Are  
we still supposed to register our apps with Apple to receive a  
unique creator number? And what is the process now?


Joe Wilkins

On Jun 1, 2007, at 1:37 PM, Sarah Reichelt wrote:


On 6/2/07, Thomas Speitel [EMAIL PROTECTED] wrote:

I've got an OS X application that saves text files with the
appropriate creator type (Apple approved) saved with the text file. I
would like the user to be able to double click on the document which
will then launch the application and put the document into a field.


In the Standalone settings, make sure your custom file type  creator
are entered in the appropriate fields in the OS X section. Then it
should just work, provided there is no conflict on your system.

Regards,
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: APPLE APPROVAL

2007-06-01 Thread Devin Asay


On Jun 1, 2007, at 3:09 PM, Joe Lewis Wilkins wrote:

I've kind of lost touch with the process over the past few years.  
Are we still supposed to register our apps with Apple to receive  
a unique creator number? And what is the process now?


Joe,

The process hasn't changed much. As far as I can tell the database is  
being maintained and added to. Go to http://developer.apple.com/ 
datatype/ for more information.


Devin

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: APPLE APPROVAL

2007-06-01 Thread Joe Lewis Wilkins

Thanks, Devin

Joe Wilkins

On Jun 1, 2007, at 2:28 PM, Devin Asay wrote:



On Jun 1, 2007, at 3:09 PM, Joe Lewis Wilkins wrote:

I've kind of lost touch with the process over the past few years.  
Are we still supposed to register our apps with Apple to receive  
a unique creator number? And what is the process now?


Joe,

The process hasn't changed much. As far as I can tell the database  
is being maintained and added to. Go to http://developer.apple.com/ 
datatype/ for more information.


Devin

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


___
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


thanks for BvG Docu! :D

2007-06-01 Thread Andre Garzia

Hey Björnke,

thank you for BvG Docu. I really like it! I am using it as my  
standard documentation stack now :-)


the installation and use are really smooth, thanks for taking your  
time and sharing it.


Cheers
andre

___
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: (info) command instead of on doesn't work yet on RevolutionPlayer

2007-06-01 Thread Mark Wieder
André-

No doubt that's because the Player is still frozen at version 2.7.1, much 
like the u3 version which is frozen at version 2.7.4.

-- 
 Mark Wieder
 [EMAIL PROTECTED] 



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


Re: Solution for closeField problem

2007-06-01 Thread Ken Ray
On Fri, 1 Jun 2007 08:05:14 -0400, Michael Binder wrote:

 Paul wrote:
 The problem occurs when the user clicks a button, or uses the menu to
 leave the card. On OS X the closeField command is not sent when leaving
 a field under these circumstances - the field never loses focus.
 
 Is there a good way to send a message (like closeField) when the user
 edits a field then clicks elsewhere?
 
 Ken wrote:
 Ah, now I understand... if you select from the menu, you're doing a
 mouseDown on the button that drops the Edit menu, which would trigger
 the select empty and remove the hilite from the currently selected
 text so there's nothing to copy.
 
 So I guess the select empty fix would have to check to see if the
 object you're mousing down on is a button in a menugroup.
 
 So then, 'select empty' does work in the mousedown of non menu buttons?
 For menu buttons, how about just putting the 'select empty' in the
 menupick handler?

Well the original problem was triggering a closeField in a field with 
the insertion point on OS X when clicking on a button. So in the case 
of menu buttons, you *don't* want it to select empty, but to leave the 
insertion point where it is. So for all buttons other than those in a 
menugroup, you'd execute a select empty (easier in a frontscript), but 
exclude menu buttons. Something like this frontscript:

on mouseDown
  if (the short name of the owner of the target  the menubar of the 
defaultStack) then
select empty
  end if
  pass mouseDown
end mouseDown


Ken Ray
Sons of Thunder Software, Inc.
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.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: How To Send resizeControl?

2007-06-01 Thread Ken Ray
On Fri, 01 Jun 2007 13:37:57 -0700, Scott Rossi wrote:

 Recently, J. Landman Gay wrote:
 
 Is it possible to trigger resizeControl from a script?
 
 It should be. I have a couple things like that in a frontscript, and
 when I type the handler name into the message box they run. You should
 be able to just use resizeControl (no send). I'm not sure why it
 isn't working for you. Does it work from the message box?
 
 No, that's the trouble.  It doesn't work anywhere by script; only when I
 physically drag (resize) a control.  Tried scripting from the msg box and
 from a button.  I get same error message regardless: can't find handler.
 
 What can I do?

It works here for me... perhaps it's the quotes:

on mouseUp
  send resizeControl to button 1
end mouseUp


Ken Ray
Sons of Thunder Software, Inc.
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.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


[ANN] StackRunner 1.7 Released

2007-06-01 Thread Ken Ray
Just a quick note to let you all know that StackRunner 1.7 has been 
released based on the 2.8.1 engine and includes the revBrowser and 
revFont externals in the package. For more info or to download, go to:

  
http://www.sonsothunder.com/devres/revolution/downloads/StackRunner.htm

Enjoy!


Ken Ray
Sons of Thunder Software, Inc.
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.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: How To Send resizeControl?

2007-06-01 Thread Scott Rossi
 Is it possible to trigger resizeControl from a script?

 What can I do?
 
 It works here for me... perhaps it's the quotes:
 
 on mouseUp
   send resizeControl to button 1
 end mouseUp

Thanks Ken.

I've been trying the above without success -- the problem must be my
resizeControl handler.  But you spurred me on to try placing the 'send'
within a 'try' handler and it seems to work.

 try
   send resizeControl to button 1
 end try

Problem solved (for now).  Thanks.

Regards,

Scott Rossi
Creative Director
Tactile Media, Multimedia  Design


___
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: missing mousedowns mystery

2007-06-01 Thread Richard Gaskin

Jeff Reynolds wrote:
The problem is once and a while a mouse down event is not caught by  
revolution. it appears to usually happen after clicking on a button  
that brings up a different group and then when you quickly try to  
click on one of the newly visible group's buttons quickly the  
mousedown is not captured on the object that is clicked on (like a  
transparent button).


Sounds like the definition of a double-click.  Are you getting a 
mouseDoubleDown message?


--
 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: All this talk about DataBases - but how to select?

2007-06-01 Thread Mark Talluto


On Jun 1, 2007, at 12:07 AM, -= JB =- wrote:


  That is very nice.

   Where exactly is the text file being saved right now?



Thanks!  It is saving the file in the same directory as the engine if  
you use it in the Rev IDE.  I use this program in a standalone form.   
So it saves it in the same folder as the standalone.



Mark Talluto
--
CANELA Software
http://www.canelasoftware.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: Another vote for sdb!!

2007-06-01 Thread Mark Talluto


On Jun 1, 2007, at 4:34 AM, Peter Alcibiades wrote:

Yes, this is another vote for sdb!  Do we need to make a small  
contribution to
get it hosted someplace?  You can't whet our appetite and then not  
let us

have a try!



I can host the files to sdb as well.  I have plenty of room if it  
would be any help.



Mark Talluto
--
CANELA Software
http://www.canelasoftware.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: keymaker for rev

2007-06-01 Thread Bill Vlahos

Mark,

What does KeyMaker do?

Bill Vlahos

On Jun 1, 2007, at 11:22 AM, Mark Talluto wrote:



On May 31, 2007, at 11:52 PM, Peter Alcibiades wrote:


Hi Mark,

Is keymaker a 2.7.x stack?  I cannot open it, and this is usually  
because of
being on Linux and stuck on 2.6.1   Would you have an old  
style version

of it?  Be very interested,

Regards

Peter



Hi Peter,

It is a 2.7 stack.  Sorry about that.  It does need to be as it is  
just a data management stack.  I just uploaded it as a 2.6 stack.


www.canelasoftware.com/pub/rev/Key_Maker.rev.zip

Mark Talluto
--
CANELA Software
http://www.canelasoftware.com

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

http://lists.runrev.com/mailman/listinfo/use-revolution


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


Re: Connecting to postgres

2007-06-01 Thread Jan Schenkel
--- Hershel Fisch [EMAIL PROTECTED] wrote:
 On 6/1/07 2:13 PM, Hershel Fisch [EMAIL PROTECTED]
 wrote:
 
  On 5/31/07 6:01 PM, Hershel Fisch
 [EMAIL PROTECTED] wrote:
  
  Hi all, I'm trying to connect to postgres
 remotely osx without success.
  Any help?
  
 Looks like I'm using osx 10.2.x and that¹s the
 problem possible I need a
 2.6.x version. And one still have it to get a copy?
 Thanks, Hershel
 

Hi Hershel,

Connecting to PostgreSQL from MacOSX 10.2.x got broken
between Revolution 2.2 and 2.5; and should have been
fixed in Rev 2.8.1 :
http://quality.runrev.com/qacenter/show_bug.cgi?id=2209

So if it isn't working in Rev 2.8.1, drop me a note
and I'll re-open the bug report. In the meantime, you
could download Rev 2.2.1 to see if that version can
connect properly. You may have to request a license
key from [EMAIL PROTECTED] if you don't have a
license key dating back to the Revolution 2.2 era.

ftp:///ftp.runrev.com/pub/revolution/downloads/distributions/2.2.1/revolutionosx.dmg

Hope this helped,

Jan Schenkel

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

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


   

Get the Yahoo! toolbar and be alerted to new email wherever you're surfing.
http://new.toolbar.yahoo.com/toolbar/features/mail/index.php
___
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: Quicktime Bundling

2007-06-01 Thread Scott Kane

Hi folks,

This is a little bit off topic, but related to a Rev app I've been building. 
As the app is multi-media it uses Quick Time extensively.  My issue lays 
with potential Windows users and QuickTime.  Many Windows users do not have 
it (or Itunes) installed.  Which would be a major PITA.  I've hunted around 
Apples' site but can't find a solution - so before emailing them I thought 
I'd ask to see if anybody knew here.  Is it legal for me to bundle QuickTime 
on a CD for those clients who do not have it and therefore help them avoid 
the almost 20 meg download?  I seem to remember Apple frowned on this - 
though I can't seem to find anything on it right now.


On another note - Linux and QuickTime.  Are there any options for a Rev 
solution using QuickTime to be compiled for Linux and use one of the 
QuickTime replacements like QuickTime for Linux that seem to exist?


Cheers in advance

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