Re: [OT] Some Recognition

2010-12-16 Thread Scott Rossi
We talked about this, yes?  Touch six fingers on the alien main menu screen and 
you can temporarily unlock all stages...

:-)

Scott Rossi
Creative Director
Tactile Media, UX Design



On Dec 15, 2010, at 11:40 PM, Anthony Howe  wrote:

> Congrats on the game mate now what were those cheat codes again? ;)
> 

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


Re: [OT] Some Recognition

2010-12-16 Thread Chipp Walters
Great Scott, that's wonderful news! It REALLY is a fun game and most
deserving. Congrats!

On Wednesday, December 15, 2010, Scott Rossi  wrote:
> My iOS game PLEXXR recently won best art category in IndiePub Mobile Games
> Competition.  Nice to get some recognition for one's efforts.  :-)
>
> 
>
> (not build in LiveCode)
>
> Regards,
>
> Scott Rossi
> Creative Director
> Tactile Media, UX Design
>
>
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>

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


Re: Concatenating 2 stacks.

2010-12-16 Thread Richmond

On 12/16/2010 01:04 AM, Björnke von Gierke wrote:

reading trough the backlog, sorry for late response.

try to add the second stack as substack, and use 'go' as follows (this is of 
course a visual workaround, for not to need to mass-copy stuff):

go stack "second stack" in window (the short name of this stack)




Thanks Björnke; the only problem with that method is that it would 
probably cause

complications in a standalone.


On 11 Dec 2010, at 23:06, Richmond wrote:


On 12/11/2010 11:48 PM, J. Landman Gay wrote:

On 12/11/10 3:04 PM, Richmond wrote:

I have 2 main stacks that I want to combine into
1 stack, the 2 stacks following each other sequentially.

But I don't know how to do this.

There's no automatic way.

Grunts!


You have to copy the cards of stack 2 and paste them at the end of stack 1. If 
you have a lot of cards, you could write a script to do it. If the two stacks 
use different stack scripts, you'll need to manually edit the one in stack 1 
and add any handlers that were only in stack 2.

Thanks for the help.


Alternately, you could set stack 2 to be a substack of stack 1. That's easy. Just change 
stack 2's "mainstack" in its property inspector.



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


Re: Concatenating 2 stacks.

2010-12-16 Thread Mark Schonewille
Hi Richmond,

Make a new stack with your two stacks as subsacks. Make sure that the windows 
are equally sized. Use a script in the mainstack to open the first substack 
first. Use the following script to go to the next card:

on goNextCard
  if number of this cd is number of last cd then
go stack "The Other Stack" in window "Name of This Stack"
  else
go next
  end if
end goNextCard

You can do the opposite for going backwards, checking for the first card of 
"The Other Stack".

--
Best regards,

Mark Schonewille

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

New: Download the Installer Maker Plugin 1.5 for LiveCode here http://qurl.tk/ce

On 16 dec 2010, at 11:26, Richmond wrote:
> 
> Thanks Björnke; the only problem with that method is that it would probably 
> cause
> complications in a standalone.
> 


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


Re: Concatenating 2 stacks.

2010-12-16 Thread Richmond

On 12/16/2010 12:47 PM, Mark Schonewille wrote:

Hi Richmond,

Make a new stack with your two stacks as subsacks. Make sure that the windows 
are equally sized. Use a script in the mainstack to open the first substack 
first. Use the following script to go to the next card:

on goNextCard
   if number of this cd is number of last cd then
 go stack "The Other Stack" in window "Name of This Stack"
   else
 go next
   end if
end goNextCard

You can do the opposite for going backwards, checking for the first card of "The 
Other Stack".

--
Best regards,

Mark Schonewille



Really wonderful; Thanks!


On 16 dec 2010, at 11:26, Richmond wrote:

Thanks Björnke; the only problem with that method is that it would probably 
cause
complications in a standalone.



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


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


Re: RevServer on OSX (Snow Leopard Server)

2010-12-16 Thread Keith Clarke
Thanks to Mike, Devin and Andre for help to date with my revServer setup 
challenges. Current state of play is...

I have a test.irev page in /Library/WebServer/Documents/ and the same test.irev 
file and an index.html with an embedded rev script in a Custom Site, which has 
its web root set to /Library/WebServer/Documents/Test/ 

I'm getting no rev content in my test Site's index.html file and both instances 
of test.irev file return the 500 error 'premature end of script headers: 
revServer'.

The revServer distribution folder's contents - including the revServer engine - 
are in /Library/WebServer/CGI-Executables/

The changes I've made from the original .etc/apache2/httpd.conf file are the 
following lines [comments in square brackets are not in the file!]:
Line 272AddHandler irev-script irev (this was added via the Server 
Admin application's Add Content Handler function)
Line 273Action irev-script /cgi-bin/revserver
Lines 1082 - 1095:

AllowOverride All
Options MultiViews
Order allow,deny 
Allow from all
AddHandler irev-script .irev
Action irev-script /cgi-bin/revserver/

##

Options ExecCGI
Order allow,deny
Allow from all


Line 1192   ScriptAlias /cgi-bin/ /Library/WebServer/CGI-Executables/ [not 
added by me but provided as context for those below]
Line 1193   ScriptAliasMatch ^/cgi-bin/((?!(?i:webobjects)).*$) 
"/Library/WebServer/CGI-Executables/$1" [I'm not sure what this does or if it's 
still needed, given line 1192]
Line 1194   ScriptAlias /cgi-bin/revserver 
/Library/WebServer/CGI-Executables/revserver [from vhost lesson example but 
seems redundant, given line 1192]

Here is a link to my current httd.conf file 
http://dl.dropbox.com/u/1909531/httpd.conf - just in case I have made other 
errors in mapping the generic CGI vhosts example in the revserver lesson - 
http://lessons.runrev.com/spaces/lessons/buckets/814/lessons/16631-Getting-Up-and-Running-with-revServer
 - to the OSX Server 10.6.5-specific apache config file.
Best,
Keith..

On 15 Dec 2010, at 20:57, Keith Clarke wrote:

> Mike, Thanks for the response and the file - I'm off to have a play right now!
> Keith..
> 
> On 15 Dec 2010, at 20:41, Mike Bonner wrote:
> 
>> oh wait, the one I sent was the non-snow conf file. So either way, I can
>> send you my leopard one.
>> 
>> On Wed, Dec 15, 2010 at 1:41 PM, Mike Bonner  wrote:
>> 
>>> I did it that way but no longer have that computer. However, I did send a
>>> complete working httpd.conf to.. someone on this list. My memory is so bad I
>>> can't recall who. (sent privately, but wouldn't mind if they forward it on
>>> to you)  On the other size, I have an httpd.conf working dandy on straight
>>> leopard that I'd be willing to send.  Should work for either system, leop,
>>> or snow.
>>> 
>>> Let me know if you want it.
>>> 
>>> On Wed, Dec 15, 2010 at 12:58 PM, Keith Clarke <
>>> keith.cla...@clarkeandclarke.co.uk> wrote:
>>> 
 Hi Folks,
 I'm back on the revServer setup trail and I'm documenting as I go, with a
 view to publishing a how-to guide to help fill part of the revserver
 documentation gap.
 
 There are various threads on the archives where people have taken subtly
 different approaches and therefore created different solutions (and so some
 of the advice is conflicting). I wonder, has anyone achieved a set-up on
 10.6.5 with a purely Server Admin + httpd.conf approach - that is, with no
 .htaccess files floating around?
 
 Would anyone with a working 10.6.5 set-up be prepared to share with me
 (maybe off-line) their successful httpd.conf and .htaccess snippets? That
 way I might be able to finish my set-up and share a draft guide.
 Best,
 Keith..
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode
 
>>> 
>>> 
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your subscription 
>> preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
> 


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


Re: OT: Real competition for revlets

2010-12-16 Thread Andre Garzia
Folks,

This thing by REAL Software begs one questions: "How it handles concurrent
requests". FastCGI can multiplex requests, so there is a real chance your
software will be answering to more than one guy at the same time. How does
it handle that? I used to be a REAL Basic developer long time ago. I
remember having something akin to an external to have access to threading
functionality. I believe these days they have something like this built in.

So how does it works for them? Does it maintain application state for each
of the clients in memory or does it simply converts everything to
HTML/JS/CSS and allows all the state to be managed on the client side?

Many many many years ago, I demoed at a conference a little LiveCode FastCGI
implementation. I haven't developed it further because of our single thread
problem. No matter how fast your non-blocking code is, on the web you will
sooner or later face concurrency and with a single thread and no way to
recover in case it somehow blocks, it is quite hard to build servers such as
this one REAL software did.

I see many enhancement requests here for all kinds of little iOS or Desktop
stuff, mostly related to GUI or controls... what I need is the ability to
fork(), all I want is to receive little connections and delegate them to
different threads or process, so that it is in isolation and safe and the
server stays responsive. This also benefits Desktop and iOS but then, I know
how hard it is to build such feature and I know it is not coming to life
anytime soon...
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: RevServer on OSX (Snow Leopard Server)

