Re: Menu Accelerators - help!

2010-09-06 Thread J. Landman Gay

On 9/5/10 10:59 PM, Web Admin Himalayan Academy wrote:


Find/F
Find Again/G

does not work , repeat... no go.. in fact I tried this first and when it
did not work, (with suspend development tools on) that's when I tried
using the additional ^ char


Odd, I've been using that forever. I wonder if you've hit the bug where 
menu keys don't always trigger. It was an issue in the IDE too. You 
could try a test to see if that's the problem. If I remember right, 
choosing the menu item with the mouse will activate the menu. After 
that, keyboard shortcuts work again. If that's what happens in your 
stack, then your menu commands are correct but the engine isn't seeing them.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revCopyFile problems on Mac OS X.6.4

2010-09-06 Thread biodan

I can confirm that the absolute file path does work using the Rev 4.0 (build
950) IDE in OSX but revCopyFile does not work from the command-line.

Also, in OS X, calling the shell from a Terminal session does not work
either: e.g. 

put $HOME /Desktop/test.txt into tInfile
put $HOME /Desktop/outDir into tOutDir

put cp tInfile tOutDir into tCmd
put shell(tCmd)

-- Nothing is returned either
-- 
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/revCopyFile-problems-on-Mac-OS-X-6-4-tp2402998p2527750.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: revCopyFile problems on Mac OS X.6.4

2010-09-06 Thread Thierry

Le 6 sept. 2010 à 00:18, biodan a écrit :

 ... shell from a Terminal session does not work

Hi.

Yes it works !

 put $HOME /Desktop/test.txt into tInfile
 put $HOME /Desktop/outDir into tOutDir
 put cp tInfile tOutDir into tCmd
 put shell(tCmd)


Just commenting your last line and write :

put tCmd

should have given you enough explanation...

Personally,  I never use this error prone syntax of putting vars inside quoted 
strings...

# One way to do it :

put cp  q( tInfile)  q( tOutDir) into tCmd
put shell( tCmd )
end mouseUp

function q t
   return quote  t  quote
end q

# Another way which I prefer :

get format( cp   ' %s '   ' %s ' , tInfile, tOutDir )
put shell( it )

# A variation of it, which is how I code :

on mouseUp
   get shell( format( cp   '%s' '%s',  \
  $HOME  /Desktop/test.txt , \
  $HOME  /Desktop/outDir ) )
end mouseUp

And I'm sure others can point out different writing style.
Be happy with yours, but check/test/test and test your code.
put and answer commands are good friends for that.

Regards,
Thierry

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


Re: Data Grid Column Header Problem

2010-09-06 Thread zryip theSlug
On Mon, Sep 6, 2010 at 4:28 AM, J. Landman Gay jac...@hyperactivesw.com wrote:
 On 9/5/10 6:50 PM, Mark Wieder wrote:

 Len-

 Sunday, September 5, 2010, 2:45:39 PM, you wrote:

 As an example, the column for sex (Label = S) is set for 30.  The

 ...I thought about commenting on column for sex but decided against
 it...


 No you didn't. ;) But I confess I wondered why they had to wait till 30.

Why I'm hesitant now to confirm that the ideal min size should be 40?

-- 
-Zryip TheSlug- wish you the best! 8)
http://www.aslugontheroad.co.cc
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] PING

2010-09-06 Thread Dave Cragg

On 6 Sep 2010, at 04:04, Chipp Walters wrote:

 Any early thoughts on Apple's new social network? It seems to be getting some 
 concerned reviews. 
 http://bit.ly/dn5AON

Is this a trick question, Chipp? 

Anyway, I agree with whatever your thoughts are, unless they're wrong. :-)

Dave

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


Re: [OT] PING

2010-09-06 Thread Richmond

On 09/06/2010 01:18 PM, Dave Cragg wrote:

On 6 Sep 2010, at 04:04, Chipp Walters wrote:

   

Any early thoughts on Apple's new social network? It seems to be getting some 
concerned reviews.
http://bit.ly/dn5AON
 

Is this a trick question, Chipp?

Anyway, I agree with whatever your thoughts are, unless they're wrong. :-)

Dave

___
   


All social networks raise concerns; of course they do; normally those 
concerns are
raised by liberal types who, oddly enough considering they consider 
themselves 'liberal',
are worried about how these social networks might be used to pollute the 
minds of the tinies;
and the tinies and other tiny-minded types might get up to 'naughty 
things'. And, as 'liberals' they
are busy thinking up ways to restrict access to social networks, 
forgetting that most people

who really want to do naughty things will do them, regardless.

Well; these things could happen.

However; we should all be the keepers of our own consciences, and not 
air our dirty
linen in places where it can be spread around the world lickety-split 
(i.e. on the internet).


Water does find its own level; some is pretty murky, and best avoided - 
but as God gave us

brains it is up to us to use them.

Some of the things silly people put of FaceBook are incredible . . .

Mind you, some other people, who have developed mental filters, use 
these social networks

for nice things.

Well; there's a fairly right-wing opinion for you.

Come on, let's hear a well thought-out socialist opinion to even things 
up . . .  :)


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


Re: [OT] PING

2010-09-06 Thread Mark Wieder
Chipp-

Sunday, September 5, 2010, 8:04:56 PM, you wrote:

 Any early thoughts on Apple's new social network? It seems to be getting some 
 concerned reviews.
 http://bit.ly/dn5AON

Hadn't heard about Ping until your note, but I like Eric Schwarz's
comment (pasted here because I can't figure out how to set a link to
it):

There is a fundamental openness and chaos in a community, they feel
they must suppress that lack of control. They don't like chaos. A
community is created by its audience. Apple wants to control ALL
aspects of their products. When your product is a community that won't
work. When your product is a community your product is mostly created
by its users.

...maybe it's because I've just spent a virtual weekend deeply
immersed in Burning Man, but the idea of creating a social network
from the top down is just weird. Schwarz's quote sounds to me very
much like a description of the community of this list.

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

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


Re: [OT] PING

2010-09-06 Thread Richmond

On 09/06/2010 06:19 PM, Mark Wieder wrote:

Chipp-

Sunday, September 5, 2010, 8:04:56 PM, you wrote:

   

Any early thoughts on Apple's new social network? It seems to be getting some 
concerned reviews.
http://bit.ly/dn5AON
 

Hadn't heard about Ping until your note, but I like Eric Schwarz's
comment (pasted here because I can't figure out how to set a link to
it):

There is a fundamental openness and chaos in a community, they feel
they must suppress that lack of control. They don't like chaos. A
community is created by its audience. Apple wants to control ALL
aspects of their products. When your product is a community that won't
work. When your product is a community your product is mostly created
by its users.

   


Arr, arr, arr tis the RunRev Use-List.


...maybe it's because I've just spent a virtual weekend deeply
immersed in Burning Man, but the idea of creating a social network
from the top down is just weird. Schwarz's quote sounds to me very
much like a description of the community of this list.

   


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


Re: Cookies again: Expiry Date

2010-09-06 Thread Gregory Lypny
Hi Stephen,

Just to add to Andre's tip, I've found the setting and getting of cookies to be 
extremely finicky.  One thing that tripped me up for about four hours was the 
placement of ?rev in scripts.  It must appear in the very first line of any 
script involving cookies.  Leave a blank first line, and it is possible that 
everything in a script will work except for things having to do with cookies!

Regards,

Gregory


