Registration Software (OT)

2010-03-19 Thread Marty Knapp
This is a bit off topic, but I was wondering if anyone is using a 
web-based, out-of-the-box software package for tracking registered 
users. I don't need anything too elaborate, but it would be nice if the 
user could update their info and you could do a simple mailing to notify 
people of upgrades (if they opt to receive such).


I've poked around but haven't found anything that looks very appealing 
and I'd rather not roll my own at this point.


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


Re: DataGrid - headerTextFont does not clear previous selection

2010-03-19 Thread Mark Stuart

Concerning the textFont of the DataGrid...
I deleted the existing DataGrid object, as I could not resolve the issue I
had with resetting/clearing the textFont.
I put in a new DataGrid, first copying the scripts I had in it into Notepad.

Regards,
Mark Stuart
-- 
View this message in context: 
http://n4.nabble.com/DataGrid-headerTextFont-does-not-clear-previous-selection-tp1599511p1645446.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: JADE (NetBeans IDE 6.8) and Rev Studio 4.0

2010-03-19 Thread zeeshan aamir
Hay Mark Schonewille,

i tested with the changes in command emailed by Mark Wieder  ( put
shell("Server 6800") into tResult)

in server button in Rev like this
*For Server  Communication Button in Rev*


on mouseUp
   local tDefaultFolder, tResult
   --
   put the defaultFolder into tDefaultFolder
   set the defaultFolder to StackPath()
   --
   put shell("java Server") into tResult
   --
   set the defaultFolder to tDefaultFolder
   answer tResult
end mouseUp

*
*


 this command will work but it gives this error.