2010-12-16 Thread Andre Garzia
Keith,

I have this on /etc/apache2/users/soapdog.conf


AddHandler cgi-script .cgi
AddHandler irev-script .irev
Action irev-script /cgi-bin/revserver
Options Indexes MultiViews ExecCGI FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all


This allows me to execute revserver on my users Sites folder such as
http://localhost/~soapdog/test.irev

I have this on /Library/WebServer/Documents/.htaccess

Options ExecCGI
AddHandler irev-script .irev
Action irev-script /cgi-bin/revserver


I have nothing on Apache httpd.conf and on the .htaccess of CGI-Executables
I just have ExecCGI. That is all, things run fine here. I think you are
missing ExecCGI on your /Library/WebSever/Documents options.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: RevServer on OSX (Snow Leopard Server)

2010-12-16 Thread Andre Garzia
Oh and one addendum (thats latin for missed one thing):

In this piece here from your configuration file:


   AllowOverride All
   Options MultiViews
   Order allow,deny
   Allow from all
   AddHandler irev-script .irev
   Action irev-script /cgi-bin/revserver/


You need to change to this:


   AllowOverride All
   Options MultiViews ExecCGI
   Order allow,deny
   Allow from all
   AddHandler irev-script .irev
   Action irev-script /cgi-bin/revserver/revserver


You need ExecCGI and you need to provide the engine to the Action handler
not the folder the engine is in.


On Thu, Dec 16, 2010 at 10:21 AM, Andre Garzia wrote:

> Keith,
>
> I have this on /etc/apache2/users/soapdog.conf
>
> 
> AddHandler cgi-script .cgi
> AddHandler irev-script .irev
> Action irev-script /cgi-bin/revserver
> Options Indexes MultiViews ExecCGI FollowSymLinks
> AllowOverride All
> Order allow,deny
> Allow from all
> 
>
> This allows me to execute revserver on my users Sites folder such as
> http://localhost/~soapdog/test.irev
>
> I have this on /Library/WebServer/Documents/.htaccess
>
> Options ExecCGI
> AddHandler irev-script .irev
> Action irev-script /cgi-bin/revserver
>
>
> I have nothing on Apache httpd.conf and on the .htaccess of CGI-Executables
> I just have ExecCGI. That is all, things run fine here. I think you are
> missing ExecCGI on your /Library/WebSever/Documents options.
>



-- 
http://www.andregarzia.com All We Do Is Code.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: RevServer on OSX (Snow Leopard Server)

2010-12-16 Thread Keith Clarke
...thanks, Andre. I've added the ExecCGI option to the 
/Library/WebServer/Documents/ directory directive and removed the trailing '/' 
on the irev script action directive, as my revServer engine is a file within in 
the (symlinked) /cgi-bin/ folder. Not working yet but hopefully two fewer typos 
to worry about!

On 16 Dec 2010, at 12:24, Andre Garzia wrote:

> Oh and one addendum (thats latin for missed one thing):
> 
> In this piece here from your configuration file:
> 
> 
>   AllowOverride All
>   Options MultiViews
>   Order allow,deny
>   Allow from all
>   AddHandler irev-script .irev
>   Action irev-script /cgi-bin/revserver/
> 
> 
> You need to change to this:
> 
> 
>   AllowOverride All
>   Options MultiViews ExecCGI
>   Order allow,deny
>   Allow from all
>   AddHandler irev-script .irev
>   Action irev-script /cgi-bin/revserver/revserver
> 
> 
> You need ExecCGI and you need to provide the engine to the Action handler
> not the folder the engine is in.
> 
> 
> On Thu, Dec 16, 2010 at 10:21 AM, Andre Garzia wrote:
> 
>> Keith,
>> 
>> I have this on /etc/apache2/users/soapdog.conf
>> 
>> 
>>AddHandler cgi-script .cgi
>>AddHandler irev-script .irev
>>Action irev-script /cgi-bin/revserver
>>Options Indexes MultiViews ExecCGI FollowSymLinks
>>AllowOverride All
>>Order allow,deny
>>Allow from all
>> 
>> 
>> This allows me to execute revserver on my users Sites folder such as
>> http://localhost/~soapdog/test.irev
>> 
>> I have this on /Library/WebServer/Documents/.htaccess
>> 
>> Options ExecCGI
>> AddHandler irev-script .irev
>> Action irev-script /cgi-bin/revserver
>> 
>> 
>> I have nothing on Apache httpd.conf and on the .htaccess of CGI-Executables
>> I just have ExecCGI. That is all, things run fine here. I think you are
>> missing ExecCGI on your /Library/WebSever/Documents options.
>> 
> 
> 
> 
> -- 
> http://www.andregarzia.com All We Do Is Code.
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


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


Re: RevServer on OSX (Snow Leopard Server)

2010-12-16 Thread Keith Clarke
Thanks Andre.
I'm not worried about users' personal sites running on this server as localhost 
- I'm using Custom Sites, accessible from the internet and managed by Groups. 
So, my machine's /etc/apache2/users/ folder is empty but httpd.conf set-up is 
key to supporting all Custom Sites and OSX Wiki Server group wikis (if I 
understand things correctly).

BTW Did you create soapdog.conf from scratch or did your version of Snow 
Leopard Server have a .conf file in this folder already?

On 16 Dec 2010, at 12:21, Andre Garzia wrote:

> Keith,
> 
> I have this on /etc/apache2/users/soapdog.conf
> 
> 
>AddHandler cgi-script .cgi
>AddHandler irev-script .irev
>Action irev-script /cgi-bin/revserver
>Options Indexes MultiViews ExecCGI FollowSymLinks
>AllowOverride All
>Order allow,deny
>Allow from all
> 
> 
> This allows me to execute revserver on my users Sites folder such as
> http://localhost/~soapdog/test.irev
> 
> I have this on /Library/WebServer/Documents/.htaccess
> 
> Options ExecCGI
> AddHandler irev-script .irev
> Action irev-script /cgi-bin/revserver
> 
> 
> I have nothing on Apache httpd.conf and on the .htaccess of CGI-Executables
> I just have ExecCGI. That is all, things run fine here. I think you are
> missing ExecCGI on your /Library/WebSever/Documents options.
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


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


Re: RevServer on OSX (Snow Leopard Server)

2010-12-16 Thread Andre Garzia
Keith,

Symlink? Are you sure your CGI-BIN folder is a symlink and not an alias?

Check your Apache Error logs for suEXEC violations, you may be facing Apache
suEXEC violations...

As for your other email, this is plain vanilla snow leopard. I think it
creates a conf file for each user in the machine automatically, can't
remember if I created that or not.

On Thu, Dec 16, 2010 at 10:57 AM, Keith Clarke <
keith.cla...@clarkeandclarke.co.uk> wrote:

> ...thanks, Andre. I've added the ExecCGI option to the
> /Library/WebServer/Documents/ directory directive and removed the trailing
> '/' on the irev script action directive, as my revServer engine is a file
> within in the (symlinked) /cgi-bin/ folder. Not working yet but hopefully
> two fewer typos to worry about!
>
> On 16 Dec 2010, at 12:24, Andre Garzia wrote:
>
> > Oh and one addendum (thats latin for missed one thing):
> >
> > In this piece here from your configuration file:
> >
> > 
> >   AllowOverride All
> >   Options MultiViews
> >   Order allow,deny
> >   Allow from all
> >   AddHandler irev-script .irev
> >   Action irev-script /cgi-bin/revserver/
> > 
> >
> > You need to change to this:
> >
> > 
> >   AllowOverride All
> >   Options MultiViews ExecCGI
> >   Order allow,deny
> >   Allow from all
> >   AddHandler irev-script .irev
> >   Action irev-script /cgi-bin/revserver/revserver
> > 
> >
> > You need ExecCGI and you need to provide the engine to the Action handler
> > not the folder the engine is in.
> >
> >
> > On Thu, Dec 16, 2010 at 10:21 AM, Andre Garzia  >wrote:
> >
> >> Keith,
> >>
> >> I have this on /etc/apache2/users/soapdog.conf
> >>
> >> 
> >>AddHandler cgi-script .cgi
> >>AddHandler irev-script .irev
> >>Action irev-script /cgi-bin/revserver
> >>Options Indexes MultiViews ExecCGI FollowSymLinks
> >>AllowOverride All
> >>Order allow,deny
> >>Allow from all
> >> 
> >>
> >> This allows me to execute revserver on my users Sites folder such as
> >> http://localhost/~soapdog/test.irev
> >>
> >> I have this on /Library/WebServer/Documents/.htaccess
> >>
> >> Options ExecCGI
> >> AddHandler irev-script .irev
> >> Action irev-script /cgi-bin/revserver
> >>
> >>
> >> I have nothing on Apache httpd.conf and on the .htaccess of
> CGI-Executables
> >> I just have ExecCGI. That is all, things run fine here. I think you are
> >> missing ExecCGI on your /Library/WebSever/Documents options.
> >>
> >
> >
> >
> > --
> > http://www.andregarzia.com All We Do Is Code.
> > ___
> > use-livecode mailing list
> > use-livecode@lists.runrev.com
> > Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> > http://lists.runrev.com/mailman/listinfo/use-livecode
>
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>