On Sun, Sep 5, 2010, at 11:04 PM, use-revolution-requ...@lists.runrev.com wrote:

 Message: 13
 Date: Sun, 5 Sep 2010 14:46:20 -0700
 From: stephen barncard stephenrevoluti...@barncard.com
 Subject: Re: Cookies again: Expiry Date
 To: How to use Revolution use-revolution@lists.runrev.com
 Message-ID:
   aanlkti=zd=cjwf5u3u-6c6zvygxxoepyl7feg=4hc...@mail.gmail.com
 Content-Type: text/plain; charset=UTF-8
 
 That was it. The date format.  Thanks very much, Andre.
 
 sqb

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


Re: Data Grid Column Header Problem

2010-09-06 Thread Len Morgan
 With this group it's sometimes hard to determine who is kidding and 
who is just confused (I tend to be the later most of the time).  Just to 
clarify, the ... is set for 30 ... refers to the size (of the COLUMN 
Mark) that I want.  This county jail holds both male and female inmates 
so I need to let them know which is which (you can't always tell from 
the mug shots!) so they know who to put where.  The inmates might like 
the mixup but I'm sure the authorities might object.  By the way, I also 
turn a field a nice sky blue for males and pretty pink for girls.  I 
needed the S field in case they get a color blind officer.


Thanks for the help though!

len


On 9/6/2010 4:24 AM, zryip theSlug wrote:

On Mon, Sep 6, 2010 at 4:28 AM, J. Landman Gayjac...@hyperactivesw.com  wrote:

On 9/5/10 6:50 PM, Mark Wieder wrote:

Len-

Sunday, September 5, 2010, 2:45:39 PM, you wrote:


As an example, the column for sex (Label = S) is set for 30.  The

...I thought about commenting on column for sex but decided against
it...


No you didn't. ;) But I confess I wondered why they had to wait till 30.

Why I'm hesitant now to confirm that the ideal min size should be 40?



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


Re: Cookies again: Expiry Date

2010-09-06 Thread Jeff Massung
On Sun, Sep 5, 2010 at 4:46 PM, stephen barncard 
stephenrevoluti...@barncard.com wrote:

 That was it. The date format.  Thanks very much, Andre.


Stephen,

I don't know what you are using this particular cookie for, but just thought
I'd comment on something for everyone else following the thread...

If you are dealing with logins and using a cookie for that, I find it is
usually bad practice to use an expired cookie for that as opposed to
handling the expire server-side: typically within the database itself, and
letting the cookie just be a unique identifier that tells the server what
row in the database to be looking at. It makes the cookie cleaner and is
more secure.

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


Re: Cookies again: Expiry Date

2010-09-06 Thread Andre Garzia
On Mon, Sep 6, 2010 at 1:36 PM, Gregory Lypny
gregory.ly...@videotron.ca wrote:
 Hi Stephen,

 Just to add to Andre's tip, I've found the setting and getting of cookies to 
 be extremely finicky.  One thing that tripped me up for about four hours was 
 the placement of ?rev in scripts.  It must appear in the very first line of 
 any script involving cookies.  Leave a blank first line, and it is possible 
 that everything in a script will work except for things having to do with 
 cookies!


Gregory,

That is not an actual bug but a design behaviour. RevServer engine
will output things as soon as it can, meaning that the blank line will
be sent as is back to apache server as soon as your script starts
executing. HTTP Headers must be sent to apache before actual output is
sent, so if you have a blank line on top of your file, that is treated
by the engine as hey you want to output a blank line, fine! and thus
all the subsequent put header calls will fail since apache will pick
that blank line and start outputing everyting as content and not as
headers.

RevServer will start the flush output process if it finds anything
that is not enclosed into a ?rev tag or if it finds the closing ?
tag.

So if you start your code with a ?rev but closes it with a ? and
then the output will also begin. This is good to know because of
includes, if you put ? in your includes, the very act of including a
file will start the output. So take those ? out of the include files.

Before anyone ask why this is so it is because PHP engine does it this
way and we decided to copy them.



 Regards,

 Gregory



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


Re: Cookies again: Expiry Date

2010-09-06 Thread stephen barncard
I've also found that the 'normal' cookie listing in Safari security
preferences is difficult to work with - however *Develop:show web
inspector:storage pane*l shows cookies in a better way and refreshes easily.

For a while I thought my cookies weren't working - but it was because I was
setting the time and date to the current time - and that's the expiration
time and the entries wouldn't appear.

Here's my code for creating the correct format for the date:

blockquote

function returnCookieDate pSeconds,pGMTHours
-- returns a date compatible with cookie use:
--  Sun, 5-Sep-2010 15:25:12 GMT
--requires setOffset, below
  if pGMTHours is empty then put -0700 into pGMTHours
  if pSeconds is empty
  then
put the seconds into pSeconds
  end if
  -- add or subtract zone offset (like -0700) from local to GMT in
seconds here
  put setOffset(pSeconds,pGMTHours) into pSeconds
  convert pSeconds to dateitems
  put pSeconds into tDateItems
  convert pSeconds to  internet date  --  like Sun, 5 Sep 2010 15:25:12
-0700
  put word 1 of pSeconds into tDay
  put (word 2 of pSeconds)  -  (word 3 of pSeconds)  -  (word 4
of pSeconds) into tDate
  put word 5 of pSeconds into tTime
  replace space with - in tTime
  return tDay  tDate  tTime  GMT
end returnCookieDate

function setOffset pSecs,pGMTHours
-- 20100905
-- figures offset for time zone relating to GMT
-- example   pGMTHours = -0700
-- pSecs is the time in seconds
  if character 1 of pGMTHours is -
  then
delete character 1 of pGMTHours
put - into pSign
  else
put  into pSign
  end if
  put character 1 to 2 of pGMTHours into t6oFS -- chop trailing zeros
  put (t6oFS * 3600) into tOffsetHourSeconds
  switch pSign
case it is -
  put (psecs - tOffsetHourSeconds ) into pSecs
  break
default
  put (tOffsetHourSeconds  + pSecs ) into pSecs
  end switch
  return pSecs
end setOffset

/blockquote

On 6 September 2010 09:45, Andre Garzia an...@andregarzia.com wrote:

 On Mon, Sep 6, 2010 at 1:36 PM, Gregory Lypny
 gregory.ly...@videotron.ca wrote:
  Hi Stephen,
 
  Just to add to Andre's tip, I've found the setting and getting of cookies
 to be extremely finicky.  One thing that tripped me up for about four hours
 was the placement of ?rev in scripts.  It must appear in the very first
 line of any script involving cookies.  Leave a blank first line, and it is
 possible that everything in a script will work except for things having to
 do with cookies!
 

 Gregory,

 That is not an actual bug but a design behaviour. RevServer engine
 will output things as soon as it can, meaning that the blank line will
 be sent as is back to apache server as soon as your script starts
 executing. HTTP Headers must be sent to apache before actual output is
 sent, so if you have a blank line on top of your file, that is treated
 by the engine as hey you want to output a blank line, fine! and thus
 all the subsequent put header calls will fail since apache will pick
 that blank line and start outputing everyting as content and not as
 headers.

 RevServer will start the flush output process if it finds anything
 that is not enclosed into a ?rev tag or if it finds the closing ?
 tag.

 So if you start your code with a ?rev but closes it with a ? and
 then the output will also begin. This is good to know because of
 includes, if you put ? in your includes, the very act of including a
 file will start the output. So take those ? out of the include files.

 Before anyone ask why this is so it is because PHP engine does it this
 way and we decided to copy them.



  Regards,
 
  Gregory
 


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




-- 



Stephen Barncard
San Francisco Ca. USA

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