java.lang.
NoClassDefFoundError: Server (wrong name: Server/Server)
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClassCond(Unknown Source)
at java.lang.ClassLoader.defineClass(Unknown Source)
at java.security.SecureClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.access$000(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
Could not find the main class: Server.  Program will exit.Exception in
thread "main"

but i try it on same as in same folder where .Java and .Class file placed.

Regards,
ZEESHAN

On Sat, Mar 20, 2010 at 1:45 AM, Mark Schonewille <
m.schonewi...@economy-x-talk.com> wrote:

> Zeeshan,
>
> Can you provide more info? For example, are you succesfully running the
> server? Can you connect to it with the original Jade client? What exactly
> happens when you try running Mark Wieder's code?
>
>
> --
> Best regards,
>
> Mark Schonewille
>
> Economy-x-Talk Consulting and Software Engineering
> Homepage: http://economy-x-talk.com
> Twitter: http://twitter.com/xtalkprogrammer
>
> Economy-x-Talk is always looking for new software development projects.
> Feel free to contact me for a quote.
>
> Op 20 mrt 2010, om 01:32 heeft zeeshan aamir het volgende geschreven:
>
>
>  Thanks Mark Schonewille and Mark Wieder,
>>
>> I try Mark Wieder code in Server button code but its not work.
>>
>> on mouseUp
>>  open socket "localhost:6800" with message "socketConnected"
>>  write "hello, server" & cr to socket "localhost:6800"
>> end mouseUp
>>
>> on socketConnected
>> put "connected to server!"
>> end socketConnected
>>
>> Regards,
>> ZEESHAN
>>
>
> ___
> 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: JADE (NetBeans IDE 6.8) and Rev Studio 4.0

2010-03-19 Thread zeeshan aamir
Hay,
Mark Schonewille, Mark Wieder and all,

Is there is any way that i use JADE (NetBeans) Directly which places in any
other folder and call from their.
or i must use in same folder. how to with JADE not JAVA.

is their is any refernce example places on any source.

(JADE communication with Rev Studio )

regards,
zeeshan

On Sat, Mar 20, 2010 at 1:33 AM, Mark Wieder  wrote:

> Mark-
>
> Friday, March 19, 2010, 5:10:47 PM, you wrote:
>
> > I already told him exactly the same off-list, because he asked me
> > about it directly. Zeeshan, please reply my e-mail.
>
> OK - I'm done here.
>
> --
> -Mark Wieder
>  mwie...@ahsoftware.net
>
> ___
> 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: JADE (NetBeans IDE 6.8) and Rev Studio 4.0

2010-03-19 Thread Mark Schonewille

Zeeshan,

Can you provide more info? For example, are you succesfully running  
the server? Can you connect to it with the original Jade client? What  
exactly happens when you try running Mark Wieder's code?


--
Best regards,

Mark Schonewille

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

Economy-x-Talk is always looking for new software development  
projects. Feel free to contact me for a quote.


Op 20 mrt 2010, om 01:32 heeft zeeshan aamir het volgende geschreven:


Thanks Mark Schonewille and Mark Wieder,

I try Mark Wieder code in Server button code but its not work.

on mouseUp
  open socket "localhost:6800" with message "socketConnected"
  write "hello, server" & cr to socket "localhost:6800"
end mouseUp

on socketConnected
put "connected to server!"
end socketConnected

Regards,
ZEESHAN


___
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: JADE (NetBeans IDE 6.8) and Rev Studio 4.0

2010-03-19 Thread Mark Wieder
Mark-

Friday, March 19, 2010, 5:10:47 PM, you wrote:

> I already told him exactly the same off-list, because he asked me
> about it directly. Zeeshan, please reply my e-mail.

OK - I'm done here.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
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: JADE (NetBeans IDE 6.8) and Rev Studio 4.0

2010-03-19 Thread zeeshan aamir
Thanks Mark Schonewille and Mark Wieder,

I try Mark Wieder code in Server button code but its not work.

on mouseUp
   open socket "localhost:6800" with message "socketConnected"
   write "hello, server" & cr to socket "localhost:6800"
end mouseUp

on socketConnected
 put "connected to server!"
end socketConnected

Regards,
ZEESHAN

On Sat, Mar 20, 2010 at 1:10 AM, Mark Schonewille <
m.schonewi...@economy-x-talk.com> wrote:

> Hi,
>
> I already told him exactly the same off-list, because he asked me about it
> directly. Zeeshan, please reply my e-mail.
>
>
> --
> Best regards,
>
> Mark Schonewille
>
> Economy-x-Talk Consulting and Software Engineering
> Homepage: http://economy-x-talk.com
> Twitter: http://twitter.com/xtalkprogrammer
>
> Economy-x-Talk is always looking for new software development projects.
> Feel free to contact me for a quote.
>
> Op 20 mrt 2010, om 01:05 heeft Mark Wieder het volgende geschreven:
>
>
>  zeeshan-
>>
>> Friday, March 19, 2010, 4:32:31 PM, you wrote:
>>
>>  how?
>>>
>>
>> You've already got the server code in JADE...
>>
>> assuming both are on the same computer and you're still using port
>> 6800 on the server, in a runrev button put the script:
>>
>> on mouseUp
>>   open socket "localhost:6800" with message "socketConnected"
>>   write "hello, server" & cr to socket "localhost:6800"
>> end mouseUp
>>
>> on socketConnected
>>  put "connected to server!"
>> end socketConnected
>>
>> If they're on different machines then change "localhost" to
>> "192.168.0.101" or whatever the ip address of the server is.
>>
>> --
>> -Mark Wieder
>> mwie...@ahsoftware.net
>>
>
>
> ___
> 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: JADE (NetBeans IDE 6.8) and Rev Studio 4.0

2010-03-19 Thread Mark Schonewille

Hi,

I already told him exactly the same off-list, because he asked me  
about it directly. Zeeshan, please reply my e-mail.


--
Best regards,

Mark Schonewille

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

Economy-x-Talk is always looking for new software development  
projects. Feel free to contact me for a quote.


Op 20 mrt 2010, om 01:05 heeft Mark Wieder het volgende geschreven:


zeeshan-

Friday, March 19, 2010, 4:32:31 PM, you wrote:


how?


You've already got the server code in JADE...

assuming both are on the same computer and you're still using port
6800 on the server, in a runrev button put the script:

on mouseUp
   open socket "localhost:6800" with message "socketConnected"
   write "hello, server" & cr to socket "localhost:6800"
end mouseUp

on socketConnected
 put "connected to server!"
end socketConnected

If they're on different machines then change "localhost" to
"192.168.0.101" or whatever the ip address of the server is.

--
-Mark Wieder
mwie...@ahsoftware.net



___
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: JADE (NetBeans IDE 6.8) and Rev Studio 4.0

2010-03-19 Thread Mark Wieder
zeeshan-

Friday, March 19, 2010, 4:32:31 PM, you wrote:

> how?

You've already got the server code in JADE...

assuming both are on the same computer and you're still using port
6800 on the server, in a runrev button put the script:

on mouseUp
open socket "localhost:6800" with message "socketConnected"
write "hello, server" & cr to socket "localhost:6800"
end mouseUp

on socketConnected
  put "connected to server!"
end socketConnected

If they're on different machines then change "localhost" to
"192.168.0.101" or whatever the ip address of the server is.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
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


revmobile looking good

2010-03-19 Thread Colin Holgate
I've been getting the builds, and testing the same stack each time (this one: 
http://xfiles.funnygarbage.com/~colinholgate/rev/testtrack.html ), and it 
hasn't been going quite right, the cars would jitter around the place instead 
of going around the track. I didn't look into it too much because I also wasn't 
able to build to my iPhone, I was getting some sort of provisioning error in 
XCode.

Anyway, the new build runs correctly in the iPhone Simulator, and so I also 
figured out the provisioning issue, and have it running on my phone too.

Knowing how my stack does its thing, I wonder if older builds were JPEG 
compressing images, and now it's RLE compressing images? That difference would 
explain the behavior.

Meanwhile, would it be possible to include iPad in the Simulator choices? That 
script is password protected, so I can't go in and try adding that myself.


___
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: Possible virus warning

2010-03-19 Thread zeeshan aamir
thanks sara

On Sat, Mar 20, 2010 at 12:37 AM, Sarah Reichelt
wrote:

> On Sat, Mar 20, 2010 at 8:05 AM, zeeshan aamir 
> wrote:
> > Hay to all,
> >
> > This is not Virus, any way if you think that this is Virus then its your
> > choice dont open.
> > But any how this is not Virus.
> > I am beginner or Rev  and want cummunicate REV and JADE through Socket
> > Programming so thats why i send the image which shows the detail how they
> > cummincate each other.
>
>
> The issue here is that attachments are not permitted on the list. So
> it appears that you picked a bunch of email addresses from the list
> and BCC'd your queries to them personally - myself included.
> While I have no problem with your screen shots, there is no way that I
> am ever going to open a file called test.tar unless I have been
> expecting it.
> I also don't mind getting off-list queries, but not anonymously and
> not with unsolicited attachments.
>
> A better way of dealing with such issues is to post your scripts
> directly to the list while putting screen shots online and providing a
> link to them in the email.
>
> On to your actual question: if you look in the Revolution Resource
> Center, in the Sample Projects section you will see one called
> Internet Chat that demonstrates the use of sockets. I know nothing
> about JADE but maybe this will help you.
>
> 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: "there is a folder" not case sensitive

2010-03-19 Thread Sarah Reichelt
On Sat, Mar 20, 2010 at 3:04 AM, Jim Ault  wrote:
> On Mar 19, 2010, at 5:53 AM, Sarah Reichelt wrote:
>>
>> Does anyone know a way to make "there is a folder" case sensitive?
>> I have tried setting the caseSensitive to true but that doesn't help.
>>
>> In this case, I have a list of folders from a case sensitive web site
>> and there are two folders with the same name but one has an upper case
>> letter.
>> While this is not an ideal situation, it's not something I can
>> dictate, but I have to be able to work with it.
>> At the moment, it looks like I have to write my own "there is a
>> folder" routine, unless anyone knows how to make it case-sensitive.
>
> I think that 'there is a folder' is a query to the operating system, thus
> not explicitly a Rev-controlled function.  If the operating system sees
> "folderX" and "folderx" as the same, then 'there is a folder' will return
> true.

The operating system sees them as different, but if I need both and
only have "folderX", then checking for the existence of "folderx" will
still return true.


> My solution would be to get a list, then use "is among the lines", or
> "lineoffset" with caseSensitive as true.

Yes, I think this is the best way to go.

Thanks Jim & Bob for your help.

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: Possible virus warning

2010-03-19 Thread Sarah Reichelt
On Sat, Mar 20, 2010 at 8:05 AM, zeeshan aamir  wrote:
> Hay to all,
>
> This is not Virus, any way if you think that this is Virus then its your
> choice dont open.
> But any how this is not Virus.
> I am beginner or Rev  and want cummunicate REV and JADE through Socket
> Programming so thats why i send the image which shows the detail how they
> cummincate each other.


The issue here is that attachments are not permitted on the list. So
it appears that you picked a bunch of email addresses from the list
and BCC'd your queries to them personally - myself included.
While I have no problem with your screen shots, there is no way that I
am ever going to open a file called test.tar unless I have been
expecting it.
I also don't mind getting off-list queries, but not anonymously and
not with unsolicited attachments.

A better way of dealing with such issues is to post your scripts
directly to the list while putting screen shots online and providing a
link to them in the email.

On to your actual question: if you look in the Revolution Resource
Center, in the Sample Projects section you will see one called
Internet Chat that demonstrates the use of sockets. I know nothing
about JADE but maybe this will help you.

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: JADE (NetBeans IDE 6.8) and Rev Studio 4.0

2010-03-19 Thread zeeshan aamir
how?

can you guide me in brief, please.

Regards,
shani


On Sat, Mar 20, 2010 at 12:08 AM, Mark Wieder wrote:

> zeeshan-
>
> Friday, March 19, 2010, 3:54:59 PM, you wrote:
>
> Why are you trying to launch the server app from runrev? Why not just
> use JADE to launch the server, then have the rev app communicate with
> it?
>
> --
> -Mark Wieder
>  mwie...@ahsoftware.net
>
> ___
> 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: JADE (NetBeans IDE 6.8) and Rev Studio 4.0

2010-03-19 Thread Mark Wieder
zeeshan-

Friday, March 19, 2010, 3:54:59 PM, you wrote:

Why are you trying to launch the server app from runrev? Why not just
use JADE to launch the server, then have the rev app communicate with
it?

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
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: JADE (NetBeans IDE 6.8) and Rev Studio 4.0

2010-03-19 Thread Mark Wieder
Mark-

Friday, March 19, 2010, 3:42:47 PM, you wrote:

> project doesn't need Java and could be done entirely in Rev.

 That's certainly true, but I thought the idea was a proof of
concept thing for runrev <-> java communications.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
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: JADE (NetBeans IDE 6.8) and Rev Studio 4.0

2010-03-19 Thread zeeshan aamir
Hi Mark,
Thanks,

I test with this changes in command ( put shell("Server 6800") into tResult)

 this command will work but it gives this error.

java.lang.NoClassDefFoundError: Server (wrong name: Server/Server)
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClassCond(Unknown Source)
at java.lang.ClassLoader.defineClass(Unknown Source)
at java.security.SecureClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.access$000(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
Could not find the main class: Server.  Program will exit.Exception in
thread "main"



Is it problem that this code is in JADE(Netbeans) and not work in simple
Java.
//Code for Server.java  (JADE)
package Server;

import java.io.DataInputStream;
import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;

public class Server {
public static void main (String[] args) throws IOException{
ServerSocket server=new ServerSocket(6800);
System.out.println("Server Started");
Socket client= server.accept();
DataInputStream in= new DataInputStream(client.getInputStream());

System.out.println("Client Syas: " + in.readUTF());
}
}

.
/7code for client Socket. (JADE)


package Cleint;

import java.io.DataOutputStream;
import java.io.IOException;
import java.net.Socket;

public class Cleint {
public static void main (String[] args) throws IOException {
Socket client= new Socket("localhost",6800);
System.out.println("Connected to server");
DataOutputStream out = new DataOutputStream(client.getOutputStream());
out.writeUTF ("AllowServer");


}

}
.


Regards,
Shani


On Fri, Mar 19, 2010 at 11:37 PM, Mark Wieder wrote:

> zeeshan-
>
> Friday, March 19, 2010, 3:01:26 PM, you wrote:
>
> >put shell("Server 6800") into tResult
>
> Unless you've somehow compiled "Server" as an executable binary file,
> you'll need to launch it as
>
> put shell("java Server") into tResult
>
> otherwise you'll end up with something in tResult like "'Server' is
> not recognized as an internal or external command, operable program or
> batch file."
>
> --
> -Mark Wieder
>  mwie...@ahsoftware.net
>
> ___
> 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: JADE (NetBeans IDE 6.8) and Rev Studio 4.0

2010-03-19 Thread Mark Schonewille

Mark,

It is not even clear to me whether this thing should even run on the  
same computer as the RunRev-based "client". I have been having some e- 
mail chitchat with Zeeshan, but a lot of info is still missing. The  
shell function might not work. If it did work, I'd think that the  
project doesn't need Java and could be done entirely in Rev.


--
Best regards,

Mark Schonewille

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

Economy-x-Talk is always looking for new software development  
projects. Feel free to contact me for a quote.


Op 19 mrt 2010, om 23:37 heeft Mark Wieder het volgende geschreven:


zeeshan-

Friday, March 19, 2010, 3:01:26 PM, you wrote:


  put shell("Server 6800") into tResult


Unless you've somehow compiled "Server" as an executable binary file,
you'll need to launch it as

put shell("java Server") into tResult

otherwise you'll end up with something in tResult like "'Server' is
not recognized as an internal or external command, operable program or
batch file."

--
-Mark Wieder
mwie...@ahsoftware.net


___
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: JADE (NetBeans IDE 6.8) and Rev Studio 4.0

2010-03-19 Thread Mark Wieder
zeeshan-

Friday, March 19, 2010, 3:01:26 PM, you wrote:

>put shell("Server 6800") into tResult

Unless you've somehow compiled "Server" as an executable binary file,
you'll need to launch it as

put shell("java Server") into tResult

otherwise you'll end up with something in tResult like "'Server' is
not recognized as an internal or external command, operable program or
batch file."

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
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: Possible virus warning

2010-03-19 Thread zeeshan aamir
Hay to all,

This is not Virus, any way if you think that this is Virus then its your
choice dont open.
But any how this is not Virus.
I am beginner or Rev  and want cummunicate REV and JADE through Socket
Programming so thats why i send the image which shows the detail how they
cummincate each other.

Regards,
Aamir

On Fri, Mar 19, 2010 at 10:37 PM, BNig  wrote:

>
>
> Richmond Mathewson-2 wrote:
> >
> >   On 19/03/2010 23:04, BNig wrote:
> >> Actually I was entering
> >> http://www.nabble.com/Revolution---User-f2297.html
> >> and it was automatically changed to
> >> http://www.nabble.com/-td2294.html#a2297
> >> something fishy is going on
> >> regards
> >> Bernd
> >
> > Russian mafia?
> >
> > Something about technology and Ingushetia . . . ?
>
> maybe they like the name of our favorite xTalk tool ;-)
> regards
> Bernd
> --
> View this message in context:
> http://n4.nabble.com/Possible-virus-warning-tp1598918p1616810.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
>
___
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


JADE (NetBeans IDE 6.8) and Rev Studio 4.0

2010-03-19 Thread zeeshan aamir
Hay to all,



I want to communicate the JADE (NetBeans IDE 6.8 (Build 200912041610)

) and RunRev (Rev Studio Build 950 Version 4.0.0) with each other through
Socket Programming.



*Product Version:* NetBeans IDE 6.8 (Build 200912041610)

*Java:* 1.6.0_18; Java HotSpot(TM) Client VM 16.0-b13

*System:* Windows Vista version 6.0 running on x86; Cp1252; en_US (nb)



*Rev Studio* Build 950 Version 4.0.0





RunRev and JADE are installed on same computer.



Kindly Guide me some links where I find the examples how they both
communicate with each other.



I am beginner at this time of RunRev.





I have simple program in JADE

……



//Code for Server.java  (JADE)
package Server;

import java.io.DataInputStream;
import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;

public class Server {
public static void main (String[] args) throws IOException{
ServerSocket server=new ServerSocket(6800);
System.out.println("Server Started");
Socket client= server.accept();
DataInputStream in= new DataInputStream(client.getInputStream());

System.out.println("Client Syas: " + in.readUTF());
}
}

.
/7code for client Socket. (JADE)


package Cleint;

import java.io.DataOutputStream;
import java.io.IOException;
import java.net.Socket;

public class Cleint {
public static void main (String[] args) throws IOException {
Socket client= new Socket("localhost",6800);
System.out.println("Connected to server");
DataOutputStream out = new DataOutputStream(client.getOutputStream());
out.writeUTF ("AllowServer");


}

}
.

*RunRev* Main

function StackPath
   local tPath
   --
   put the effective filename of this stack into tPath
   set the itemDelimiter to slash
   delete item -1 of tPath
   --
   return tPath
end StackPath

*For Server  Communication Button in Rev*


on mouseUp
   local tDefaultFolder, tResult
   --
   put the defaultFolder into tDefaultFolder
   set the defaultFolder to StackPath()
   --
   put shell("Server 6800") into tResult
   --
   set the defaultFolder to tDefaultFolder
   answer tResult
end mouseUp

*
Clinet button coading in Rev
*



on mouseUp
local tDefaultFolder, tProcess
   --
   put the defaultFolder into tDefaultFolder
   set the defaultFolder to StackPath()
   --
   put "Client" into tProcess
   open process tProcess for neither
   --
   set the defaultFolder to tDefaultFolder
end mouseUp



..



I am very thankful to you for this kindness in advice.



Kindly reply me on your earliest.


Regards,

shani
___
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: Possible virus warning

2010-03-19 Thread BNig


Richmond Mathewson-2 wrote:
> 
>   On 19/03/2010 23:04, BNig wrote:
>> Actually I was entering
>> http://www.nabble.com/Revolution---User-f2297.html
>> and it was automatically changed to
>> http://www.nabble.com/-td2294.html#a2297
>> something fishy is going on
>> regards
>> Bernd
> 
> Russian mafia?
> 
> Something about technology and Ingushetia . . . ?

maybe they like the name of our favorite xTalk tool ;-)
regards
Bernd
-- 
View this message in context: 
http://n4.nabble.com/Possible-virus-warning-tp1598918p1616810.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Possible virus warning