-- 
http://www.andregarzia.com All We Do Is Code.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: RevServer on OSX (Snow Leopard Server)

2010-12-16 Thread Keith Clarke
...sorry, you're correct, it's an alias - mea culpa, still learning the jargon 
as well as the syntax!

Just to be clear, are you running a standard Snow Leopard machine as a server 
or the formal OSX Server product - I'm running the latter and the web services 
settings are very different to those on my standard Snow Leopard MBP?

On 16 Dec 2010, at 13:11, Andre Garzia wrote:

> Keith,
> 
> Symlink? Are you sure your CGI-BIN folder is a symlink and not an alias?
> 
> Check your Apache Error logs for suEXEC violations, you may be facing Apache
> suEXEC violations...
> 
> As for your other email, this is plain vanilla snow leopard. I think it
> creates a conf file for each user in the machine automatically, can't
> remember if I created that or not.
> 
> On Thu, Dec 16, 2010 at 10:57 AM, Keith Clarke <
> keith.cla...@clarkeandclarke.co.uk> wrote:
> 
>> ...thanks, Andre. I've added the ExecCGI option to the
>> /Library/WebServer/Documents/ directory directive and removed the trailing
>> '/' on the irev script action directive, as my revServer engine is a file
>> within in the (symlinked) /cgi-bin/ folder. Not working yet but hopefully
>> two fewer typos to worry about!
>> 
>> On 16 Dec 2010, at 12:24, Andre Garzia wrote:
>> 
>>> Oh and one addendum (thats latin for missed one thing):
>>> 
>>> In this piece here from your configuration file:
>>> 
>>> 
>>>  AllowOverride All
>>>  Options MultiViews
>>>  Order allow,deny
>>>  Allow from all
>>>  AddHandler irev-script .irev
>>>  Action irev-script /cgi-bin/revserver/
>>> 
>>> 
>>> You need to change to this:
>>> 
>>> 
>>>  AllowOverride All
>>>  Options MultiViews ExecCGI
>>>  Order allow,deny
>>>  Allow from all
>>>  AddHandler irev-script .irev
>>>  Action irev-script /cgi-bin/revserver/revserver
>>> 
>>> 
>>> You need ExecCGI and you need to provide the engine to the Action handler
>>> not the folder the engine is in.
>>> 
>>> 
>>> On Thu, Dec 16, 2010 at 10:21 AM, Andre Garzia >> wrote:
>>> 
 Keith,
 
 I have this on /etc/apache2/users/soapdog.conf
 
 
   AddHandler cgi-script .cgi
   AddHandler irev-script .irev
   Action irev-script /cgi-bin/revserver
   Options Indexes MultiViews ExecCGI FollowSymLinks
   AllowOverride All
   Order allow,deny
   Allow from all
 
 
 This allows me to execute revserver on my users Sites folder such as
 http://localhost/~soapdog/test.irev
 
 I have this on /Library/WebServer/Documents/.htaccess
 
 Options ExecCGI
 AddHandler irev-script .irev
 Action irev-script /cgi-bin/revserver
 
 
 I have nothing on Apache httpd.conf and on the .htaccess of
>> CGI-Executables
 I just have ExecCGI. That is all, things run fine here. I think you are
 missing ExecCGI on your /Library/WebSever/Documents options.
 
>>> 
>>> 
>>> 
>>> --
>>> http://www.andregarzia.com All We Do Is Code.
>>> ___
>>> use-livecode mailing list
>>> use-livecode@lists.runrev.com
>>> Please visit this url to subscribe, unsubscribe and manage your
>> subscription preferences:
>>> http://lists.runrev.com/mailman/listinfo/use-livecode
>> 
>> 
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your
>> subscription preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
>> 
> 
> 
> 
> -- 
> http://www.andregarzia.com All We Do Is Code.
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


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


Re: RevServer on OSX (Snow Leopard Server)

2010-12-16 Thread Andre Garzia
I have no clue about Snow Leopard Server, never used it or Mac OS X server.
This is my macbook pro, my main development machine. It comes with Apache,
so I've put RevServer on it.

On Thu, Dec 16, 2010 at 11:25 AM, Keith Clarke <
keith.cla...@clarkeandclarke.co.uk> wrote:

> ...sorry, you're correct, it's an alias - mea culpa, still learning the
> jargon as well as the syntax!
>
> Just to be clear, are you running a standard Snow Leopard machine as a
> server or the formal OSX Server product - I'm running the latter and the web
> services settings are very different to those on my standard Snow Leopard
> MBP?
>
> On 16 Dec 2010, at 13:11, Andre Garzia wrote:
>
> > Keith,
> >
> > Symlink? Are you sure your CGI-BIN folder is a symlink and not an alias?
> >
> > Check your Apache Error logs for suEXEC violations, you may be facing
> Apache
> > suEXEC violations...
> >
> > As for your other email, this is plain vanilla snow leopard. I think it
> > creates a conf file for each user in the machine automatically, can't
> > remember if I created that or not.
> >
> > On Thu, Dec 16, 2010 at 10:57 AM, Keith Clarke <
> > keith.cla...@clarkeandclarke.co.uk> wrote:
> >
> >> ...thanks, Andre. I've added the ExecCGI option to the
> >> /Library/WebServer/Documents/ directory directive and removed the
> trailing
> >> '/' on the irev script action directive, as my revServer engine is a
> file
> >> within in the (symlinked) /cgi-bin/ folder. Not working yet but
> hopefully
> >> two fewer typos to worry about!
> >>
> >> On 16 Dec 2010, at 12:24, Andre Garzia wrote:
> >>
> >>> Oh and one addendum (thats latin for missed one thing):
> >>>
> >>> In this piece here from your configuration file:
> >>>
> >>> 
> >>>  AllowOverride All
> >>>  Options MultiViews
> >>>  Order allow,deny
> >>>  Allow from all
> >>>  AddHandler irev-script .irev
> >>>  Action irev-script /cgi-bin/revserver/
> >>> 
> >>>
> >>> You need to change to this:
> >>>
> >>> 
> >>>  AllowOverride All
> >>>  Options MultiViews ExecCGI
> >>>  Order allow,deny
> >>>  Allow from all
> >>>  AddHandler irev-script .irev
> >>>  Action irev-script /cgi-bin/revserver/revserver
> >>> 
> >>>
> >>> You need ExecCGI and you need to provide the engine to the Action
> handler
> >>> not the folder the engine is in.
> >>>
> >>>
> >>> On Thu, Dec 16, 2010 at 10:21 AM, Andre Garzia  >>> wrote:
> >>>
>  Keith,
> 
>  I have this on /etc/apache2/users/soapdog.conf
> 
>  
>    AddHandler cgi-script .cgi
>    AddHandler irev-script .irev
>    Action irev-script /cgi-bin/revserver
>    Options Indexes MultiViews ExecCGI FollowSymLinks
>    AllowOverride All
>    Order allow,deny
>    Allow from all
>  
> 
>  This allows me to execute revserver on my users Sites folder such as
>  http://localhost/~soapdog/test.irev
> 
>  I have this on /Library/WebServer/Documents/.htaccess
> 
>  Options ExecCGI
>  AddHandler irev-script .irev
>  Action irev-script /cgi-bin/revserver
> 
> 
>  I have nothing on Apache httpd.conf and on the .htaccess of
> >> CGI-Executables
>  I just have ExecCGI. That is all, things run fine here. I think you
> are
>  missing ExecCGI on your /Library/WebSever/Documents options.
> 
> >>>
> >>>
> >>>
> >>> --
> >>> http://www.andregarzia.com All We Do Is Code.
> >>> ___
> >>> use-livecode mailing list
> >>> use-livecode@lists.runrev.com
> >>> Please visit this url to subscribe, unsubscribe and manage your
> >> subscription preferences:
> >>> http://lists.runrev.com/mailman/listinfo/use-livecode
> >>
> >>
> >> ___
> >> use-livecode mailing list
> >> use-livecode@lists.runrev.com
> >> Please visit this url to subscribe, unsubscribe and manage your
> >> subscription preferences:
> >> http://lists.runrev.com/mailman/listinfo/use-livecode
> >>
> >
> >
> >
> > --
> > http://www.andregarzia.com All We Do Is Code.
> > ___
> > use-livecode mailing list
> > use-livecode@lists.runrev.com
> > Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> > http://lists.runrev.com/mailman/listinfo/use-livecode
>
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>



-- 
http://www.andregarzia.com All We Do Is Code.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Valentina db under Linux ???

