Re: How to identify numbers in a RegEx

2006-03-03 Thread Stephen Barncard

it's going to answer whatever is in it, in this case 0

did you mean

get "0"
get matchText(it, "[0-9]")
answer it


Why doesn't this script return true?

get "0"
get matchText(tLine, "[0-9]")
answer it

Jim


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


Locking Messages

2006-03-03 Thread Bridger Maxwell
Hey,
  It is me again.  I have a stack (Which I will call Stack 1) that
makes another stack (I will call it Stack 2), copies a card from some
other stack running in the background (which I call Stack 3) and sends
the new stack with the copied card all over the network where it is
added to whatever stack sees it.  The problem is that sometimes the
card on Stack 2 has unexpected handler in it that cause random errors
when I am working with it.  I realize I can lock the messages, but
that locks the messages for the Stack 1 also, which I cannot do.  Is
there any way of keeping messages from being passed to Stack 2,
without locking the messages from Stack 1?

  TTFN
Bridgeyman
___
use-revolution mailing list
use-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: The End of Dreamcard?

2006-03-03 Thread Richard Gaskin

Judy Perry wrote:

I really don't think so.  While I've not seen it yet, I suspect that Media
will hopefully meet the needs of the Dreamcard audience.

Perhaps others can chime in with more specifics?   My understanding is
that it will be including some of the very things many of us former
Hypercard using/non-programmer people have been asking for.


According to  -

Minus: Media has a backdrop that's always present

Plus:  Media includes templates

Plus for Media, Minus for everything else: If you pay $299
   for Studio or $899 for Enterprise you don't get the
   templates included in the $49 Media product. :\

--
 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: The End of Dreamcard?

2006-03-03 Thread Judy Perry
Timothy,

I really don't think so.  While I've not seen it yet, I suspect that Media
will hopefully meet the needs of the Dreamcard audience.

Perhaps others can chime in with more specifics?   My understanding is
that it will be including some of the very things many of us former
Hypercard using/non-programmer people have been asking for.

Judy

On Fri, 3 Mar 2006, Timothy Miller wrote:

>
> I'm wondering if RR has decided to abandon the nonprofessional
> self-taught end users like me -- the kind of people who taught
> themselves hyperCard 20 years ago. Maybe there are too few of us to
> make the product commercially viable.

___
use-revolution mailing list
use-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: The End of Dreamcard?

2006-03-03 Thread Mikey
> I'm wondering if RR has decided to abandon the nonprofessional
> self-taught end users like me -- the kind of people who taught
> themselves hyperCard 20 years ago. Maybe there are too few of us to
> make the product commercially viable.

hey, Hey, HEY!  It wasn't 20 years ago.  Stop making me older than
what I am.  First of all it was...oh crap.  It was...18 years ago?! 
Oh boy.  Second of all, I still have a production system running in
HC, so don't be hating on HC.

Also, I've exchanged emails with the RR folks, and my impression from
those is that Media is going to be a DC analog...unless I don't
understand Queen's English...

--
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


How to identify numbers in a RegEx

2006-03-03 Thread Jim Witte

Why doesn't this script return true?

get "0"
get matchText(tLine, "[0-9]")
answer it


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


Read from StnIn from POST is still broken?

2006-03-03 Thread Sivakatirswami
This is a really old problem: Rev CGI scripts are truncating data  
piped from Apache from a POST


Does anyone know for "positively absolutely" sure that new version of  
rev has over come this issue?


context:

Linux web server, Apache, call Rev CGI to receive incoming Post  
Data.  Beginning lines of script to read the incoming data -- see  
below (suggested as a possible fix years ago by Scott Raney)


