Re: Attempting to troubleshoot my connection to this list

2008-08-01 Thread Heather Nagey

Didn't get your email!

I'll take a look at your subscription settings, but most likely its a  
spam filter somewhere at your end...


cheers

Heather


On Aug 1, 2008, at 2:45 AM, Shari wrote:

Sorry for the intrude.  My connection to the list broke and I'm  
attempting to repair it.  Even mailing the listmom failed, assuming  
that email to me didn't come thru either.


I miss you guys!

Shari
--
  Dogs and bears, sports and cars, and patriots t-shirts
  http://www.villagetshirts.com
 WlND0WS and MAClNT0SH shareware games
 http://www.gypsyware.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your  
subscription preferences:

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



Heather Nagey
Customer Services Manager
Runtime Revolution Ltd
www.runrev.com



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


My Notepad Style Project

2008-08-01 Thread H Baric
Hi all, this is my first post. Hope it works!

I'm making a very simple Text File Editor, based pretty much exactly on 
Window's Notepad, for the sake of learning.

I've been trying to find a way to set the Edit field to non-formatted text when 
copying and pasting text from web-pages and other applications for example. 

What would be the best way to ensure that the editing field cannot be formatted 
in any way (like Notepad and other basic text editors)? 

Is it possible? How (and where) would I script this? Thanks in advance :)

Cheers, 
Heather
___
use-revolution mailing list
use-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: My Notepad Style Project

2008-08-01 Thread Eric Chatonet

Bonjour Heather,

Welcome to the list :-)

First you have to check the clipboard contents to accept text only:
if the clipboard is "text" then...
Then use the clipboardData["text"] that is unformatted text:
put the clipboardData["text"] into fld < Edit field>

To handle the paste shortcut:

on commandKeyDown pKey
  if pKey = "v" then...
  else pass commandKeyDown
end commandKeyDown

You can use the pasteKey message also but it will work in a  
standalone only.
Last but not least, you'll have to struggle with the selectedChunk to  
paste at the right place or replace some selected text.

Good luck :-)

Le 1 août 08 à 10:27, H Baric a écrit :


Hi all, this is my first post. Hope it works!

I'm making a very simple Text File Editor, based pretty much  
exactly on Window's Notepad, for the sake of learning.


I've been trying to find a way to set the Edit field to non- 
formatted text when copying and pasting text from web-pages and  
other applications for example.


What would be the best way to ensure that the editing field cannot  
be formatted in any way (like Notepad and other basic text editors)?


Is it possible? How (and where) would I script this? Thanks in  
advance :)


Cheers,
Heather


Best regards from Paris,
Eric Chatonet.

Plugins and tutorials for Revolution: http://www.sosmartsoftware.com/
Email: [EMAIL PROTECTED]/



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


Re: Thanks, Joe

2008-08-01 Thread Luis
Check to see if your ISP is filtering. They may have 'upgraded' their  
AV/Spam solutions.


Cheers,

Luis.


On 1 Aug 2008, at 03:09, Shari wrote:

Still not working.  You guys are getting me but I'm not receiving.  
My filters have every known version of Rev in it to accept, but no  
go.  I'm totally baffled.


At least I know I can post a question and troll the archives for  
answers :-)


Shari
--
  Dogs and bears, sports and cars, and patriots t-shirts
  http://www.villagetshirts.com
 WlND0WS and MAClNT0SH shareware games
 http://www.gypsyware.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your  
subscription preferences:

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



___
use-revolution mailing list
use-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: My Notepad Style Project

2008-08-01 Thread H Baric
Hi Eric, thanks for your help, it works perfectly :)

Well, this is what I ended up using (in the stack script)
Can you see if there is any problem writing it like this?
I'm still VERY new to scripting :D:

on commandKeyDown pKey

   if pKey = "v" then

  if the clipboard is "text" then

  put the clipboardData[text] into field "Edit"

  end if

   else pass commandKeyDown

end commandKeyDown


Yes, and er now to work out how to  handle the replacing etc. Ack. So many 
things to think about isn't there hehe... :D

Heather

- Original Message - 
From: "Eric Chatonet" <[EMAIL PROTECTED]>
To: "How to use Revolution" 
Sent: Friday, August 01, 2008 6:47 PM
Subject: Re: My Notepad Style Project


Bonjour Heather,

Welcome to the list :-)

First you have to check the clipboard contents to accept text only:
if the clipboard is "text" then...
Then use the clipboardData["text"] that is unformatted text:
put the clipboardData["text"] into fld < Edit field>

To handle the paste shortcut:

on commandKeyDown pKey
   if pKey = "v" then...
   else pass commandKeyDown
end commandKeyDown

You can use the pasteKey message also but it will work in a
standalone only.
Last but not least, you'll have to struggle with the selectedChunk to
paste at the right place or replace some selected text.
Good luck :-)

Le 1 août 08 à 10:27, H Baric a écrit :

> Hi all, this is my first post. Hope it works!
>
> I'm making a very simple Text File Editor, based pretty much
> exactly on Window's Notepad, for the sake of learning.
>
> I've been trying to find a way to set the Edit field to non-
> formatted text when copying and pasting text from web-pages and
> other applications for example.
>
> What would be the best way to ensure that the editing field cannot
> be formatted in any way (like Notepad and other basic text editors)?
>
> Is it possible? How (and where) would I script this? Thanks in
> advance :)
>
> Cheers,
> Heather

Best regards from Paris,
Eric Chatonet.

Plugins and tutorials for Revolution: http://www.sosmartsoftware.com/
Email: [EMAIL PROTECTED]/



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

___
use-revolution mailing list
use-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: My Notepad Style Project

2008-08-01 Thread Eric Chatonet

Bonjour Heather,

Glad to help you :-)
Your handler is perfect.

About inserting or replacing text have a look at selectedField,  
selectedChunk and selectedText functions in the docs.
When you will master that you might think about implementing drag and  
drop text into your "Edit" field:

Then you will have something more powerful than Note Pad :-)

Le 1 août 08 à 12:14, H Baric a écrit :


Hi Eric, thanks for your help, it works perfectly :)

Well, this is what I ended up using (in the stack script)
Can you see if there is any problem writing it like this?
I'm still VERY new to scripting :D:

on commandKeyDown pKey

   if pKey = "v" then

  if the clipboard is "text" then

  put the clipboardData[text] into field "Edit"

  end if

   else pass commandKeyDown

end commandKeyDown


Yes, and er now to work out how to  handle the replacing etc. Ack.  
So many

things to think about isn't there hehe... :D

Heather

- Original Message -
From: "Eric Chatonet" <[EMAIL PROTECTED]>
To: "How to use Revolution" 
Sent: Friday, August 01, 2008 6:47 PM
Subject: Re: My Notepad Style Project


Bonjour Heather,

Welcome to the list :-)

First you have to check the clipboard contents to accept text only:
if the clipboard is "text" then...
Then use the clipboardData["text"] that is unformatted text:
put the clipboardData["text"] into fld < Edit field>

To handle the paste shortcut:

on commandKeyDown pKey
   if pKey = "v" then...
   else pass commandKeyDown
end commandKeyDown

You can use the pasteKey message also but it will work in a
standalone only.
Last but not least, you'll have to struggle with the selectedChunk to
paste at the right place or replace some selected text.
Good luck :-)

Le 1 août 08 à 10:27, H Baric a écrit :


Hi all, this is my first post. Hope it works!

I'm making a very simple Text File Editor, based pretty much
exactly on Window's Notepad, for the sake of learning.

I've been trying to find a way to set the Edit field to non-
formatted text when copying and pasting text from web-pages and
other applications for example.

What would be the best way to ensure that the editing field cannot
be formatted in any way (like Notepad and other basic text editors)?

Is it possible? How (and where) would I script this? Thanks in
advance :)

Cheers,
Heather



Best regards from Paris,
Eric Chatonet.

Plugins and tutorials for Revolution: http://www.sosmartsoftware.com/
Email: [EMAIL PROTECTED]/



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


Re: list of USB drivers

2008-08-01 Thread -= JB =-

Hi Phil,

Thank you for the info and code.

-=>JB<=-



On Jul 31, 2008, at 7:52 PM, Phil Davis wrote:


Hi JB,

-= JB =- wrote:

Hi Phil,

I tried it and when I click the button to list the USB drives
the field on the left gets a blue selection line at the top
and nothing else happens.


That means the library didn't find any mounted USB mass storage  
devices.




In fact it was your code to list the USB3 devices in the
Scripter's Scrapbook that I got the shell command from.
That code would not work for me either.

I have Mac OS X 10.4.11 on a G4 AGP.

thanks, if you know how to fix it I would be interested.

Another thing. do you know how to access a USB device
with only the info it gets.


Not really, unless the volume name is included in the library output.


How do you properly write the
line to access it.  I know when I list the drivers I have a
keyspan serial and the info the system profiler provides
is not the same as if I list the drivers.  I am pretty sure I
need to use the info from listing the drivers.  Is the thing
it needs to show as a volume or be listed with the drivers
to be able to access a USB device that shows up?

-=>JB<=-


Drivers are useful if you're trying to interact with a USB  
communications class device (like a USB board that controls some  
external machine or process), but not if you want to read/write  
data to/from a USB mass storage device.


Some USB mass storage devices (specifically some digital cameras)  
use Picture Transfer Protocol (PTP) to transfer images to  
computers; devices that use PTP don't show up in Revs "the volumes"  
list.


Here's a function based on one written by Dar Scott & Ken Ray a few  
years ago. It will give you more info about available drivers than  
driverNames(). I use it to detect what USB communications class  
devices are connected. Maybe it will help. Watch for line wraps!



function deviceNames
  switch the platform
 case "MacOS"
return _macDeviceNames()
 break
 default
answer "Not supported."
exit to top
 break
  end switch
end deviceNames


function _macDeviceNames
  local theNames="", ioregOutput, skipLines, temp
  local IOTTYDevice, IODialinDevice, IOCalloutDevice
  set the hideConsoleWindows to true
  put shell("ioreg -n IOSerialBSDClient") into ioregOutput
  repeat forever
 put lineOffset("IOSerialBSDCLient",ioregOutput) into skipLines
 if skipLines is zero then return thenames
 delete line 1 to skipLines of ioregOutput
 -- Get all the data between the braces
 put char(offset("{",ioregOutput)) to (offset("}",ioregOutput))  
of ioregOutput into temp

 get matchText(temp,"\"IOTTYDevice\" = \"(.*?)\"",IOTTYDevice)
 if it is not true then next repeat
 get matchText(temp,"\"IODialinDevice\" = \"(.*?) 
\"",IODialinDevice)

 if it is not true then next repeat
 get matchText(temp,"\"IOCalloutDevice\" = \"(.*?) 
\"",IOCalloutDevice)

 if it is not true then next repeat
 put IOTTYDevice,IODialinDevice,IOCalloutDevice & lineFeed  
after theNames

  end repeat
end _macDeviceNames








On Jul 31, 2008, at 3:48 PM, Phil Davis wrote:


Hi JB,

Try this:
  http://pdslabs.net/stacks/libUsbDrive.rev.zip

It uses system_profiler on the Mac to get drive info, but  
presents it more succinctly.


Phil Davis


-= JB =- wrote:

This will provide some info about the USB on Mac OS X;

on mouseUp
put shell("system_profiler SPUSBDataType") into tProfile
put tProfile
end mouseUp

-=>JB<=-



On Jul 30, 2008, at 5:13 PM, -= JB =- wrote:


Maybe that is not the answer.  I found out it shows network
all the time when I use put the volumes.

So how do I identify a list of USB devices?

-=>JB<=-



On Jul 30, 2008, at 5:08 PM, -= JB =- wrote:


Here is the answer:

put the volumes

-=>JB<=-


On Jul 30, 2008, at 5:02 PM, -= JB =- wrote:


I realize my question below was not asked properly because I
should have said USB devices and not drivers.

Use the open driver command to communicate with usb devices,  
devices attached to a serial port other than the modem and  
printer port, and other peripheral devices.


I would like to know how to find the names of USB devices  
hooked up

to my computer.

-=>JB<=-


On Jul 30, 2008, at 4:18 PM, -= JB =- wrote:

I can get a list of the available serial drivers by using  
the driverNames.

How do I get a list of USB drivers?

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

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



___
use-revolution mailing list
use-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
u

Re: list of USB drivers

2008-08-01 Thread -= JB =-

Thanks again to you and Sarah, for the PDF. about USB and keyspan.
I would have replied from the original post but I deleted by accident &
then had to use the archives to retrieve the link.

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


Time Server

2008-08-01 Thread Mark Schonewille

Hello,

A little freeware library with scripts to retrieve the time from a  
time server is available from the Economy-x-Talk website. It is called  
Network Time Protocol over Telnet and is available from the developers  
section of the website. Click on the Developers button in the left  
margin and find the stack at the bottom of the page.


--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
http://economy-x-talk.com
http://www.salery.biz

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


___
use-revolution mailing list
use-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 Server

2008-08-01 Thread Mark Schonewille

Hi Andre,

Thanks for the advice. I'll consider it for the next version. I'm  
going to change it anyway, because I want to hook directly into the  
network time protocol and avoid using telnet.


Currently, I am only retrieving the time. I'm slowly getting familiar  
with the protocol and will probably apply the necessary math at some  
point.


--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
http://economy-x-talk.com
http://www.salery.biz

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


On 29 jul 2008, at 06:16, Andre Garzia wrote:


Mark,

I've implemented a couple servers for tiny protocols and have looked a
little into SNTP some years ago. Are you aware of the latency issue
right and the math you need to do to compute the delay between the
server answering stuff and you actually receiving it. I've looked into
the RFC and some other docs and decided against implementing SNTP
readers, the math was kinda confusing.

As for the line:

read from socket theServer with message "rcvTime"

you might want to change that to some other command with some
termination clause, I can't recall the protocol of SNTP but use
something like read ... until or read for ## bytes and use a buffered
read operation. I've found that plain read calls can block till
eternity and should be avoided.

Andre



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


Re: My Notepad Style Project

2008-08-01 Thread Jan Schenkel
--- H Baric <[EMAIL PROTECTED]> wrote:
> Hi all, this is my first post. Hope it works!
> 
> I'm making a very simple Text File Editor, based
> pretty much exactly on Window's Notepad, for the
> sake of learning.
> 
> I've been trying to find a way to set the Edit field
> to non-formatted text when copying and pasting text
> from web-pages and other applications for example. 
> 
> What would be the best way to ensure that the
> editing field cannot be formatted in any way (like
> Notepad and other basic text editors)? 
> 
> Is it possible? How (and where) would I script this?
> Thanks in advance :)
> 
> Cheers, 
> Heather
> 

Hi Heather,

Welcome to the Revolution community - you'll be sure
to receive lots of help as you're getting to know the
product we all love.

The one-line solution to strip the style information
from a text field is:
put the text of field "MyField" into field "MyField"

Now, if you want this to happen whenever the user
pastes more text into a field or drags-and-drops from
another field or another application, you'd have a
script similar to this:
##
on pasteKey
  send "StripStyles" to me in 0 milliseconds
  pass pasteKey
end pasteKey
on dragDrop
  send "StripStyles" to me in 0 milliseconds
  pass dragDrop
end dragDrop
on StripStyles
  -- save the current selection
  put the selectedChunk of me into tSelectedChunk
  -- strip the style information
  put the text of me into me
  -- restore the selection
  select tSelectedChunk
end StripStyles
##

Hope this helped,

Jan Schenkel.

Quartam Reports & PDF Library for Revolution


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


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


Re: Database Query Builder

2008-08-01 Thread Jan Schenkel
--- Kurt Kaufman <[EMAIL PROTECTED]> wrote:
> Is the Database Query Builder designed to be used
> only within the IDE,  
> or can its functionality be exported into a
> standalone application (as  
> a sort of "core" for a stack --> standalone)?
> Sorry if this is a FAQ; I haven't fully explored
> this area of  
> Revolution yet.
> 
> -Kurt
> 

Hi Kurt,

As the Database Query Builder is jhust another stack,
you can take it apart and look at its scripts; while
it does have some IDE-specific dependencies, you can
learn enough to make your own derivative.
What exactly are you trying to accomplish?

Jan Schenkel.

Quartam Reports & PDF Library for Revolution


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


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


Re: Attempting to troubleshoot my connection to this list

2008-08-01 Thread Shari

Heather,

I solved it.  I don't use automated spam filters but roll my own.

The issue was this:  I have a list of acceptable To addresses, so 
that someone cannot spam my domains with [EMAIL PROTECTED], 
[EMAIL PROTECTED], sort of thing.  So if the incoming mails 
are not addressed to the right email addy, they go poof.


I don't know how it happened but the incoming list emails added my 
name in front of the email addy.


"[EMAIL PROTECTED]" became "Shari <[EMAIL PROTECTED]>" and 
that made it fail.


Shari



Didn't get your email!

I'll take a look at your subscription settings, but most likely its 
a spam filter somewhere at your end...


cheers

Heather



--
  Dogs and bears, sports and cars, and patriots t-shirts
  http://www.villagetshirts.com
 WlND0WS and MAClNT0SH shareware games
 http://www.gypsyware.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Database Query Builder

2008-08-01 Thread Kurt Kaufman
Thanks, Jan.  I'm looking into the possibility of redesigning an  
accounts-receivable program that currently is written entirely in  
Revolution.  I have it designed to allow a limited form of multi-user  
access, but it's cumbersome, and a switch to a SQL database would  
leverage that arrangement's natural advantages.
To start, I'll read the manual, do the tutorials, etc. before I ask  
additional questions.


thanks again,
Kurt
___
use-revolution mailing list
use-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: Attempting to troubleshoot my connection to this list

2008-08-01 Thread Stephen Barncard

So for anyone to email you, they have to OPT IN ? Pretty exclusive club! :)

sqb



Heather,

I solved it.  I don't use automated spam filters but roll my own.

The issue was this:  I have a list of acceptable To addresses, so 
that someone cannot spam my domains with [EMAIL PROTECTED], 
[EMAIL PROTECTED], sort of thing.  So if the incoming 
mails are not addressed to the right email addy, they go poof.


I don't know how it happened but the incoming list emails added my 
name in front of the email addy.


"[EMAIL PROTECTED]" became "Shari <[EMAIL PROTECTED]>" and 
that made it fail.


Shari



--


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



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


Re: Attempting to troubleshoot my connection to this list

2008-08-01 Thread Shari

So for anyone to email you, they have to OPT IN ? Pretty exclusive club! :)

sqb


What... you wanna join?
:-)
Shari
--
  Dogs and bears, sports and cars, and patriots t-shirts
  http://www.villagetshirts.com
 WlND0WS and MAClNT0SH shareware games
 http://www.gypsyware.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: 3.0.0-dp-8 available

2008-08-01 Thread Pierre Sahores

Dear Rev Team !

Just a quick note to let you know how happy and lucky i feel :-)

I went able to test extensivelly and successfully Bernard DP-8 in  
running a complex AI Business Intelligence app i'm developping at this  
time.


All the tested platforms (see below) gived the same very good results  
(stability, speed, script editor/debugger,...) and i don't think i  
will go back to Rev 2.9.0 anymore.


Results of tests in native mode :

- Mac OS X Leopard 10.5.4 (client and server app components native  
devlopment platform) : App runs 100% OK
- Win XP Pro SP2 (native client component deployment platform) : App  
runs 100% OK


Results of tests as Sun's VirtualBox 1.6.2 virtual machines :

- Win XP Pro SP2 (native client component deployment platform) : App  
runs 100% OK
- Debian Etch x86 (native server component prefered deployment  
platform) : App runs 100% OK
- Ubuntu 8.04 x86 (native server component possible deployment  
platform) : App runs 100% OK
- openSuse 11 x86 (native server component possible deployment  
platform) : App runs 100% OK


Thanks so much for being providing us such new professional-grade  
quality standards.


Kind Regards to you all,
--
Pierre Sahores
mobile : 06 03 95 77 70
www.sahores-conseil.com




Le 25 juil. 08 à 18:09, Oliver Kenyon a écrit :


Hi all,

I'm pleased to announce that 3.0.0-dp-8 is available via Check For
Updates on Windows and Mac OS X.

This build contains a number of bug fixes to both the engine and IDE,
and the first version of a new variable watcher, which supports
multi-dimensional arrays.

The bug fixes include regressions of recent developer previews and  
also

some older bugs. Please see the IDE and engine change logs for more
information.

As well as allowing multi-dimensional arrays to be viewed, the new
variable watcher can change variable values while debugging and view  
them in more detail in a separate window. We think that it also uses  
screen space more efficiently.


For those of you wishing to install on Linux, or to do a full install
the necessary downloads are here:






Warmest Regards,
Oliver

___
improve-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/improve-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


List of HyperCard Icons

2008-08-01 Thread Richmond Mathewson
Lynn Fredricks wrote:

"Has anyone exported all the icons from HyperCard? I do indeed have it, but its 
thriving quite nicely on an old SE 30 and rather inaccessible. What I am 
looking for is hopefully an export of the icons into a format that's a bit more 
modern - jpg, png, etc."

and I have spent a long time guttering about with Resedit and Metacard under OS 
9 to create a stack with all the HC icons in sequential contiguous order. So 
now have a very pretty stack with all the icons in the resource fork (that will 
be fun on Windows or Linux) and a series of 50 x 50 buttons sporting those 
icons.

So am slightly cheesed-off as cannot for the life of me work out how to export 
images of buttons from RR.

Obviously being stupid and missing something right in front of my nose.

Go on, I dare you, tell me how to do it . . .

Of course, if I wanted to be nasty I could point out to Lynn that things would 
probably be a lot quicker with a USB floppy drive and a batch converter such as 
Graphic Converter!

And while I'm here, does anyone know the legal status of HyperCard icons; or, 
put it another way, if I upload a RR/MC stack with them and/or jpg/png files 
will Steve Jobs smack my hand?

sincerely, Richmond Mathewson.



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



  __
Not happy with your email address?.
Get the one you really want - millions of new email addresses available now at 
Yahoo! http://uk.docs.yahoo.com/ymail/new.html
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


HyperCard Icons: Here they are!

2008-08-01 Thread Richmond Mathewson
A stack containing the HyperCard icons as JPEG images is available at:

http://mail.maclaunch.com/richmond/HC ICONS.rev.zip

sincerely, Richmond Mathewson.



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



  __
Not happy with your email address?.
Get the one you really want - millions of new email addresses available now at 
Yahoo! http://uk.docs.yahoo.com/ymail/new.html
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


HyperCard Icons: Here they are as JPGs.

2008-08-01 Thread Richmond Mathewson
For those of you who want them as JPEG files they are available in a convenient 
ZIP file:

http://mail.maclaunch.com/richmond/HCICONS.zip

sincerely, Richmond Mathewson



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



  __
Not happy with your email address?.
Get the one you really want - millions of new email addresses available now at 
Yahoo! http://uk.docs.yahoo.com/ymail/new.html
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


HC icons as Jpegs.

2008-08-01 Thread Richmond Mathewson
Here are the HyperCard icons in a convenient ZIP file as JPGs:

http://mail.maclaunch.com/richmond/HCICONS.zip

sincerely, Richmond Mathewson


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



  __
Not happy with your email address?.
Get the one you really want - millions of new email addresses available now at 
Yahoo! http://uk.docs.yahoo.com/ymail/new.html
___
use-revolution mailing list
use-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: HyperCard Icons: Here they are as JPGs.

2008-08-01 Thread -= JB =-

Thank you, very nice!

-=>JB<=-


On Aug 1, 2008, at 9:42 AM, Richmond Mathewson wrote:

For those of you who want them as JPEG files they are available in  
a convenient ZIP file:


http://mail.maclaunch.com/richmond/HCICONS.zip

sincerely, Richmond Mathewson



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




  __
Not happy with your email address?.
Get the one you really want - millions of new email addresses  
available now at Yahoo! http://uk.docs.yahoo.com/ymail/new.html

___
use-revolution mailing list
use-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: HC icons as Jpegs.

2008-08-01 Thread Lynn Fredricks
Hi Richmond,

> Here are the HyperCard icons in a convenient ZIP file as JPGs:
> 
> http://mail.maclaunch.com/richmond/HCICONS.zip

Thanks man :-)

Some look repeated, but don't they have slight differences for animations?

These are also the identifier names in Res Edit, right? Been a long time
since I used Res Edit - from back in the days when I had a different company
that did localization.

Best regards,

Lynn Fredricks
Mirye Software Publishing
http://www.mirye.com

Mirye Community NING
http://miryesoftware.ning.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


Advanced UI Blind Effect

2008-08-01 Thread Charles Szasz

Did anyone get the Rev Tutorial on Advanced Blind Effect to work? I have been
unable to get it to work. If anyone has gotten it to work, could you share
the stack with me?
-- 
View this message in context: 
http://www.nabble.com/Advanced-UI-Blind-Effect-tp18780413p18780413.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: HC icons as Jpegs.

2008-08-01 Thread Charles Szasz

Richmond,

Thanks for taking time to put them in a stack!

Here are the HyperCard icons in a convenient ZIP file as JPGs:



-- 
View this message in context: 
http://www.nabble.com/HC-icons-as-Jpegs.-tp18778512p18780459.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: HC icons as Jpegs.

2008-08-01 Thread Eric Chatonet

Bonjour Lynn et Richmond and Charles,

Le 1 août 08 à 19:04, Lynn Fredricks a écrit :


Hi Richmond,


Here are the HyperCard icons in a convenient ZIP file as JPGs:

http://mail.maclaunch.com/richmond/HCICONS.zip


Thanks man :-)


I need to be enlightened:
But don't take it bad :-)

What is this HC nostalgia?
These icons are about twenty five years old!
And BW only.
If I used them in any project, my clients would got scared ;-)

Above all, coming from you, Lynn, with respect to your attributions  
in Runrev, I don't understand:
Rev allows any 32 bits image, with alpha channel or not, and whatever  
can be it's size, to be an icon.

Did you miss it?
;-)

Best regards from Paris,
Eric Chatonet.

Plugins and tutorials for Revolution: http://www.sosmartsoftware.com/
Email: [EMAIL PROTECTED]/



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


HyperCard Icons: Here they are as PINGS!

2008-08-01 Thread Richmond Mathewson
For those of you who like PNGs:

http://mail.maclaunch.com/richmond/HCPING.zip

sincerely, Richmond Mathewson



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



  __
Not happy with your email address?.
Get the one you really want - millions of new email addresses available now at 
Yahoo! http://uk.docs.yahoo.com/ymail/new.html
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Citrix and printing from Rev

2008-08-01 Thread Richard Gaskin


I understand that some version of Rev prior to v2.8.1 had some issues 
with certain configurations of Citrix.  With v2.8.1 or later, have any 
of you seen issues with printing when running over Citrix?


--
 Richard Gaskin
 Fourth World Media Corporation
 ___
 [EMAIL PROTECTED]   http://www.FourthWorld.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: 3.0.0-dp-8 available

2008-08-01 Thread Christian Langers

Hello !

 I'll too express my overall positive interface experience !!!

But, I think one should know that on a Mac running Mac Os X 10.5.x  
working with databases had given me a little headache :


- every time I tried to connect to a sqlite db, Rev returned an  
error ; even when I ran the command ' put revOpenDatabase("sqlite",  
"test.db") ' in the message box just after Rev's startup and Rev  
answered with an error...


I have a db based project which works well in version 2.9.0 but not in  
3 ; same issue with the connection...


I RESOLVED the issue by downloading and using the Legacy DB drivers  
(see preferences:compatibility) ; it seems that Rev 3 cannot run  
without these drivers (on a Mac)...



Can anyone else confirm this ?

Thx,

Christian
from Luxembourg





Le 1 août 08 à 17:41, Pierre Sahores a écrit :


Dear Rev Team !

Just a quick note to let you know how happy and lucky i feel :-)

I went able to test extensivelly and successfully Bernard DP-8 in  
running a complex AI Business Intelligence app i'm developping at  
this time.


All the tested platforms (see below) gived the same very good  
results (stability, speed, script editor/debugger,...) and i don't  
think i will go back to Rev 2.9.0 anymore.


Results of tests in native mode :

- Mac OS X Leopard 10.5.4 (client and server app components native  
devlopment platform) : App runs 100% OK
- Win XP Pro SP2 (native client component deployment platform) : App  
runs 100% OK


Results of tests as Sun's VirtualBox 1.6.2 virtual machines :

- Win XP Pro SP2 (native client component deployment platform) : App  
runs 100% OK
- Debian Etch x86 (native server component prefered deployment  
platform) : App runs 100% OK
- Ubuntu 8.04 x86 (native server component possible deployment  
platform) : App runs 100% OK
- openSuse 11 x86 (native server component possible deployment  
platform) : App runs 100% OK


Thanks so much for being providing us such new professional-grade  
quality standards.


Kind Regards to you all,
--
Pierre Sahores
mobile : 06 03 95 77 70
www.sahores-conseil.com




Le 25 juil. 08 à 18:09, Oliver Kenyon a écrit :


Hi all,

I'm pleased to announce that 3.0.0-dp-8 is available via Check For
Updates on Windows and Mac OS X.

This build contains a number of bug fixes to both the engine and IDE,
and the first version of a new variable watcher, which supports
multi-dimensional arrays.

The bug fixes include regressions of recent developer previews and  
also

some older bugs. Please see the IDE and engine change logs for more
information.

As well as allowing multi-dimensional arrays to be viewed, the new
variable watcher can change variable values while debugging and  
view them in more detail in a separate window. We think that it  
also uses screen space more efficiently.


For those of you wishing to install on Linux, or to do a full install
the necessary downloads are here:






Warmest Regards,
Oliver

___
improve-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/improve-revolution






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

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


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


Retrieving text within 2 tags

2008-08-01 Thread mfstuart

Hi all,

RunRev: 2.90
OS: WinXP

How would I retrieve text that is within 2 tags, that has been put into a
memory variable?
The text originated from a web site, using command "put url theURL into
tData".
Such as:


This is some text I would like to
retrieve. It is on many lines
and all the text has to be return
within the tags.

Also, the text could have HTML formatting in it.


I don't know how to use the XML commands in rev as yet (a possibility), so I
would like to use the text chunk commands to do so.

TIA.
Mark Stuart
-- 
View this message in context: 
http://www.nabble.com/Retrieving-text-within-2-tags-tp18784278p18784278.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: Retrieving text within 2 tags

2008-08-01 Thread Mark Smith
Mark, this is one way (this way only returns the first tag of a give  
name), but there could be many others.


function extractTaggedText pText, pTagName
   replace "<" & pTagName & ">" with numtochar(4) in pText
   replace "" with numtochar(4) in pText
   set the itemdelimiter to numtochar(4)
   return word 1 to -1 of item 2 of pText
end extractTaggedText

Best,

Mark

On 2 Aug 2008, at 00:34, mfstuart wrote:


Hi all,

RunRev: 2.90
OS: WinXP

How would I retrieve text that is within 2 tags, that has been put  
into a

memory variable?
The text originated from a web site, using command "put url theURL  
into

tData".
Such as:


This is some text I would like to
retrieve. It is on many lines
and all the text has to be return
within the tags.

Also, the text could have HTML formatting in it.


I don't know how to use the XML commands in rev as yet (a  
possibility), so I

would like to use the text chunk commands to do so.

TIA.
Mark Stuart
--
View this message in context: http://www.nabble.com/Retrieving-text- 
within-2-tags-tp18784278p18784278.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


Re: Retrieving text within 2 tags

2008-08-01 Thread Jim Ault

On 8/1/08 4:34 PM, "mfstuart" <[EMAIL PROTECTED]> wrote:
> The text originated from a web site, using command "put url theURL into
> tData".


When ever I retrieve tags from a source I did not create,  I use

put url theURL into xmlBlock
replace cr with empty  in xmlBlock  --Rev uses char (10) = cr
replace numtochar(13) with empty  in xmlBlock

Now your text is all in a single line

replace "<" with (cr & "<") in xmlBlock
--now each tag of any kind is on a separate line

---or  -- for your specific case-
replace "" with  (cr & "") in xmlBlock
replace "" with ("<" & cr) in xmlBlock
filter xmlBlock with ("**")

--now ALL the remaining lines in xmlBlock are the tags you wanted

Eric Chatonet wrote at least one tutorial stack on how to get data from html
text.  He has written a cleaner function that does a great job.  I don't
remember just where it is, but it is a winner.

Also, Hugh Senior (Scripter's Scrapbook) probably has a few library routines
you could use that are good cleaner functions.

> I don't know how to use the XML commands in rev as yet (a possibility), so I
> would like to use the text chunk commands to do so.
The XML in Rev has been a slow way of parsing XML in my experience, and the
best place I know is Ken Ray's SonsOThunder.com and his XML parser library.
It would have the best speed and is kept up-to-date.


Jim Ault
Las Vegas
 


On 8/1/08 4:34 PM, "mfstuart" <[EMAIL PROTECTED]> wrote:

> 
> Hi all,
> 
> RunRev: 2.90
> OS: WinXP
> 
> How would I retrieve text that is within 2 tags, that has been put into a
> memory variable?
> The text originated from a web site, using command "put url theURL into
> tData".
> Such as:
> 
> 
> This is some text I would like to
> retrieve. It is on many lines
> and all the text has to be return
> within the tags.
> 
> Also, the text could have HTML formatting in it.
> 
> 
> I don't know how to use the XML commands in rev as yet (a possibility), so I
> would like to use the text chunk commands to do so.
> 
> TIA.
> Mark Stuart


___
use-revolution mailing list
use-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: Vista 64 bit edition compatibility

2008-08-01 Thread Mark Talluto


On Jul 31, 2008, at 11:19 PM, Shao Sean wrote:

I've had some limited tests done on Vista 64-bit and there were some  
issues with the application not appearing in the task bar.


Thanks for the info Shao.  I wrote Rev support and they told me that  
it seems to run with a few minor issues.  The main thing is that it is  
not supported just yet by the mother ship.  I am in no need at the  
moment, but am getting reports from clients that more and more  
computers are shipping from local dealers with Vista 64 pre-installed.



Mark Talluto
http://www.canelasoftware.com




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