2010-12-16 Thread Warren Samples
On Thu, 2010-12-16 at 09:33 +0200, Ruslan Zasukhin wrote: 
> On 12/16/10 5:26 AM, "Warren Samples"  wrote:
> 
> > Hello!
> > 
> > Does anyone have the ADK embedded version of Valentina installed and
> > working in Linux? I have had no luck getting this to work. The new
> > version 4.8 gives me some strange messages installing and then crashes
> > Livecode when attempting to initialize. The previous version always
> > returns a script error regarding the function "Valentina_Init".
> > 
> > I'm running Linux Mint, which is compatible with Ubuntu.
> > 
> > Any help would be appreciated!
> 
> Good morning Warren,
> 
> I see that Ivan have made one more fix in install scripts.
> Regarding to hard links.
> 
> We will upload newer archive of V4REV Linux 32 bit
> In the nearest couple of hours. I will notify on Valentina list.
> 
> Do not worry, Ivan will help you get it working.
> 
> 



Ok! New archive is working :) Thanks, Ruslan!


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


Re: RevServer on OSX (Snow Leopard Server)

2010-12-16 Thread Keith Clarke
...ah, OK - that explains a lot! I think I'd better continue trying to 
replicate Devin's working Snow Leopard Server config on my version, rather than 
interpret what you have. 

Well, that or re-install standard Snow Leopard and copy your config! ;-)

On 16 Dec 2010, at 14:00, Andre Garzia wrote:

> I have no clue about Snow Leopard Server, never used it or Mac OS X server.
> This is my macbook pro, my main development machine. It comes with Apache,
> so I've put RevServer on it.
> 
> On Thu, Dec 16, 2010 at 11:25 AM, Keith Clarke <
> keith.cla...@clarkeandclarke.co.uk> wrote:
> 
>> ...sorry, you're correct, it's an alias - mea culpa, still learning the
>> jargon as well as the syntax!
>> 
>> Just to be clear, are you running a standard Snow Leopard machine as a
>> server or the formal OSX Server product - I'm running the latter and the web
>> services settings are very different to those on my standard Snow Leopard
>> MBP?
>> 
>> On 16 Dec 2010, at 13:11, Andre Garzia wrote:
>> 
>>> Keith,
>>> 
>>> Symlink? Are you sure your CGI-BIN folder is a symlink and not an alias?
>>> 
>>> Check your Apache Error logs for suEXEC violations, you may be facing
>> Apache
>>> suEXEC violations...
>>> 
>>> As for your other email, this is plain vanilla snow leopard. I think it
>>> creates a conf file for each user in the machine automatically, can't
>>> remember if I created that or not.
>>> 
>>> On Thu, Dec 16, 2010 at 10:57 AM, Keith Clarke <
>>> keith.cla...@clarkeandclarke.co.uk> wrote:
>>> 
 ...thanks, Andre. I've added the ExecCGI option to the
 /Library/WebServer/Documents/ directory directive and removed the
>> trailing
 '/' on the irev script action directive, as my revServer engine is a
>> file
 within in the (symlinked) /cgi-bin/ folder. Not working yet but
>> hopefully
 two fewer typos to worry about!
 
 On 16 Dec 2010, at 12:24, Andre Garzia wrote:
 
> Oh and one addendum (thats latin for missed one thing):
> 
> In this piece here from your configuration file:
> 
> 
> AllowOverride All
> Options MultiViews
> Order allow,deny
> Allow from all
> AddHandler irev-script .irev
> Action irev-script /cgi-bin/revserver/
> 
> 
> You need to change to this:
> 
> 
> AllowOverride All
> Options MultiViews ExecCGI
> Order allow,deny
> Allow from all
> AddHandler irev-script .irev
> Action irev-script /cgi-bin/revserver/revserver
> 
> 
> You need ExecCGI and you need to provide the engine to the Action
>> handler
> not the folder the engine is in.
> 
> 
> On Thu, Dec 16, 2010 at 10:21 AM, Andre Garzia  wrote:
> 
>> Keith,
>> 
>> I have this on /etc/apache2/users/soapdog.conf
>> 
>> 
>>  AddHandler cgi-script .cgi
>>  AddHandler irev-script .irev
>>  Action irev-script /cgi-bin/revserver
>>  Options Indexes MultiViews ExecCGI FollowSymLinks
>>  AllowOverride All
>>  Order allow,deny
>>  Allow from all
>> 
>> 
>> This allows me to execute revserver on my users Sites folder such as
>> http://localhost/~soapdog/test.irev
>> 
>> I have this on /Library/WebServer/Documents/.htaccess
>> 
>> Options ExecCGI
>> AddHandler irev-script .irev
>> Action irev-script /cgi-bin/revserver
>> 
>> 
>> I have nothing on Apache httpd.conf and on the .htaccess of
 CGI-Executables
>> I just have ExecCGI. That is all, things run fine here. I think you
>> are
>> missing ExecCGI on your /Library/WebSever/Documents options.
>> 
> 
> 
> 
> --
> http://www.andregarzia.com All We Do Is Code.
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
 
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode
 
>>> 
>>> 
>>> 
>>> --
>>> http://www.andregarzia.com All We Do Is Code.
>>> ___
>>> use-livecode mailing list
>>> use-livecode@lists.runrev.com
>>> Please visit this url to subscribe, unsubscribe and manage your
>> subscription preferences:
>>> http://lists.runrev.com/mailman/listinfo/use-livecode
>> 
>> 
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your
>> subscription preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
>> 
> 
> 
> 
> -- 
> http://www.andregarzia.com All We Do Is Code.
> 

Re: OT: Real competition for revlets

2010-12-16 Thread Richard Gaskin

Andre Garzia wrote:


This thing by REAL Software begs one questions: "How it handles concurrent
requests". FastCGI can multiplex requests, so there is a real chance your
software will be answering to more than one guy at the same time. How does
it handle that?


My understanding is that RB supports threads, so while comments in their 
forum suggest it's not trivial to use them well at least they're 
available and with FastCGI that helps a lot, for all the reasons you've 
noted here earlier.



So how does it works for them? Does it maintain application state for each
of the clients in memory or does it simply converts everything to
HTML/JS/CSS and allows all the state to be managed on the client side?


In my initial reading of their outline it seems a reasonably good mix of 
server and client-side processing.


Since we already have RevServer and have been enjoying Rev CGI for 
years, the biggest advantage RB/Web offers is in delivering native 
JavaScript/CSS/HTML on the browser.


In many respects that isn't all that different from what Toolbook did 
more than a decade ago, as I noted here in 2006:



IMO such an initiative would be advantageous for RunRev, much more so 
than wrassling with a plugin.  If anyone would have asked me before they 
got started I would have been glad to share what I learned from 
Allegiant's experiments with their SuperCard plugin, Roadster; there are 
many good reasons it was allowed to die.  The plugin API seems 
seductively simple at first, but when you're looking to provide 
capabilities as broad as LC or SC it starts to get murky and weird 
pretty quickly, and costs multiply in a hundred unexpected ways.


One of the great things about JavaScript/CSS/HTML is that it's all text, 
and LC is unusually adept at parsing and concatenating text gracefully 
and efficiently.  So not only do you get a browser-native solution that 
runs on every web-capable device, you can make it at home in your spare 
time without needing to monkey around with complex APIs or binary data 
structures - it's all just text.


As I suggested all those years ago, it wouldn't be all that hard for the 
LC community to take this up as a FOSS project.


The challenge with that is that FOSS is often a rich man's game, 
requiring the contributor to have enough retained earnings from paid 
work to be able to devote sufficient time to giving code away for free 
while still keeping a roof over their head.


I've started down the road of making a Rev-to-JS/CSS/HTML converter, and 
while I've deployed specialized variants of that for specific client 
projects (thanks for you help on getting one of those started, Andre!) 
it's a heckuva lotta work to make a generalized solution, and my clients 
are keeping me too busy to pursue it much further for the next few months.


But the idea's out there, free for the taking if anyone has the time to 
devote to seeing it through.  Toolbook showed us one way to do this in 
xTalk, and a lot of fairly big organizations shipped a lot of great 
courseware and other web apps with it.  Making a LC-based system for 
this wouldn't be trivial, but more tedious than difficult, requiring 
more time than brains. :)


--
 Richard Gaskin
 Fourth World
 LiveCode training and consulting: http://www.fourthworld.com
 Webzine for LiveCode developers: http://www.LiveCodeJournal.com
 LiveCode Journal blog: http://LiveCodejournal.com/blog.irv

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


Re: 4wLCListSearch.rev

2010-12-16 Thread Richard Gaskin

Richmond wrote:


Being a shameless "dumpster diver" I have mucked around with
the 4W_RevListSearch.rev stack. The mucked-about version is
available at:

http://andregarzia.on-rev.com/richmond/LClook.zip

if anybody feels "funny" about that they should contact me (off-list)
and I will remove it immediately. However I understand that FourthWorld
put it in the public domain a long time ago.


Indeed I did, and it's great to see it was useful enough to warrant your 
giving it a new live with your update.


Thanks for putting that together.  I'll see if I can get some time to 
add an enhancement or two I've been sketching out and post it to RevNet 
(with full credit for your contribution of course; much appreciated).