(musings... it is possible that this is a client side problem?
--machine A with browser B cannot in fact encode large chunks of data  
and the name=value pair actually arrive to the server already  
truncated.. meanwhile
-- box C with browser D submits a large text chunk from the same form  
and it arrive just fine: result Rev get blamed for being intermittent  
failures... but he's really not the bad guy.


on startup
if $REQUEST_METHOD is "POST" then
put "" into PostIn
repeat until length(PostIn) >= $CONTENT_LENGTH
read from stdin until ""
put it after PostIn
end repeat  
put  urlDecode (PostIn)  into tDataIn

split tDataIn by "&" and "="
put keys(tDataIn) into tFields

.etc.

if one of the incoming name pairs contains too much data, it is  
truncated.


You can stress test this yourself:  go to:

http://www.himalayanacademy.com/teaching/stories/

and scroll down to the end of the list...the last "story is a  
submission with a large text chunk pasted into the main field.


The full cgi is here:

http://www.himalayanacademy.com/teaching/stories/incoming_stories.txt

Sivakatirswami









___
use-revolution mailing list
use-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: It Variable

2006-03-03 Thread Jim Witte
  Putting 'get the result' at the end of the netrequest handler  
should do, unless something else disrupts the 'it' variable after the  
call to netrequest.  I just hacked up this set of card/button scripts  
which work:


-- card script
on netrequest tData, tComp
  return "this" && tData && tComp
  get the result -- place the result in it
end netrequest

-- btn script
on mouseup
  netrequest "some data", "some computer"
  --get the result -- placed in the script in card script instead
  answer it
end mouseup

Jim

case.  Putting get the result below the line where I call for the  
netrequest
will work, but it would be extremely difficult to do because it is  
located
in odd places all over in more than 40 stacks.  Right now I am  
thinking of
making a stack that will do it for me, but I was hoping there was  
an easier

way.

On 3/3/06, Sarah Reichelt <[EMAIL PROTECTED]> wrote:


On 3/4/06, Bridger Maxwell <[EMAIL PROTECTED]> wrote:
I just made a giant switch from Hypercard to Revolution.  In  
Hypercard
networking we used "request thedata from program theComputer" to  
request
data from across an appletalk network.  In Revolution this didn't  
work

anymore so we made a new command, "Netrequest" that serves the same
function.  "netrequest thedata,theComputer"  The problem is that in
Hypercard put the data into the it variable when it is done.   
Without

changing the script in the card where it initiates the netrequest

command

(such as in the card or a button), can I add something the to stack

script

where the command is contained so it puts the result into the it

variable?


netrequest thedata,theComputer
get the result
-- "it" will now contain whatever was returned from the netrequest
handler.

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


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


The End of Dreamcard?

2006-03-03 Thread Timothy Miller


At 3:08 PM + 3/3/06, Runtime Revolution Ltd wrote:


We wrote to you previously to let you know that with the release of
2.7, Runtime Revolution is no longer selling Dreamcard to new
customers.


Derrr... Sorry, I just don't get it. Three possibilities occur to me.

--the Product Previously Known as Dreamcard is getting a new name and 
a makeover.


--There is going to be some change in the upgrade path, so that 
Dreamcard users are going to have to purchase new licenses at some 
point.


--Runtime Revolution has decided not to sell the stripped down 
version of their flagship product anymore, so Dreamcard is being 
discontinued. Users who want to continue playing will have to upgrade 
to Revolution Studio.


The website seems to suggest the latter interpretation. But then 
again, it seems possible that Dreamcard has been renamed "Revolution 
Media."


I'm wondering if RR has decided to abandon the nonprofessional 
self-taught end users like me -- the kind of people who taught 
themselves hyperCard 20 years ago. Maybe there are too few of us to 
make the product commercially viable.


Anyway, somebody please clue me.

Tim
___
use-revolution mailing list
use-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 not showing up in standalone

2006-03-03 Thread J. Landman Gay

[EMAIL PROTECTED] wrote:
I hope this is a simple matter and I'm just overlooking the obvious: I'd like 
the cursor to change to a magnifying glass when the mouse is down, so I've 
written:


on mouseDown
set cursor to 378
set lockcursor true
end mouseDown

This works fine before the standalone.   But after the standalone, the cursor 
does not show up either on the Mac or Windows version (I'm developing on a 
Mac OS X).   I've also checked off "Select inclusions for the standalone 
application" and "Cursors"   in the General Standalone Application Settings.   Am I 
missing something?   Thanks very much.


This sounds like the same bug in the standalone builder that prevented 
copying externals to a standalone. It's been fixed for the next update.


--
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: It Variable

2006-03-03 Thread Bridger Maxwell
Hey,
  Thanks for your responses, but they don't quite work for my particular
case.  Putting get the result below the line where I call for the netrequest
will work, but it would be extremely difficult to do because it is located
in odd places all over in more than 40 stacks.  Right now I am thinking of
making a stack that will do it for me, but I was hoping there was an easier
way.

On 3/3/06, Sarah Reichelt <[EMAIL PROTECTED]> wrote:
>
> On 3/4/06, Bridger Maxwell <[EMAIL PROTECTED]> wrote:
> > I just made a giant switch from Hypercard to Revolution.  In Hypercard
> > networking we used "request thedata from program theComputer" to request
> > data from across an appletalk network.  In Revolution this didn't work
> > anymore so we made a new command, "Netrequest" that serves the same
> > function.  "netrequest thedata,theComputer"  The problem is that in
> > Hypercard put the data into the it variable when it is done.  Without
> > changing the script in the card where it initiates the netrequest
> command
> > (such as in the card or a button), can I add something the to stack
> script
> > where the command is contained so it puts the result into the it
> variable?
>
>
> netrequest thedata,theComputer
> get the result
> -- "it" will now contain whatever was returned from the netrequest
> handler.
>
> HTH,
> 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: Common Causes of Crashes

2006-03-03 Thread Stephen Barncard
It happened to me when cutting, editing or pasting text in a field. 
Randomly. Only one time did I get a MacOS Error dialog - so before 
sending it to Apple (where do all those crash reports go) I copied it 
and created a text file with the info, and went to bugzilla and 
reported the crash and the report.


Just got this in the mail today...

so they're working on it...

Subject: [Bug 3359] Mysterious random Crash -  LOG available on the net

http://support.runrev.com/bugdatabase/show_bug.cgi?id=3359

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
  everconfirmed|0   |1


--- Additional Comments From marcus 2006-03-03 07:45 ---
Hello,

Thank you for your bug report, your bug has been confirmed.

Regards




I've got a stack I've been working on for years, but it started 
crashing recently.  What are some common causes of crashing I can 
look for in my troubleshooting?


--
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: It Variable

2006-03-03 Thread Sarah Reichelt
On 3/4/06, Bridger Maxwell <[EMAIL PROTECTED]> wrote:
> I just made a giant switch from Hypercard to Revolution.  In Hypercard
> networking we used "request thedata from program theComputer" to request
> data from across an appletalk network.  In Revolution this didn't work
> anymore so we made a new command, "Netrequest" that serves the same
> function.  "netrequest thedata,theComputer"  The problem is that in
> Hypercard put the data into the it variable when it is done.  Without
> changing the script in the card where it initiates the netrequest command
> (such as in the card or a button), can I add something the to stack script
> where the command is contained so it puts the result into the it variable?


netrequest thedata,theComputer
get the result
-- "it" will now contain whatever was returned from the netrequest handler.

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


It Variable

2006-03-03 Thread Bridger Maxwell
I just made a giant switch from Hypercard to Revolution.  In Hypercard
networking we used "request thedata from program theComputer" to request
data from across an appletalk network.  In Revolution this didn't work
anymore so we made a new command, "Netrequest" that serves the same
function.  "netrequest thedata,theComputer"  The problem is that in
Hypercard put the data into the it variable when it is done.  Without
changing the script in the card where it initiates the netrequest command
(such as in the card or a button), can I add something the to stack script
where the command is contained so it puts the result into the it variable?

   TTFN
 Bridgeyman
___
use-revolution mailing list
use-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: Truncating text with vGrid property

2006-03-03 Thread Mark Schonewille

Jon,

Sorry, my previous post was incomplete.

Have you set the cell editing of the table to true? I.e.
cRevTable["celledit"] = true? If so, the text should be truncated.

Additionally, you seem to have to set the locktext to true to 
have the columns truncated, but it only works after you edit the 
text and then not always/immediately.


Best,

Mark




Jon Seymour wrote:


The Rev documentation states that

If the  vgrid property is true, Revolution draws a vertical line at  
each tab stop position in the field. The lines are drawn in the  
field's borderColor. This property is useful for fields that are used  
like a spreadsheet, with each tab stop marking a column.





 Specifically, the
text is NOT truncated, but simply continues to be  rendered in 
addition to (overalpping) the text in the adjacent  columns, creating 
an extremely messy presentation. Does anyone have  any thoughts on how 
to produce the documented behavior?


Thanks,

Jon





--

Consultant and Software Engineer
mailto:[EMAIL PROTECTED]
http://www.economy-x-talk.com

eHUG coordinator
mailto:[EMAIL PROTECTED]
http://www.ehug.info

Advertise with us and reach 1000 truely interested internet 
users every month. See http://economy-x-talk.com/advertise.html 
for more information.


___
use-revolution mailing list
use-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: Truncating text with vGrid property

2006-03-03 Thread Sarah Reichelt
> Jon Seymour wrote:
> > The Rev documentation states that
> >
> > If the  vgrid property is true, Revolution draws a vertical line at
> > each tab stop position in the field. The lines are drawn in the  field's
> > borderColor. This property is useful for fields that are used  like a
> > spreadsheet, with each tab stop marking a column.
> >
> 
>
>   Specifically, the
> > text is NOT truncated, but simply continues to be  rendered in addition
> > to (overalpping) the text in the adjacent  columns, creating an
> > extremely messy presentation. Does anyone have  any thoughts on how to
> > produce the documented behavior?
> >

I have found that the text is only truncated if there is some next in
the next column. If this is your problem, you may want to fill empty
columns in each line with a space so as to fool the system into
thinking there is text there.

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: First color, second color third color, etc

2006-03-03 Thread Jeanne A. E. DeVoto

At 7:19 AM -0500 3/3/2006, [EMAIL PROTECTED] wrote:

I have been puzzled by the color feature in the object inspector for some of
the objects (e.g. images) which list the options of "First color, second
color, third color etc." What does this do?   If I check off a color, nothing
happens and the option disappears on leaving the object inspector.   Perhaps
someone can clarify this.   Thanks.


The short answer is that for images, the foregroundColor (aka 
firstColor), backgroundColor (aka secondColor), and the other six 
colors aren't especially useful and should probably be ignored. (They 
are the first eight colors in the image's color palette, and may very 
well not be used *in* the image to begin with.)