2010-03-19 Thread BNig


Mark Wieder wrote:
> 
> Bernd-
> 
> Try
> 
> http://old.nabble.com/Revolution---User-f2297.html
> 
> -- 
> -Mark Wieder
>  mwie...@ahsoftware.net
> 

that works, thank you 
still something is going on...
regards
Bernd
-- 
View this message in context: 
http://n4.nabble.com/Possible-virus-warning-tp1598918p1616055.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Possible virus warning

2010-03-19 Thread Richmond Mathewson

 On 19/03/2010 23:04, BNig wrote:

Actually I was entering
http://www.nabble.com/Revolution---User-f2297.html
and it was automatically changed to
http://www.nabble.com/-td2294.html#a2297
something fishy is going on
regards
Bernd


Russian mafia?

Something about technology and Ingushetia . . . ?
___
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: Possible virus warning

2010-03-19 Thread Mark Wieder
Bernd-

Try

http://old.nabble.com/Revolution---User-f2297.html

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
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


Cursor questions

2010-03-19 Thread Stgoldberg
Here are the directions for producing   cursors for Revolution that won't 
come out white:
1.   Open Photoshop. Name the image, Mode being RGB color, Background 
Transparent, and width and height 16 pixels.
2.   Change Image/Mode to Indexed Color, using the defaults for indexed 
color (Palette: Exact; Forced: Web; Transparency checked; Matte: none)
3. With image maximally magnified, used the pencil tool to insert black or 
white pixels.   Enclosed areas can be filled with white or black if desired 
and pixels can be erased if desired.
4.   Save as PNG.   
5.   Bring the PNG image into Revolution and note it's ID number (it may be 
1003 for instance).
6.   In the script to call the cursor write:
on mouseUp
set lockcursor to true
set the cursor to 1003 -- if that's the ID number
end mouseUp