--
 Richard Gaskin
 Fourth World
 LiveCode training and consulting: http://www.fourthworld.com
 Webzine for LiveCode developers: http://www.LiveCodeJournal.com
 LiveCode Journal blog: http://LiveCodejournal.com/blog.irv

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


Re: Personal Edition Standalone splash screen delay

2010-12-16 Thread Kevin Miller
On 15/12/2010 18:03, "Peter Haworth"  wrote:

> There was a discussion here about the 10 second countdown when a
> standalone built with LC Personal is run and I believe you said you
> were leaning towards cutting it to 5 seconds.  ANy update on that?
> It's still at 10 seconds although I haven't tried 4.5.2 yet.

We will be amending this to 5 seconds for 4.5.3.

Kind regards,

Kevin

Kevin Miller ~ ke...@runrev.com ~ http://www.runrev.com/
LiveCode - Realize fast, compile-free coding



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


Re: RevServer on OSX (Snow Leopard Server)

2010-12-16 Thread Devin Asay
Keith,

I forgot to mention... In Server Admin I also tick "CGI Execution" under Web > 
Sites > Options for each site where I want to use irev scripting. I don't know 
if this is required, but it seemed like it should be on if I'm using the 
revserver CGI. Related to this I have ticked "cgi_module" under Web > Settings 
> Modules.

Finally, make sure your revserver executable has the 'execute' flag set in its 
file permissions.

And any time you make a change to your httpd.conf you must restart apache 
before trying it out to force apache to read the new config options.


Devin

On Dec 16, 2010, at 7:22 AM, Keith Clarke wrote:

> ...ah, OK - that explains a lot! I think I'd better continue trying to 
> replicate Devin's working Snow Leopard Server config on my version, rather 
> than interpret what you have. 
> 
> Well, that or re-install standard Snow Leopard and copy your config! ;-)

Devin Asay
Humanities Technology and Research Support Center
Brigham Young University


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


Inconsistent Revlet launch

2010-12-16 Thread Rick Rice


Has anyone got any suggestions as to what I can do to deal with the  
following.
I create a standalone revlet which may or may not run. The revlet  
might run as expected several times then fail to run and then if I  
launch it again it might run. If I launch a browser (Safari or  
Chrome) and then open the html file created along with the revlet I  
get either a black box the size of the app or the progress bar hung  
around the 5% point. It doesn't make any difference if I empty the  
browser cache or reset the browser. This happens on my Mac OS-X 10.4  
and 10.5 on Safari 4 and 5 as well as Chrome 8. I'm using LiveCode 4.5.1

Thanks
Rick

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


Re: Inconsistent Revlet launch

2010-12-16 Thread Klaus on-rev
Hi Rick,

> 
> Has anyone got any suggestions as to what I can do to deal with the following.
> I create a standalone revlet which may or may not run. The revlet might run 
> as expected several times then fail to run and then if I launch it again it 
> might run. If I launch a browser (Safari or Chrome) and then open the html 
> file created along with the revlet I get either a black box the size of the 
> app or the progress bar hung around the 5% point. It doesn't make any 
> difference if I empty the browser cache or reset the browser. This happens on 
> my Mac OS-X 10.4 and 10.5 on Safari 4 and 5 as well as Chrome 8. I'm using 
> LiveCode 4.5.1

just to be sure, this is from the LC 4.5.2 release Notes:
...
Note: As the currently available revWeb plug-in uses the 4.0 engine, 
you must be careful to only use features that are present in that version.
...

> Thanks
> Rick

Best

Klaus

--
Klaus Major
http://www.major-k.de
kl...@major.on-rev.com


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


Re: Personal Edition Standalone splash screen delay

2010-12-16 Thread Peter Haworth

Great, Thanks Kevin.

Pete Haworth
On Dec 16, 2010, at 7:19 AM, Kevin Miller wrote:


On 15/12/2010 18:03, "Peter Haworth"  wrote:


There was a discussion here about the 10 second countdown when a
standalone built with LC Personal is run and I believe you said you
were leaning towards cutting it to 5 seconds.  ANy update on that?
It's still at 10 seconds although I haven't tried 4.5.2 yet.


We will be amending this to 5 seconds for 4.5.3.

Kind regards,

Kevin

Kevin Miller ~ ke...@runrev.com ~ http://www.runrev.com/
LiveCode - Realize fast, compile-free coding



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

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




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


Re: RevServer on OSX (Snow Leopard Server)

2010-12-16 Thread Keith Clarke
Thanks Devin - I sure could use a copy of your httpd.conf file to do a 
line-by-line comparison with Guiffy.

I now realise that a lot of the conflicting configuration advice is down to the 
subtle difference between configuring:
1. OSX Snow Leopard Server (the Apple OSX Server product) - which is what I'm 
trying to do, (and what I'm hoping you have achieved) vs.
2. Configuring the web server capability in (the standard 'desktop') OSX Snow 
Leopard for local development purposes - which is what most advice in the 
archives is about.

Unfortunately the approach to web service configuration and hierarchy of apache 
config files is completely different on these two platforms. Now I realise 
this, I'm now trying to apply (1) to my OSX Snow Leopard Server and (2) to my 
development Mac. Then, I'll document how these differ!

Hopefully I'll get one working before my head explodes!
Best,
Keith..   

On 16 Dec 2010, at 16:17, Devin Asay wrote:

> Keith,
> 
> I forgot to mention... In Server Admin I also tick "CGI Execution" under Web 
> > Sites > Options for each site where I want to use irev scripting. I don't 
> know if this is required, but it seemed like it should be on if I'm using the 
> revserver CGI. Related to this I have ticked "cgi_module" under Web > 
> Settings > Modules.
> 
> Finally, make sure your revserver executable has the 'execute' flag set in 
> its file permissions.
> 
> And any time you make a change to your httpd.conf you must restart apache 
> before trying it out to force apache to read the new config options.
> 
> 
> Devin
> 
> On Dec 16, 2010, at 7:22 AM, Keith Clarke wrote:
> 
>> ...ah, OK - that explains a lot! I think I'd better continue trying to 
>> replicate Devin's working Snow Leopard Server config on my version, rather 
>> than interpret what you have. 
>> 
>> Well, that or re-install standard Snow Leopard and copy your config! ;-)
> 
> Devin Asay
> Humanities Technology and Research Support Center
> Brigham Young University
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


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


Re: Valentina db under Linux ???

2010-12-16 Thread stephen barncard
Ruslan !

I've been meaning to ask you :

Are you going to demonstrate Valentina at the next Revcon in April 2011?

Perhaps a shoot-out among the other DBms?

sqb


> Ruslan Zasukhin
> VP Engineering and New Technology
> Paradigma Software, Inc
>
> Valentina - Joining Worlds of Information
> http://www.paradigmasoft.com
>
> [I feel the need: the need for speed]
>
>
>
>

Stephen Barncard
San Francisco Ca. USA

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


Valentina 4.8 Released; No Risk Valentina Studio Pro Supports SQLite (for FREE)

2010-12-16 Thread Lynn Fredricks
Hello all,

The short form PR notes are here that may interest LiveCode users:

- Valentina Studio Pro now supports SQLite - available for FREE use*, no
risk
- Valentina DB 4.8 is released, with oodles of across the board improvements
and fixes (Valentina for LiveCode also "inherits" Kernel and Client
improvements)
- Valentina Studio Pro for Linux is available in preview
- iValentina visual client tools for iPhone and iPad are awaiting App Store
approval (very useful for YOUR clients!)
- One click export from SQLite -> Valentina DB when you want it

If you want the complete picture:

Valentina 4.8 PR: http://bit.ly/gjQnIW
Valentina 4.8 Tech Release Notes:
http://www.valentina-db.com/en/support/latest-release-notes
My Blog on the Why: http://bit.ly/dRvz9X

* you have to put up with our watermark on reports if you use it for free

Best regards,

Lynn Fredricks
President
Paradigma Software
http://www.paradigmasoft.com

Valentina SQL Server: The Ultra-fast, Royalty Free Database Server 


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


Re: Valentina db under Linux ???

2010-12-16 Thread Richard Gaskin

stephen barncard wrote:


Ruslan !

I've been meaning to ask you :

Are you going to demonstrate Valentina at the next Revcon in April 2011?


Lynn, get that man to the conference!

He would enjoy California, and I'm sure we'd all enjoy his Valentina 
presentation.


Ruslan, it would be nice if we could have the chance to meet you in 
person.  Your uncommon knowledge of databases has been very helpful on 
this list.


--
 Richard Gaskin
 Fourth World
 LiveCode training and consulting: http://www.fourthworld.com
 Webzine for LiveCode developers: http://www.LiveCodeJournal.com
 LiveCode Journal blog: http://LiveCodejournal.com/blog.irv

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


Re: RevServer on OSX (Snow Leopard Server)

2010-12-16 Thread Keith Clarke
Devin, Thanks for your response and the files you sent for comparison. I now 
have a revServer-enabled OSX Server!