--
jeanne a. e. devoto ~ [EMAIL PROTECTED]
http://www.jaedworks.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: Truncating text with vGrid property

2006-03-03 Thread Mark Schonewille

Hi John,

Have you set the cell editing of the table to true? I.e. 
cRevTable["celledit"] = true? If so, the text should be truncated.


Best,

Mark

Jon Seymour wrote:

The Rev documentation states that

If the  vgrid property is true, Revolution draws a vertical line at  
each tab stop position in the field. The lines are drawn in the  field's 
borderColor. This property is useful for fields that are used  like a 
spreadsheet, with each tab stop marking a column.





 Specifically, the
text is NOT truncated, but simply continues to be  rendered in addition 
to (overalpping) the text in the adjacent  columns, creating an 
extremely messy presentation. Does anyone have  any thoughts on how to 
produce the documented behavior?


Thanks,

Jon


--

Consultant and Software Engineer
mailto:[EMAIL PROTECTED]
http://www.economy-x-talk.com

eHUG coordinator
mailto:[EMAIL PROTECTED]
http://www.ehug.info

Advertise with us and reach 1000 truely interested internet 
users every month. See http://economy-x-talk.com/advertise.html 
for more information.


___
use-revolution mailing list
use-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: Common Causes of Crashes

2006-03-03 Thread Sarah Reichelt
On 3/4/06, Stephen McNutt <[EMAIL PROTECTED]> wrote:
> I've got a stack I've been working on for years, but it started
> crashing recently.  What are some common causes of crashing I can
> look for in my troubleshooting?

There have been cases were an imported image has got corrupt and can
cause trouble. Does your stack contain any images? If so, make a
backup and try deleting them and see if it fixes it. Then add them
back in and try to isolate the one with the problem.

HTH,
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: Cursor not showing up in standalone

2006-03-03 Thread Chipp Walters

Hi Steve,

I manually copy the cursor to my stacks and assign it an ID I know won't 
conflict.


Then I do:

set cursor to the id of img "magGlass"

hth, chipp

[EMAIL PROTECTED] wrote:

I hope this is a simple matter and I'm just overlooking the obvious: I'd like 
the cursor to change to a magnifying glass when the mouse is down, so I've 
written:


on mouseDown
set cursor to 378
set lockcursor true
end mouseDown

This works fine before the standalone.   But after the standalone, the cursor 
does not show up either on the Mac or Windows version (I'm developing on a 
Mac OS X).   I've also checked off "Select inclusions for the standalone 
application" and "Cursors"   in the General Standalone Application Settings.   Am I 
missing something?   Thanks very much.

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


 



--

-- Chipp Walters www.altuit.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


Cursor not showing up in standalone

2006-03-03 Thread Stgoldberg
I hope this is a simple matter and I'm just overlooking the obvious: I'd like 
the cursor to change to a magnifying glass when the mouse is down, so I've 
written:

on mouseDown
set cursor to 378
set lockcursor true
end mouseDown

This works fine before the standalone.   But after the standalone, the cursor 
does not show up either on the Mac or Windows version (I'm developing on a 
Mac OS X).   I've also checked off "Select inclusions for the standalone 
application" and "Cursors"   in the General Standalone Application Settings.   
Am I 
missing something?   Thanks very much.
Steve Goldberg
___
use-revolution mailing list
use-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: XP Problems Persist...

2006-03-03 Thread Judy Perry
Jeff,

Actually, we saw this happen when doing an osx <> XP transfer.

The one was the 'regular' file that we couldn't open, the other was
identical except that the file name had I think it was a leading _ or_.
attached.

Neither was functional :-(

Thanks, though!

Judy
On Fri, 3 Mar 2006, jeffrey reynolds wrote:

> I have seen flash drives create two files when doing a os9 <> osx
> transfers between computers. one is a dummy file maybe containing the
> resource fork? they sometimes look pretty much the same, but one is
> functional. this varies with the drive and i think may be due to the
> drivers on the drive and how its handling the transfer. have never
> had the files come across corrupted though.

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


Re: How to change the label of a button to the contents of an editable field?

2006-03-03 Thread Judy Perry
William,

Oh, okay.

I always take the idiot's way out ;-)

Judy

On Fri, 3 Mar 2006, William de Smet wrote:

> I am working on a standalone application where the user need to change this.
> So without RR!

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


Common Causes of Crashes

2006-03-03 Thread Stephen McNutt
I've got a stack I've been working on for years, but it started  
crashing recently.  What are some common causes of crashing I can  
look for in my troubleshooting?

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


Do you want to save changes to this stack ..... ?

2006-03-03 Thread Francis Nugent Dixon

Chère Jacqueline (as they would say here  !),

You have answered most of my questions.

Most of my finished stacks will be run (by collegues) on a PC,
under the PC Rev Engine, so if I take control of saving, I can forget
about automatic saving, as it happens on my Mac.

Now I know more about what constitutes a "change" and to who ?

Now I know that I must control the save, and when the stack is run under
Rev Engine (PC)  or Stack Runner (Mac) , I won't get a save request.

I still don't understand how "SaveStackRequest" works, but that also
is no longer important, based upon previous answers.

Many Thanks.

-Francis


___
use-revolution mailing list
use-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: Type a text from a palette stack to an external window

2006-03-03 Thread Sarah Reichelt
> on 1-03-2006 14:06, Paul Claude at [EMAIL PROTECTED] wrote:
>
> > There is a way to let Revolution (also via Applescript) may type a text on
> > an external app window (i.e. a text editor)?
> >
> > I've tried using various AS tips to bring the ext. window to the frontmost,
> > but every time the focus remains on the stack (a systemWindow style
> > palette), and typing give back only an error sound.

This is the correct behavior for a window set to systemWindow style -
it will always stay at the front. Try making it a normal palette but
not setting it to systemWindow.

HTH,
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: Player Problem in Rev 2.7 on Windows

2006-03-03 Thread J. Landman Gay

Richard Gaskin wrote:


Why isn't the controller shown as disabled when the alwaysBuffer is true?



Is that possible? I don't remember ever seeing a disabled controller.

--
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: AltBrowser--wow.

2006-03-03 Thread Chipp Walters

Tom and Tom,

Thanks for the compliments on altBrowser. On rare occasion, we actually 
do listen to feedback from our users. (Chris finally bought me a battery 
for the hearing aid ;-)


With the new altBrowser DEMO/Install stack, it's super easy for us to 
upgrade users with features and fixes as needed. We'll be sure and 
mention any significant ones on our website and RevCentral.


Tom McCarthy, if you're interested in keeping up-to-date on the goings 
on of Rev 3rd party products, be sure and sign-up over at 
www.RevCentral.com for the RevCentral newsletter. There will be some new 
announcements there very shortly.


As you can imagine, creating altBrowser2 was a lot of work. Comments 
like both of yours certainly help make it worthwhile :-)