All cursors should show up fine on both Mac and Windows. (I used Mac OS X 
with Revolution 2.7 in development)

It is interesting that sometimes there can be two identical pictures in 
Photoshop, one of which will show up cursors correctly and the other will show 
up only a white square or a black filled image, even though all the 
parameters in Photoshop seem to be the same!!   I don't know why this should be 
the 
case but it implies that there is something different about the two images 
even if not apparent.   This can be easily corrected either by creating a new 
Photoshop 16x16 document, carefully duplicating the pixels of the defective 
image, or more simply, just pasting the defective image into the new 
Photoshop document.   The cursors should then appear fine.

If you would like a group of many new cursors produced this way, let me 
know and I'll be glad to send them.
Stephen Goldberg
stgoldb...@aol.com

In a message dated 3/19/10 12:05:36 PM, 
use-revolution-requ...@lists.runrev.com writes:


> From: Jeffrey Massung 
> Subject: Re: Cursor questions
> To: How to use Revolution 
> Message-ID: <3be3c33d-aa42-49b3-bf31-e2c8b5121...@gmail.com>
> Content-Type: text/plain; charset=us-ascii
> 
> After taking this to the next level and using my own image as a cursor... 
> my cursor (a 16x16 imported PNG image) is turning into 100% white when I 
> set the cursor to it. The shape is correct, but just all the colors are 
> white. I can't find anything in the documentation about this.
> 
> Any hints as to what I'm doing wrong?
> 
> 
___
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: Possible virus warning

2010-03-19 Thread BNig

Actually I was entering
http://www.nabble.com/Revolution---User-f2297.html
and it was automatically changed to 
http://www.nabble.com/-td2294.html#a2297
something fishy is going on
regards
Bernd
-- 
View this message in context: 
http://n4.nabble.com/Possible-virus-warning-tp1598918p1611247.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Possible virus warning

2010-03-19 Thread BNig

I just had a look at:
http://www.nabble.com/-td2294.html#a2297
the nabble version of the list.
That looks very unusual
regards
Bernd
-- 
View this message in context: 
http://n4.nabble.com/Possible-virus-warning-tp1598918p1610395.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


[ANN] tRev fetches object names during transparent inspection!

2010-03-19 Thread Jerry Daniels

Fellow Revolutionistas,

We have a new video posted on our site, and a new version of tRev
available for download today. Check it out:

   http://reveditor.com/fetch-object-name-during-transparent-inspecti

Here's an overview of today's new features:

- Transparent Inspection will now fetch an object name
   * Control+space will fetch long name of object
   * Shift+control+space will fetch short name
   * If source code field is visible, fetched object name is  
insertedinto code

   * If no code showing, then fetched object name is saved to clipboard

- tRev immune to socket closure by Rev IDE and plugins (even resetAll)
- tRev works offline; even after opening the Rev dictionary
- Decoder variable data with long strings no longer overwrites lines
- Decoder var data now limited in length only by available memory
- Hit escape really fast to close tabs. No problem.

You can now download and use tRev for seven days without a reg code.
Download links in the video post references above.

Best,

Jerry Daniels
http://danielsmara.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: Possible virus warning

2010-03-19 Thread Richmond Mathewson

 On 19/03/2010 22:07, Bob Sneidar wrote:

Aye, but no one to date has found an efficient way to put an old PC on one's 
head and have it stay there for long. Every solution has it's limitations.


At least one chap has tried it:

http://web.archive.org/web/20070928072657/jef.raskincenter.org/home/index.html


and; joking apart: an A9 Home is little bigger than a packet of 
cigarettes (and probably

better for your lungs):

http://www.bapfish.org.uk/acorn/a9home.html

there are some pretty small (admittedly not second-hand) PCs around.

Bob


On Mar 19, 2010, at 12:53 PM, Richmond Mathewson wrote:


As Linux costs nothing and one can get hold of a second-hand PC for next to 
nothing
(street prices in Bulgaria currently running at: P3 = EUR25, 17" VDU = EUR25) 
it behooves
everyone (gosh; I've been longing for an excuse to use that awkward verb for 
ages)
to "rush out and buy one" for 2 very good reasons:

1. One can check one's e-mail without getting twitched to the eyeballs about 
viruses.

2. One prevents an old PC ending in a landfill and transmitting filthy 
pollution into the
atmosphere.

Probably a better bet than Aluminium Foil: mind you; one of these might be a 
good idea:

___
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: Possible virus warning

2010-03-19 Thread Bob Sneidar
Aye, but no one to date has found an efficient way to put an old PC on one's 
head and have it stay there for long. Every solution has it's limitations. 

Bob


On Mar 19, 2010, at 12:53 PM, Richmond Mathewson wrote:

> As Linux costs nothing and one can get hold of a second-hand PC for next to 
> nothing
> (street prices in Bulgaria currently running at: P3 = EUR25, 17" VDU = EUR25) 
> it behooves
> everyone (gosh; I've been longing for an excuse to use that awkward verb for 
> ages)
> to "rush out and buy one" for 2 very good reasons:
> 
> 1. One can check one's e-mail without getting twitched to the eyeballs about 
> viruses.
> 
> 2. One prevents an old PC ending in a landfill and transmitting filthy 
> pollution into the
> atmosphere.
> 
> Probably a better bet than Aluminium Foil: mind you; one of these might be a 
> good idea:

___
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: Possible virus warning

2010-03-19 Thread Richmond Mathewson

 On 19/03/2010 18:41, Richard Gaskin wrote:

Scott, I think you underestimate the scope of the RevMobile technology 
and its implications for interstellar migration.


Some people seem to know all about that already:

http://www.himalayanacademy.com/resources/books/ls/


___
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: Possible virus warning

2010-03-19 Thread Richmond Mathewson

 On 19/03/2010 21:38, Mark Wieder wrote:

Richard-

Friday, March 19, 2010, 11:44:34 AM, you wrote:


On the Effectiveness of Aluminium Foil Helmets:
An Empirical Study


Thanks - I saw that on boingboing a while back and had completely
forgotten about it


Smug b*ggers like me check the RunRev Use-list via a Mac or a Linux box
so any viruses out there will just lie around on one's hard drive and do 
nothing

either interesting or harmful.

As Linux costs nothing and one can get hold of a second-hand PC for next 
to nothing
(street prices in Bulgaria currently running at: P3 = EUR25, 17" VDU = 
EUR25) it behooves
everyone (gosh; I've been longing for an excuse to use that awkward verb 
for ages)

to "rush out and buy one" for 2 very good reasons:

1. One can check one's e-mail without getting twitched to the eyeballs 
about viruses.


2. One prevents an old PC ending in a landfill and transmitting filthy 
pollution into the

atmosphere.

Probably a better bet than Aluminium Foil: mind you; one of these might 
be a good idea:


http://prettyfrank.wordpress.com/2008/04/10/my-official-devo-energy-dome/

especially if you are suddenly hit with the urge to devolve into a 
potato . . .  )

___
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: Possible virus warning

2010-03-19 Thread Mark Wieder
Richard-

Friday, March 19, 2010, 11:44:34 AM, you wrote:

> On the Effectiveness of Aluminium Foil Helmets:
> An Empirical Study
> 

Thanks - I saw that on boingboing a while back and had completely
forgotten about it 

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
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: Possible virus warning

2010-03-19 Thread Richard Gaskin

Andrew Kluthe wrote:


/me fetches tin foil hat

oh noes!


Be careful:  researchers at MIT performed a study on the effectiveness 
of tin foil hats, and concluded that they may be part of the conspiracy:



On the Effectiveness of Aluminium Foil Helmets:
An Empirical Study


:)