Re: Data Grid Column Header Problem

2010-09-06 Thread Malte Pfaff-Brill
Hi Len,

 I needed the S field in case they get a color blind officer.

I can wholeheartedly recommend this to make apps save to use for color impaired 
people:

http://colororacle.cartography.ch/

Used it all the time when testing how the games would look for them.

Cheers,

Malte

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


Re: Cookies again: Expiry Date

2010-09-06 Thread Gregory Lypny
Good stuff, Andre,

Thanks for the clarification.

Gregory


On Mon, Sep 6, 2010, at 1:00 PM, use-revolution-requ...@lists.runrev.com wrote:

 Gregory,
 
 That is not an actual bug but a design behaviour. RevServer engine
 will output things as soon as it can, meaning that the blank line will
 be sent as is back to apache server as soon as your script starts
 executing. HTTP Headers must be sent to apache before actual output is
 sent, so if you have a blank line on top of your file, that is treated
 by the engine as hey you want to output a blank line, fine! and thus
 all the subsequent put header calls will fail since apache will pick
 that blank line and start outputing everyting as content and not as
 headers.
 
 RevServer will start the flush output process if it finds anything
 that is not enclosed into a ?rev tag or if it finds the closing ?
 tag.
 
 So if you start your code with a ?rev but closes it with a ? and
 then the output will also begin. This is good to know because of
 includes, if you put ? in your includes, the very act of including a
 file will start the output. So take those ? out of the include files.
 
 Before anyone ask why this is so it is because PHP engine does it this
 way and we decided to copy them.

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


Re: Cookies again: Expiry Date

2010-09-06 Thread Andre Garzia
On Mon, Sep 6, 2010 at 2:30 PM, stephen barncard
stephenrevoluti...@barncard.com wrote:
 I've also found that the 'normal' cookie listing in Safari security
 preferences is difficult to work with - however *Develop:show web
 inspector:storage pane*l shows cookies in a better way and refreshes easily.


Stephen,

Even though Safari Developer tools gets better every release, they are
not on par with firebug. I suggest you take a look at the marvelous
combination of Firefox + Firebug

http://getfirefox.com
http://getfirebug.com

That cookie business would be really easy to debug by using Firebug
Net panel and inspecting the headers.

Cheers
andre


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


Re: [OT] PING

2010-09-06 Thread Pierre Sahores
How would the Social Networks supposed notion really make sense when we are 
daily bused by (and about) Ethological Networks businesses only. Are FaceBook 
and Twitter in social tasks involved in any way ? iTunes Ping ? Pathetic ...

Le 6 sept. 2010 à 05:04, Chipp Walters a écrit :

 Any early thoughts on Apple's new social network? It seems to be getting some 
 concerned reviews. 
 http://bit.ly/dn5AON
 
 Chipp Walters
 CEO, Shafer Walters Group, Inc___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 

--
Pierre Sahores
mobile : (33) 6 03 95 77 70

www.wrds.com
www.sahores-conseil.com






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


Attaching Mac .ICNS files to standalones ???

2010-09-06 Thread Richmond

That's queer; I just ran off a Mac standalone on my G4 MacMini and the
.icns file I chose did not show up in the finished standalone . . .

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


Explanation of Error code

2010-09-06 Thread Len Morgan

  More problems here, and this is with code that used to work fine.

I'm trying to find an explanation for the 3 number (i.e., error 1,2,3, 
in ) error codes that I'm getting back.  If you could just point me 
to where to look in the manual or in the mailing list, I think I can 
figure it out.  I just don't know where to look.


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


Re: Explanation of Error code

2010-09-06 Thread Mark Schonewille
Len,

http://runrev.info/error.html

--
Best regards,

Mark Schonewille

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

From 15th August, we'll have time for new projects! Be the first in line and 
contact me now!

Download the Installer Maker plugin for Runtime Revolution at http://qurl.tk/ce

On 6 sep 2010, at 21:14, Len Morgan wrote:

  More problems here, and this is with code that used to work fine.
 
 I'm trying to find an explanation for the 3 number (i.e., error 1,2,3, in 
 ) error codes that I'm getting back.  If you could just point me to where 
 to look in the manual or in the mailing list, I think I can figure it out.  I 
 just don't know where to look.
 
 len

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


Re: Explanation of Error code

2010-09-06 Thread Mark Wieder
 Len,

 http://runrev.info/error.html

Also, since I know you've got PowerDebug, open the messagebox and type

put ExplainError(xxx)

where xxx is the first number in the line, i.e., put ExplainError(465)

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

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


Re: Explanation of Error code

2010-09-06 Thread Len Morgan
 Thanks, Mark.  It worked like a champ and pointed out an oversight of 
mine when changing the name of a stack.  It was so simple as to be 
invisible.


I WILL be buying PowerDebug!

len


On 9/6/2010 2:25 PM, Mark Wieder wrote:

Len,
http://runrev.info/error.html

Also, since I know you've got PowerDebug, open the messagebox and type

put ExplainError(xxx)

where xxx is the first number in the line, i.e., put ExplainError(465)



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


Re: [OT] PING

2010-09-06 Thread Chipp Walters
You're a funny guy, Dave! 

No trick question, just wondering how much effect PING will have. There's one 
theory which says this is just the beginning of social networking built around 
a single venue, others see it doomed to failure because it's too commercialized.

Our company does a lot of work in the Online Digital Marketing space. This 
stuff is interesting. There are no right and wrong answers. 

More at
http://dlvr.it/4gnsY

Interesting how easy it is for kids to join PING, and let anyone follow them. 
Not sure Steve's thought this out too well... 

Chipp Walters
CEO, Shafer Walters Group, Inc

On Sep 6, 2010, at 3:18 AM, Dave Cragg dave.cr...@lacscentre.co.uk wrote:

 Is this a trick question, Chipp? 
 
 Anyway, I agree with whatever your thoughts are, unless they're wrong. :-)
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Explanation of Error code

2010-09-06 Thread Mark Wieder
Len-

Monday, September 6, 2010, 1:00:02 PM, you wrote:

   Thanks, Mark.  It worked like a champ and pointed out an oversight of
 mine when changing the name of a stack.  It was so simple as to be 
 invisible.

 I WILL be buying PowerDebug!

Thanks, but it's a bit embarassing since I've been holding off
announcing it until 4.5 gets out the door.

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

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


Re: [OT] PING

2010-09-06 Thread Mark Wieder
Chipp-

Monday, September 6, 2010, 1:04:50 PM, you wrote:

 Our company does a lot of work in the Online Digital Marketing
 space. This stuff is interesting. There are no right and wrong
 answers. 

...there may be a lot of wrong ones floating around out there...

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

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


Re: [OT] PING

2010-09-06 Thread Dave Cragg
On 6 Sep 2010, at 21:04, Chipp Walters wrote:

 More at
 http://dlvr.it/4gnsY


I confess I'm totally ignorant of the social networking thing. I read the links 
you posted, but not knowing much about the networks they were comparing with, I 
didn't really follow. I was hoping you might have summarised the issues for 
people like me. :-)

But if it's going to be as unpopular as some people say, this may be the 
network for me.

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


Re: The power of despeckle-median filters: Image examples

2010-09-06 Thread Wilhelm Sanke
Providing feedback in this thread, some list members have expressed 
their appreciation for discussed image-processing approaches and 
scripts, along with the proposal to present such topics in greater 
detail in a RunRev newsletter article. Alejandro Tejada wrote:


They should publish an extensive review
of your scripts and how you port Lua
scripts to Rev.

