Re: Notification of internet use in Rev standalone

2008-10-04 Thread Rick Harrison

Hi Paul,

Isn't this like spyware?

I'm sure there is probably a way to do it, but why do you want to do it?
If you are looking for ways to protect your software there are a few
methods you can use that don't involve creating spyware.

Let me know!

Rick


On Oct 4, 2008, at 4:48 PM, Paul Gabel wrote:


Hi everybody:

My stack structure is a mainstack splash screen and three substacks.  
Within a Rev standalone, is there any way to be notified if the user  
opens a web browser or attempts to write an email with a non-Rev  
application? Is there any way to prevent it?


"on resumeStack" is not helpful in my case, as, if placed in the  
mainstack (which is hidden by now), it is not triggered when I come  
back from a web browser. I can't place "on resumeStack" in a  
substack, because I am constantly going back and forth between them,  
and, even in a standalone, it is triggered.


I would greatly appreciate any suggestions (or even being told to  
forget the whole idea).


Paul Gabel
Mac OS X 10.5.5
Rev 3.0
___
use-revolution mailing list
use-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: Faxing (again)

2008-10-04 Thread william humphrey
I notice that in OS X 10.4.11 the way you send a fax is part of the PDF
sub-menu when you print. Automating this process would require knowing how
set these when using a print command from within Rev as there is no built-in
Rev functions for this.

On Sat, Oct 4, 2008 at 6:35 PM, william humphrey <[EMAIL PROTECTED]>wrote:

> Hey did anyone ever answer this question? I'd like to do the same thing
> using MAC OS X and a laptop that has a modem.
>
>
> On Fri, Jun 27, 2008 at 3:11 PM, Mikey <[EMAIL PROTECTED]> wrote:
>
>> All,
>> About a year ago I was asking about faxing from RR, and the one or two
>> responses I got essentially said you just set the printer to the fax
>> driver
>> and go - ok, but how do you set the sub-preferences, e.g. the destination,
>> cover page, etc.?
>>
>> --
>> Jonathan Swift  - "May you live every day of your life."
>> ___
>> use-revolution mailing list
>> use-revolution@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your
>> subscription preferences:
>> http://lists.runrev.com/mailman/listinfo/use-revolution
>>
>
>
>
> --
> http://www.bluewatermaritime.com
>



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


Re: Faxing (again)

2008-10-04 Thread william humphrey
Hey did anyone ever answer this question? I'd like to do the same thing
using MAC OS X and a laptop that has a modem.

On Fri, Jun 27, 2008 at 3:11 PM, Mikey <[EMAIL PROTECTED]> wrote:

> All,
> About a year ago I was asking about faxing from RR, and the one or two
> responses I got essentially said you just set the printer to the fax driver
> and go - ok, but how do you set the sub-preferences, e.g. the destination,
> cover page, etc.?
>
> --
> Jonathan Swift  - "May you live every day of your life."
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
>



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


Re: Notification of internet use in Rev standalone

2008-10-04 Thread Phil Davis

Hi Paul,

The "suspend" and "resume" messages might be more what you're looking 
for. They're sent when your Rev app loses/gains focus as the frontmost 
app currently running.


There's always shell() to get info from the OS. For example, to get all 
apps in the "Applications" folder that are running, you can do this:


on mouseUp
  put shell("ps -A") into tData
  filter tData with "*/Applications/*"
  put tData into fld 1
end mouseUp

Then you would at least what apps are running.


On the Mac there's probably something you can do with AppleScript to 
find out what's running, but someone else will have to address that.


The only way I can think of to really prevent net access outside of Rev 
is to run a proxy server on the client that is set up to do that.


If you'll be using shell() much, you might find this Rev plug-in useful:
   http://pdslabs.net/stacks/Shell_Command_Help.rev.zip

HTH -
Phil Davis


Paul Gabel wrote:

Hi everybody:

My stack structure is a mainstack splash screen and three substacks. 
Within a Rev standalone, is there any way to be notified if the user 
opens a web browser or attempts to write an email with a non-Rev 
application? Is there any way to prevent it?