Now I understand the OSX Sever vs standard OSX differences, I intend to 
configure my development Mac to Andre's instructions and then document both 
approaches.

I'm also researching how to open-up OSX Wiki Server config (custom white list) 
to enable rev code to be embedded into wiki page html.
Best,
Keith..  

On 16 Dec 2010, at 16:17, Devin Asay wrote:

> Keith,
> 
> I forgot to mention... In Server Admin I also tick "CGI Execution" under Web 
> > Sites > Options for each site where I want to use irev scripting. I don't 
> know if this is required, but it seemed like it should be on if I'm using the 
> revserver CGI. Related to this I have ticked "cgi_module" under Web > 
> Settings > Modules.
> 
> Finally, make sure your revserver executable has the 'execute' flag set in 
> its file permissions.
> 
> And any time you make a change to your httpd.conf you must restart apache 
> before trying it out to force apache to read the new config options.
> 
> 
> Devin
> 
> On Dec 16, 2010, at 7:22 AM, Keith Clarke wrote:
> 
>> ...ah, OK - that explains a lot! I think I'd better continue trying to 
>> replicate Devin's working Snow Leopard Server config on my version, rather 
>> than interpret what you have. 
>> 
>> Well, that or re-install standard Snow Leopard and copy your config! ;-)
> 
> Devin Asay
> Humanities Technology and Research Support Center
> Brigham Young University
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


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


Re: Inconsistent Revlet launch

2010-12-16 Thread Rick Rice

Klaus:
	I am almost 100% sure that I do not use any features that are not in  
version 4.0
	This is really frustrating, almost infuriating, sometimes a revlet  
launches perfectly then it hangs then again it might launch. I need  
help.

Rick

On 16-Dec-10, at 8:57 AM, Klaus on-rev wrote:


Hi Rick,



Has anyone got any suggestions as to what I can do to deal with  
the following.
I create a standalone revlet which may or may not run. The revlet  
might run as expected several times then fail to run and then if I  
launch it again it might run. If I launch a browser (Safari or  
Chrome) and then open the html file created along with the revlet  
I get either a black box the size of the app or the progress bar  
hung around the 5% point. It doesn't make any difference if I  
empty the browser cache or reset the browser. This happens on my  
Mac OS-X 10.4 and 10.5 on Safari 4 and 5 as well as Chrome 8. I'm  
using LiveCode 4.5.1


just to be sure, this is from the LC 4.5.2 release Notes:
...
Note: As the currently available revWeb plug-in uses the 4.0 engine,
you must be careful to only use features that are present in that  
version.

...


Thanks
Rick


Best

Klaus

--
Klaus Major
http://www.major-k.de
kl...@major.on-rev.com


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

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



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


Re: [OT] Some Recognition

2010-12-16 Thread Alejandro Tejada

Congratulations! :-D
-- 
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/OT-Some-Recognition-tp3089871p3091823.html
Sent from the Revolution - User mailing list archive at Nabble.com.

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


[OT] creating a cross-platform flash-drive app

2010-12-16 Thread Terry Judd
Hi Guys - we¹re preparing to deliver a bunch of educational resources (30
odd apps and web apps developed in house over a number of years) to our
students on USB sticks. The resources will be accessed via a launcher
application (LC) that allows users to browse and search/filter the resources
based on keywords and descriptions. Some of the resources require
authentication and this is handled by the university¹s student
authentication system.

Anyway, at the moment we have a folder containing two executable ­ PC and
Mac ­ an externals folder, the revSecurity dll (required for establishing a
secure http connection to the university authentication server) and our
Œsoftware¹ folder. What I¹d like to be able to do is hide the Mac app for PC
users, hide the PC app for Mac users and hide the dll (and possibly the
externals folder) for all users and then copy all the files (maintaining the
visibility settings) to approximately 350 USB sticks.

Does anyone have any suggestions on the best way to do this? I¹ve done
similar things on a small scale before and have had all sorts of trouble
working from my Mac so I¹m inclined to think it has to be done on a PC using
PC formatted drives??

TIA

Terry...

--
Dr Terry Judd | Senior Lecturer in Medical Education
Medical Education Unit
Melbourne Medical School
The University of Melbourne


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


Help me with my inability to see a simple solution

2010-12-16 Thread william humphrey
My math skills are terrible but this is something I can do in excel but
which should also be easy to do with a nested array in livecode. I want to
build a function that returns the numbers that are out of sequence in a list
of numbers. Say you are given (3,4,5,6,6,7,8,9,10,12,13,13,14) and the
function should return:

(1,2,11 - missing)
(6,13 - duplicate)

Can someone please help me write this function?

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


Re: RevServer on OSX (Snow Leopard Server)

2010-12-16 Thread J. Landman Gay

On 12/16/10 4:20 PM, Keith Clarke wrote:

Devin, Thanks for your response and the files you sent for
comparison. I now have a revServer-enabled OSX Server!


That's great! Are you still planning to write up a comparison for us 
peons? That'd be helpful if you have time. I haven't yet been able to 
get it running on my IP's server, something about missing libraries.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com

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


Re: Help me with my inability to see a simple solution

2010-12-16 Thread Terry Judd
On 17/12/10 10:29 AM, "william humphrey"  wrote:

> My math skills are terrible but this is something I can do in excel but
> which should also be easy to do with a nested array in livecode. I want to
> build a function that returns the numbers that are out of sequence in a list
> of numbers. Say you are given (3,4,5,6,6,7,8,9,10,12,13,13,14) and the
> function should return:
> 
> (1,2,11 - missing)
> (6,13 - duplicate)
> 
> Can someone please help me write this function?

How 'bout this...

pMin is your minimum value
pMax is your maximum value
pList is your list of numbers to test
The output is a list of missing numbers (line 1) and repeat numbers (line 2)

function stuff pMin, pMax, pList
   put empty into tMissingList
   put empty into tDuplicateList
   repeat with i = pMin to pMax
  put true into tMissing
  put empty into tDuplicate
  repeat for each item tValue in pList
 if tValue = i then
put false into tMissing
put i & comma after tDuplicate
 end if
  end repeat
  if tMissing then
 put i & comma after tMissingList
  end if
  if the number of items in tDuplicate > 1 then
 put i & comma after tDuplicateList
  end if
   end repeat
   return (char 1 to -2 of tMIssingList) &cr& \
   (char 1 to -2 of tDuplicateList)
end stuff

Terry...

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

--
Dr Terry Judd | Senior Lecturer in Medical Education
Medical Education Unit
Melbourne Medical School
The University of Melbourne



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


Re: Help me with my inability to see a simple solution

2010-12-16 Thread Robert Brenstein

On 16.12.2010 at 19:29 Uhr -0400 william humphrey apparently wrote:

My math skills are terrible but this is something I can do in excel but
which should also be easy to do with a nested array in livecode. I want to
build a function that returns the numbers that are out of sequence in a list
of numbers. Say you are given (3,4,5,6,6,7,8,9,10,12,13,13,14) and the
function should return:

(1,2,11 - missing)
(6,13 - duplicate)

Can someone please help me write this function?

Thanks in advance.



A quickie:

function getMissingNumbers pNumberList
  put empty into vOccurences
  repeat for each item vNumber in pNumberList
add 1 to vOccurences[vNumber]
  end repeat
  get the keys of vOccurences
  sort lines of it numeric
  put line -1 of it into vLargestNumber
  put empty into vMissing
  repeat with i=1 to vLargestNumber
if vOccurences[i] is empty then put i & comma after vMissing
  end repeat
  delete char -1 of vMissing
  return vMissing
end getMissingNumbers

function getDuplicateNumbers pNumberList
  put empty into vOccurences
  repeat for each item vNumber in pNumberList
add 1 to vOccurences[vNumber]
  end repeat
  get the keys of vOccurences
  sort lines of it numeric
  put line -1 of it into vLargestNumber
  put empty into vDuplicate
  repeat with i=1 to vLargestNumber
if vOccurences[i] > 1 then put i & comma after vDuplicate
  end repeat
  delete char -1 of vDuplicate
  return vDuplicate
end getDuplicateNumbers


You can of course combine these functions returning each set of 
values in a separate line or as an array. If you actually want to 
check for numbers that are out of sequence, the above won't do.


Robert

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


Re: Help me with my inability to see a simple solution

2010-12-16 Thread william humphrey
function getMissingNumbers pNumberList
 put empty into vOccurences
 repeat for each item vNumber in pNumberList
   add 1 to vOccurences[vNumber]
 end repeat
 get the keys of vOccurences
 sort lines of it numeric
 put line -1 of it into vLargestNumber
 put empty into vMissing
 repeat with i=1 to vLargestNumber
   if vOccurences[i] is empty then put i & comma after vMissing
 end repeat
 delete char -1 of vMissing
 return vMissing
end getMissingNumbers

this returns a sequential list of all numbers, not just the missing numbers
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Help me with my inability to see a simple solution

2010-12-16 Thread william humphrey
Thanks Terry. This solved my problem!