best,

Chipp


For those of you who still have not taken a minute to tryout the 
altBrowser2 demo all you have to do is launch Revolution and and copy 
and paste the below script into your message box:


go URL "http://www.gadgetplugins.com/altbrowser/altBrowserLauncher.rev";



Thomas McGrath III wrote:

Anyway, bravo to Chipp and team on a superb product, definitely worth  
the effort and you can't beat the price.



On Mar 3, 2006, at 7:20 AM, Thomas McCarthy wrote:


Well, somebody over there was listening! Each and every one of  those 
concerns has been so well addressed you wouldn't know it was  the same 
product that caused me heart-burn.


___
use-revolution mailing list
use-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: Truncating text with vGrid property

2006-03-03 Thread Jonathan Lynch
I have a pseudo field object. It is a group that contains rows and fields.
It works very much like you would expect a table to work, allows for
inserting columns and rows, easily moving columns and rows, etc...

All the scripting and object involved can be a bit memory intensive, so if
you need something for storing several megabytes of information, my table
object would not work for you. However, if you need it as a user interface,
it would probably work quite well. I use modified versions of this table
object extensively throughout Task Mage.

So, if you want it, just let me know and I will Email it to you.

Take care,

Jonathan


On 3/3/06, Jon Seymour <[EMAIL PROTECTED]> wrote:
>
> The Rev documentation states that
>
> If the  vgrid property is true, Revolution draws a vertical line at
> each tab stop position in the field. The lines are drawn in the
> field's borderColor. This property is useful for fields that are used
> like a spreadsheet, with each tab stop marking a column.
>
> Any text in a column is truncated when it reaches the right edge of
> the column. To show the entire contents of the column, drag over the
> text to select it. If text at the end of a line does not have a tab
> following it--that is, if it's the last column in the field--it is
> not truncated.
>
> If the field's tabStops property is set to empty, the vgrid lines are
> drawn every 32 pixels, but the text is not truncated to individual
> cells.
>
>
> However, despite having tabstops set, vGrid set to true, and seeing
> the actual vertical lines drawn just fine, I observe a different
> behavior with the text on both Mac OSX and Win32 platforms.
> Specifically, the text is NOT truncated, but simply continues to be
> rendered in addition to (overalpping) the text in the adjacent
> columns, creating an extremely messy presentation. Does anyone have
> any thoughts on how to produce the documented behavior?
>
> Thanks,
>
> Jon
> ___
> use-revolution mailing list
> use-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: Player Problem in Rev 2.7 on Windows

2006-03-03 Thread Richard Gaskin

J. Landman Gay wrote:

Timothy Bleiler wrote:


The problem
Player does not play video when the alwaysBuffer is true from the  
controller. Keyboard message will start the player but the frame rate  
is way below the setting.


Yes, it's standard behavior, and in the docs. Players with alwaysBuffer 
set to true must be scripted to work, as the controller is not active in 
that case. To use the built-in controller, alwaysBuffer must be false. 
Setting it to true can also affect the playback rate. It isn't a bug, it 
is just how it works. There is more explanation in the dictionary entry 
for "alwaysBuffer".


Why isn't the controller shown as disabled when the alwaysBuffer is true?

--
 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: Player Problem in Rev 2.7 on Windows

2006-03-03 Thread J. Landman Gay

Timothy Bleiler wrote:


The problem
Player does not play video when the alwaysBuffer is true from the  
controller. Keyboard message will start the player but the frame rate  
is way below the setting.


Yes, it's standard behavior, and in the docs. Players with alwaysBuffer 
set to true must be scripted to work, as the controller is not active in 
that case. To use the built-in controller, alwaysBuffer must be false. 
Setting it to true can also affect the playback rate. It isn't a bug, it 
is just how it works. There is more explanation in the dictionary entry 
for "alwaysBuffer".


--
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: XP Problems Persist...

2006-03-03 Thread Dan Shafer
There's been a fair amount of chatter on various lists and boards I monitor
about treating a thumb drive more like a remote drive than an attached drive
in the sense that compressed files seem to go over to them much more cleanly
and reliably than uncompressed files.

The discussion here seems to bear that out.


On 3/3/06, jeffrey reynolds <[EMAIL PROTECTED]> wrote:
>
> I have seen flash drives create two files when doing a os9 <> osx
> transfers between computers. one is a dummy file maybe containing the
> resource fork? they sometimes look pretty much the same, but one is
> functional. this varies with the drive and i think may be due to the
> drivers on the drive and how its handling the transfer. have never
> had the files come across corrupted though.
>
> jeff
>
>
> On Mar 3, 2006, at 6:23 AM, [EMAIL PROTECTED]
> wrote:
>
> > Stephen,
> >
> > An interesting spotlight... we had, indeed, been going between his XP
> > machine, any semi-working OS 9 machine and my OS X laptop...
> >
> > Judy
> >
> > On Thu, 2 Mar 2006, Stephen Barncard wrote:
> >
> >> Especially had problems using a thumb drive between sys9 and 10.
> >
>
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
>



--
~~
Dan Shafer, Information Product Consultant and Author
http://www.shafermedia.com
Get my book, "Revolution: Software at the Speed of Thought"
>From http://www.shafermediastore.com/tech_main.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: XP - Applescript equivalents

2006-03-03 Thread Dan Shafer
I don't have recent experience with it and I"m not even sure it's still
supported, but back in the day when I had to worry about such things, I
found Windows Scripting (
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnanchor/html/scriptinga.asp)
to be awfullyl nice and relatively usable. You can script from a Windows app
using VBScript or JScript. Not sure how you'd embed or attach to a Rev app,
but I suspect it's possible.


On 3/3/06, Andre Garzia <[EMAIL PROTECTED]> wrote:
>
> Richard and David,
>
> check to see if there are shell commands for that, easier then doing
> C/C++ stuff...
>
> cheers
> andre
>
>
> On Mar 3, 2006, at 3:18 PM, David Burgun wrote:
>
> > Hi,
> >
> > The only way I can think to do this is to write External Commands
> > that in C/C++ interface to the relevant Windows APIs and return the
> > information to RunRev.
> >
> > All the Best
> > Dave
> >
> > On 3 Mar 2006, at 11:53, Richard Miller wrote:
> >
> >> Our Rev program is Mac based. We want to run it under XP. We use
> >> three Applescript-based functions in this program that need to be
> >> replaced under XP. I'm looking for suggestions on how best to do
> >> this. The three functions:
> >>
> >> - get the status of the internal battery (on a laptop)
> >> - get the wireless strength (was airport status)
> >> - switch wireless connection (was switch airport connection)
> >>
> >> I'm guessing there are DLL's to do this, but perhaps none already
> >> compatible with Rev. I realize we can use non-Rev DLL's. Perhaps
> >> that's the best option. I'd like to hear other opinions.
> >>
> >> Thanks.
> >> Richard Miller
> >> Imprinter Technologies
> >> ___
> >> use-revolution mailing list
> >> use-revolution@lists.runrev.com
> >> Please visit this url to subscribe, unsubscribe and manage your
> >> subscription preferences:
> >> http://lists.runrev.com/mailman/listinfo/use-revolution
> >
> > ___
> > use-revolution mailing list
> > use-revolution@lists.runrev.com
> > Please visit this url to subscribe, unsubscribe and manage your
> > subscription preferences:
> > http://lists.runrev.com/mailman/listinfo/use-revolution
>
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
>