while Kevin Miller added to this without specifying a special topic

if you might be
interested in doing a newsletter article then please drop me a line off
list.

As I am unsure what the focus of an article should be and because there 
is a wide range of possible topics for image processing, I will list 
some of such topics and present a proposal - as a primary option - for a 
possible (first) newsletter article on image-processing in Revolution. 
Of course, I will contact Kevin about this also off-list.


Concerning Lua in Revolution I see three options:

1. Rewriting my post of  March 3 Language comparisons: Lua - simpler 
and faster than
RevTalk, which already discusses in some detail several syntax formats 
for image processing in Revolution and pointing out the crucial 
similarities and differences between RevTalk and Lua. This could be 
accompanied by more examples and a sample stack.


2. Focusing on Lua-to-RevTalk conversions with a sample stack containing 
about 25 Lua scripts ported to RevTalk and including some extra variants 
developed on the basis of these Lua scripts. Article and sample stack 
would allow side-by-side comparisons of Lua and RevTalk versions. The 
sample stack is almost ready to be released.


3. Focusing on using Lua embedded in Revolution.  I am authorized to 
mention that we will soon have the possibility to run Lua scripts 
directly in Revolution as an outcome of a collaborative project. I 
consider this to be a huge step forward for image procession with 
Revolution. The power and enormous speed of Lua will join and enhance 
the potential of Revolution.


This would be my first option. We should ask the person mainly 
responsible for developing the Lua add-ons to write an introductory 
article on how to integrate Lua in Revolution and how to use the 
accompanying sample stacks and tutorials.


These Lua tools for Revolution will be released in the very near future, 
so please refrain from asking questions about this now.--


I will now list here a number of - not Lua related - aspects of image 
processing in Revolution that demonstrate that there is a wide variety 
of possible topics, each of which would deserve a separate newsletter 
article. Each of these topics could be accompanied by sample stacks - 
some of which are already available. I will just enumerate some possible 
topics without any comments:


Topics for a newsletter article

- Development of convolve-matrix filters in RevTalk
 (From Chipp Walters to Mark Waddingham; 3x3 and 5x5 filters; hybrid 
filters 5x5 to 11x11; main categories and examples of convolve filters)


- Scripting basic photo tools in RevTalk
 (Saturation, hues, gamma correction, sharpen, blur, dynamic range, 
negative image, grayscale, contrast, reducing colors, substituting 
colors etc.)


- The power of despeckle filters

- Reverse engineering Gimp filters (non-Lua filters): Dilute, erode. 
ripple, outline, photocopy, cartoon, pick etc.


- Mirrors and refractions -

- Different approaches to create seamless tiles

- Making use of color spaces (other than RGB):HSV, HSL XYZ, YUV, YIQ

- Image gradients and overlays

- Area- vs.single-pixel-oriented filters

- How to create kaleidoscope patterns

- Image borders and frames

- Noise and distortion

- The great potential of using masks in Revolution

- Combining images and selections of images

- The world of outline filters - convolve and other filters.

- The role of paintcompression in image processing

- Creating image art with fields, buttons, and char color.




Kind regards,

Wilhelm Sanke

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


Re: Explanation of Error code

2010-09-06 Thread J. Landman Gay

On 9/6/10 2:14 PM, Len Morgan wrote:

  More problems here, and this is with code that used to work fine.

I'm trying to find an explanation for the 3 number (i.e., error 1,2,3,
in ) error codes that I'm getting back. If you could just point me
to where to look in the manual or in the mailing list, I think I can
figure it out. I just don't know where to look.


In the dictionary, look up errorDialog where there is a good 
explanation of what the numbers mean and how to use them. Briefly, the 
numbers are:


Error code ID number
Line number where the error occurs in the script
Character offset in the line of script

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Explanation of Error code

2010-09-06 Thread Mark Wieder
Jacque-

Monday, September 6, 2010, 2:26:42 PM, you wrote:

 In the dictionary, look up errorDialog where there is a good
 explanation of what the numbers mean and how to use them. Briefly, the

Unfortunately the information in the docs about the errorDialog
message are a form of wishful thinking. That is, most of the
information is true most of the time, some of it may have been true in
times past but is not longer, and some of it may just be the way Scott
Raney wanted things to be. For instance, it is emphatically not true
that the errorDialog message is only sent while Script Debug mode is
turned off.

There are also other error messages such as compile-time errors that
are not in the cErrorsList of card 1, but rather in the cScriptErrors
of said card; and warnings, although I've never come across one of
those: I assume the compiler could possibly generate those if a
compile switch were enabled, but that's just guesswork on my part.

It's also unfortunately the case that the engine will sometimes
generate errorDialog messages with an empty executionError parameter
(BZ# 7741), and the only thing to do in that case is just pretend it
didn't happen.

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

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


Re: focus border color

2010-09-06 Thread Monte Goulding
Cheers, thanks
On 06/09/2010, at 9:50 AM, Terry Judd wrote:

 Based on the colors in the Apple Developer palette it seems to be 67,138,208
 
 Terry...
 
 
 On 6/09/10 9:46 AM, Monte Goulding mo...@sweattechnologies.com wrote:
 
 Ah, anyone know the RGB values for that OS X focus border then?
 
 On 06/09/2010, at 9:35 AM, Terry Judd wrote:
 
 It looks like focusColor is broken on OSX at least as setting it either at
 the stack or object level has no effect. I always get the standard bluish
 color irrespective of what color I set the focusColor to (querying the
 focusColor correctly reports the color I have 'applied').
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 --
 Dr Terry Judd | Senior Lecturer in Medical Education
 Medical Education Unit
 Faculty of Medicine, Dentistry  Health Sciences
 The University of Melbourne
 
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

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


Re: Data Grid Column Header Problem

2010-09-06 Thread Mark Wieder
Malte-

Monday, September 6, 2010, 10:43:22 AM, you wrote:

 I can wholeheartedly recommend this to make apps save to use for color 
 impaired people:

What a great link! Thanks!

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

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


Re: [OT] PING

2010-09-06 Thread Chipp Walters
Google pay per click advertisement is getting so very expensive-- esp for
our client in the auto insurance business where a single ad click can go as
high as $130! Yes, Geico or Progressive or other pay up to that amount just
to have you click on their Google Ad when searching for auto insurance.

So, there are other ways of finding customers on the net, other than through
Google. While Facebook ads can be expensive (not $130/click expensive), they
are extremely well targeted. For instance, when I log on to Facebook, I see
ads for life insurance for people over 50 (I am), and ads for iPad stuff (I
have one). So, while ads may be expensive, they are surely getting to the
correct audience.

Another way to take advantage of Facebook is by building an online community
around a subject which interests folks, and later soft peddle your wares.
Just putting up a Facebook page for your company really doesn't do much. But
providing information and value additions to your page will help keep people
coming back. The whole idea is to start and engage in conversation with your
existing and potential customers.

Twitter is a bit different. Some companies are using Twitter as a
tech-support option. Others as a direct conduit to their CEO/President (like
37 signals). Celebs are using it to better control their message, bypassing
an increasingly meaningless old and convential media. See what Kanye West
has been up to lately!
http://techcrunch.com/2010/09/04/kanye-west-twitter-2/

LinkedIn is a business networking community, mostly seems to be targeted at
helping folks find jobs, but it also has the ability to highly target ads
directly to customer bases.

All three of these social networking communities have grown in an ad hoc
fashion. Changing quickly to take advantage of the trends. MySpace is an
example of one who didn't change fast enough, and now is left behind.

Now Apple has PING. My partner, Dan Shafer, believes PING is not as much
about being a fan of music, but rather about being a customer-- and that's
not good. And is it really surprising Apple is considered controlling by
PING critics? It will be very interesting to see if Apple can pull this off.

One of the problems companies are having with regard to their social network
strategies, is that these things take time. Traditional marketing is used to
being able to create an ad campaign in weeks and deploy over the next
month(s) or so. But, building a successful social network strategy involves
a clear picture strategy deployed over a longer period of time. And,
basically you get one shot at it. Dan is fond of pointing out the problem
with traditional Silicon Valley marketing of social media and networks, is
they start a seedling of a project, then after a couple months, pull it out
of the ground to look at the roots to see why it's not growing. These things
take time.

On Mon, Sep 6, 2010 at 3:38 PM, Dave Cragg dave.cr...@lacscentre.co.ukwrote:

 I was hoping you might have summarised the issues for people like me. :-)

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


Re: [OT] PING

2010-09-06 Thread Mark Wieder
Chipp-

Monday, September 6, 2010, 5:36:38 PM, you wrote:

 All three of these social networking communities have grown in an ad hoc
 fashion. Changing quickly to take advantage of the trends. MySpace is an
 example of one who didn't change fast enough, and now is left behind.

Or one might say that MySpace changed too much: the Google tie-in
really killed things for them by interfering with the user experience.
There's a good writeup on this somewhere - I'll see if I can dig it
up.

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

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


Re: [OT] PING

2010-09-06 Thread Mark Wieder
That was fast... dug up:

http://www.wesleyverhoeve.com/why-myspace-failed-or-when-you-kill-the-user-experience-you-kill-yourself

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

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


[ANN] revObjective 1.0 released!

2010-09-06 Thread Monte Goulding
Hi Everyone

I've just released a new plugin that people who create or want to use custom 
controls with behavior scripts might find helpful. For more info go to:
http://goulding.ws/consulting/blog/

Cheers
--
Monte Goulding
M E R Goulding Software Development
Bespoke application development for vertical markets

InstallGadget - How to create an installer in 10 seconds
revObjective  - Making behavior scripts behave

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


Re: Explanation of Error code

2010-09-06 Thread J. Landman Gay

On 9/6/10 5:36 PM, Mark Wieder wrote:

Jacque-

Monday, September 6, 2010, 2:26:42 PM, you wrote:


In the dictionary, look up errorDialog where there is a good
explanation of what the numbers mean and how to use them. Briefly, the


Unfortunately the information in the docs about the errorDialog
message are a form of wishful thinking. That is, most of the
information is true most of the time, some of it may have been true in
times past but is not longer, and some of it may just be the way Scott
Raney wanted things to be. For instance, it is emphatically not true
that the errorDialog message is only sent while Script Debug mode is
turned off.

There are also other error messages such as compile-time errors that
are not in the cErrorsList of card 1, but rather in the cScriptErrors
of said card; and warnings, although I've never come across one of
those: I assume the compiler could possibly generate those if a
compile switch were enabled, but that's just guesswork on my part.

It's also unfortunately the case that the engine will sometimes
generate errorDialog messages with an empty executionError parameter
(BZ# 7741), and the only thing to do in that case is just pretend it
didn't happen.



Good to know, thanks. At least the numbers still mean what I thought. 
Might be worth pasting the above into a dictionary user note.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [ANN] revObjective 1.0 released!

2010-09-06 Thread Andre Garzia
Monte,

the download link is wrong! ;-)

Congratulations, want to check it out!

Cheers
andre

On Mon, Sep 6, 2010 at 10:01 PM, Monte Goulding
mo...@sweattechnologies.com wrote:
 Hi Everyone

 I've just released a new plugin that people who create or want to use custom 
 controls with behavior scripts might find helpful. For more info go to:
 http://goulding.ws/consulting/blog/

 Cheers
 --
 Monte Goulding
 M E R Goulding Software Development
 Bespoke application development for vertical markets

 InstallGadget - How to create an installer in 10 seconds
 revObjective  - Making behavior scripts behave

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




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


Re: [ANN] revObjective 1.0 released!

2010-09-06 Thread Mike Bonner
Heres the right link. http://goulding.ws/?file_id=11

On Mon, Sep 6, 2010 at 7:18 PM, Andre Garzia an...@andregarzia.com wrote:

 Monte,

 the download link is wrong! ;-)

 Congratulations, want to check it out!

 Cheers
 andre

 On Mon, Sep 6, 2010 at 10:01 PM, Monte Goulding
 mo...@sweattechnologies.com wrote:
  Hi Everyone
 
  I've just released a new plugin that people who create or want to use
 custom controls with behavior scripts might find helpful. For more info go
 to:
  http://goulding.ws/consulting/blog/
 
  Cheers
  --
  Monte Goulding
  M E R Goulding Software Development
  Bespoke application development for vertical markets
 
  InstallGadget - How to create an installer in 10 seconds
  revObjective  - Making behavior scripts behave
 
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution
 



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

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


Re: [ANN] revObjective 1.0 released!

2010-09-06 Thread Monte Goulding
Woops, refresh the page now.

On 07/09/2010, at 11:18 AM, Andre Garzia wrote:

 Monte,
 
 the download link is wrong! ;-)
 
 Congratulations, want to check it out!
 
 Cheers
 andre
 
 On Mon, Sep 6, 2010 at 10:01 PM, Monte Goulding
 mo...@sweattechnologies.com wrote:
 Hi Everyone
 
 I've just released a new plugin that people who create or want to use custom 
 controls with behavior scripts might find helpful. For more info go to:
 http://goulding.ws/consulting/blog/
 
 Cheers
 --
 Monte Goulding
 M E R Goulding Software Development
 Bespoke application development for vertical markets
 
 InstallGadget - How to create an installer in 10 seconds
 revObjective  - Making behavior scripts behave
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
 -- 
 http://www.andregarzia.com All We Do Is Code.
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

--
Monte Goulding
M E R Goulding Software Development
Bespoke application development for vertical markets

InstallGadget - How to create an installer in 10 seconds
revObjective  - Making behavior scripts behave

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


Re: [ANN] revObjective 1.0 released!

2010-09-06 Thread stephen barncard
I think it needs some more testing outside of your environment.  I had major
name space problems had to force-quit.

sqb

On 6 September 2010 18:22, Mike Bonner bonnm...@gmail.com wrote:

 Heres the right link. http://goulding.ws/?file_id=11

 On Mon, Sep 6, 2010 at 7:18 PM, Andre Garzia an...@andregarzia.com
 wrote:

  Monte,
 
  the download link is wrong! ;-)
 
  Congratulations, want to check it out!
 
  Cheers
  andre
 
  On Mon, Sep 6, 2010 at 10:01 PM, Monte Goulding
  mo...@sweattechnologies.com wrote:
   Hi Everyone
  
   I've just released a new plugin that people who create or want to use
  custom controls with behavior scripts might find helpful. For more info
 go
  to:
   http://goulding.ws/consulting/blog/
  
   Cheers
   --
   Monte Goulding
   M E R Goulding Software Development
   Bespoke application development for vertical markets
  
   InstallGadget - How to create an installer in 10 seconds
   revObjective  - Making behavior scripts behave
  
   ___
   use-revolution mailing list
   use-revolution@lists.runrev.com
   Please visit this url to subscribe, unsubscribe and manage your
  subscription preferences:
   http://lists.runrev.com/mailman/listinfo/use-revolution
  
 
 
 
  --
  http://www.andregarzia.com All We Do Is Code.
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
  subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution




-- 



Stephen Barncard
San Francisco Ca. USA

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


Re: Menu Accelerators - help!

2010-09-06 Thread RunRevPlanet

Sivakatirswami,

If a keyboard shortcut in your stack duplicates a shortcut in the IDE, 
provided your application stack is top most (focused), the shortcut 
should still work even when working from the IDE.


The Tip of the Week at RunRevPlanet has recently been looking at 
making menus, and this week just happens to be about keyboard shortcuts 
for menus:


http://www.runrevplanet.com/index.php?option=com_contentview=articleid=177catid=57Itemid=65

Some of the information there may be useful.
--
Scott McDonald
Components, Stacks, Tools and Resources for Runtime Revolution
www.runrevplanet.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [ANN] revObjective 1.0 released!

2010-09-06 Thread Monte Goulding

 I think it needs some more testing outside of your environment.  I had major
 name space problems had to force-quit.

Ok, can you give me some more info?

 
 sqb
 
 On 6 September 2010 18:22, Mike Bonner bonnm...@gmail.com wrote:
 
 Heres the right link. http://goulding.ws/?file_id=11
 
 On Mon, Sep 6, 2010 at 7:18 PM, Andre Garzia an...@andregarzia.com
 wrote:
 
 Monte,
 
 the download link is wrong! ;-)
 
 Congratulations, want to check it out!
 
 Cheers
 andre
 
 On Mon, Sep 6, 2010 at 10:01 PM, Monte Goulding
 mo...@sweattechnologies.com wrote:
 Hi Everyone
 
 I've just released a new plugin that people who create or want to use
 custom controls with behavior scripts might find helpful. For more info
 go
 to:
 http://goulding.ws/consulting/blog/
 
 Cheers
 --
 Monte Goulding
 M E R Goulding Software Development
 Bespoke application development for vertical markets
 
 InstallGadget - How to create an installer in 10 seconds
 revObjective  - Making behavior scripts behave
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
 --
 http://www.andregarzia.com All We Do Is Code.
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
 -- 
 
 
 
 Stephen Barncard
 San Francisco Ca. USA
 
 more about sqb  http://www.google.com/profiles/sbarncar
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

--
Monte Goulding
M E R Goulding Software Development
Bespoke application development for vertical markets

InstallGadget - How to create an installer in 10 seconds
revObjective  - Making behavior scripts behave

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


[OT] router + manual DHCP setting

2010-09-06 Thread Jim Ault
Definitely not a Rev question, but there are some of my Rev apps  
working on this computer.


I have a remote Mac mini running OSX Leopard behind a Belkin router  
and would like to change from DHCP to DHCP using manual address.


The procedure i used was to go System Preferences:Network:Ethernet   
and change the drop down choice, enter '192.168.2.30' then 'apply'   
and lost connection to the internet.  (the range used for active  
assignments is 2.2 thru 2.9, so it uses the lowest range of numbers)



Step 2 was to reboot the Mac, just in case, and still no internet.
Step 3 was chose 'DHCP', click 'apply' and regain internet connection.

Also tried   2.201   which is outside the default range for Belkin.

Is there a step I am missing.
The issue is this computer will run unattended most all the time and  
the LAN address reassignment can occur (like last weekend) and the  
computer is unreachable.


All is well for now, but ...
Thanks for any pointers.  Google did not seem to deliver an answer  
that worked.



Jim Ault
Las Vegas

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


Re: [ANN] revObjective 1.0 released!

2010-09-06 Thread stephen barncard
I opened a fresh stack and tried to move a placed object on your stack, but
was interrupted by the 'another stack with the same name error and got
into that dreaded loop. Had to force-quit.

mIght you have a stack named 'untitled' somewhere in your project?

sqb

On 6 September 2010 18:32, Monte Goulding mo...@sweattechnologies.comwrote:


  I think it needs some more testing outside of your environment.  I had
 major
  name space problems had to force-quit.

 Ok, can you give me some more info?

 
  sqb
 
  On 6 September 2010 18:22, Mike Bonner bonnm...@gmail.com wrote:
 
  Heres the right link. http://goulding.ws/?file_id=11
 
  On Mon, Sep 6, 2010 at 7:18 PM, Andre Garzia an...@andregarzia.com
  wrote:
 
  Monte,
 
  the download link is wrong! ;-)
 
  Congratulations, want to check it out!
 
  Cheers
  andre
 
  On Mon, Sep 6, 2010 at 10:01 PM, Monte Goulding
  mo...@sweattechnologies.com wrote:
  Hi Everyone
 
  I've just released a new plugin that people who create or want to use
  custom controls with behavior scripts might find helpful. For more info
  go
  to:
  http://goulding.ws/consulting/blog/
 
  Cheers
  --
  Monte Goulding
  M E R Goulding Software Development
  Bespoke application development for vertical markets
 
  InstallGadget - How to create an installer in 10 seconds
  revObjective  - Making behavior scripts behave
 
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
  subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
  --
  http://www.andregarzia.com All We Do Is Code.
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
  subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution
 
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
  subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
  --
 
 
 
  Stephen Barncard
  San Francisco Ca. USA
 
  more about sqb  http://www.google.com/profiles/sbarncar
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution

 --
 Monte Goulding
 M E R Goulding Software Development
 Bespoke application development for vertical markets

 InstallGadget - How to create an installer in 10 seconds
 revObjective  - Making behavior scripts behave

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




-- 



Stephen Barncard
San Francisco Ca. USA

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


Re: [ANN] revObjective 1.0 released!

2010-09-06 Thread Monte Goulding
I think I've got it, I did some drag and drop stuff for pulling the stack files 
out of the revObjective folder before I implemented the drag and drop of 
objects to the stacks and they are messing with each other so I'll pull out the 
files one because it's easy enough to open up the revObjective folder if you 
want to get your files. I'll post a new version ASAP.

On 07/09/2010, at 11:54 AM, stephen barncard wrote:

 I opened a fresh stack and tried to move a placed object on your stack, but
 was interrupted by the 'another stack with the same name error and got
 into that dreaded loop. Had to force-quit.
 
 mIght you have a stack named 'untitled' somewhere in your project?
 
 sqb
 
 On 6 September 2010 18:32, Monte Goulding mo...@sweattechnologies.comwrote:
 
 
 I think it needs some more testing outside of your environment.  I had
 major
 name space problems had to force-quit.
 
 Ok, can you give me some more info?
 
 
 sqb
 
 On 6 September 2010 18:22, Mike Bonner bonnm...@gmail.com wrote:
 
 Heres the right link. http://goulding.ws/?file_id=11
 
 On Mon, Sep 6, 2010 at 7:18 PM, Andre Garzia an...@andregarzia.com
 wrote:
 
 Monte,
 
 the download link is wrong! ;-)
 
 Congratulations, want to check it out!
 
 Cheers
 andre
 
 On Mon, Sep 6, 2010 at 10:01 PM, Monte Goulding
 mo...@sweattechnologies.com wrote:
 Hi Everyone
 
 I've just released a new plugin that people who create or want to use
 custom controls with behavior scripts might find helpful. For more info
 go
 to:
 http://goulding.ws/consulting/blog/
 
 Cheers
 --
 Monte Goulding
 M E R Goulding Software Development
 Bespoke application development for vertical markets
 
 InstallGadget - How to create an installer in 10 seconds
 revObjective  - Making behavior scripts behave
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
 --
 http://www.andregarzia.com All We Do Is Code.
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
 --
 
 
 
 Stephen Barncard
 San Francisco Ca. USA
 
 more about sqb  http://www.google.com/profiles/sbarncar
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 --
 Monte Goulding
 M E R Goulding Software Development
 Bespoke application development for vertical markets
 
 InstallGadget - How to create an installer in 10 seconds
 revObjective  - Making behavior scripts behave
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
 -- 
 
 
 
 Stephen Barncard
 San Francisco Ca. USA
 
 more about sqb  http://www.google.com/profiles/sbarncar
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution

--
Monte Goulding
M E R Goulding Software Development
Bespoke application development for vertical markets

InstallGadget - How to create an installer in 10 seconds
revObjective  - Making behavior scripts behave

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


Re: [ANN] revObjective 1.0 released!

2010-09-06 Thread stephen barncard
You also don't have to include your tRev backup archives with the package,
which probably increased the size a bit.

sqb

On 6 September 2010 19:00, Monte Goulding mo...@sweattechnologies.comwrote:

 I think I've got it, I did some drag and drop stuff for pulling the stack
 files out of the revObjective folder before I implemented the drag and drop
 of objects to the stacks and they are messing with each other so I'll pull
 out the files one because it's easy enough to open up the revObjective
 folder if you want to get your files. I'll post a new version ASAP.

 On 07/09/2010, at 11:54 AM, stephen barncard wrote:

  I opened a fresh stack and tried to move a placed object on your stack,
 but
  was interrupted by the 'another stack with the same name error and got
  into that dreaded loop. Had to force-quit.
 
  mIght you have a stack named 'untitled' somewhere in your project?
 
  sqb
 
  On 6 September 2010 18:32, Monte Goulding mo...@sweattechnologies.com
 wrote:
 
 
  I think it needs some more testing outside of your environment.  I had
  major
  name space problems had to force-quit.
 
  Ok, can you give me some more info?
 
 
  sqb
 
  On 6 September 2010 18:22, Mike Bonner bonnm...@gmail.com wrote:
 
  Heres the right link. http://goulding.ws/?file_id=11
 
  On Mon, Sep 6, 2010 at 7:18 PM, Andre Garzia an...@andregarzia.com
  wrote:
 
  Monte,
 
  the download link is wrong! ;-)
 
  Congratulations, want to check it out!
 
  Cheers
  andre
 
  On Mon, Sep 6, 2010 at 10:01 PM, Monte Goulding
  mo...@sweattechnologies.com wrote:
  Hi Everyone
 
  I've just released a new plugin that people who create or want to
 use
  custom controls with behavior scripts might find helpful. For more
 info
  go
  to:
  http://goulding.ws/consulting/blog/
 
  Cheers
  --
  Monte Goulding
  M E R Goulding Software Development
  Bespoke application development for vertical markets
 
  InstallGadget - How to create an installer in 10 seconds
  revObjective  - Making behavior scripts behave
 
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
  subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
  --
  http://www.andregarzia.com All We Do Is Code.
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
  subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution
 
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
  subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
  --
 
 
 
  Stephen Barncard
  San Francisco Ca. USA
 
  more about sqb  http://www.google.com/profiles/sbarncar
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
  subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution
 
  --
  Monte Goulding
  M E R Goulding Software Development
  Bespoke application development for vertical markets
 
  InstallGadget - How to create an installer in 10 seconds
  revObjective  - Making behavior scripts behave
 
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
  subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
  --
 
 
 
  Stephen Barncard
  San Francisco Ca. USA
 
  more about sqb  http://www.google.com/profiles/sbarncar
  ___
  use-revolution mailing list
  use-revolution@lists.runrev.com
  Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
  http://lists.runrev.com/mailman/listinfo/use-revolution

 --
 Monte Goulding
 M E R Goulding Software Development
 Bespoke application development for vertical markets

 InstallGadget - How to create an installer in 10 seconds
 revObjective  - Making behavior scripts behave

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




-- 



Stephen Barncard
San Francisco Ca. USA

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


Re: [OT] router + manual DHCP setting

2010-09-06 Thread J. Landman Gay

On 9/6/10 8:45 PM, Jim Ault wrote:

Definitely not a Rev question, but there are some of my Rev apps working
on this computer.

I have a remote Mac mini running OSX Leopard behind a Belkin router and
would like to change from DHCP to DHCP using manual address.

The procedure i used was to go System Preferences:Network:Ethernet...


Do you mean you want the Mac to have a static IP? All my machines have 
static addresses on my LAN. I never changed any of the computer settings 
at all, instead I changed the router. Routers allow you to link a MAC 
address with a static IP, and after that the router will reserve that IP 
and assign it only to that machine.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [ANN] revObjective 1.0 released!

2010-09-06 Thread Monte Goulding
I don't use tRev so it's unlikely that happened. the revObjective folder and 
files are the objects.

On 07/09/2010, at 12:03 PM, stephen barncard wrote:

 You also don't have to include your tRev backup archives with the package,
 which probably increased the size a bit.
 
 sqb
 
 On 6 September 2010 19:00, Monte Goulding mo...@sweattechnologies.comwrote:
 
 I think I've got it, I did some drag and drop stuff for pulling the stack
 files out of the revObjective folder before I implemented the drag and drop
 of objects to the stacks and they are messing with each other so I'll pull
 out the files one because it's easy enough to open up the revObjective
 folder if you want to get your files. I'll post a new version ASAP.
 
 On 07/09/2010, at 11:54 AM, stephen barncard wrote:
 
 I opened a fresh stack and tried to move a placed object on your stack,
 but
 was interrupted by the 'another stack with the same name error and got
 into that dreaded loop. Had to force-quit.
 
 mIght you have a stack named 'untitled' somewhere in your project?
 
 sqb
 
 On 6 September 2010 18:32, Monte Goulding mo...@sweattechnologies.com
 wrote:
 
 
 I think it needs some more testing outside of your environment.  I had
 major
 name space problems had to force-quit.
 
 Ok, can you give me some more info?
 
 
 sqb
 
 On 6 September 2010 18:22, Mike Bonner bonnm...@gmail.com wrote:
 
 Heres the right link. http://goulding.ws/?file_id=11
 
 On Mon, Sep 6, 2010 at 7:18 PM, Andre Garzia an...@andregarzia.com
 wrote:
 
 Monte,
 
 the download link is wrong! ;-)
 
 Congratulations, want to check it out!
 
 Cheers
 andre
 
 On Mon, Sep 6, 2010 at 10:01 PM, Monte Goulding
 mo...@sweattechnologies.com wrote:
 Hi Everyone
 
 I've just released a new plugin that people who create or want to
 use
 custom controls with behavior scripts might find helpful. For more
 info
 go
 to:
 http://goulding.ws/consulting/blog/
 
 Cheers
 --
 Monte Goulding
 M E R Goulding Software Development
 Bespoke application development for vertical markets
 
 InstallGadget - How to create an installer in 10 seconds
 revObjective  - Making behavior scripts behave
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
 --
 http://www.andregarzia.com All We Do Is Code.
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
 --
 
 
 
 Stephen Barncard
 San Francisco Ca. USA
 
 more about sqb  http://www.google.com/profiles/sbarncar
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 --
 Monte Goulding
 M E R Goulding Software Development
 Bespoke application development for vertical markets
 
 InstallGadget - How to create an installer in 10 seconds
 revObjective  - Making behavior scripts behave
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
 --
 
 
 
 Stephen Barncard
 San Francisco Ca. USA
 
 more about sqb  http://www.google.com/profiles/sbarncar
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 --
 Monte Goulding
 M E R Goulding Software Development
 Bespoke application development for vertical markets
 
 InstallGadget - How to create an installer in 10 seconds
 revObjective  - Making behavior scripts behave
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
 -- 
 
 
 
 Stephen Barncard
 San Francisco Ca. USA
 
 more about sqb  http://www.google.com/profiles/sbarncar
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage 

Re: [ANN] revObjective 1.0 released!

2010-09-06 Thread Monte Goulding
OK, just uploaded a new version, refresh the page replace the old plugin with 
this one.

On 07/09/2010, at 12:03 PM, stephen barncard wrote:

 You also don't have to include your tRev backup archives with the package,
 which probably increased the size a bit.
 
 sqb
 
 On 6 September 2010 19:00, Monte Goulding mo...@sweattechnologies.comwrote:
 
 I think I've got it, I did some drag and drop stuff for pulling the stack
 files out of the revObjective folder before I implemented the drag and drop
 of objects to the stacks and they are messing with each other so I'll pull
 out the files one because it's easy enough to open up the revObjective
 folder if you want to get your files. I'll post a new version ASAP.
 
 On 07/09/2010, at 11:54 AM, stephen barncard wrote:
 
 I opened a fresh stack and tried to move a placed object on your stack,
 but
 was interrupted by the 'another stack with the same name error and got
 into that dreaded loop. Had to force-quit.
 
 mIght you have a stack named 'untitled' somewhere in your project?
 
 sqb
 
 On 6 September 2010 18:32, Monte Goulding mo...@sweattechnologies.com
 wrote:
 
 
 I think it needs some more testing outside of your environment.  I had
 major
 name space problems had to force-quit.
 
 Ok, can you give me some more info?
 
 
 sqb
 
 On 6 September 2010 18:22, Mike Bonner bonnm...@gmail.com wrote:
 
 Heres the right link. http://goulding.ws/?file_id=11
 
 On Mon, Sep 6, 2010 at 7:18 PM, Andre Garzia an...@andregarzia.com
 wrote:
 
 Monte,
 
 the download link is wrong! ;-)
 
 Congratulations, want to check it out!
 
 Cheers
 andre
 
 On Mon, Sep 6, 2010 at 10:01 PM, Monte Goulding
 mo...@sweattechnologies.com wrote:
 Hi Everyone
 
 I've just released a new plugin that people who create or want to
 use
 custom controls with behavior scripts might find helpful. For more
 info
 go
 to:
 http://goulding.ws/consulting/blog/
 
 Cheers
 --
 Monte Goulding
 M E R Goulding Software Development
 Bespoke application development for vertical markets
 
 InstallGadget - How to create an installer in 10 seconds
 revObjective  - Making behavior scripts behave
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
 --
 http://www.andregarzia.com All We Do Is Code.
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
 --
 
 
 
 Stephen Barncard
 San Francisco Ca. USA
 
 more about sqb  http://www.google.com/profiles/sbarncar
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 --
 Monte Goulding
 M E R Goulding Software Development
 Bespoke application development for vertical markets
 
 InstallGadget - How to create an installer in 10 seconds
 revObjective  - Making behavior scripts behave
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
 --
 
 
 
 Stephen Barncard
 San Francisco Ca. USA
 
 more about sqb  http://www.google.com/profiles/sbarncar
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 --
 Monte Goulding
 M E R Goulding Software Development
 Bespoke application development for vertical markets
 
 InstallGadget - How to create an installer in 10 seconds
 revObjective  - Making behavior scripts behave
 
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-revolution
 
 
 
 
 -- 
 
 
 
 Stephen Barncard
 San Francisco Ca. USA
 
 more about sqb  http://www.google.com/profiles/sbarncar
 ___
 use-revolution mailing list
 use-revolution@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your 

Re: [ANN] revObjective 1.0 released!

2010-09-06 Thread Monte Goulding

On 07/09/2010, at 11:22 AM, Mike Bonner wrote:

 Heres the right link. http://goulding.ws/?file_id=11
 

FYI that link won't work now. Access the file from my blog at 
http://goulding.ws/consulting/blog

Cheers

Monte

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


Re: The power of despeckle-median filters: Image examples

2010-09-06 Thread Alejandro Tejada

Hi Wilhelm,

My vote goes to:
Lua-to-RevTalk conversions.

But, I am sure that all newbies
(and many oldies) in this platform
would prefer to read a series of
articles about the more extensive
topic of image processing.

Many thanks for sharing your
expertise and experiences in
this important branch of
computer programming.

Keep up your landmarking work! :-)

Al




-- 
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Re-The-power-of-despeckle-median-filters-Image-examples-tp2528876p2529124.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: SelectedChunk problem (part 1)

2010-09-06 Thread Jean-Pierre Soto

hello,

here's the script


on rawKeyUp k
  global readTarget,homepath
  put readTarget into tID

  -- Gestion du clavier en mode Rédaction
  if the writeEnable of tID is true then

get the selectedChunk

put it

put word 2 of it into p
put word 4 of  it into w

put isChar(numTochar(k)) into R1
put isChar(char w-1 of the text of  tID) into R2

if  R1 is false and R2 is true and k65288   then --  
65288=backspace


 ...

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


Re: [RevMobile] screen redraw problem?

2010-09-06 Thread Nicolas Cueto
Sorry for persisiting with this but...

While waiting for suggestions, I tried setting the destroy window and
stack properties to true. But the screen is still appearing black when
my revMobile apps open up on iPhone, only redrawing themselves in
dithered blocks when I swipe/tap the screen.

One other thing I've noted. When I reopen those apps, text-fields and
checkboxes/radiobuttons retain the state they were in before closing
the app. This is different from my experience with standalones.

On the other hand, the Bulls-i app that Rev offers displays as
expected, without a black screen and with fields/button reset to their
default state.

Thanks.

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


Re: SelectedChunk problem (part 2)

2010-09-06 Thread Jean-Pierre Soto

here's the result


i][ char 2 to 1 of field 1
il][char 3 to 2 of field 1
il ][   char 4 to 3 of field 1
il m][  char 5 to 4 of field 1
il me][ char 6 to 5 of field 1
il men][char 7 to 6 of field 1
il menj][   char 8 to 7 of field 1
il menj ][  char 9 to 8 of field 1

here I go to an another paletteStack
( this palette stack use external C++ fonction, I hope that's not the  
problem)
then I come back to the field 
___

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


Re: SelectedChunk problem (part 3)

2010-09-06 Thread Jean-Pierre Soto

il mn][jchar 5 to 4 of field 1
il man][j   char 6 to 5 of field 1
il manj][   char 7 to 6 of field 1
il manj ][  char 8 to 7 of field 1
il man ][   char 7 to 6 of field 1
il mang ][  char 8 to 7 of field 1
il mange ][ char 9 to 8 of field 1
il mange  ][ 			char 10 to 9 of field 1( here's the  
problem )

][il mange u
][il mange un
][il mange un


and the selectedChunk return empty until I leave the readTarget field  
and reEnter it.


Le 1 sept. 10 à 01:50, J. Landman Gay a écrit :



On 8/28/10 12:25 PM, Jean-Pierre Soto wrote:

Hello,

I have some problem with the SelectedChunk function. It's work  
well but

sometime it return empty.

I can type character and I have the flashing insertion cursor in the
field but the result is still empty.

I must leave the field and re-enter it to have correct result.

Does anyone know that problem ?


Can you post a your script? I'm not sure what you mean about the  
result.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your  
subscription preferences:

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



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