On Thu, Dec 16, 2010 at 8:03 PM, Terry Judd  wrote:

> pMin is your minimum value
> pMax is your maximum value
> pList is your list of numbers to test
> The output is a list of missing numbers (line 1) and repeat numbers (line
> 2)
>
> function stuff pMin, pMax, pList
>   put empty into tMissingList
>   put empty into tDuplicateList
>   repeat with i = pMin to pMax
>  put true into tMissing
>  put empty into tDuplicate
>  repeat for each item tValue in pList
> if tValue = i then
>put false into tMissing
>put i & comma after tDuplicate
> end if
>  end repeat
>  if tMissing then
> put i & comma after tMissingList
>  end if
>  if the number of items in tDuplicate > 1 then
> put i & comma after tDuplicateList
>  end if
>   end repeat
>   return (char 1 to -2 of tMIssingList) &cr& \
>   (char 1 to -2 of tDuplicateList)
> end stuff
>



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


Re: Help me with my inability to see a simple solution

2010-12-16 Thread Alex Tweedly


Depends on whether the data is known to be already in order. If not, 
then you need to uncomment the sort command.


btw. sorry, this doesn't use arrays, but it will be much faster than the 
array method(s) if the data set is large.


function other pMin, pMax, pList
put empty into tMissingList
put empty into tDuplicateList

-- sort the data if needed
-- sort items of pList ascending numeric

put pMin-1 into tLast
repeat for each item N in pList
if N = tLast+1 then
put N into tLast
next repeat
end if
if N = tLast then
put N & comma after tDuplicateList
next repeat
end if
repeat with i = tLast+1 to N-1
put i & comma after tMissingList
end repeat
put N into tLast
end repeat
return (char 1 to -2 of tMIssingList) &cr& \
(char 1 to -2 of tDuplicateList)
end other

-- Alex.


On 16/12/2010 23:29, william humphrey wrote:

My math skills are terrible but this is something I can do in excel but
which should also be easy to do with a nested array in livecode. I want to
build a function that returns the numbers that are out of sequence in a list
of numbers. Say you are given (3,4,5,6,6,7,8,9,10,12,13,13,14) and the
function should return:

(1,2,11 - missing)
(6,13 - duplicate)

Can someone please help me write this function?

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




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


DGH Clone Chamber Preview - was datagrid: sharing grid templates & copy paste

2010-12-16 Thread zryip theSlug
Hi List,

Here is a preview of our solution for duplicating an existing datagrid
(template, behavior and properties)
With the "clone room" of DGH, we are capable to reuse any complex
datagrids between projects, in 3 clicks.

Step 1: put the grid in the cloning chamber
Step 2: selecting an empty grid or an existing grid
Step 3: replication of the grid in the other one

A quick preview of the feature in action is available here:
http://www.youtube.com/watch?v=8rj7sDB-Prw

Btw, here is our channel on youtube:
http://www.youtube.com/profile?user=TheSlugOnTheRoad


Available soon for all the DGH users.


Best regards,
-- 
-Zryip TheSlug- wish you the best! 8)
http://www.aslugontheroad.co.cc

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


Re: Help me with my inability to see a simple solution

2010-12-16 Thread william humphrey
Thanks Alex - tested working also.

On Thu, Dec 16, 2010 at 8:48 PM, Alex Tweedly  wrote:

> function other pMin, pMax, pList
>>
>>put empty into tMissingList
>>put empty into tDuplicateList
>>
>>-- sort the data if needed
>>-- sort items of pList ascending numeric
>>
>>put pMin-1 into tLast
>>repeat for each item N in pList
>>if N = tLast+1 then
>>put N into tLast
>>next repeat
>>end if
>>if N = tLast then
>>put N & comma after tDuplicateList
>>next repeat
>>end if
>>repeat with i = tLast+1 to N-1
>>
>>put i & comma after tMissingList
>>end repeat
>>put N into tLast
>>
>>end repeat
>>return (char 1 to -2 of tMIssingList) &cr& \
>>(char 1 to -2 of tDuplicateList)
>> end other
>
>


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


Live liveCode code event #4

2010-12-16 Thread Björnke von Gierke
Hello you weird people

We return for a last time this year, with David Bovill, as well as Chris 
Innanen, doing presentations. If there's enough time, I'll add a Q&A session, 
if you want to, you might assemble random questions for that. Furthermore, 
please be very sad that there'll be a pause after this event, because Nr. 5 is 
planned for the 8th January, giving everyone a deserved break.

Unfortunately David did not tell me what he's planning (up to now), so I guess 
it'll be a surprise for everyone. He will be doing the first half hour (or a 
time period resembling that) on his channel:
http://livecode.tv/david/

Chris will be showing how to use LiveCode for one-off, rapidly thrown together 
tools for everyday data manipulation and automation. For example scraping a web 
site, converting a DVD or managing makfiles. Topics will include text 
manipulation, process handling and shell commands. Watch him during the second 
half hour (approximation) here:
http://livecode.tv/nonsanity/

Random BvG questioning might then happen, or not, depending on time:
http://livecode.tv/bvg/


Please vote on your preferred days, if Saturday is not among your participating 
days:
http://qurl.tk/m1

Join us this Saturday:
Zurich: 20:00
Buenos Aires: 16:00
New York:  14:00 
San Francisco: 11:00
Sydney: 06:00


Make sure to us chatRev during the happening, because all the cool kids do:
http://bjoernke.com?target=chatrev
or:
go stack URL "http://bjoernke.com/chatrev/chatrev1.3b3.rev";

Have fun
Bjoernke

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


Re: [OT] Some Recognition

2010-12-16 Thread Jim Ault

Very impressive indeed.
The IndiePub group judging the game entries sets a very high bar.
Makes me wish I had an iPad to see the magic.
Ah, well, I should be able to get one in 2001.

On Dec 15, 2010, at 12:50 PM, Scott Rossi wrote:

My iOS game PLEXXR recently won best art category in IndiePub Mobile  
Games

Competition.  Nice to get some recognition for one's efforts.  :-)



(not build in LiveCode)

Regards,

Scott Rossi
Creative Director
Tactile Media, UX Design



Jim Ault
Las Vegas



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


Re: msg box Buggerers

2010-12-16 Thread DunbarX
Sniff. Thanks Jackie. My poor, legitimate thread. Ruined. Choke.

And I have a reproducable bug. And nobody cares. Bawl.

In a message dated 12/15/10 5:58:08 PM, jac...@hyperactivesw.com writes:


> Sorry Craig, thread hijacking seems to be in vogue today.
> 
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


A new, improved msg box Bug?

2010-12-16 Thread DunbarX
Nothing.

Open 4.5.2.
Open msg box. (Either single or multi-line)
Type "answer xyz".
Hit enter.
Nada.
Type any char in the lower field.
Works fine!!!

In a message dated 12/15/10 6:12:35 PM, jac...@hyperactivesw.com writes:


> 
> I think so. Sorry. Are you still running your custom utility stack when
> it fails? Or anything else non-IDE?
> 
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


OT: non-LC thing I made

2010-12-16 Thread Colin Holgate
Like Scott, I do use other tools, mostly Flash, and yesterday this thing I made 
became available in the App Store:

Andrew Answers for iPhone, iPod touch, and iPad on the iTunes App Store

It was done in Flash, which is just about the only tool that could have done 
it. But there is another app that I need to do that might be better suited to 
LC, so I think I'll give that a try.

The app we did is aimed at younger children who want to be entertained while 
learning about the alphabet.


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


Re: msg box Buggerers

2010-12-16 Thread Colin Holgate

On Dec 16, 2010, at 9:39 PM, dunb...@aol.com wrote:

>> Sorry Craig, thread hijacking seems to be in vogue today.
> 

Is Vogue magazine still around? And they write articles on thread hijacking?



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


Re: A new, improved msg box Bug?

2010-12-16 Thread Colin Holgate

On Dec 16, 2010, at 9:42 PM, dunb...@aol.com wrote:

> Open 4.5.2.
> Open msg box. (Either single or multi-line)
> Type "answer xyz".
> Hit enter.
> Nada.

Look around for anything else that is specific to the problem, like for 
example, does Enter fail but Return work? I'm using Return, and following your 
steps I get a dialog on the first try.



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


Re: OT: non-LC thing I made

2010-12-16 Thread Colin Holgate

On Dec 16, 2010, at 9:45 PM, Colin Holgate wrote:

> Like Scott, I do use other tools, mostly Flash, and yesterday this thing I 
> made became available in the App Store:
> 
> Andrew Answers for iPhone, iPod touch, and iPad on the iTunes App Store


The link didn't work out:

http://itunes.apple.com/us/app/andrew-answers/id406162881




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


Re: DGH Clone Chamber Preview - was datagrid: sharing grid templates & copy paste

2010-12-16 Thread Andrew Kluthe