--
 Richard Gaskin
 Fourth World
 Rev training and consulting: http://www.fourthworld.com
 Webzine for Rev developers: http://www.revjournal.com
 revJournal blog: http://revjournal.com/blog.irv
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Possible virus warning

2010-03-19 Thread Andrew Kluthe

/me fetches tin foil hat

oh noes!
-- 
View this message in context: 
http://n4.nabble.com/Possible-virus-warning-tp1598918p1599827.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Win7 Close stack

2010-03-19 Thread Andrew Kluthe

I will have to determine if I can truly get them back. I included the ability
to toggle hiding/showing of menu palettes but I am not sure if I can bring
them back after I have closed them completely with it.
-- 
View this message in context: 
http://n4.nabble.com/Win7-Close-stack-tp1598597p1599789.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


[OT] Backing up (was: View scripts of my standalone?)

2010-03-19 Thread J. Landman Gay

Peter Brigham MD wrote:

On Mar 18, 2010, at 9:31 PM, Kay C Lan wrote:


And then. rrrgghh! A calendar she'd be working with,
the most important of half a dozen calendars, for some reason she
inexplicably deleted, at that was it, it was gone! She looked high and
low, but it was gone. She was almost in tears when she told me what
happened. So I pointed out the clock icon with the anti-clockwise
arrow around and the Enter Time Machine menu item and 5 min later
we had her calendar back.


Time Machine has saved my sorry ass on several occasions. I have finally 
learned the hard way to back up obsessively. I LOVE Time Machine! 


I got an email from a client last week who was frantic because he'd 
tried a web-based backup system and it mangled his stacks. His data was 
hosed. He had trusted the system, so didn't have a separate backup, and 
he wanted to know if I could unmangle the data. As it turned out, the 
stacks weren't really bad, they only needed to be tweaked a little, so 
all was well.


Then I mentioned that if he had Leopard and Time Machine, he should turn 
it on, it would save his butt. He wrote back and said that he had told 
me the same thing over a year ago, before I'd upgraded, and he'd 
recommended I get Leopard just for its backup features.


We both blinked at each other across virtual space for a moment as we 
realized that he had his stacks all along. We'd both forgotten.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Docking Redux

2010-03-19 Thread Andrew Kluthe

I figured out a pretty decent way of doing it. I might revise it to include
the get/setProp method, as this seems rather elegant compared to custom
properties  and a button full of handlers.

Thank you.
-- 
View this message in context: 
http://n4.nabble.com/Docking-Redux-tp1597272p1599784.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Possible virus warning

2010-03-19 Thread J. Landman Gay

Richard Gaskin wrote:


Don't you see it?!?!?!  Connect the dots!!!  ObjectiveC is people!! It's 
a cook book!!!


Yes, the monsters are due on Maple Street


In that case we just send them out to the corn field. Problem solved.

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Possible virus warning

2010-03-19 Thread J. Landman Gay

Mark Wieder wrote:


Let me point out again that the message did *not* go to this list.
Looking at the email headers, it appears that I received it via bcc.
It's possible that the listserv software couldn't handle that and
bounced it to everyone, but that wouldn't explain why you *didn't* get
a copy.



If you try to include an attachment to the list, the text part is sent 
to list members and the attachment is dropped silently. So it seems more 
likely that he picked a few people to send it to.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: "there is a folder" not case sensitive

2010-03-19 Thread Jim Ault

On Mar 19, 2010, at 5:53 AM, Sarah Reichelt wrote:


Does anyone know a way to make "there is a folder" case sensitive?
I have tried setting the caseSensitive to true but that doesn't help.

In this case, I have a list of folders from a case sensitive web site
and there are two folders with the same name but one has an upper case
letter.
While this is not an ideal situation, it's not something I can
dictate, but I have to be able to work with it.
At the moment, it looks like I have to write my own "there is a
folder" routine, unless anyone knows how to make it case-sensitive.


I think that 'there is a folder' is a query to the operating system,  
thus not explicitly a Rev-controlled function.  If the operating  
system sees "folderX" and "folderx" as the same, then 'there is a  
folder' will return true.


My solution would be to get a list, then use "is among the lines", or  
"lineoffset" with caseSensitive as true.



Jim Ault
Las Vegas



___
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: Possible virus warning

2010-03-19 Thread Richard Gaskin

Scott Rossi wrote:


Dudes, come on.  The guy wrote the list on 3/16 looking for help with Rev
and JADE.


I searched for "zeeshan" in the archives and came up empty.  How did you 
find that post?



He probably tried to send along files he was working on by
mistake.


I'm curious how that happened, of whether that's what happened. 
Apparently Jacque didn't get the email, so perhaps he sent it to a 
number of hand-picked addresses, and just forgot to explain that in his 
email.



As fun as it would be to uncover, there's no conspiracy here.

Now world governments covering up the existence of of extra terrestrial
life, THAT'S a conspiracy I can get behind...


Scott, I think you underestimate the scope of the RevMobile technology 
and its implications for interstellar migration.


Not only are competing vendors of other high-level development tools 
threatened by this, but there's evidence from callers to AM Coast to 
Coast that some governments on this planet and elsewhere in the galaxy 
are concerned about the long-term effects of liberating so many people 
from ObjectiveC.


ObjectiveC = OC = Operation Control, an intergalactic initiative to 
control the minds of sentient beings through mind-numbing bit-counting 
tasks like low-level programming languages.


Don't you see it?!?!?!  Connect the dots!!!  ObjectiveC is people!! 
It's a cook book!!!


Yes, the monsters are due on Maple Street

:)

--
 Richard Gaskin
 Fourth World
 Rev training and consulting: http://www.fourthworld.com
 Webzine for Rev developers: http://www.revjournal.com
 revJournal blog: http://revjournal.com/blog.irv
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Possible virus warning

2010-03-19 Thread Mark Wieder
Jacque-

Thursday, March 18, 2010, 11:03:01 PM, you wrote:

> I feel so neglected. I didn't get a copy. :( But just for the record,
> this person wrote to the tech queue, is a user who is investigating Rev
> for possible purchase, and asked about JADE communications. I told him I
> wasn't familiar enough to answer but that we had some experts on the
> list and the forums and suggested he post there. He did, on both.

Let me point out again that the message did *not* go to this list.
Looking at the email headers, it appears that I received it via bcc.
It's possible that the listserv software couldn't handle that and
bounced it to everyone, but that wouldn't explain why you *didn't* get
a copy.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
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: View scripts of my standalone?

2010-03-19 Thread Bob Sneidar
I have used time machine to recover older versions of rev stacks where I had 
made a mistake and unknowingly deleted an object with a lot of scripting in it. 
Very nice feature to have. 

I will caution this however. When doing a FULL restore from a time machine 
backup, keep in mind it doesn't do everything. I had a local SQL server running 
and it totally missed that. Apparently there are certain directories it ignores 
by default. The one that the SQL data files resided in was apparently one of 
them. 

For full drive backup and restore may I suggest ChronoSync? Best dam backup 
program period IMHE. And only $40. 

Bob


On Mar 19, 2010, at 5:29 AM, Peter Brigham MD wrote:

> On Mar 18, 2010, at 9:31 PM, Kay C Lan wrote:
> 
>> And then. rrrgghh! A calendar she'd be working with,
>> the most important of half a dozen calendars, for some reason she
>> inexplicably deleted, at that was it, it was gone! She looked high and
>> low, but it was gone. She was almost in tears when she told me what
>> happened. So I pointed out the clock icon with the anti-clockwise
>> arrow around and the Enter Time Machine menu item and 5 min later
>> we had her calendar back.
> 
> Time Machine has saved my sorry ass on several occasions. I have finally 
> learned the hard way to back up obsessively. I LOVE Time Machine! (Or 
> should that be "I LERRVE Time Machine"?) (Apologies to Woody Allen)
> 
> -- Peter
> 
> Peter M. Brigham
> pmb...@gmail.com
> http://home.comcast.net/~pmbrig
> 
> 
> ___
> 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: View scripts of my standalone?