--
~~
Dan Shafer, Information Product Consultant and Author
http://www.shafermedia.com
Get my book, "Revolution: Software at the Speed of Thought"
>From http://www.shafermediastore.com/tech_main.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: XP Problems Persist...

2006-03-03 Thread jeffrey reynolds
I have seen flash drives create two files when doing a os9 <> osx  
transfers between computers. one is a dummy file maybe containing the  
resource fork? they sometimes look pretty much the same, but one is  
functional. this varies with the drive and i think may be due to the  
drivers on the drive and how its handling the transfer. have never  
had the files come across corrupted though.


jeff


On Mar 3, 2006, at 6:23 AM, [EMAIL PROTECTED]  
wrote:



Stephen,

An interesting spotlight... we had, indeed, been going between his XP
machine, any semi-working OS 9 machine and my OS X laptop...

Judy

On Thu, 2 Mar 2006, Stephen Barncard wrote:


Especially had problems using a thumb drive between sys9 and 10.




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


Truncating text with vGrid property

2006-03-03 Thread Jon Seymour

The Rev documentation states that

If the  vgrid property is true, Revolution draws a vertical line at  
each tab stop position in the field. The lines are drawn in the  
field's borderColor. This property is useful for fields that are used  
like a spreadsheet, with each tab stop marking a column.


Any text in a column is truncated when it reaches the right edge of  
the column. To show the entire contents of the column, drag over the  
text to select it. If text at the end of a line does not have a tab  
following it--that is, if it's the last column in the field--it is  
not truncated.


If the field's tabStops property is set to empty, the vgrid lines are  
drawn every 32 pixels, but the text is not truncated to individual  
cells.



However, despite having tabstops set, vGrid set to true, and seeing  
the actual vertical lines drawn just fine, I observe a different  
behavior with the text on both Mac OSX and Win32 platforms.  
Specifically, the text is NOT truncated, but simply continues to be  
rendered in addition to (overalpping) the text in the adjacent  
columns, creating an extremely messy presentation. Does anyone have  
any thoughts on how to produce the documented behavior?


Thanks,

Jon
___
use-revolution mailing list
use-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: Importing and export text with foreign accents

2006-03-03 Thread Mark Schonewille

Hi Charles,

You are right, but as I understand it from Derek's question, his 
text file is only an intermediate result for use on the same 
platform. Still, even if he is going to use the text on a 
different platform, while the text being plain ascii, htmlText 
or even a script to convert the text might be a better solution 
than unicode.


I think we need a little more information from Derek to decide 
what is the best method for him.


Best,

Mark

Charles Hartman wrote:
Is this really true? My impression is that characters >128 are  
different in the "ASCII" character sets on Mac and Windows.


Charles


--

Consultant and Software Engineer
mailto:[EMAIL PROTECTED]
http://www.economy-x-talk.com

eHUG coordinator
mailto:[EMAIL PROTECTED]
http://www.ehug.info

Advertise with us and reach 1000 truely interested internet 
users every month. See http://economy-x-talk.com/advertise.html 
for more information.


___
use-revolution mailing list
use-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: XP - Applescript equivalents

2006-03-03 Thread Andre Garzia

Richard and David,

check to see if there are shell commands for that, easier then doing  
C/C++ stuff...


cheers
andre


On Mar 3, 2006, at 3:18 PM, David Burgun wrote:


Hi,

The only way I can think to do this is to write External Commands  
that in C/C++ interface to the relevant Windows APIs and return the  
information to RunRev.


All the Best
Dave

On 3 Mar 2006, at 11:53, Richard Miller wrote:

Our Rev program is Mac based. We want to run it under XP. We use  
three Applescript-based functions in this program that need to be  
replaced under XP. I'm looking for suggestions on how best to do  
this. The three functions:


- get the status of the internal battery (on a laptop)
- get the wireless strength (was airport status)
- switch wireless connection (was switch airport connection)

I'm guessing there are DLL's to do this, but perhaps none already  
compatible with Rev. I realize we can use non-Rev DLL's. Perhaps  
that's the best option. I'd like to hear other opinions.


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

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


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

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


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


Re: XP - Applescript equivalents

2006-03-03 Thread David Burgun

Hi,

The only way I can think to do this is to write External Commands  
that in C/C++ interface to the relevant Windows APIs and return the  
information to RunRev.


All the Best
Dave

On 3 Mar 2006, at 11:53, Richard Miller wrote:

Our Rev program is Mac based. We want to run it under XP. We use  
three Applescript-based functions in this program that need to be  
replaced under XP. I'm looking for suggestions on how best to do  
this. The three functions:


- get the status of the internal battery (on a laptop)
- get the wireless strength (was airport status)
- switch wireless connection (was switch airport connection)

I'm guessing there are DLL's to do this, but perhaps none already  
compatible with Rev. I realize we can use non-Rev DLL's. Perhaps  
that's the best option. I'd like to hear other opinions.


Thanks.
Richard Miller
Imprinter Technologies
___
use-revolution mailing list
use-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: How to change the label of a button to the contents of an editable field?

2006-03-03 Thread William de Smet
Hi Judy,

I am working on a standalone application where the user need to change this.
So without RR!

greetings, William



2006/3/3, Judy Perry <[EMAIL PROTECTED]>:
> And, of course,
>
> couldn't one just edit the contents of the label field itself using the
> object inspector?
>
> Judy
>
> On Fri, 3 Mar 2006, Klaus Major wrote:
>
> > the syntax is correct actualy!
> >
> > Question:
> > Do you mean the field/button with the number 1 (first field/button) or a
> > field/button NAMED "1"?
> >
> > In the first case you should omit the quotes, in the second case
> > you really should use another name, since you may get very strange
> > results
> > when naming object with a number!
> >
> > Just call the field "field1" (button "button1") and then try again.
>
> ___
> use-revolution mailing list
> use-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: How to change the label of a button to the contents of an editable field?

2006-03-03 Thread Judy Perry
And, of course,

couldn't one just edit the contents of the label field itself using the
object inspector?

Judy

On Fri, 3 Mar 2006, Klaus Major wrote:

> the syntax is correct actualy!
>
> Question:
> Do you mean the field/button with the number 1 (first field/button) or a
> field/button NAMED "1"?
>
> In the first case you should omit the quotes, in the second case
> you really should use another name, since you may get very strange
> results
> when naming object with a number!
>
> Just call the field "field1" (button "button1") and then try again.

___
use-revolution mailing list
use-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: AltBrowser--wow.

2006-03-03 Thread Thomas McGrath III

Tom,

I also struggled with altBrowser 1 and have just finished building my  
first web browser into my project and can definitely say it is  
fantastic. Once I got my email address correct it was a breeze to  
use, install and impress the heck out of every one that sees it. I  
had my own address wrong for the registration. DUH.


Anyway, bravo to Chipp and team on a superb product, definitely worth  
the effort and you can't beat the price.


Tom

I also got the altFont application and have not used it yet.

On Mar 3, 2006, at 7:20 AM, Thomas McCarthy wrote:



Last summer I wrote a message airing publicly my complaints about  
this product. It was a bit of vitrol after frustrating attempts to  
get it to work (yes, I had read the manuals!)


I shot off an angry letter to the Altuit team about what I found as  
shortcommings:

1. the demo on the site was not the latest (bug-free) version
2. the obvious pit-fall (which even Dan Shafer fell into)--not  
ensuring the plug-in was installed was not properly covered.
3. the demo stack tried to cram every type of function onto one  
card making it rather daunting to a newbie.


Well, somebody over there was listening! Each and every one of  
those concerns has been so well addressed you wouldn't know it was  
the same product that caused me heart-burn.


Downloading and installing is a breeze, updating couldn't be easier  
and the demo stack gracefully guides you through the features. Bravo!


BTW. I decided to take a look at AltBrowser again after happening  
across AltFont (which similarly is a joy to install). AltFont is an  
answer to a lot of my dreams. I need some special characters which  
unicode can do, but rev doesn't handle unicode very well. AltFont  
will enable me to use the special fonts I already have and I can  
kiss unicode good-bye for now! Was this announced on the list? I  
don't recall seeing it.


tm

___
Join Excite! - http://www.excite.com
The most personalized portal on the Web!


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

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


Thomas J McGrath III
[EMAIL PROTECTED]

Lazy River Software™ - http://www.lazyriversoftware.com

Lazy River Metal Art™ - http://www.lazyriversoftware.com/metal.html

Meeting Wear™ - http://www.cafepress.com/meetingwear

Semantic Compaction Systems - http://www.minspeak.com

SCIconics, LLC - http://www.sciconics.com/sciindex.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: Importing and export text with foreign accents

2006-03-03 Thread Charles Hartman
Is this really true? My impression is that characters >128 are  
different in the "ASCII" character sets on Mac and Windows.


Charles


On Mar 3, 2006, at 12:08 PM, Mark Schonewille wrote:


Hi Derek,

Even if you are using diacritics, as they are called, there is no  
reason to use unicode. Only if the text you are exporting contains  
Arabic, Polish, Bulgarian etc characters, which are not in the  
ASCII character set, you might need to use unicode.


Does your text contain characters that are not in the ASCII  
character set? If you are exporting as XML, you may have to use the  
htmlText instead of plain text.


Best,

Mark

Derek Larsen wrote:

I'm having a little trouble importing a tab deliminted text file
(saved from excel), having rev organize it, then saving it out as an
xml file.
The import and text manipulation works just fine, but when it comes
time to export the data out to text files, all the foreign characters
(accents, umlauts, etc,) get converted to squares or questions marks.
Initially I tried straight open, write, and close file statements.
Then I tried unicodeText and uniEncode/uniDecode statements and it's
still a no go.
Is there a tech sheet somewhere that's explains more about how runrev
deals with special characters?
Any insight would be appreciated!


--

Consultant and Software Engineer
mailto:[EMAIL PROTECTED]
http://www.economy-x-talk.com

eHUG coordinator
mailto:[EMAIL PROTECTED]
http://www.ehug.info

Advertise with us and reach 1000 truely interested internet users  
every month. See http://economy-x-talk.com/advertise.html for more  
information.


___
use-revolution mailing list
use-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: Importing and export text with foreign accents

2006-03-03 Thread Mark Schonewille

Hi Derek,

Even if you are using diacritics, as they are called, there is 
no reason to use unicode. Only if the text you are exporting 
contains Arabic, Polish, Bulgarian etc characters, which are not 
in the ASCII character set, you might need to use unicode.


Does your text contain characters that are not in the ASCII 
character set? If you are exporting as XML, you may have to use 
the htmlText instead of plain text.


Best,

Mark

Derek Larsen wrote:

I'm having a little trouble importing a tab deliminted text file
(saved from excel), having rev organize it, then saving it out as an
xml file.

The import and text manipulation works just fine, but when it comes
time to export the data out to text files, all the foreign characters
(accents, umlauts, etc,) get converted to squares or questions marks.

Initially I tried straight open, write, and close file statements.

Then I tried unicodeText and uniEncode/uniDecode statements and it's
still a no go.

Is there a tech sheet somewhere that's explains more about how runrev
deals with special characters?

Any insight would be appreciated!


--

Consultant and Software Engineer
mailto:[EMAIL PROTECTED]
http://www.economy-x-talk.com

eHUG coordinator
mailto:[EMAIL PROTECTED]
http://www.ehug.info

Advertise with us and reach 1000 truely interested internet 
users every month. See http://economy-x-talk.com/advertise.html 
for more information.


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


Importing and export text with foreign accents

2006-03-03 Thread Derek Larsen
I'm having a little trouble importing a tab deliminted text file
(saved from excel), having rev organize it, then saving it out as an
xml file.

The import and text manipulation works just fine, but when it comes
time to export the data out to text files, all the foreign characters
(accents, umlauts, etc,) get converted to squares or questions marks.

Initially I tried straight open, write, and close file statements.

Then I tried unicodeText and uniEncode/uniDecode statements and it's
still a no go.

Is there a tech sheet somewhere that's explains more about how runrev
deals with special characters?

Any insight would be appreciated!

--
Derek
___
use-revolution mailing list
use-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: XP Problems Persist...

2006-03-03 Thread Rob Cozens

Judy, Andre, et al:

it will sound stupid but I had tons of problems with my thumb drive 
corrupting my rev stacks... after using it, rev would cease to 
recognize the stacks. It was not a rev problem it was a cheap thumb 
drive problem... have you tried to transfer the files using another 
medium?




I had this problem moving v2.1.2 Mac stacks to v2.6.1 Rev on XP.

It didn't seem to be the media (Lexar JumpDrive), because compressed 
stacks dragged from the Mac to the JumpDrive expanded correctly on the 
XP.


Rob Cozens
CCW, Serendipity Software Company

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

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

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


Re: How to change the label of a button to the contents of an editable field?

2006-03-03 Thread William de Smet
Hi there,

I knew I would be simple: i made a new stack and tried it out and it works.
Thanks to Klaus and Peter.

Greetings,

William de Smet

2006/3/3, Klaus Major <[EMAIL PROTECTED]>:
> Dag William,
>
> > Hi there,
> >
> > I am trying to make the label of a button the same as the contents
> > of an editable field.
> > So far I've come up with this:
> > set the label of button "1" to word 1 of field "1" but this returns
> > the word "Field" as label of button 1.
> >
> > I am stuck here but its probably very simple.
> > Is there someone out there who could help me?
>
> the syntax is correct actualy!
>
> Question:
> Do you mean the field/button with the number 1 (first field/button) or a
> field/button NAMED "1"?
>
> In the first case you should omit the quotes, in the second case
> you really should use another name, since you may get very strange
> results
> when naming object with a number!
>
> Just call the field "field1" (button "button1") and then try again.
>
> Works fine here :-)
>
> > greetings,
> >
> > William de Smet
>
> Groetjes
>
> Klaus Major
> [EMAIL PROTECTED]
> http://www.major-k.de
>
> ___
> use-revolution mailing list
> use-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: How to change the label of a button to the contents of an editable field?

2006-03-03 Thread Klaus Major

Dag William,


Hi there,

I am trying to make the label of a button the same as the contents  
of an editable field.

So far I've come up with this:
set the label of button "1" to word 1 of field "1" but this returns  
the word "Field" as label of button 1.


I am stuck here but its probably very simple.
Is there someone out there who could help me?


the syntax is correct actualy!

Question:
Do you mean the field/button with the number 1 (first field/button) or a
field/button NAMED "1"?

In the first case you should omit the quotes, in the second case
you really should use another name, since you may get very strange  
results

when naming object with a number!

Just call the field "field1" (button "button1") and then try again.

Works fine here :-)


greetings,

William de Smet


Groetjes

Klaus Major
[EMAIL PROTECTED]
http://www.major-k.de

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


Re: How to change the label of a button to the contents of an editable field?

2006-03-03 Thread Peter T. Evensen
set the label of button "1" to word 1 of the text of field "1"  should do 
the trick.


At 09:35 AM 3/3/2006, you wrote:

Hi there,

I am trying to make the label of a button the same as the contents of
an editable field.
So far I've come up with this:
set the label of button "1" to word 1 of field "1" but this returns
the word "Field" as label of button 1.

I am stuck here but its probably very simple.
Is there someone out there who could help me?

greetings,

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

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


Peter T. Evensen
http://www.PetersRoadToHealth.com
314-629-5248 or 888-628-4588 


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


How to change the label of a button to the contents of an editable field?

2006-03-03 Thread William de Smet

Hi there,

I am trying to make the label of a button the same as the contents of  
an editable field.

So far I've come up with this:
set the label of button "1" to word 1 of field "1" but this returns  
the word "Field" as label of button 1.


I am stuck here but its probably very simple.
Is there someone out there who could help me?

greetings,

William de Smet
___
use-revolution mailing list
use-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: resizable stack with Mac unresizable with Windows

2006-03-03 Thread Mark Schonewille

Hi André,

I didn't test this in 2.7, but in earlier versions there used to 
be a problem that involved changing the decorations and affected 
the resizable of the stack on all Windows platforms. This is a 
Revolution bug that has already been reported to BugZilla:




Since you're including all default decorations plus metal while 
there is no metal on Windows available, why don't you set the 
decorations to "default"? That should "solve" your problem.


Best,

Mark


André.Bisseret wrote:

Hi !
I have a stack whose resizable property is set to true.
I used the geometry manager to set position or scale of all the objects 
for which it was necessary (thanks to the very clear tutorial from Éric 
Chatonet (So Smart Software), and the demo he recommends  from Chipp 
Walters, from Altuit.

The decorations are : Title, menu, minimize, maximize, close, metal.
Live Resizing is set to false

All is working very well on my Mac (G4, OS X, 10.2.8).
But on Windows (2000 or XP) the stack is not resizable (no button in the 
bottom right corner).


Well, I suppose I could work around that by covering  the normal 
"internal" button (that appears with Mac)   by another one including the 
script proposed by Éric Chatonet in his tutorial and which runs very 
well. (I hope it would not disappear on Windows system !!! :-))).


But, frankly, I would prefer a more regular "internal" solution ;-)

 Any help would be very much appreciate

Best regards from Grenoble
André


--

Consultant and Software Engineer
mailto:[EMAIL PROTECTED]
http://www.economy-x-talk.com

eHUG coordinator
mailto:[EMAIL PROTECTED]
http://www.ehug.info

Advertise with us and reach 1000 truely interested internet 
users every month. See http://economy-x-talk.com/advertise.html 
for more information.


___
use-revolution mailing list
use-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: Table Inspector

2006-03-03 Thread Gregory Lypny
That works most of the time.  It doesn't work or will take a long  
time (a few minutes) if there's lots of data in the field.


Gregory

On Fri, Mar 3, 2006, at 6:23 AM, use-revolution- 
[EMAIL PROTECTED] wrote:


Yeah, it just started happening one day for me too.. While it does  
lock-up
Rev, I've found that a simple CMD-. (CTRL-Pause for Windows users)  
will
bring it out of being unresponsive (mind you the palette will be  
cut off but

you can still set your tab stops =)


___
use-revolution mailing list
use-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: XP Problem SOLVED!

2006-03-03 Thread Robert Brenstein

Yup, Andre:

That's apparently the cause!  I was able to u/l the file to RevOnline,
install Rev on the PC in here and pull it down from there.

Worked fine.

Have advised the student that his drive is the problem.

As for why we didn't try other options, well, there aren't any other
options.  Neither of us had a burnable CD, the Macs are all OS 9 and most
of them don't work at all, and even if they did, they're running Rev 2.5,
and, finally, the FTP server corrupts as well as zero's out files
unpredictably, so I couldn't distribute the files that way, either.
Yikes.

Thanks again!

Judy


Such problems are specific only to certain USB stick technologies. 
Even though they all look alike, more or less, they use different 
storage technologies inside. I have encountered some problems with 
the newest, very cheap ones, including not being recognized by one or 
the other system, whereas older ones I have work reliably between 
OS9, OSX, and Windows.


Your problems with FTP server sound weird. But zipped stacks should 
transfer okay as email attachments if nothing else is available and 
anti-spam lets zip files through.


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


resizable stack with Mac unresizable with Windows

2006-03-03 Thread André . Bisseret

Hi !
I have a stack whose resizable property is set to true.
I used the geometry manager to set position or scale of all the objects 
for which it was necessary (thanks to the very clear tutorial from Éric 
Chatonet (So Smart Software), and the demo he recommends  from Chipp 
Walters, from Altuit.

The decorations are : Title, menu, minimize, maximize, close, metal.
Live Resizing is set to false

All is working very well on my Mac (G4, OS X, 10.2.8).
But on Windows (2000 or XP) the stack is not resizable (no button in 
the bottom right corner).


Well, I suppose I could work around that by covering  the normal 
"internal" button (that appears with Mac)   by another one including 
the script proposed by Éric Chatonet in his tutorial and which runs 
very well. (I hope it would not disappear on Windows system !!! :-))).


But, frankly, I would prefer a more regular "internal" solution ;-)

 Any help would be very much appreciate

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: Type a text from a palette stack to an external window

2006-03-03 Thread Paul Claude
Anyone can help me in this matter? It's a Rev bug?


on 1-03-2006 14:06, Paul Claude at [EMAIL PROTECTED] wrote:

> There is a way to let Revolution (also via Applescript) may type a text on
> an external app window (i.e. a text editor)?
> 
> I've tried using various AS tips to bring the ext. window to the frontmost,
> but every time the focus remains on the stack (a systemWindow style
> palette), and typing give back only an error sound.
> 
> 
> ___
> use-revolution mailing list
> use-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


AltBrowser--wow.

2006-03-03 Thread Thomas McCarthy

Last summer I wrote a message airing publicly my complaints about this product. 
It was a bit of vitrol after frustrating attempts to get it to work (yes, I had 
read the manuals!)

I shot off an angry letter to the Altuit team about what I found as 
shortcommings:
1. the demo on the site was not the latest (bug-free) version
2. the obvious pit-fall (which even Dan Shafer fell into)--not ensuring the 
plug-in was installed was not properly covered.
3. the demo stack tried to cram every type of function onto one card making it 
rather daunting to a newbie.

Well, somebody over there was listening! Each and every one of those concerns 
has been so well addressed you wouldn't know it was the same product that 
caused me heart-burn.

Downloading and installing is a breeze, updating couldn't be easier and the 
demo stack gracefully guides you through the features. Bravo!

BTW. I decided to take a look at AltBrowser again after happening across 
AltFont (which similarly is a joy to install). AltFont is an answer to a lot of 
my dreams. I need some special characters which unicode can do, but rev doesn't 
handle unicode very well. AltFont will enable me to use the special fonts I 
already have and I can kiss unicode good-bye for now! Was this announced on the 
list? I don't recall seeing it.

tm

___
Join Excite! - http://www.excite.com
The most personalized portal on the Web!


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


First color, second color third color, etc

2006-03-03 Thread Stgoldberg
I have been puzzled by the color feature in the object inspector for some of 
the objects (e.g. images) which list the options of "First color, second 
color, third color etc." What does this do?   If I check off a color, nothing 
happens and the option disappears on leaving the object inspector.   Perhaps 
someone can clarify this.   Thanks.
Steve Goldberg
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


XP - Applescript equivalents

2006-03-03 Thread Richard Miller
Our Rev program is Mac based. We want to run it under XP. We use  
three Applescript-based functions in this program that need to be  
replaced under XP. I'm looking for suggestions on how best to do  
this. The three functions:


- get the status of the internal battery (on a laptop)
- get the wireless strength (was airport status)
- switch wireless connection (was switch airport connection)

I'm guessing there are DLL's to do this, but perhaps none already  
compatible with Rev. I realize we can use non-Rev DLL's. Perhaps  
that's the best option. I'd like to hear other opinions.


Thanks.
Richard Miller
Imprinter Technologies
___
use-revolution mailing list
use-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: Extract items

2006-03-03 Thread Jim Ault
On 3/3/06 12:00 AM, "Joseba Aguayo" <[EMAIL PROTECTED]> wrote:
> 
> ¿Exists in Revolution an order similar to the Extract Rinaldi XCMD?
> ¿Is possible to extract one or two items (item 3 to 4) of a list
> separate with tabs.
> 
Roll your own with your own rules and reactions :-)
Here is my version I put together very quickly so you may want to improve
it.  I use my style of programming code.. old habits die hard, but it works
for me.

First, make a new main stack, create two fields, paste the code into the
stack script, then put the original list into field 1, double click on the
card anywhere to run the script.

 --start copy here ---
on mouseDoubleUp
  put empty into fld 2
  put extractItem(fld 1, 3,4, tab) into extractResult
  if extractResult contains "error" then
answer extractResult
exit to top
  end if
  put extractResult into fld 2
end mouseDoubleUp

function extractItem listt, aa, bb, cc
  set the itemDel to cc -- sets the desired delim
  repeat for each line LNN in listt
if the number of items in LNN < bb then
  put "error to few items" into ans
  exit repeat
end if
put item aa to bb of LNN & cr after newListt
  end repeat
  if ans contains "error" then
put cr & LNN after ans
return ans
  else 
delete last char of newListt
return newListt
  end if
end extractItem
- end  copy ---

You do not have to worry about keeping the old itemDelimeter since this
setting (1) only affects the current handler (2) uses the default until
reset in each handler that runs...
which means each time the extractItem() function is called, the itemDel is a
comma, then we set it to be whatever is passed as "cc",  and
after the  extractItem() function ends, this itemDel does not affect to the
original handler.  Thus the original handler in this example will always
have the comma as its itemDel setting.

You can confirm this by adding the following line at the end of the first
handler
answer the number of items in fld 2 --which should be 1 if you used tabs


you may want to add an error check to see if  aahttp://lists.runrev.com/mailman/listinfo/use-revolution


Re: RGB to HEX

2006-03-03 Thread Alex Tweedly

Garrett Hylltun wrote:


On Mar 2, 2006, at 10:28 AM, Jeanne A. E. DeVoto wrote:


 put "#" into theWebColor -- leading "#"
 repeat for each item myItem in theColorNumber -- numeric triplet -  
R,G,B

get baseConvert(myItem,10,16)
if the length of it is 1 then put zero before it  -- each  
component must be 2-digit

put it after theWebColor
  end repeat

--
jeanne a. e. devoto ~ [EMAIL PROTECTED]



Thank you very much, this helped me figure out how to use that  
baseConvert.  And thank you Sarah and FlexibleLearning for also  
responding, very much appreciated.


baseConvert is a good, general purpose tool - but you can do this more 
concisely using format


put "#" into theWebColor -- leading "#"
repeat for each item myItem in theColorNumber -- numeric triplet -  R,G,B
   put format("%02X",myItem) after theWebColor
end repeat

note - I prefer RGB colours to be #0A0B0F - i.e. upper case - so I used 
"%02X", but if you prefer lower case you can instead us "%02x"


--
Alex Tweedly   http://www.tweedly.net



--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.375 / Virus Database: 268.1.1/272 - Release Date: 01/03/2006

___
use-revolution mailing list
use-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: Extract items

2006-03-03 Thread Yves COPPE


Le 3 mars 06 à 09:00, Joseba Aguayo a écrit :


Hello:

¿Exists in Revolution an order similar to the Extract Rinaldi XCMD?
¿Is possible to extract one or two items (item 3 to 4) of a list  
separate with tabs.


Thanks.

Un saludo




I've a function which do the same in transcript :


Filedname = the name of the fld or the variable with the data
pItemNumber = the item(s) to be extracted
delim = the item delimiter

function extractItem pFieldName, pItemNumber,delim
  local tempLine, tempItem,vListofItems,vListToReturn
  put itemDelimiter into oldDelim
  replace comma with delim in pItemNumber
  set itemDelimiter to delim
  repeat for each line tempLine in pFieldName
put empty into vListofItems
repeat for each item tempItem in pItemNumber
  put item tempItem of tempLine &delim after vListofItems
end repeat
delete last char of vListofItems
put vListofItems& return after vListToReturn
  end repeat
  set itemDelimiter to oldDelim
  if the number of lines of vListToReturn > 1 then
delete last char of vListToReturn
  end if
  return vListToReturn
end extractItem



Greetings.

Yves COPPE
[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


Extract items

2006-03-03 Thread Joseba Aguayo

Hello:

¿Exists in Revolution an order similar to the Extract Rinaldi XCMD?
¿Is possible to extract one or two items (item 3 to 4) of a list  
separate with tabs.


Thanks.

Un saludo

Joseba
([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