"on resumeStack" is not helpful in my case, as, if placed in the 
mainstack (which is hidden by now), it is not triggered when I come 
back from a web browser. I can't place "on resumeStack" in a substack, 
because I am constantly going back and forth between them, and, even 
in a standalone, it is triggered.


I would greatly appreciate any suggestions (or even being told to 
forget the whole idea).


Paul Gabel
Mac OS X 10.5.5
Rev 3.0 

--
Phil Davis

PDS Labs
Professional Software Development
http://pdslabs.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: Mac vs. Windows

2008-10-04 Thread Chipp Walters
I use the @ sign all the time when accessing ftp on Windows XP and Vista.
I'm not sure what your problem is.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Notification of internet use in Rev standalone

2008-10-04 Thread Paul Gabel

Hi everybody:

My stack structure is a mainstack splash screen and three substacks.  
Within a Rev standalone, is there any way to be notified if the user  
opens a web browser or attempts to write an email with a non-Rev  
application? Is there any way to prevent it?


"on resumeStack" is not helpful in my case, as, if placed in the  
mainstack (which is hidden by now), it is not triggered when I come  
back from a web browser. I can't place "on resumeStack" in a substack,  
because I am constantly going back and forth between them, and, even  
in a standalone, it is triggered.


I would greatly appreciate any suggestions (or even being told to  
forget the whole idea).


Paul Gabel
Mac OS X 10.5.5
Rev 3.0
___
use-revolution mailing list
use-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 vs. Windows

2008-10-04 Thread Melitón Cardona Torres

First of all, thanks to all of you.

The problem is now solved:

instead of

[EMAIL PROTECTED]

one should use (in Windows)

ftp_celerlex%40celerlex.com

No comment.

Ton

___
use-revolution mailing list
use-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: Time for a break

2008-10-04 Thread J. Landman Gay

Mark Wieder wrote:

You know you've been doing too much coding when:

...you're in the middle of writing an email message and you press the
tab key to format a paragraph...
  


LOL!! I've done that! In BBEdit. :) And then was puzzled for a moment 
when it didn't work. That's so funny.


--
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: Time for a break

2008-10-04 Thread Dave Cragg


On 4 Oct 2008, at 16:51, Mark Wieder wrote:


You know you've been doing too much coding when:

...you're in the middle of writing an email message and you press the
tab key to format a paragraph...



Or when you hit Enter twice to close a window.

Dave


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


Re: Time for a break

2008-10-04 Thread Petrides, M.D. Marian

ROTFLWTIME
On Oct 4, 2008, at 10:51 AM, Mark Wieder wrote:


You know you've been doing too much coding when:

...you're in the middle of writing an email message and you press the
tab key to format a paragraph...

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


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


Time for a break

2008-10-04 Thread Mark Wieder
You know you've been doing too much coding when:

...you're in the middle of writing an email message and you press the
tab key to format a paragraph...
  
-- 
-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: Mac vs. Windows

2008-10-04 Thread Dave Cragg


On 3 Oct 2008, at 17:36, Melitón Cardona Torres wrote:


I use this:

put "ftp://[EMAIL PROTECTED]:[EMAIL PROTECTED]/" into gNewURL

and I get a connection to the FTP in the Mac compilation, but not in  
the Windows one.


Any ideas?


Try using urlEncode() on the name and password parts.

Ex:

put urlEncode("[EMAIL PROTECTED]") into tName
put urlEncode("tkeyx33") into tPass
put "ftp://"; & tName & ":" & tPass & "ftp.company.com/" into gNewUrl

But I'm not sure why your example would work on Mac and not Windows.

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


Re: Mac vs. Windows

2008-10-04 Thread Mark Schonewille

Ton,

You already posted this question. It would be useful if you quoted the  
previous message and kept the subject of the thread unchanged until  
the problem is solved.


What kind of error do you get? Is the result empty, after issueing the  
command? What syntax have you tried to check for problems?


--
Best regards,

Mark Schonewille

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

Benefit from our inexpensive hosting services. See http://economy-x-talk.com/server.html 
 for more info.


On 4 okt 2008, at 10:54, Melitón Cardona Torres wrote:


A real mystery:

put "ftp://[EMAIL PROTECTED]:[EMAIL PROTECTED]/" into  
myURL


makes a connection in a Mac compilation, but not in a Windows one.

Yet, if a compare the string with the mactoISO of the string, they  
are identical.


How come one connects and the other (Windows) does not?

Any ideas or is it a bug?

Thanks in advance

Ton


___
use-revolution mailing list
use-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 vs. Windows

2008-10-04 Thread Richard Gaskin

Melitón Cardona Torres wrote:


A real mystery:

  put "ftp://[EMAIL PROTECTED]:[EMAIL PROTECTED]/" into  
myURL


makes a connection in a Mac compilation, but not in a Windows one.

Yet, if a compare the string with the mactoISO of the string, they are  
identical.


How come one connects and the other (Windows) does not?

Any ideas or is it a bug?


Could it be that Windows or some third-party utility is preventing URLs 
with embedded passwords?


I know MSIE started blocking web pages with embedded passwords some 
years ago.  I wonder if they've extended that to the OS level, perhaps 
overidable in a Control Panel or some such.  Just a hunch.


--
 Richard Gaskin
 Managing Editor, revJournal
 ___
 Rev tips, tutorials and more: http://www.revJournal.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Mac vs. Windows

2008-10-04 Thread Melitón Cardona Torres

A real mystery:

 put "ftp://[EMAIL PROTECTED]:[EMAIL PROTECTED]/" into  
myURL


makes a connection in a Mac compilation, but not in a Windows one.

Yet, if a compare the string with the mactoISO of the string, they are  
identical.


How come one connects and the other (Windows) does not?

Any ideas or is it a bug?

Thanks in advance

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


Keyboard conversancy.

2008-10-04 Thread Richmond Mathewson
Having an awful problem with children who are not conversant with the standard 
English-speaking keyboard layout (QWERTYUIOP); this slowing down their use of 
my programs for content reinforcement (fancy terminology for Grammar practise).

Popped together a program to help them become conversant with the keyboard 
which involved making an alphabet of KeyCaps. The images are now available in 
the FILES section; there is a sample in the PHOTOS section of:

http://groups.yahoo.com/group/RMimages/?yguid=254544547

the stack "KEYBOARDER.rev" is available via revOnline under 'Richmond'.

The stack only has proviso for practising lower-case letters; however it can be 
easily adapted for whatever (punctuation, numbers, etc.) is required.

sincerely, Richmond Mathewson.


A Thorn in the flesh is better than a failed Systems Development Life Cycle.




___
use-revolution mailing list
use-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: AW: Slow down of the 3.0 IDE

2008-10-04 Thread Horst

Hey Malte,

That's the trick! Speeds up a lot! Nice to know, that there are some experts
somewhere :)

Hey Tiemo, now it's funny to work again. Thanks for opening that question
again :) "Steter Tropfen höhlt den Stein"

Horst 
 

Tiemo Hollmann TB wrote:
> 
> Wow, Malte, you are a 3 star expert :)
> That was the clue, now everything runs like a canon ball :)
> Obviously the prefs wanted to do something with any old plugins I had
> bound
> sometimes in the past but deleted the wrong way...
> Many thanks - you saved my day!
> Tiemo
> 
>> -Ursprüngliche Nachricht-
>> Von: [EMAIL PROTECTED] [mailto:use-revolution-
>> [EMAIL PROTECTED] Im Auftrag von Malte Brill
>> Gesendet: Donnerstag, 2. Oktober 2008 10:05
>> An: use-revolution@lists.runrev.com
>> Betreff: Re: Slow down of the 3.0 IDE
>> 
>> Tiemo,
>> 
>> it might be worth a try to delete revPreferences.rev (while rev is
>> closed)
>> 
>> In the messagebox type:
>> 
>> put the filename of stack "revPreferences"
>> 
>> to get the full path. Now close rev to delete that file and restart.
>> But maybe you tried that already?
>> 
>> All the best,
>> 
>> Malte
>> ___
>> use-revolution mailing list
>> use-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
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Slow-down-of-the-3.0-IDE-tp19774666p19809843.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