2010-03-19 Thread Bob Sneidar
riiight. (wink wink)

Bob


On Mar 18, 2010, at 6:31 PM, Kay C Lan wrote:

> PS My wife really doesn't nag, she's great.

___
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: Possible virus warning

2010-03-19 Thread Bob Sneidar
That's common knowledge. What perhaps you didn't know is that they are THEM! 
You didn't hear that from me.

Bob


On Mar 18, 2010, at 10:38 PM, Scott Rossi wrote:

> Now world governments covering up the existence of of extra terrestrial
> life, THAT'S a conspiracy I can get behind...

___
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: "there is a folder" not case sensitive

2010-03-19 Thread Bob Sneidar
I think the partition has to be formatted case sensitive. HFS+ has this option, 
as well as some UNIX formats if I am not mistaken. I have never seen a case 
sensitive Windows partition. 

Bob


On Mar 19, 2010, at 5:53 AM, Sarah Reichelt wrote:

> Hi All,
> 
> Does anyone know a way to make "there is a folder" case sensitive?
> I have tried setting the caseSensitive to true but that doesn't help.
> 
> In this case, I have a list of folders from a case sensitive web site
> and there are two folders with the same name but one has an upper case
> letter.
> While this is not an ideal situation, it's not something I can
> dictate, but I have to be able to work with it.
> At the moment, it looks like I have to write my own "there is a
> folder" routine, unless anyone knows how to make it case-sensitive.
> 
> 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: Cursor questions

2010-03-19 Thread Trevor DeVore

On Mar 19, 2010, at 11:54 AM, Jeffrey Massung wrote:

After taking this to the next level and using my own image as a  
cursor... my cursor (a 16x16 imported PNG image) is turning into  
100% white when I set the cursor to it. The shape is correct, but  
just all the colors are white. I can't find anything in the  
documentation about this.


Any hints as to what I'm doing wrong?


http://lessons.runrev.com/spaces/lessons/buckets/784/lessons/6349-How-To-Create-a-Custom-Cursor

--
Trevor DeVore
Blue Mango Learning Systems
ScreenSteps: http://www.screensteps.com
Releasable Revolution Resources for Developers: 
http://revolution.bluemangolearning.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Cursor questions

2010-03-19 Thread Andre.Bisseret

Bonjour,

Le 19 mars 10 à 13:15, Peter Brigham MD a écrit :



On Mar 18, 2010, at 6:56 PM, Sarah Reichelt wrote:

Second, is it possible for me to detect that the mouse is over a  
link and change the cursor to something else (i.e. the hand icon/ 
cursor)? I know there's changes coming w/ 4.5 that look promising.  
I haven't bothered to download the developer preview as I really  
don't want to risk is, but if some of these concerns go away with  
4.5 and someone can just email me them (instead of breaking NDA on  
the list), that'd be fine, too. (mass...@gmail.com).


This doesn't require 4.5, so no NDA conflict here.

I put this in a card script and it seems to work fine:

on mouseMove
 if word 1 of the target = "field" then
if the textStyle of the mouseText contains "link" then
   lock cursor
   set the cursor to hand
else
   unlock cursor
end if
 end if

 pass mouseMove
end mouseMove


With browse tool choosen the handler above  works perfectly, but not  
if pointer tool is choosen: in this case one gets errors (for the  
second "if" line).


To avoid that,, seems that is necessary to include the case where the  
mouseText is empty.

 Something like the following:

on mouseMove
   if word 1 of the target = "field" then
  if the mouseText = empty then unlock cursor
  else
 if the textStyle of the mouseText contains "link" then
lock cursor
set the cursor to hand
 else
unlock cursor
 end if
  end if
   end if

   pass mouseMove
end mouseMove

By the way, generally I am using the following (thanks to the help of  
Éric Chatonet) which include the case of buttons and which works well


local tCode,
-
on mouseMove
  switch
  case "button" is in the target
ShowHandCursor #
break
  case the mouseText = empty --mouseText = empty -- important!
unlock cursor
break
  case "link" is in the textStyle of the mouseChunk
ShowHandCursor #
break
  default
ResetCursor #
  end switch
end mouseMove
--
on mouseLeave
  ResetCursor #
end mouseLeave
--
on ShowHandCursor
  set the cursor to hand
  lock cursor
end ShowHandCursor
--
on ResetCursor
   unlock cursor
end ResetCursor



I prefer to set the defaultcursor to hand or to empty instead of  
locking and setting the cursor. Whenever I've tried to use lock  
cursor I've ended up having intermittent frozen cursor problems.
did not notice such issue, but well, I am going to  pay attention to  
this
Also, you might want to put in a "if the locktext of the target  
then..." test, or you'll get the cursor changing over links in  
unlocked fields, and when the cursor changes to hand the user will  
think the link is clickable -- but it won't be.


-- Peter

Thank you Peter for this goog suggestion. I will keep it in mind if I  
have links in unlocked fields

You seem very and rightly "user-orented" ;-))

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: Cursor questions

2010-03-19 Thread Jeffrey Massung
After taking this to the next level and using my own image as a cursor... my 
cursor (a 16x16 imported PNG image) is turning into 100% white when I set the 
cursor to it. The shape is correct, but just all the colors are white. I can't 
find anything in the documentation about this. 

Any hints as to what I'm doing wrong?

Jeff M.___
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


DataGrid - headerTextFont does not clear previous selection

2010-03-19 Thread Mark Stuart

Hi all,

OS: WinXP
RunRev: 4.0 Build gm1

Anyone know why the DataGrid headerTextFont will not reset when BOTH the
font names are cleared to empty?
In my stack I allow the user to select the font name and size for the
DataGrid. Currently it is set ABIGAIL (the first in the list of font names),
and I'm trying to reset it to the default - whatever it is.

I changed to to another font, which it changed to, but then when I cleared
the selection, it went back to the ABIGAIL font. And how do I clear this
font to a default?
The stack font is Verdana 11.

I know one option and that is to delete the DataGrid and add a new one -
maybe.

Regards,
Mark Stuart
-- 
View this message in context: 
http://n4.nabble.com/DataGrid-headerTextFont-does-not-clear-previous-selection-tp1599511p1599511.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: View scripts of my standalone?

2010-03-19 Thread Peter Brigham MD

On Mar 18, 2010, at 9:31 PM, Kay C Lan wrote:


And then. rrrgghh! A calendar she'd be working with,
the most important of half a dozen calendars, for some reason she
inexplicably deleted, at that was it, it was gone! She looked high and
low, but it was gone. She was almost in tears when she told me what
happened. So I pointed out the clock icon with the anti-clockwise
arrow around and the Enter Time Machine menu item and 5 min later
we had her calendar back.


Time Machine has saved my sorry ass on several occasions. I have  
finally learned the hard way to back up obsessively. I LOVE Time  
Machine! (Or should that be "I LERRVE Time Machine"?) (Apologies  
to Woody Allen)


-- Peter

Peter M. Brigham
pmb...@gmail.com
http://home.comcast.net/~pmbrig


___
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: Cursor questions

2010-03-19 Thread Peter Brigham MD


On Mar 18, 2010, at 6:56 PM, Sarah Reichelt wrote:

Second, is it possible for me to detect that the mouse is over a  
link and change the cursor to something else (i.e. the hand icon/ 
cursor)? I know there's changes coming w/ 4.5 that look promising.  
I haven't bothered to download the developer preview as I really  
don't want to risk is, but if some of these concerns go away with  
4.5 and someone can just email me them (instead of breaking NDA on  
the list), that'd be fine, too. (mass...@gmail.com).


This doesn't require 4.5, so no NDA conflict here.

I put this in a card script and it seems to work fine:

on mouseMove
  if word 1 of the target = "field" then
 if the textStyle of the mouseText contains "link" then
