Re: no defaultstack

2008-02-24 Thread Jim Ault
Hmmm, based on my last 4 years experience with Rev, this does not make sense, so I really hope you get to the bottom of strange behavior. Let's hope that it does not require some work-around. >From your description below, there is not enough info to help you. It sounds as if the field is insid

no defaultstack

2008-02-24 Thread rand valentine
I'm using Rev 2.8.1 Studio, MacBook Pro, 4gb memory, Leopard, and now Revolution does not recognize the card or stack that I'm in when I execute a script. So every field reference must be specified for the card it's on and the stack it's in, i.e., one can't just designate: fld "whichField" rath

Re: Stop accepting connections?

2008-02-24 Thread Troy Rollins
On Feb 24, 2008, at 7:23 PM, Mark Schonewille wrote: Probably, you closed the socket that is created when the client connects to your server, which is of the form "123.123.123.123:1234", while the socket you need to close to disable any firther connections is just an integer, without the I

Re: Stop accepting connections?

2008-02-24 Thread Mark Schonewille
Hi Troy, Probably, you closed the socket that is created when the client connects to your server, which is of the form "123.123.123.123:1234", while the socket you need to close to disable any firther connections is just an integer, without the IP address. Best regards, Mark Schonewille

Re: can't find object messages

2008-02-24 Thread Mark Schonewille
Hi Rand, You are dealing with two problems that have nothing to do with each other. A problem in your script and a problem in the debugger. I hope that the problem in the debugger will be fixed when 2.9 is released. Maybe we can find the problem in your script if you post the script here.

Re: Stop accepting connections?

2008-02-24 Thread Troy Rollins
On Feb 24, 2008, at 7:01 PM, Mark Schonewille wrote: At the end of the script that handles an incoming connection, put: close socket 8080 or whatever port number you are using. Thanks Mark. I think I had done something like that already, and then found that a connection could still be m

can't find object messages

2008-02-24 Thread rand valentine
Using Studio 2.8.1 on an intel MacBook Pro with 4gb memory, Leopard 10.5.2. I wrote earlier about having problems with a handler not being able to "find" something on the card I execute from, and someone wrote saying that this was related to a problem with ask and answer dialogs. Now I find the sa

Re: Stop accepting connections?

2008-02-24 Thread Mark Schonewille
Hi Troy, At the end of the script that handles an incoming connection, put: close socket 8080 or whatever port number you are using. Best regards, Mark Schonewille -- Economy-x-Talk Consulting and Software Engineering http://economy-x-talk.com http://www.salery.biz Convert colours betwee

Stop accepting connections?

2008-02-24 Thread Troy Rollins
It seems that once I open a socket for connections, I've had problems closing that socket without doing a "resetAll", which I need to avoid. Am I missing something simple? "stop accepting connections" or something? Ideally, I want only 1 connection made. so I was hoping to "accept" unti

Re: Rev Blog

2008-02-24 Thread Mick Collins
Hi, Sarah, great idea. I have only one suggestion, based on my confusion when I first read it. Early in the description of Rev you say: Revolution Enterprise is the same as Studio but with access to pre- release versions as well as the ability to develop on multiple platforms (a Studio lic

Re: [ANN] Multi-Browser pre-alpha test release

2008-02-24 Thread capellan
Hi Thomas, This new version works great in RR 2.8.1 and StackRunner 1.7 in Windows XP. When you publish a 1024x768 version, i will test all the features. Keep up your good Work! :-) alejandro -- View this message in context: http://www.nabble.com/-ANN--Multi-Browser-pre-alpha-test-release-tp1

OT Recommendations on Midi Keyboard 32-37 key- semi-weighted

2008-02-24 Thread Sivakatirswami
We're in the market for a new small USB midi-keyboard. this will be used to "document" simple song tunes... I only need 32-37 keys to get to G below Middle C and E above...that's enough for the average vocal range. I'm interested in anyone's recommendations on brand... not necessarily featur

Re: beta testing 2.9

2008-02-24 Thread Björnke von Gierke
There seems to be a problem with the beta mailings, namely that they didn't get sent. I assume that somebody who works for RunRev will handle it tomorrow, during business hours. have fun Björnke On 24 Feb 2008, at 20:17, Eric A. Engle wrote: sorry to nag; am I meant to download 2.9 for bet

beta testing 2.9

2008-02-24 Thread Eric A. Engle
sorry to nag; am I meant to download 2.9 for beta testing somewhere? Where? I mean, I'm assuming it's got the scriptLimit set to 5 or 10 lines. It's mostly the UI that interests me. Maybe I've misunderstood something? http://lexflex.com free full text online law reviews, cases & legislation