Now this is a feature! Love it! After the holidays I am going to purchase
your DGH. I hate having to recreate identical datagrids between stacks of my
projects.
-- 
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/DGH-Clone-Chamber-Preview-was-datagrid-sharing-grid-templates-copy-paste-tp3091944p3092037.html
Sent from the Revolution - User mailing list archive at Nabble.com.

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


Re: OT: non-LC thing I made

2010-12-16 Thread Alejandro Tejada

Looks really nice! :-)

When I had an iPod Touch, will test it in detail.

Which parts of this interactive adventure could
have been created more easily in Livecode for iOS?

Al
-- 
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/OT-non-LC-thing-I-made-tp3092024p3092043.html
Sent from the Revolution - User mailing list archive at Nabble.com.

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


Re: OT: non-LC thing I made

2010-12-16 Thread Colin Holgate

On Dec 16, 2010, at 10:23 PM, Alejandro Tejada wrote:

> Which parts of this interactive adventure could
> have been created more easily in Livecode for iOS?

Almost none of it. It uses timeline animation that is synchronized to long bits 
of audio. That's something that Flash does fairly well.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: msg box Buggerers

2010-12-16 Thread J. Landman Gay

On 12/16/10 8:39 PM, dunb...@aol.com wrote:

Sniff. Thanks Jackie. My poor, legitimate thread. Ruined. Choke.

And I have a reproducable bug. And nobody cares. Bawl.


Aww. There, there. We care. Really. The problem is, it seems only to be 
reproducible on your setup. Try tossing out your prefs file. LiveCode 
stores your message box history in there and maybe it's storing 
something weird. It's in your user library/Preferences/RunRev/livecode.rev.


You'll have to reset any prefs you changed from defaults.

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com

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


Re: msg box Buggerers

2010-12-16 Thread J. Landman Gay

On 12/16/10 8:46 PM, Colin Holgate wrote:


On Dec 16, 2010, at 9:39 PM, dunb...@aol.com wrote:


Sorry Craig, thread hijacking seems to be in vogue today.




Is Vogue magazine still around? And they write articles on thread hijacking?


No, they write articles about threads. Hijackings are in Newsweek.

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com

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


Re: Inconsistent Revlet launch

2010-12-16 Thread J. Landman Gay

On 12/16/10 4:41 PM, Rick Rice wrote:

Klaus:
I am almost 100% sure that I do not use any features that are not in
version 4.0
This is really frustrating, almost infuriating, sometimes a revlet
launches perfectly then it hangs then again it might launch. I need help.


Usually they either work or they don't, so I'm not sure anyone knows 
what's wrong. Do you have a different machine to test on? Does it happen 
only locally or also from a web site? You could try reinstalling your 
copy of the plugin, maybe yours isn't current?


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com

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


Re: Inconsistent Revlet launch

2010-12-16 Thread Rick Rice

Jacqueline:
It happens on both my laptop and my desktop.
I have not been able to try this on a web site.
I was wondering about the plugin, I'll give that a try.
Thanks
Rick

On 16-Dec-10, at 7:33 PM, J. Landman Gay wrote:


On 12/16/10 4:41 PM, Rick Rice wrote:

Klaus:
I am almost 100% sure that I do not use any features that are not in
version 4.0
This is really frustrating, almost infuriating, sometimes a revlet
launches perfectly then it hangs then again it might launch. I  
need help.


Usually they either work or they don't, so I'm not sure anyone  
knows what's wrong. Do you have a different machine to test on?  
Does it happen only locally or also from a web site? You could try  
reinstalling your copy of the plugin, maybe yours isn't current?


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com

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

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



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


Re: Help me with my inability to see a simple solution

2010-12-16 Thread Nonsanity
What the heck, I'll make one too. :)


function CheckList src
sort items of src numeric

put "," into dups
put "," into miss

repeat with a = 1 to item 1 of src - 1
put a & "," after miss
end repeat

repeat with a = 1 to the number of items in src - 1
if item a of src = item a+1 of src and ("," & item a of src & ",")
is not in dups
then put item a of src & "," after dups

if item a of src +1 < item a+1 of src and ("," & item a of src &
",") is not in miss
then put item a of src + 1 & "," after miss
end repeat

return item 2 to -1 of miss & return & item 2 to -1 of dups
end CheckList


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


Re: Help me with my inability to see a simple solution

2010-12-16 Thread Nonsanity
My bad... Didn't cover the case of several numbers in a row missing from the
middle of the sequence. This fixes that.


function CheckList src
sort items of src numeric

put "," into dups
put "" into miss

repeat with a = 1 to item 1 of src - 1
put a & "," after miss
end repeat

repeat with a = 1 to the number of items in src - 1
if item a of src = item a+1 of src and ("," & item a of src & ",")
is not in dups
then put item a of src & "," after dups

put 1 into b
repeat while item a of src +b < item a+1 of src
put item a of src + b & "," after miss
add 1 to b
end repeat
end repeat

return item 1 to -1 of miss & return & item 2 to -1 of dups
end CheckList


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


Re: msg box Buggerers

2010-12-16 Thread Scott Rossi
Too bad there's no such thing as a rimshot emoticon.  I must say that was quite 
creative.


--Original Message--
From: Jacque Landman Gay
Sender: use-livecode-boun...@lists.runrev.com
To: LiveCode Mail List
ReplyTo: LiveCode Mail List
Subject: Re: msg box Buggerers
Sent: Dec 16, 2010 7:29 PM

On 12/16/10 8:46 PM, Colin Holgate wrote:
>
> On Dec 16, 2010, at 9:39 PM, dunb...@aol.com wrote:
>
>>> Sorry Craig, thread hijacking seems to be in vogue today.
>>
>
> Is Vogue magazine still around? And they write articles on thread hijacking?

No, they write articles about threads. Hijackings are in Newsweek.

-- 
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com

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



Scott Rossi, Creative Director Tactile Media, UX Design
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: OT: non-LC thing I made

2010-12-16 Thread Alejandro Tejada

Interesting enough, when I bought MetaCard,
my first support request to Scott Raney was
about syncronizing audio with a Quicktime
Interactive movie playing automatically.

It was not possible for me to create this.

Al
-- 
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/OT-non-LC-thing-I-made-tp3092024p3092093.html
Sent from the Revolution - User mailing list archive at Nabble.com.

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


Re: A new, improved msg box Bug?

2010-12-16 Thread DunbarX
Colin.

Nope, tried both enter and return. It is just whether or not i type a char 
in the lower field. That fixes it. Steady and predictable
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: msg box Buggerers

2010-12-16 Thread DunbarX
Jacques.

Hmmm. Clearing preferences. Fixes things sometimes without ever 
understanding why.

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


Re: OT: non-LC thing I made

2010-12-16 Thread J. Landman Gay

On 12/16/10 8:50 PM, Colin Holgate wrote:


On Dec 16, 2010, at 9:45 PM, Colin Holgate wrote:


Like Scott, I do use other tools, mostly Flash, and yesterday this thing I made 
became available in the App Store:

Andrew Answers for iPhone, iPod touch, and iPad on the iTunes App Store



The link didn't work out:

http://itunes.apple.com/us/app/andrew-answers/id406162881


Very nice, Colin. As always.

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com

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


Re: Inconsistent Revlet launch

2010-12-16 Thread Judy Perry
You know, this, and thinking about renewing my license, got me a-thinking:

Why does Rev charge extra for producing revlets??

This makes no sense.  There's no way to monetize revlets.   Why are
they charging extra for this?

Judy

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


Re: msg box Buggerers

2010-12-16 Thread Richmond

"Buggerers" ? Now there's an interesting word . . . .  :)

On 12/17/2010 04:39 AM, dunb...@aol.com wrote:

Sniff. Thanks Jackie. My poor, legitimate thread. Ruined. Choke.

And I have a reproducable bug. And nobody cares. Bawl.

In a message dated 12/15/10 5:58:08 PM, jac...@hyperactivesw.com writes:



Sorry Craig, thread hijacking seems to be in vogue today.





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


Re: msg box Buggerers

2010-12-16 Thread Richmond

Anybody invented an 'OT filter' yet ?

On 12/17/2010 07:18 AM, dunb...@aol.com wrote:

Jacques.

Hmmm. Clearing preferences. Fixes things sometimes without ever
understanding why.

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


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


Re: Valentina db under Linux ???

2010-12-16 Thread Mark Wieder
Ruslan-

Wednesday, December 15, 2010, 11:33:15 PM, you wrote:

> We will upload newer archive of V4REV Linux 32 bit
> In the nearest couple of hours. I will notify on Valentina list.

Here's what I get on Fedora Core 13:

extracted to home directory (/home/mwieder)
su -
./install vserver.sh

ln: accessing `libvclient_release_x86.so': Too many levels of symbolic links
ln: accessing `libvkernel_release_x86.so': Too many levels of symbolic links
ln: accessing `libvreport_release_x86.so': Too many levels of symbolic links
ln: accessing `libvshared_release_x86.so': Too many levels of symbolic links
cp: cannot stat `./VServer/*': No such file or directory

so now there's a VServer directory with four invalid links. Not very
encouraging.

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


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