lock cursor
set the cursor to hand
 else
unlock cursor
 end if
  end if

  pass mouseMove
end mouseMove


I prefer to set the defaultcursor to hand or to empty instead of  
locking and setting the cursor. Whenever I've tried to use lock cursor  
I've ended up having intermittent frozen cursor problems. Also, you  
might want to put in a "if the locktext of the target then..." test,  
or you'll get the cursor changing over links in unlocked fields, and  
when the cursor changes to hand the user will think the link is  
clickable -- but it won't be.


-- Peter

Peter M. Brigham
pmb...@gmail.com
http://home.comcast.net/~pmbrig


___
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: Possible virus warning

2010-03-19 Thread stephen barncard
Look, what really creeped me out was

1. The messages had 4 ATTACHMENTS. That is not allowed here. Suddenly the
message appears with them.
2. There were no normal headers indicating WHERE the email came from.
3. The name was unknown to me and it appeared as PERSONAL message to me.

Scott, I think you diminish the possible seriousness of the situation.  It
turned out to be nothing.

But how did it happen??



On 19 March 2010 01:04, J. Landman Gay  wrote:

> Mark Wieder wrote:
>
>> Scott-
>>
>> Thursday, March 18, 2010, 10:38:13 PM, you wrote:
>>
>>  Dudes, come on.  The guy wrote the list on 3/16 looking for help with Rev
>>> and JADE.  He probably tried to send along files he was working on by
>>> mistake.  As fun as it would be to uncover, there's no conspiracy here.
>>>
>>
>> The message did *not* go to the list. OK - if I go back a couple of
>> days I see the original query about JADE, but I don't know how to send
>> an offlist message to everyone on the list personally. There's still
>> something else at play here.
>>
>>
> It's possible he just copied some email addresses from the list.
>
>
> --
> Jacqueline Landman Gay | jac...@hyperactivesw.com
> HyperActive Software   | http://www.hyperactivesw.com
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
>



-- 
-
Stephen Barncard
currently in Fairhope AL
___
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] My first (iPhone) revlet is out in the cloud...

2010-03-19 Thread Mark Schonewille

Hans,

Just a quick note: a few minutes later now and it works again.

--
Best regards,

Mark Schonewille

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

Economy-x-Talk is always looking for new software development  
projects. Feel free to contact me for a quote.


Op 19 mrt 2010, om 14:02 heeft Rolf Kocherhans het volgende  
geschreven:


I am pleased to announce that I have just released my first test  
revlet into the open :-).



http://mobile.kangaroo.on-rev.com/


Several weeks ago I started programming for the iPhone, like many I  
was waiting for the alpha of revMobile to arrive, which now has :-).


I thought I would make a revlet to test stuff I wanted to do,  
because I
guessed, if it works on the web, it would hopefully work on the  
iPhone as well.



___
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] My first (iPhone) revlet is out in the cloud...

2010-03-19 Thread Mark Schonewille

Hi Hans,

I like your idea, but there are a few problems. I entered your name  
and saw a list of names during a fraction of a second. After that, I  
could still enter text, but no names appeared. I even reloaded the  
revlet, but that didn't help.


If I press return or enter, the return character is added to the  
search field.


The flash animation on the website is very Mac-unfriendly.

Funny that we had more or less the same idea:
http://economy-x-talk.com/iphonenc/
(Just a proof of concept, it isn't meant serious)

--
Best regards,

Mark Schonewille

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

Economy-x-Talk is always looking for new software development  
projects. Feel free to contact me for a quote.


Op 19 mrt 2010, om 14:02 heeft Rolf Kocherhans het volgende geschreven:

I am pleased to announce that I have just released my first test  
revlet into the open :-).



http://mobile.kangaroo.on-rev.com/


Several weeks ago I started programming for the iPhone, like many I  
was waiting for the alpha of revMobile to arrive, which now has :-).


I thought I would make a revlet to test stuff I wanted to do,  
because I
guessed, if it works on the web, it would hopefully work on the  
iPhone as well.


Also, if I get ready now with all the graphics etc. I will
be much faster when revMobile is ready for prime time :-).


The revlet I made accesses the phonebook directory from the  
University where I work:


http://www.phonebook.uzh.ch/


I just parse the html returned from a query and display the info in  
a nicer way.



PLEASE NOTE !

- The revlet is only optimised for MacOSX (Fonts) it will work on
 Windows, but does NOT look very nice !

- Everything is in German !

- The search routine starts after the 4th letter you enter.

- On the person’s card, you can click onto the words "Bau or  
Raum" (Working place) which then

 downloads a picture of the location where the person works.

- Alternatively you can click onto the address which lets Google  
Maps search for the location.


- Nifty is the last feature, which lets you export the contact info  
directly INTO YOUR LOCAL Address Book !!!





This is my first revlet for the public 


Do you like it ?


Cheers
Rolf


___
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


iPhone pre-alpha update

2010-03-19 Thread Heather Nagey

Dear List Folks,

We're excited to let you all know that we have churned out another  
update to the iPhone pre-alpha. We're rather proud of it, as we have  
added the following features and fixes:


- The orientation of the device can now be determined, and an  
application is notified when the orientation changes.

- An application can change its interface orientation at will.
- Basic support is present for core location - an application can  
request updates to the location of the device.
- An application can prompt the user to send an email, using the  
standard iPhone mail composer interface.
- Support has been added for 'specialFolderPath()' to allow easy  
fetching of 'standard' folders.
- A bug with file path 'root' problems has been fixed. All paths are  
now reported relative to the filesystem root, rather than the home  
directory.

- A bug with the mouseLoc returning an incorrect y-coord has been fixed.
- A bug with animated gifs not displaying correctly has been fixed.
- Disabled controls are no longer considered when working out the  
target of touch messages (just as it is for mouse messages)
- The answer command now returns the chosen button in the 'it'  
variable as it should


This is still designated a pre-alpha since the UI has not yet been  
added and you still can't build for the App store, but nonetheless,  
judging from the feedback we're getting from early purchasers, we  
think you'll find these features interesting, useful and fun!


Don't forget to check out our lessons area, which now has a dedicated  
revMobile section:


http://lessons.runrev.com/spaces/lessons/buckets/1004

If you've already purchased, you should now have an email from us  
letting you know how to get this update. If you haven't, and you want  
to know more, you can read all about revMobile here:


https://secure.runrev.com/store/browse/?product=RVSLMBLE

Remember you only have until the end of March now to purchase the  
special pre-order plus conference Simulcast/DVDs, these benefits will  
not be part of the package come April 1st.


As always if you have any questions about purchasing, email us at supp...@runrev.com 
.


Warm Regards,

Heather


Heather Nagey
Customer Services Manager
http://www.runrev.com/
RunRev - Software construction for everyone

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


[ANN] My first (iPhone) revlet is out in the cloud...

2010-03-19 Thread Rolf Kocherhans
I am pleased to announce that I have just released my first test revlet into 
the open :-).


http://mobile.kangaroo.on-rev.com/


Several weeks ago I started programming for the iPhone, like many I was waiting 
for the alpha of revMobile to arrive, which now has :-).

I thought I would make a revlet to test stuff I wanted to do, because I
guessed, if it works on the web, it would hopefully work on the iPhone as well.

Also, if I get ready now with all the graphics etc. I will
be much faster when revMobile is ready for prime time :-).


The revlet I made accesses the phonebook directory from the University where I 
work:

http://www.phonebook.uzh.ch/


I just parse the html returned from a query and display the info in a nicer way.


PLEASE NOTE !

- The revlet is only optimised for MacOSX (Fonts) it will work on
  Windows, but does NOT look very nice !

- Everything is in German !

- The search routine starts after the 4th letter you enter.

- On the person’s card, you can click onto the words "Bau or Raum" (Working 
place) which then
  downloads a picture of the location where the person works.

- Alternatively you can click onto the address which lets Google Maps search 
for the location.