Re: Weird Behavior

2008-02-24 Thread Mark Swindell
I've taken to doing Tom's suggestion all the time (adding the group name) and it seems to keep things moving along for me. Mark On Feb 24, 2008, at 9:34 AM, Thomas McGrath III wrote: Try adding the grp name when in a group ON mouseUp IF fld "notes_note" is not empty THEN answer "R

Re: weird behavior

2008-02-24 Thread Richard Gaskin
rand valentine wrote: Yes, if I remove the answer dialogue, then the script runs just fine. How does one get around this bug? For now: put the defaultStack into tSaveStack answer "Really clear?" with "Cancel" OR "Yes" put it into tVal set the defaultStack to tSaveStack

re: weird behavior

2008-02-24 Thread rand valentine
>> Yes, if I remove the answer dialogue, then the script runs just fine. How >> does one get around this bug? > > For now: > > put the defaultStack into tSaveStack > answer "Really clear?" with "Cancel" OR "Yes" > put it into tVal > set the defaultStack to tSaveStack > I

Re: re; weird behavior

2008-02-24 Thread Richard Gaskin
rand valentine wrote: I'm using Studio version 2.8.1 on an intel Mac running Leopard (10.5.2). Also running Galaxy and GL2. I'm getting weird behavior that I don't understand. An object is recognized for some things but not others. For example, in the following script, which simply clears a fiel

re; weird behavior

2008-02-24 Thread rand valentine
> I'm using Studio version 2.8.1 on an intel Mac running Leopard (10.5.2). > Also running Galaxy and GL2. I'm getting weird behavior that I don't > understand. An object is recognized for some things but not others. For > example, in the following script, which simply clears a field: > > ON mouse

Re: Weird Behavior

2008-02-24 Thread Thomas McGrath III
Try adding the grp name when in a group ON mouseUp IF fld "notes_note" is not empty THEN answer "Really clear?" with "Cancel" OR "Yes" IF it is "Yes" THEN put empty into fld "notes_note" of grp "theGroupNameGoesHere" END IF END mouseUp HTHs Tom McGrath On Feb 24, 20

Re: Weird Behavior

2008-02-24 Thread Richard Gaskin
rand valentine wrote: I'm using Studio version 2.8.1 on an intel Mac running Leopard (10.5.2). Also running Galaxy and GL2. I'm getting weird behavior that I don't understand. An object is recognized for some things but not others. For example, in the following script, which simply clears a fiel

Re: [ANN] Multi-Browser pre-alpha test release

2008-02-24 Thread Thomas McGrath III
I have saved a new version in RR 2.8.1 to see if it will open in RR on Win XP: http://www.lazyriversoftware.com/multibrowser.html Or you can try to open this from the message box within RR. go URL "http://www.lazyriversoftware.com/MultiBrowser.rev"; I hope this works. Tom On Feb 24, 2008,

Weird Behavior

2008-02-24 Thread rand valentine
I'm using Studio version 2.8.1 on an intel Mac running Leopard (10.5.2). Also running Galaxy and GL2. I'm getting weird behavior that I don't understand. An object is recognized for some things but not others. For example, in the following script, which simply clears a field: ON mouseUp IF fl

Re: [ANN] Multi-Browser pre-alpha test release

2008-02-24 Thread Thomas McGrath III
Thanks Alejandro, The Win XP issue might be because I was using RR 2.9 (beta). I am having problems with 2.9 anyway so I think I will open this stack in 2.8.1 and see if it has the same problems and then upload a new stack. Also, I am working now on the resizing of the windows since I made

Re: [ANN] Multi-Browser pre-alpha test release

2008-02-24 Thread capellan
Hi Thomas, Here, in a Windows XP box, the web browsers works great. Tested with StackRunner 1.7, but does not work inside RR 2.8.1. Notice that web browser window have a fixed size, so it´s difficult to use in smaller screen sizes like 1024x768. alejandro -- View this message in context:

Re: OT: New threat to our way of life: giant pythons

2008-02-24 Thread viktoras didziulis
Hi Mark, invasive alien species are an increasing problem globally. Species that were introduced deliberately or accidentally into new areas now have more chances to adopt and survive also because of the global climate change. Not all species are as bad, some are endangered, but some are nast

Re: Rev blog

2008-02-24 Thread Joe Lewis Wilkins
Hi Sarah, I think one important clarification should be added to the description of the 3 versions of Revolution on your Rev Blog, being: that the Media version does NOT allow the user to convert HyperCard stacks to Revolution stacks. Thanks, Joe Wilkins On Feb 23, 2008, at 11:11 PM, Sa