- Nifty is the last feature, which lets you export the contact info directly 
INTO YOUR LOCAL Address Book !!!




This is my first revlet for the public 


Do you like it ?


Cheers
Rolf

___
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


"there is a folder" not case sensitive

2010-03-19 Thread Sarah Reichelt
Hi All,

Does anyone know a way to make "there is a folder" case sensitive?
I have tried setting the caseSensitive to true but that doesn't help.

In this case, I have a list of folders from a case sensitive web site
and there are two folders with the same name but one has an upper case
letter.
While this is not an ideal situation, it's not something I can
dictate, but I have to be able to work with it.
At the moment, it looks like I have to write my own "there is a
folder" routine, unless anyone knows how to make it case-sensitive.

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: Possible virus warning

2010-03-19 Thread Richmond Mathewson

 On 19/03/2010 13:27, Robert Brenstein wrote:

On 19.03.10 at 15:35 +0800 Kay C Lan apparently wrote:

DMGs (and the Mac Installer) are the standard way Macs distribute
software. Yes you could try some other methods, and that might be
easier for newbies, but those in the know will be thinking, not
normal, therefore alien conspiracy;-)


Indeed, DMG as means of installing on Macs has been around for ever, 
relatively speaking. DMG is a newer version of what Classic Mac users 
knew as IMG. A wave of people switching from Windows to OSX created a 
wave of complaints about installing by copying, due to their 
Windows-based habits. Apple's PKG installer (and its earlier variants) 
have been around also for ever as well as commercial installers like 
InstallerVise. Most programs don't need installers, so why bother? Mac 
users know how to drag to copy. Ex-Windows users have to learn. If 
somebody needs an installer, the developer can use one. As others 
mentioned, there is even one native to RunRev. Everyone needs to judge 
what their user base needs. There is no one-fits-all solution.


I find the comparisons of installing on Mac and Windows, like in the 
links from Richard, sadly funny. Multiple steps for Mac listed vs only 
3 steps for Windows conviniently ignore the fact that there are 
usually several steps within the windows installer. Silly.


All those lists comparing Windows with Mac, and then slagging one or the 
other off are silly,

because they don't address real computer issues.

I use Ubuntu Linux in my EFL school for the following reasons:

1. tatty-old PIII PCs run faster with Ubuntu 5.10 than with Windows XP 
and don't crash.


2. I couldn't afford licences for Windows XP for all my PCs

The first reason is a real computer reason; the second one is only 
related to my bank account;


the 2 types of reasons should not be confused or used to back up each other.



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

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



___
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: Possible virus warning

2010-03-19 Thread Robert Brenstein

On 19.03.10 at 15:35 +0800 Kay C Lan apparently wrote:

DMGs (and the Mac Installer) are the standard way Macs distribute
software. Yes you could try some other methods, and that might be
easier for newbies, but those in the know will be thinking, not
normal, therefore alien conspiracy;-)


Indeed, DMG as means of installing on Macs has been around for ever, 
relatively speaking. DMG is a newer version of what Classic Mac users 
knew as IMG. A wave of people switching from Windows to OSX created a 
wave of complaints about installing by copying, due to their 
Windows-based habits. Apple's PKG installer (and its earlier 
variants) have been around also for ever as well as commercial 
installers like InstallerVise. Most programs don't need installers, 
so why bother? Mac users know how to drag to copy. Ex-Windows users 
have to learn. If somebody needs an installer, the developer can use 
one. As others mentioned, there is even one native to RunRev. 
Everyone needs to judge what their user base needs. There is no 
one-fits-all solution.


I find the comparisons of installing on Mac and Windows, like in the 
links from Richard, sadly funny. Multiple steps for Mac listed vs 
only 3 steps for Windows conviniently ignore the fact that there are 
usually several steps within the windows installer. Silly.


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


[OT] Richmond Hill

2010-03-19 Thread Richmond Mathewson

 On 19/03/2010 10:46, David Glasgow wrote:



From: Richmond Mathewson
Date: 18 March 2010 6:16:41 am GMT
To: How to use Revolution
Subject: Re: Fit Content
Reply-To: How to use Revolution


On 17/03/2010 22:06, dunb...@aol.com wrote:

Richard.

The formattedWidth gives you an entry to this...

Craig Newman

Thanks.

Who is Richard?

I know the Sweet Lass of Richard Hill



Obviously Richmond Hill is much more famous than Craig's "Richard";

because Henry Purcell managed "On the brow of Richmond Hill" (1692),

some Australians (well, the Grundy family at least) liked him:

http://en.wikipedia.org/wiki/Richmond_Hill_(TV_series)  ,

and one can listen to "The sweet lass of Richmond Hill" here:

http://www.ukmagic.co.uk/song_english/music/richmond.mid

Richmond Hill is the only view 'legally' protected by an Act of the
so-called 'UK' parliament:

http://en.wikipedia.org/wiki/Richmond_Hill,_London

___
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: Sweet Richmond....

2010-03-19 Thread Richmond Mathewson

 On 19/03/2010 10:46, David Glasgow wrote:



On 17/03/2010 22:06, dunb...@aol.com wrote:

Richard.

The formattedWidth gives you an entry to this...

Craig Newman

Thanks.

Who is Richard?

I know the Sweet Lass of Richard Hill


That's funny, I thought Richard Hill was gay . . .  :)
___
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


Sweet Richmond....

2010-03-19 Thread David Glasgow


> From: Richmond Mathewson 
> Date: 18 March 2010 6:16:41 am GMT
> To: How to use Revolution 
> Subject: Re: Fit Content
> Reply-To: How to use Revolution 
> 
> 
> On 17/03/2010 22:06, dunb...@aol.com wrote:
>> Richard.
>> 
>> The formattedWidth gives you an entry to this...
>> 
>> Craig Newman
> Thanks.
> 
> Who is Richard?

I know the Sweet Lass of Richard Hill

:-D

___
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: Possible virus warning

2010-03-19 Thread Kay C Lan
I think this all runs full circle to some comments I made on another
thread about DMGs for Mac distribution.

We find ourselves talking about alien conspiracies only because we
know what is normal on this List. A newbie could have easily opened
the email and it's attachment, as they'd open any other email and
attachment. Why can't you post attachments to the List, all other
emails can have attachments, it would be so handy - but that's not
important, the List standard is no attachments.

In truth, Zeeshan Aamir may simply have tried to be helpful by posting
his stack to individuals and thereby overcome the List limitation.

DMGs (and the Mac Installer) are the standard way Macs distribute
software. Yes you could try some other methods, and that might be
easier for newbies, but those in the know will be thinking, not
normal, therefore alien conspiracy;-)

This unsolicited attachment could be benign or malicious, so it
highlights the importance of standards, even if their not the best or
the most convenient, and by consistently following standards people
will eventually learn what is normal, and what isn't, and that's a
good thing.

A better Mac installer might simply be better documentation of the
standard process. A READ ME, which I accept no-one reads, with
step-by-step instructions plus images of your .dmg file, and then the
disk itself, and then the drag process, can't be too hard to create,
and hopefully not too difficult to follow along.

Another Mac $ worth ;-)

On Fri, Mar 19, 2010 at 2:04 PM, J. Landman Gay
 wrote:
> Mark Wieder wrote:
>>
>> Scott-
>>
>> Thursday, March 18, 2010, 10:38:13 PM, you wrote:
>>
>>> Dudes, come on.  The guy wrote the list on 3/16 looking for help with Rev
>>> and JADE.  He probably tried to send along files he was working on by
>>> mistake.  As fun as it would be to uncover, there's no conspiracy here.
>>
>> The message did *not* go to the list. OK - if I go back a couple of
>> days I see the original query about JADE, but I don't know how to send
>> an offlist message to everyone on the list personally. There's still
>> something else at play here.
>>
>
> It's possible he just copied some email addresses from the list.
>
> --
> Jacqueline Landman Gay         |     jac...@hyperactivesw.com
> HyperActive Software           |     http://www.hyperactivesw.com
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
>
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution