Re: File Associations?

2010-03-03 Thread Scott Morrow
Hello Scott,
Sorry to clutter things with another post but there was one thing I forgot to 
include:  the actual content of the variables.  Sometimes the exact form of a 
string is what trips me up so perhaps this will be helpful.  I walked through 
the debugger as this section of code was running and copied out the contents of 
each variable.  (disclaimer: actually I *retyped* what I saw in the debugger 
window... there is probably a way to copy/paste but I couldn't recall it.)
-Scott Morrow

tProgramFilesFolderPath --C:/Program Files/Report Card Pro
tAppFolder -- C:/Program Files/Report Card Pro
tAppName --  Report Card Pro.exe
tAppExecutablePath --C:\Program Files\Report Card Pro\Report Card 
Pro.exe
tDocFileExtension --.rcp
tAppDocAssoc --  Report Card Pro document
tDefaultIconString -- C:\Program Files\Report Card Pro\Report 
Card Pro.exe,1
tSubKeyDblClickDocString -- C:\Program Files\Report Card Pro\Report Card 
Pro.exe %1


--
local lErrorLog

on SetWindowsRegistry
  put empty into lErrorLog

  put Setting the registry into fld progressInfo of cd install of stack 
elsoInstaller
  wait 1 sec
  set the customPropertySet of stack elsoInstaller to empty
  set the customPropertySet of stack elsoInstallerLib to empty
  -- tProgramFilesFolderPath  -- the path to the Programs folder --  
C:/Program Files 
  put fld installPath of cd destination of stack elsoInstaller into 
tProgramFilesFolderPath
  -- tAppFolder -- the name of OUR folder that contains the application we are 
installing --  Report Card Pro 

  set the itemDel to /
  put item -1 of tProgramFilesFolderPath into tAppFolder
  -- put the uEnclosingFolderName of stack elsoInstaller into tAppFolder -- 
the user has control over this part of the path

  -- tAppName -- the name of the executable application we are installing --  
Report Card Pro 
  put the uAppName of stack elsoInstaller into tAppName
  -- tAppExecutablePath -- the fileName (Full Path) of the .exe
  put tProgramFilesFolderPath / tAppName into tAppExecutablePath
  -- save the full path in case we need to launch the app just before quiting 
this installer
  set the uLaunchPath  of stack elsoInstaller to tAppExecutablePath 
  replace / with \ in tAppExecutablePath
  -- tDocExtension -- the dot extension that is associated with the 
application we are installing --  .rcp 
  put the uFileExtention of stack elsoInstaller into tDocExtension
  if tDocExtension is empty then
 put Ther was an error attempting to set the Registry because file 
extension information was missing cr after lErrorLog
 return file extension missing
 exit SetWindowsRegistry
  end if


  --
  -- Set the Windows Registry if necessary 
  --
  -- Check to make sure the Windows Registry is set to associate the .rcp file 
extension with ReportCard_Pro
  if queryRegistry(HKEY_CLASSES_ROOT\tDocExtension\)  tAppFolder then 
-- there is no Registry key for the file extension
 -- so let's set it up
 --1. Create a key in HKEY_CLASSES_ROOT for the extension, and use the 
default value to point to the name of the application
 -- get setRegistry(HKEY_CLASSES_ROOT\.tst\,TestApp)
 get setRegistry(HKEY_CLASSES_ROOT\tDocExtension\,tAppFolder)
 put the result into tResult
 if tResult is not empty then
put setRegistry error 1  tResult cr after lErrorLog -- Custom 
error reporting
return tResult
 end if

 if lErrorLog is empty then
--2. Create a key in HKCR for the application itself, using the default 
value to point to a descriptor of the kind of document used by the app 
-- this will be used in list views to show the kind of file a document 
of TestApp is:
-- get setRegistry(HKEY_CLASSES_ROOT\TestApp\,TestApp document)
put tAppFolder  document into tAppDocAssoc
get setRegistry(HKEY_CLASSES_ROOT\tAppFolder\,tAppDocAssoc)
put the result into tResult
if tResult is not empty then
   put setRegistry error 2  tResult cr after lErrorLog -- Custom 
error reporting
   return tResult
end if
 end if -- lErrorLog is empty

 if lErrorLog is empty then
--3. Create a subkey of HKCR\TestApp to hold the default icon for the 
application. Rev document icons are in the first position
-- get setRegistry(HKEY_CLASSES_ROOT\TestApp\DefaultIcon\,C:\Program 
Files\TestApp\TestApp.exe,1)
put tAppExecutablePath  COMMA  1 into tDefaultIconString
get 
setRegistry(HKEY_CLASSES_ROOT\tAppFolder\DefaultIcon\,tDefaultIconString)
put the result into tResult
if tResult is not empty then
   put 

Re: XML-RPC doc

2010-03-03 Thread Andre Rombauts
I don't find much info on XML-RPC usage in RunRev. What could you advise
for a start...?
André Rombauts

I notice that in RunRev online dictionary many XMLRPC commands and
functions descriptions end by More details to come... :-(

--

André Rombauts,

Using RunRev 4.5.0-dp-2 Build 1010 on
MacBook Pro 3,1 2,4 GHz - 4 Go running
Mac OS X 10.6.2 (10C540)

Fléron, Liège (BE)
an...@rombauts.be
+32 (0)477 53.35.17

Sent by Powermail 6.0.3 Build 4609

___
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: Custom tab controls

2010-03-03 Thread Andre.Bisseret


Le 2 mars 10 à 22:38, Bob Sneidar a écrit :

How odd. This showed up with a .mc extension, and opened in  
something called TestAETE, and worked! When I changed the extension  
to .rev, it opened in Revolution and worked there too!


What in the world is TestAETE? It was in my Revcon Downloads folder.

Bob



Oooh! Here it opened with Eier-Eggs a game from Klaus Major I have  
on my disk ;-o)))

(.mc extention also)
Could open it in Rev too

When going to a card using View menu, the color of the tab of the  
opened card does not change to AntiqueWhite  Just teasing ;-))
The drawback of such an interface is that the number of cards is  
necessarily limited. But sure could be usefull for app. with a small  
number of cards.


Best regards from Grenoble

André



On Mar 2, 2010, at 1:30 PM, Alejandro Tejada wrote:



Hi Jeff,

Download the stack (only 3k) from my webpage:
http://capellan2000.000space.com/Tabbed_interfacev01.zip

This website 000space does not allow hotlinking, so if
clicking the previous link produces an error,
then
1) visit my site at: http://capellan2000.000space.com
and after my page load,
2) paste the link and download the file:
http://capellan2000.000space.com/Tabbed_interfacev01.zip

In Oct 29, 2005; 08:02pm, i wrote the following about this stack:

[ANN] Tabbed interface v01

Hi developers,

Download this version 01 of a tabbed interface
for stacks with many cards.

Yesterday, i started this stack and think could be
an interesting starting point if you need to create
a tabbed interface.

This stack could be a lot more polished,
but i'm posting it today with the hope that it
picked the curiosity of many developers and newbies
to start exploring, experimenting and publishing
better tabbed interfaces for all RR/MC/DC developers!
:D

Usage:

When you click in a button in the navigation
bar, you go to the card named in the button.

Each time you create a new card, a button
with the name of the card is added automatically
to the top row and get a lighter backcolor
(think of this as a hilite).

Each time you delete a card, his button
is deleted automatically and the button of
the top card get hilited.

Click the buttons named Create Card and
Delete this Card to see this action.

If you select text in the main field,
you could get a contextual menu by clicking
with the third mouse button.


From this contextual menu, you could create

a new card too. :D

Keep us posted in this mail list about any
enhancement that you could made to the
graphics and the code of this stack.

al
--
View this message in context: 
http://n4.nabble.com/Custom-tab-controls-tp1575259p1575756.html
Sent from the Revolution - User mailing list archive at Nabble.com.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your  
subscription preferences:

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


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

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




___
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


launch url

2010-03-03 Thread Richmond Mathewson

Can anybody tell me what inclusions are required when building
standalones to get LAUNCH URL to function?

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


Faking OS X text field behaviour (was: Good books on Cocoa dev?)

2010-03-03 Thread Ian Wood
Thanks for the suggestions, everyone. It would certainly save me a lot  
of time if this could be done in Rev, so maybe it's time to look from  
a different direction - how do we make a Rev field as OS X-like as  
possible.


On 3 Mar 2010, at 04:00, Scott McDonald wrote:

The look of the spell check dialogue in the RunRevPlanet SpellCheck  
Stack is
completely skinnable so it may be simpler (and much quicker) to  
make it

look the way you need for your Mac application without learning Cocoa.


Your stack (and Sarah's AppleScript driven one) are the first places I  
looked.


If the RunRevPlanet SpellCheck Stack doesn't currently meet your  
needs, any

specific feedback is most welcome, as I work hard to make stacks from
RunRevPlanet do what Revolution users need.


Background - this is an app for metadata text entry for  
photojournalists. They are a fairly impatient bunch and tend to be  
working under a lot of pressure, and tend to have configured their  
Macs 'just so', with things like custom additions to the spell check  
dictionary.


Plus a surprising amount of Mac UI knowledge/fanaticism at the higher  
levels...



So replicating the native text box behaviour as closely as possible is  
a high priority. Here's a little list I've made up of differences  
between Rev fields and OS X fields, some apply to Scott's SpellCheck  
stack, others are general observations.



1. Navigational/selection shortcuts. Things like Rev using Command- 
left/right arrow to skip by word instead of the standard Mac shortcut  
of Option/Alt etc. I've not tried it yet but presumably this could all  
be handled with custom rawkeydown handlers - has anyone worked on this  
in the past?


2. The floating dictionary via Command-Control-D-hover. I'm not too  
bothered about this as it's rarely known let alone used, and there are  
still a few Carbon apps around that don't support it anyway.


3. Spell checking. This breaks down into a number of separate issues.

3a. Including spell checking in the first place. Scott's stack does a  
good job of providing the service, with Sarah's being a good proof-of- 
concept as well.


3b. Dictionaries. The RRP stack uses it's own dictionary, which makes  
it less useful to me as there's a good chance that the target audience  
have been adding words (place names, people's names) to the OS-level  
dictionary. If they are in a rush they won't want to add words again.  
Although this may not be as big an issue as I'm making it out to be.


3c. Visual representation of incorrect words. For this audience,  
anything but dashed red underlining is going to leap out as being a  
non-native app. Presumably I'd have to have a non-scrolling text field  
plus graphics built into a scrolling group to be able to 'fake'  
putting the red underlining. Again, has anyone attempted this before?


Cheers,

Ian
___
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: XML-RPC doc

2010-03-03 Thread Andre Garzia
Andre,

I just added my personal weblog library to RevOnline. It has code for
Blogger, Metaweblog and ATOM. It is an extensive library but it is not
complete (I don't remember supporting every method  but the ones I use)

For years I kept this just to myself but I don't see any reason not to share
it now. It will allow you to post to wordpress in a single call.

It has some support for
* Blogger API 1.0 and some of the 2.0 calls (2.0 was never released, but
blogger2.post was implemented by Pyra and still works)
* Metaweblog API 1.0
* ATOM API 1.0 (Never used it but implemented it anyway, I think it is
untested... at least, I don't recall testing it but looking at the code, I
don't believe I would write that amount of code without testing so I
probably tested it and forgot.)

Hope this helps! At least will help you learn more about XML-RPC

Cheers
andre


On Wed, Mar 3, 2010 at 6:32 AM, Andre Rombauts an...@rombauts.be wrote:

 I don't find much info on XML-RPC usage in RunRev. What could you advise
 for a start...?
 André Rombauts

 I notice that in RunRev online dictionary many XMLRPC commands and
 functions descriptions end by More details to come... :-(

 --

 André Rombauts,

 Using RunRev 4.5.0-dp-2 Build 1010 on
 MacBook Pro 3,1 2,4 GHz - 4 Go running
 Mac OS X 10.6.2 (10C540)

 Fléron, Liège (BE)
 an...@rombauts.be
 +32 (0)477 53.35.17

 Sent by Powermail 6.0.3 Build 4609

 ___
 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: OT: Good books on Cocoa dev? (spellcheck woes)

2010-03-03 Thread Andre Garzia
I second Aaron Hillegass book. I used it before moving to Rev, I also have
Beggining iPhone development from Apress, never seen a bad book by them and
I have like a dozen books from them, all programming related.

:D

On Wed, Mar 3, 2010 at 12:08 AM, Jim Kanter j...@d-film.com wrote:

 Aaron Hillegass' book is good:
 
 http://www.amazon.com/Cocoa-Programming-Mac-OS-3rd/dp/0321503619/ref=sr_1_1?ie=UTF8s=booksqid=1267585663sr=8-1
 

 More info at his Big Nerd Ranch website:
 http://www.bignerdranch.com

 Jim

 On Tue, Mar 2, 2010 at 8:05 PM, Neal Campbell nealk...@gmail.com wrote:
  Strongly recommend Beginning Mac Programming in Cocoa
  http://www.pragprog.com/titles/tibmac/beginning-mac-programming. The
  Pragmatic Programmer publishing house hasn't done a bad book (so far)!
 ___
 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: launch url

2010-03-03 Thread Andre Garzia
Richmond,

there should be no requirements.

Are talking about RevGoURL right?

What platform, I don't recall it working on Linux...

On Wed, Mar 3, 2010 at 6:56 AM, Richmond Mathewson 
richmondmathew...@gmail.com wrote:

 Can anybody tell me what inclusions are required when building
 standalones to get LAUNCH URL to function?

 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




-- 
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: Custom tab controls

2010-03-03 Thread Andre Garzia
Alejandro,

If you want, I can move you to my server. I allow hotlinking and a lot of
other stuff (plus, rev cgi runs there as well)

Cheers
andre

On Tue, Mar 2, 2010 at 6:30 PM, Alejandro Tejada capellan2...@gmail.comwrote:


 Hi Jeff,

 Download the stack (only 3k) from my webpage:
 http://capellan2000.000space.com/Tabbed_interfacev01.zip

 This website 000space does not allow hotlinking, so if
 clicking the previous link produces an error,
 then
 1) visit my site at: http://capellan2000.000space.com
 and after my page load,
 2) paste the link and download the file:
 http://capellan2000.000space.com/Tabbed_interfacev01.zip

 In Oct 29, 2005; 08:02pm, i wrote the following about this stack:

 [ANN] Tabbed interface v01

 Hi developers,

 Download this version 01 of a tabbed interface
 for stacks with many cards.

 Yesterday, i started this stack and think could be
 an interesting starting point if you need to create
 a tabbed interface.

 This stack could be a lot more polished,
 but i'm posting it today with the hope that it
 picked the curiosity of many developers and newbies
 to start exploring, experimenting and publishing
 better tabbed interfaces for all RR/MC/DC developers!
 :D

 Usage:

 When you click in a button in the navigation
 bar, you go to the card named in the button.

 Each time you create a new card, a button
 with the name of the card is added automatically
 to the top row and get a lighter backcolor
 (think of this as a hilite).

 Each time you delete a card, his button
 is deleted automatically and the button of
 the top card get hilited.

 Click the buttons named Create Card and
 Delete this Card to see this action.

 If you select text in the main field,
 you could get a contextual menu by clicking
 with the third mouse button.

 From this contextual menu, you could create
 a new card too. :D

 Keep us posted in this mail list about any
 enhancement that you could made to the
 graphics and the code of this stack.

 al
 --
 View this message in context:
 http://n4.nabble.com/Custom-tab-controls-tp1575259p1575756.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




-- 
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: File Associations?

2010-03-03 Thread Andre Garzia
Wow,

Folks, this kind of stuff should be easy. Can we abstract that code into a
library? Also, Scott, did you solved it for Mac?

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


[ANN] weblog apis library on RevOnline

2010-03-03 Thread Andre Garzia
Hi Folks,

I just shared my personal weblog apis library on RevOnline. It has extensive
but incomplete support for:

* Blogger API 1.0
* Blogger API 2.0 (I think it supports only blogger2.newPost but them this
was the only Blogger 2.0 function ever implemented by Pyra)
* MetaWeblog API
* ATOM

It has enough functions for creating your own simple blog client like Echo
or BlogWorkz ( http://blogworkz.soapdog.org , thats me before coding in Rev,
last update in 2002 but still works )

You can also use it to add Weblog posting to your application, this is a
must in these days of social networks and the like.

Hope you guys like it
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: parsing data returned from the foundLine

2010-03-03 Thread David Coker

 Try: get the value of the foundline

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

That is definitely a step much closer. :)

I usually keep the dictionary open as a reference while I'm working,
but it certainly didn't help in this case.

...I think I'm gonna revisit *all* of the documentation covering
chunking again before I go much further with this little project. It
seems that I am still missing some of the concepts, methods and/or
possibilities that Rev offers when it comes to parsing textual data.

Thank you, Jacque!

Regards,
David C.
___
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] weblog apis library on RevOnline

2010-03-03 Thread Andre Rombauts
I just shared my personal weblog apis library on RevOnline. It has extensive
but incomplete support for:

* Blogger API 1.0
* Blogger API 2.0 (I think it supports only blogger2.newPost but them this
was the only Blogger 2.0 function ever implemented by Pyra)
* MetaWeblog API
* ATOM

Thanks André!
I got it.
Will, first of all, learn... :-)
Then will have to adapt for wp api (although I could use metaweblog)

--

André Rombauts,

Using RunRev 4.5.0-dp-2 Build 1010 on
MacBook Pro 3,1 2,4 GHz - 4 Go running
Mac OS X 10.6.2 (10C540)

Fléron, Liège (BE)
an...@rombauts.be
+32 (0)477 53.35.17

Sent by Powermail 6.0.3 Build 4609

___
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] weblog apis library on RevOnline

2010-03-03 Thread Andre Garzia
You're welcome!

Hope this helps! I never implemented plain wordpress calls but I can tell
you that metaweblog works great with it.

:D

On Wed, Mar 3, 2010 at 10:49 AM, Andre Rombauts an...@rombauts.be wrote:

 I just shared my personal weblog apis library on RevOnline. It has
 extensive
 but incomplete support for:
 
 * Blogger API 1.0
 * Blogger API 2.0 (I think it supports only blogger2.newPost but them this
 was the only Blogger 2.0 function ever implemented by Pyra)
 * MetaWeblog API
 * ATOM

 Thanks André!
 I got it.
 Will, first of all, learn... :-)
 Then will have to adapt for wp api (although I could use metaweblog)

 --

 André Rombauts,

 Using RunRev 4.5.0-dp-2 Build 1010 on
 MacBook Pro 3,1 2,4 GHz - 4 Go running
 Mac OS X 10.6.2 (10C540)

 Fléron, Liège (BE)
 an...@rombauts.be
 +32 (0)477 53.35.17

 Sent by Powermail 6.0.3 Build 4609

 ___
 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


[On-Rev] sending email thru sendmail?!

2010-03-03 Thread Andre Garzia
Aloha Folks,

Did anyone here is able to send email using sendmail in On-Rev, my code that
I use everywhere is not working anymore, somehow it can't open the sendmail
process.

function sendMail pFrom, pTo, pSubject, pBody

  switch the platform
  case Linux
put /usr/sbin/sendmail -t into mprocess
open process mprocess for write
write From:  pFrom  crlf to process mprocess
write To:pTocrlf to process mprocess
write Subject:   pSubjectcrlf  crlf to process mprocess
write   pBody   crlf to process mprocess
close process mprocess
wait until mprocess is not among the lines of the openprocesses
return the result
break

  end switch

end sendMail

-- 
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] The Slug's Color Picker is now on the road for beta test

2010-03-03 Thread René Micout
Thank you Slug...
A very little thing : in infos the version of Color Picker Beta 01.e is 01.c
and... when I write this email the Color Picker window is over the mail window 
(and not the RunRev Tools window...)
On Macintosh OS X 10.6.2
Bons souvenirs de Paris
René
Le 2 mars 2010 à 23:46, zryip theSlug a écrit :

 2010/3/2 zryip theSlug zryip.thes...@gmail.com:
 
 The beta version 0.1e is available on my website.
 
 The picker not only follow the move of the tool palette, it also
 follow it's visible state.
 I improved the code to send the picker to front in a few case linked
 directly to the state of the tool palette, so it could prevent the
 problem described by André.
 
 To René : I added a contextual menu to close the picker.
 
 
 I hope that this new version will please you ;)
 
 Regards,
 
 -- 
 -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

___
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: parsing data returned from the foundLine

2010-03-03 Thread Bernard Devlin
On Wed, Mar 3, 2010 at 1:43 PM, David Coker davidoco...@gmail.com wrote:
 ...I think I'm gonna revisit *all* of the documentation covering
 chunking again before I go much further with this little project. It
 seems that I am still missing some of the concepts, methods and/or
 possibilities that Rev offers when it comes to parsing textual data.

David, are you sure you need to be going through the UI to do this?  I
mean, would it not be better to use something like 'filter' or
'matchText', or one of the variants of 'offset'?

Bernard
___
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: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Bernard Devlin
On Wed, Mar 3, 2010 at 1:55 PM, Andre Garzia an...@andregarzia.com wrote:
 Aloha Folks,

 Did anyone here is able to send email using sendmail in On-Rev, my code that
 I use everywhere is not working anymore, somehow it can't open the sendmail
 process.

Some linux installations have a CLI mailer called 'mail' instead of
'sendmail'.  I know on some installations where Postfix is the smtpd
I've had to install that 'mail' program separately.  I don't have the
details to hand, but can look them up if necessary.

You could try 'there is a file /usr/bin/sendmail' to check for the
existence of sendmail with on-rev.

Bernard
___
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: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Jeffrey Massung
I can't remember where I found this code, but I've been using it quite 
successfully with On-Rev:

-- escape shell characters: use this function before passing data to the shell
function shellEscape pText
repeat for each char tChar in \`$  quote
replace tChar with \  tChar in pText
end repeat
return pText
end shellEscape

-- send an email message to someone
command sendMail pFrom, pTo, pSub, pBody
-- fix each of the parameters of the email
put shellEscape(pFrom) into pFrom
put shellEscape(pTo) into pTo
put shellEscape(pSub) into pSub
put shellEscape(pBody) into pBody

-- send the mail using the shell command
get shell(echo -e  quote  pBody  quote  | mail -s  quote  
pSub  quote  quote  pTo  quote  -- -f  quote  pFrom  quote)
end sendMail

HTH,

Jeff M.

On Mar 3, 2010, at 7:55 AM, Andre Garzia wrote:

 Aloha Folks,
 
 Did anyone here is able to send email using sendmail in On-Rev, my code that
 I use everywhere is not working anymore, somehow it can't open the sendmail
 process.
 
 function sendMail pFrom, pTo, pSubject, pBody
 
  switch the platform
  case Linux
put /usr/sbin/sendmail -t into mprocess
open process mprocess for write
write From:  pFrom  crlf to process mprocess
write To:pTocrlf to process mprocess
write Subject:   pSubjectcrlf  crlf to process mprocess
write   pBody   crlf to process mprocess
close process mprocess
wait until mprocess is not among the lines of the openprocesses
return the result
break
 
  end switch
 
 end sendMail
 
 -- 
 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: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Andre Garzia
Bernard  Jeffrey,

thanks for the reply.

On On-Rev cPanel there's a information label with the sendmail location,
which I used on my script but the thing is not working.

I have code for mail as well as I used this on mac os x... silly computers
never working the way they should, let me try mail.

Cheers
andre

On Wed, Mar 3, 2010 at 11:50 AM, Bernard Devlin bdrun...@gmail.com wrote:

 On Wed, Mar 3, 2010 at 1:55 PM, Andre Garzia an...@andregarzia.com
 wrote:
  Aloha Folks,
 
  Did anyone here is able to send email using sendmail in On-Rev, my code
 that
  I use everywhere is not working anymore, somehow it can't open the
 sendmail
  process.

 Some linux installations have a CLI mailer called 'mail' instead of
 'sendmail'.  I know on some installations where Postfix is the smtpd
 I've had to install that 'mail' program separately.  I don't have the
 details to hand, but can look them up if necessary.

 You could try 'there is a file /usr/bin/sendmail' to check for the
 existence of sendmail with on-rev.

 Bernard
 ___
 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][UPDATE] Revolution.mode - Revolution syntax coloring for CODA and SubEhtaEdit

2010-03-03 Thread Jeffrey Massung
If I could suggest 1 more change: the current string regex uses \ as an 
escape character when Rev has no such thing (or uses a different one that I'm 
unaware of). So if I use a \ in my strings it mucks up the highlighting for the 
rest of the file.

Again, tho, bravo on the Coda mode. :-)

Jeff M.

On Mar 1, 2010, at 2:24 PM, stephen barncard wrote:

 Whoops!  I forgot to add support for the comment syntax I never use. (Thanks
 to Jerry Daniels)
 
 Now supports all 4 Rev comment styles:   /* */  --  ##  and //

___
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: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Andre Garzia
Just tried the mail + shell commands and it doesn't work as well...

no error is triggered but the email also never arrives. It would be useful
is On-Rev Team would add the sendmail/mail log to the cPanel thing.

:-/

can't even see the logs! Argh!

Cheers
andre

On Wed, Mar 3, 2010 at 11:57 AM, Andre Garzia an...@andregarzia.com wrote:

 Bernard  Jeffrey,

 thanks for the reply.

 On On-Rev cPanel there's a information label with the sendmail location,
 which I used on my script but the thing is not working.

 I have code for mail as well as I used this on mac os x... silly
 computers never working the way they should, let me try mail.

 Cheers
 andre


 On Wed, Mar 3, 2010 at 11:50 AM, Bernard Devlin bdrun...@gmail.comwrote:

 On Wed, Mar 3, 2010 at 1:55 PM, Andre Garzia an...@andregarzia.com
 wrote:
  Aloha Folks,
 
  Did anyone here is able to send email using sendmail in On-Rev, my code
 that
  I use everywhere is not working anymore, somehow it can't open the
 sendmail
  process.

 Some linux installations have a CLI mailer called 'mail' instead of
 'sendmail'.  I know on some installations where Postfix is the smtpd
 I've had to install that 'mail' program separately.  I don't have the
 details to hand, but can look them up if necessary.

 You could try 'there is a file /usr/bin/sendmail' to check for the
 existence of sendmail with on-rev.

 Bernard
 ___
 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.




-- 
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: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Andre Garzia
Ha!

Logged thru SSH and tried both mail and sendmail and none works!

:D

\o/

Doing the happy dance, it is definitely broken or configured so badly that
it doesn't work as all the other installations I've found.

Anyone is able to send mail in On-Rev?

Cheers
andre

On Wed, Mar 3, 2010 at 12:09 PM, Andre Garzia an...@andregarzia.com wrote:

 Just tried the mail + shell commands and it doesn't work as well...

 no error is triggered but the email also never arrives. It would be useful
 is On-Rev Team would add the sendmail/mail log to the cPanel thing.

 :-/

 can't even see the logs! Argh!

 Cheers
 andre


 On Wed, Mar 3, 2010 at 11:57 AM, Andre Garzia an...@andregarzia.comwrote:

 Bernard  Jeffrey,

 thanks for the reply.

 On On-Rev cPanel there's a information label with the sendmail location,
 which I used on my script but the thing is not working.

 I have code for mail as well as I used this on mac os x... silly
 computers never working the way they should, let me try mail.

 Cheers
 andre


 On Wed, Mar 3, 2010 at 11:50 AM, Bernard Devlin bdrun...@gmail.comwrote:

 On Wed, Mar 3, 2010 at 1:55 PM, Andre Garzia an...@andregarzia.com
 wrote:
  Aloha Folks,
 
  Did anyone here is able to send email using sendmail in On-Rev, my code
 that
  I use everywhere is not working anymore, somehow it can't open the
 sendmail
  process.

 Some linux installations have a CLI mailer called 'mail' instead of
 'sendmail'.  I know on some installations where Postfix is the smtpd
 I've had to install that 'mail' program separately.  I don't have the
 details to hand, but can look them up if necessary.

 You could try 'there is a file /usr/bin/sendmail' to check for the
 existence of sendmail with on-rev.

 Bernard
 ___
 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.




 --
 http://www.andregarzia.com All We Do Is Code.




-- 
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: parsing data returned from the foundLine

2010-03-03 Thread Devin Asay


On Mar 3, 2010, at 6:43 AM, David Coker wrote:



Try: get the value of the foundline


That is definitely a step much closer. :)

I usually keep the dictionary open as a reference while I'm working,
but it certainly didn't help in this case.

...I think I'm gonna revisit *all* of the documentation covering
chunking again before I go much further with this little project. It
seems that I am still missing some of the concepts, methods and/or
possibilities that Rev offers when it comes to parsing textual data.


David,

I have an overview of Rev's chunking, text parsing and find tokens at http://revolution.byu.edu/textfind/TextandFind.php 
 .


You may find it useful.

Regards,

Devin


Devin Asay
Humanities Technology and Research Support Center
Brigham Young University

___
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: [On-Rev] sending email thru sendmail?! -- Heather, Please Read

2010-03-03 Thread Tim Selander
I had the same frustration with sendmail with my on-rev account 
and wrote support. Heather promptly wrote back, explaining that 
because of security problems (I think it was) with sendmail, they 
have disabled it on on-rev.


I pointed out (a little bruskly I'm afraid) that I wasted hours 
and hours trying to make the thing work because it was listed in 
the cPanel, that if they are going to disable it then they should 
TAKE IT OUT OF the cPanel. Since you also were lead astray by 
that, I really hope they read this and either activate sendmail 
or at least take it off the cPanel!!!


Tim Selander
Tokyo, Japan


Andre Garzia wrote:

Just tried the mail + shell commands and it doesn't work as well...

no error is triggered but the email also never arrives. It would be useful
is On-Rev Team would add the sendmail/mail log to the cPanel thing.

:-/


___
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: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Ralf Bitter
Hi Andre,

with revIgniter it works, plus there is
a debugger function.

Cheers

Ralf


On 03.03.2010, at 16:27, Andre Garzia wrote:

 Ha!
 
 Logged thru SSH and tried both mail and sendmail and none works!
 
 :D
 
 \o/
 
 Doing the happy dance, it is definitely broken or configured so badly that
 it doesn't work as all the other installations I've found.
 
 Anyone is able to send mail in On-Rev?
 
 Cheers
 andre
 
 On Wed, Mar 3, 2010 at 12:09 PM, Andre Garzia an...@andregarzia.com wrote:
 
 Just tried the mail + shell commands and it doesn't work as well...
 
 no error is triggered but the email also never arrives. It would be useful
 is On-Rev Team would add the sendmail/mail log to the cPanel thing.
 
 :-/
 
 can't even see the logs! Argh!
 
 Cheers
 andre
 
 
 On Wed, Mar 3, 2010 at 11:57 AM, Andre Garzia an...@andregarzia.comwrote:
 
 Bernard  Jeffrey,
 
 thanks for the reply.
 
 On On-Rev cPanel there's a information label with the sendmail location,
 which I used on my script but the thing is not working.
 
 I have code for mail as well as I used this on mac os x... silly
 computers never working the way they should, let me try mail.
 
 Cheers
 andre
 
 
 On Wed, Mar 3, 2010 at 11:50 AM, Bernard Devlin bdrun...@gmail.comwrote:
 
 On Wed, Mar 3, 2010 at 1:55 PM, Andre Garzia an...@andregarzia.com
 wrote:
 Aloha Folks,
 
 Did anyone here is able to send email using sendmail in On-Rev, my code
 that
 I use everywhere is not working anymore, somehow it can't open the
 sendmail
 process.
 
 Some linux installations have a CLI mailer called 'mail' instead of
 'sendmail'.  I know on some installations where Postfix is the smtpd
 I've had to install that 'mail' program separately.  I don't have the
 details to hand, but can look them up if necessary.
 
 You could try 'there is a file /usr/bin/sendmail' to check for the
 existence of sendmail with on-rev.
 
 Bernard
 ___
 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.
 
 
 
 
 --
 http://www.andregarzia.com All We Do Is Code.
 
 
 
 
 -- 
 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: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Andre Garzia
tried to use mail -s from command line, didn't work here... :-/

there's something fishy happening.

On Wed, Mar 3, 2010 at 12:58 PM, Ralf Bitter ra...@dimensionb.de wrote:

 Hi Andre,

 with revIgniter it works, plus there is
 a debugger function.

 Cheers

 Ralf


 On 03.03.2010, at 16:27, Andre Garzia wrote:

  Ha!
 
  Logged thru SSH and tried both mail and sendmail and none works!
 
  :D
 
  \o/
 
  Doing the happy dance, it is definitely broken or configured so badly
 that
  it doesn't work as all the other installations I've found.
 
  Anyone is able to send mail in On-Rev?
 
  Cheers
  andre
 
  On Wed, Mar 3, 2010 at 12:09 PM, Andre Garzia an...@andregarzia.com
 wrote:
 
  Just tried the mail + shell commands and it doesn't work as well...
 
  no error is triggered but the email also never arrives. It would be
 useful
  is On-Rev Team would add the sendmail/mail log to the cPanel thing.
 
  :-/
 
  can't even see the logs! Argh!
 
  Cheers
  andre
 
 
  On Wed, Mar 3, 2010 at 11:57 AM, Andre Garzia an...@andregarzia.com
 wrote:
 
  Bernard  Jeffrey,
 
  thanks for the reply.
 
  On On-Rev cPanel there's a information label with the sendmail
 location,
  which I used on my script but the thing is not working.
 
  I have code for mail as well as I used this on mac os x... silly
  computers never working the way they should, let me try mail.
 
  Cheers
  andre
 
 
  On Wed, Mar 3, 2010 at 11:50 AM, Bernard Devlin bdrun...@gmail.com
 wrote:
 
  On Wed, Mar 3, 2010 at 1:55 PM, Andre Garzia an...@andregarzia.com
  wrote:
  Aloha Folks,
 
  Did anyone here is able to send email using sendmail in On-Rev, my
 code
  that
  I use everywhere is not working anymore, somehow it can't open the
  sendmail
  process.
 
  Some linux installations have a CLI mailer called 'mail' instead of
  'sendmail'.  I know on some installations where Postfix is the smtpd
  I've had to install that 'mail' program separately.  I don't have the
  details to hand, but can look them up if necessary.
 
  You could try 'there is a file /usr/bin/sendmail' to check for the
  existence of sendmail with on-rev.
 
  Bernard
  ___
  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.
 
 
 
 
  --
  http://www.andregarzia.com All We Do Is Code.
 
 
 
 
  --
  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




-- 
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: [On-Rev] sending email thru sendmail?! -- Heather, Please Read

2010-03-03 Thread Andre Garzia
Tim,

thanks for the reply!

If sendmail is disabled, it should not appear in cPanel... also mail is not
working, so how we're supposed to send those damn emails!

AG!!!

Andre
PS: I WANT LOGS!

On Wed, Mar 3, 2010 at 12:56 PM, Tim Selander selan...@tkf.att.ne.jpwrote:

 I had the same frustration with sendmail with my on-rev account and wrote
 support. Heather promptly wrote back, explaining that because of security
 problems (I think it was) with sendmail, they have disabled it on on-rev.

 I pointed out (a little bruskly I'm afraid) that I wasted hours and hours
 trying to make the thing work because it was listed in the cPanel, that if
 they are going to disable it then they should TAKE IT OUT OF the cPanel.
 Since you also were lead astray by that, I really hope they read this and
 either activate sendmail or at least take it off the cPanel!!!

 Tim Selander
 Tokyo, Japan


 Andre Garzia wrote:

 Just tried the mail + shell commands and it doesn't work as well...

 no error is triggered but the email also never arrives. It would be useful
 is On-Rev Team would add the sendmail/mail log to the cPanel thing.

 :-/

  ___
 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: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Andre Garzia
Ralf,

this is a self contained system to be distributted, can't use revIgniter
because this is supposed to integrate into other people works... it is a
minimal system.

Tried using mail and sendmail... I am almost about to code SMTP on my own, I
did it before...

damn
andre

On Wed, Mar 3, 2010 at 12:58 PM, Ralf Bitter ra...@dimensionb.de wrote:

 Hi Andre,

 with revIgniter it works, plus there is
 a debugger function.

 Cheers

 Ralf


 On 03.03.2010, at 16:27, Andre Garzia wrote:

  Ha!
 
  Logged thru SSH and tried both mail and sendmail and none works!
 
  :D
 
  \o/
 
  Doing the happy dance, it is definitely broken or configured so badly
 that
  it doesn't work as all the other installations I've found.
 
  Anyone is able to send mail in On-Rev?
 
  Cheers
  andre
 
  On Wed, Mar 3, 2010 at 12:09 PM, Andre Garzia an...@andregarzia.com
 wrote:
 
  Just tried the mail + shell commands and it doesn't work as well...
 
  no error is triggered but the email also never arrives. It would be
 useful
  is On-Rev Team would add the sendmail/mail log to the cPanel thing.
 
  :-/
 
  can't even see the logs! Argh!
 
  Cheers
  andre
 
 
  On Wed, Mar 3, 2010 at 11:57 AM, Andre Garzia an...@andregarzia.com
 wrote:
 
  Bernard  Jeffrey,
 
  thanks for the reply.
 
  On On-Rev cPanel there's a information label with the sendmail
 location,
  which I used on my script but the thing is not working.
 
  I have code for mail as well as I used this on mac os x... silly
  computers never working the way they should, let me try mail.
 
  Cheers
  andre
 
 
  On Wed, Mar 3, 2010 at 11:50 AM, Bernard Devlin bdrun...@gmail.com
 wrote:
 
  On Wed, Mar 3, 2010 at 1:55 PM, Andre Garzia an...@andregarzia.com
  wrote:
  Aloha Folks,
 
  Did anyone here is able to send email using sendmail in On-Rev, my
 code
  that
  I use everywhere is not working anymore, somehow it can't open the
  sendmail
  process.
 
  Some linux installations have a CLI mailer called 'mail' instead of
  'sendmail'.  I know on some installations where Postfix is the smtpd
  I've had to install that 'mail' program separately.  I don't have the
  details to hand, but can look them up if necessary.
 
  You could try 'there is a file /usr/bin/sendmail' to check for the
  existence of sendmail with on-rev.
 
  Bernard
  ___
  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.
 
 
 
 
  --
  http://www.andregarzia.com All We Do Is Code.
 
 
 
 
  --
  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




-- 
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: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Ralf Bitter
Andre,

before coding your own SMTP, you could check out
and plunder the eMail library of revIgniter,
especially the _sendWithSendmail function.

Ralf


On 03.03.2010, at 17:10, Andre Garzia wrote:

 Ralf,
 
 this is a self contained system to be distributted, can't use revIgniter
 because this is supposed to integrate into other people works... it is a
 minimal system.
 
 Tried using mail and sendmail... I am almost about to code SMTP on my own, I
 did it before...
 
 damn
 andre
 
 On Wed, Mar 3, 2010 at 12:58 PM, Ralf Bitter ra...@dimensionb.de wrote:
 
 Hi Andre,
 
 with revIgniter it works, plus there is
 a debugger function.
 
 Cheers
 
 Ralf
 
 
 On 03.03.2010, at 16:27, Andre Garzia wrote:
 
 Ha!
 
 Logged thru SSH and tried both mail and sendmail and none works!
 
 :D
 
 \o/
 
 Doing the happy dance, it is definitely broken or configured so badly
 that
 it doesn't work as all the other installations I've found.
 
 Anyone is able to send mail in On-Rev?
 
 Cheers
 andre
 
 On Wed, Mar 3, 2010 at 12:09 PM, Andre Garzia an...@andregarzia.com
 wrote:
 
 Just tried the mail + shell commands and it doesn't work as well...
 
 no error is triggered but the email also never arrives. It would be
 useful
 is On-Rev Team would add the sendmail/mail log to the cPanel thing.
 
 :-/
 
 can't even see the logs! Argh!
 
 Cheers
 andre
 
 
 On Wed, Mar 3, 2010 at 11:57 AM, Andre Garzia an...@andregarzia.com
 wrote:
 
 Bernard  Jeffrey,
 
 thanks for the reply.
 
 On On-Rev cPanel there's a information label with the sendmail
 location,
 which I used on my script but the thing is not working.
 
 I have code for mail as well as I used this on mac os x... silly
 computers never working the way they should, let me try mail.
 
 Cheers
 andre
 
 
 On Wed, Mar 3, 2010 at 11:50 AM, Bernard Devlin bdrun...@gmail.com
 wrote:
 
 On Wed, Mar 3, 2010 at 1:55 PM, Andre Garzia an...@andregarzia.com
 wrote:
 Aloha Folks,
 
 Did anyone here is able to send email using sendmail in On-Rev, my
 code
 that
 I use everywhere is not working anymore, somehow it can't open the
 sendmail
 process.
 
 Some linux installations have a CLI mailer called 'mail' instead of
 'sendmail'.  I know on some installations where Postfix is the smtpd
 I've had to install that 'mail' program separately.  I don't have the
 details to hand, but can look them up if necessary.
 
 You could try 'there is a file /usr/bin/sendmail' to check for the
 existence of sendmail with on-rev.
 
 Bernard
 ___
 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.
 
 
 
 
 --
 http://www.andregarzia.com All We Do Is Code.
 
 
 
 
 --
 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
 
 
 
 
 -- 
 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: Docking Stacks

2010-03-03 Thread Alejandro Tejada

Hi Andrew,

Effectively, Chipp Walters published a stack named 
altBuddyStack

From his webpage:

The altBuddyStack library enables multiple stacks to 'dock'
to each other, then be moved around as a single stack.

Visit this page:
http://www.altuit.com/webs/altuit2/RunRev/Downloads.htm

Alejandro
-- 
View this message in context: 
http://n4.nabble.com/Docking-Stacks-tp1575334p1576822.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: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Andre Garzia
Ralf,

we're using almost the exact same code... I will patch mine to work like
yours. Also, if you have the time, can you try one of your revIgniter email
sending routines sending an email to an...@andregarzia.com

I tried your code sending to my address and it didn't arrive (not even on
spam box) but it worked for my .mac account... :-/

Cheers
andre

On Wed, Mar 3, 2010 at 1:19 PM, Ralf Bitter ra...@dimensionb.de wrote:

 Andre,

 before coding your own SMTP, you could check out
 and plunder the eMail library of revIgniter,
 especially the _sendWithSendmail function.

 Ralf


 On 03.03.2010, at 17:10, Andre Garzia wrote:

  Ralf,
 
  this is a self contained system to be distributted, can't use revIgniter
  because this is supposed to integrate into other people works... it is a
  minimal system.
 
  Tried using mail and sendmail... I am almost about to code SMTP on my
 own, I
  did it before...
 
  damn
  andre
 
  On Wed, Mar 3, 2010 at 12:58 PM, Ralf Bitter ra...@dimensionb.de
 wrote:
 
  Hi Andre,
 
  with revIgniter it works, plus there is
  a debugger function.
 
  Cheers
 
  Ralf
 
 
  On 03.03.2010, at 16:27, Andre Garzia wrote:
 
  Ha!
 
  Logged thru SSH and tried both mail and sendmail and none works!
 
  :D
 
  \o/
 
  Doing the happy dance, it is definitely broken or configured so badly
  that
  it doesn't work as all the other installations I've found.
 
  Anyone is able to send mail in On-Rev?
 
  Cheers
  andre
 
  On Wed, Mar 3, 2010 at 12:09 PM, Andre Garzia an...@andregarzia.com
  wrote:
 
  Just tried the mail + shell commands and it doesn't work as well...
 
  no error is triggered but the email also never arrives. It would be
  useful
  is On-Rev Team would add the sendmail/mail log to the cPanel thing.
 
  :-/
 
  can't even see the logs! Argh!
 
  Cheers
  andre
 
 
  On Wed, Mar 3, 2010 at 11:57 AM, Andre Garzia an...@andregarzia.com
  wrote:
 
  Bernard  Jeffrey,
 
  thanks for the reply.
 
  On On-Rev cPanel there's a information label with the sendmail
  location,
  which I used on my script but the thing is not working.
 
  I have code for mail as well as I used this on mac os x... silly
  computers never working the way they should, let me try mail.
 
  Cheers
  andre
 
 
  On Wed, Mar 3, 2010 at 11:50 AM, Bernard Devlin bdrun...@gmail.com
  wrote:
 
  On Wed, Mar 3, 2010 at 1:55 PM, Andre Garzia an...@andregarzia.com
 
  wrote:
  Aloha Folks,
 
  Did anyone here is able to send email using sendmail in On-Rev, my
  code
  that
  I use everywhere is not working anymore, somehow it can't open the
  sendmail
  process.
 
  Some linux installations have a CLI mailer called 'mail' instead of
  'sendmail'.  I know on some installations where Postfix is the smtpd
  I've had to install that 'mail' program separately.  I don't have
 the
  details to hand, but can look them up if necessary.
 
  You could try 'there is a file /usr/bin/sendmail' to check for the
  existence of sendmail with on-rev.
 
  Bernard
  ___
  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.
 
 
 
 
  --
  http://www.andregarzia.com All We Do Is Code.
 
 
 
 
  --
  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
 
 
 
 
  --
  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




-- 
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: Custom tab controls

2010-03-03 Thread Alejandro Tejada

Hi Jeff, 

Chipp Walters published a stack named 
tabExample.rev

From his webpage: 

Custom Tabs
Chris Sheffield asked about creating custom tabs. This stack should explain
it.

Visit his page: 
http://www.altuit.com/webs/altuit2/RunRev/Downloads.htm

Alejandro
-- 
View this message in context: 
http://n4.nabble.com/Custom-tab-controls-tp1575259p1576838.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: File Associations?

2010-03-03 Thread Scott Morrow

Hello Scott,
The relaunch handler (in the stack script of the executable) should  
still be in the message path even if you close the stack... unless I  
misunderstand the design, the executable that stack is attached to  
would still be in memory and running.

-Scott Morrow
Is it possible that the relaunch message is failing for me because  
I'm using a splash/data arrangement for my standalone? My splash  
executable launches a data stack and then closes the launching  
stack. Could this be why any subsequent launches of the EXE don't  
trigger the relaunch handler?



Regards, Scott Rossi
Creative Director Tactile Media, UX Design

___
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: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Phil Davis

Hi Andre,

A few months ago, Tereza and I created a revweb test for my client to 
use with his customers. At the end it emails test results automatically 
from a CGI on the on-rev server. I just now tested it and it works. It's 
emailing from a CGI, not from irev code, so maybe it won't answer your 
need; but maybe it will:



on sendReport pEmail, pReport
-- start process
put (mail -s  q(RevWeb Test Results)  \
revwebt...@domain1.com -a  q(From: 
donotre...@domain2.com))  cr into tMailProcess

open process tMailProcess for write
put the result into tPID
put open:  tPID  cr after tLog

-- write body
--put Here are the results from your Rev Web Test:  cr  pReport 
into tBody

put  cr  pReport into tBody

write tBody to process tMailProcess
put write body:  the result  cr after tLog

-- provide a CC
write   cr to process tMailProcess
put write CC:  the result  cr after tLog

close process tMailProcess
put close:  the result  cr after tLog
wait until tMailProcess is not in the openProcesses
end sendReport


Best -
Phil Davis


On 3/3/10 8:10 AM, Andre Garzia wrote:

Ralf,

this is a self contained system to be distributted, can't use revIgniter
because this is supposed to integrate into other people works... it is a
minimal system.

Tried using mail and sendmail... I am almost about to code SMTP on my own, I
did it before...

damn
andre

On Wed, Mar 3, 2010 at 12:58 PM, Ralf Bitterra...@dimensionb.de  wrote:

   

Hi Andre,

with revIgniter it works, plus there is
a debugger function.

Cheers

Ralf


On 03.03.2010, at 16:27, Andre Garzia wrote:

 

Ha!

Logged thru SSH and tried both mail and sendmail and none works!

:D

\o/

Doing the happy dance, it is definitely broken or configured so badly
   

that
 

it doesn't work as all the other installations I've found.

Anyone is able to send mail in On-Rev?

Cheers
andre

On Wed, Mar 3, 2010 at 12:09 PM, Andre Garziaan...@andregarzia.com
   

wrote:
 
   

Just tried the mail + shell commands and it doesn't work as well...

no error is triggered but the email also never arrives. It would be
 

useful
 

is On-Rev Team would add the sendmail/mail log to the cPanel thing.

:-/

can't even see the logs! Argh!

Cheers
andre


On Wed, Mar 3, 2010 at 11:57 AM, Andre Garziaan...@andregarzia.com
 

wrote:
   
 

Bernard  Jeffrey,

thanks for the reply.

On On-Rev cPanel there's a information label with the sendmail
   

location,
 

which I used on my script but the thing is not working.

I have code for mail as well as I used this on mac os x... silly
computers never working the way they should, let me try mail.

Cheers
andre


On Wed, Mar 3, 2010 at 11:50 AM, Bernard Devlinbdrun...@gmail.com
   

wrote:
   
   

On Wed, Mar 3, 2010 at 1:55 PM, Andre Garziaan...@andregarzia.com
wrote:
 

Aloha Folks,

Did anyone here is able to send email using sendmail in On-Rev, my
   

code
 

that
 

I use everywhere is not working anymore, somehow it can't open the
   

sendmail
 

process.
   

Some linux installations have a CLI mailer called 'mail' instead of
'sendmail'.  I know on some installations where Postfix is the smtpd
I've had to install that 'mail' program separately.  I don't have the
details to hand, but can look them up if necessary.

You could try 'there is a file /usr/bin/sendmail' to check for the
existence of sendmail with on-rev.

Bernard
___
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.

   



--
http://www.andregarzia.com All We Do Is Code.

 



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

 



   


--
Phil Davis

PDS Labs
Professional Software Development
http://pdslabs.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: File Associations?

2010-03-03 Thread Scott Rossi
Recently, Scott Morrow wrote:

 This post has the scripting I use for Relaunch so that multiple instance of
 the app won't launch.  I'm using it with a Splash-screen design as well. There
 are 2 script blocks, the first of which has to go at the stack level.
 [ snip ]

Thanks Scott.

I'm part way to a solution.  Apparently relaunch only works with the stack
bound to the engine in the splash standalone.  I was trying to use it with
the main stack opened by the splash app (the splash stack was immediately
closed after launch).

I also learned how to get the path of a double-clicked document using the
environment variable $1 at startup, so if my app is launched by a document,
it will load the document after launching.

But I'm still facing the disassociated file issue.  Documents saved by my
app with a custom file extension continue to show up with the generic
Windows document icon, instead of the custom icon in my standalone, and
bring up the choose application dialog when double-clicked. I tried your
suggestion of manually assigning the icon via file properties, and it did
change (to the icon of an app somewhere else on the drive), but I'm not sure
where in the registry this was updated (if at all).

[sigh] Hours being sucked away by these details...

Regards,

Scott Rossi
Creative Director
Tactile Media, UX Design


___
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: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Mark Wieder
Andre-

Wednesday, March 3, 2010, 8:05:32 AM, you wrote:

 tried to use mail -s from command line, didn't work here... :-/

mail -s used to work and now no longer does. So my PayPal integration
is now officially broken.

-- 
-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: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Andre Garzia
Some one sees something wrong in this code? I've been looking at email code
the whole day, I am not distinguishing things anymore.

put /usr/sbin/sendmail -t -oi -f  quote  pFrom  quote into tCMD
write From:  pFrom  crlf after tMail
write To:pTocrlf after tMail
write Subject:   pSubjectcrlf  crlf after tMail
write   pBody   crlf after tMail
put tempname() into tFile
put tMail into url (binfile:  tFile)
put cat quote tFile quote |  tCMD into tCMD
get shell(tCMD)
delete file tFile

On Wed, Mar 3, 2010 at 3:19 PM, Mark Wieder mwie...@ahsoftware.net wrote:

 Andre-

 Wednesday, March 3, 2010, 8:05:32 AM, you wrote:

  tried to use mail -s from command line, didn't work here... :-/

 mail -s used to work and now no longer does. So my PayPal integration
 is now officially broken.

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




-- 
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: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread J. Landman Gay

Andre Garzia wrote:


Anyone is able to send mail in On-Rev?


Yes, I'm using the same code that Jeff posted. I just tried it again and 
it is still working. Andre, didn't that code come from you? :)


--
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-2: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread runrev260805
Hi,

i just tried it out, and here it works without problems. Maybe its server 
specific.
My server is loki.

My script looks like this:
--
# escape shell characters: use this function before passing data to the shell
function shellEscape pText
repeat for each char tChar in \`!$  quote
replace tChar with \  tChar in pText
end repeat
return pText
end shellEscape

# wrap quotes around text
function wrapQ pText
return quote  pText  quote
end wrapQ

# send an email;  pCc and pBcc  are fixed now
command mail pTo, pSub, pMsg, pFrom, pCc, pBcc
put shellEscape(pTo) into pTo
put shellEscape(pSub) into pSub
put shellEscape(pMsg) into pMsg
put shellEscape(pFrom) into pFrom
put shellEscape(pCC) into pCc
put shellEscape(pBcc) into pBcc
   put shellEscape(pAttachment) into pAttachment
   put shellEscape(pAttachment2) into pAttachment2
get shell(echo -e  wrapQ(pMsg) | mail -s  wrapQ(pSub)
wrapQ(pTo)  -c wrapQ(pCc)   -b wrapQ(pBcc)  -- -f  
wrapQ(pFrom)) 

end mail

mail pTo,pSub, pMsg, pFrom, pCc, pBcc
--

Regards,

Matthias

 Original Message 
Subject: Re: [On-Rev] sending email thru sendmail?! (03-Mrz-2010 19:19)
From:Mark Wieder mwie...@ahsoftware.net
To:  runrev260...@m-r-d.de

 Andre-
 
 Wednesday, March 3, 2010, 8:05:32 AM, you wrote:
 
  tried to use mail -s from command line, didn't work here... :-/
 
 mail -s used to work and now no longer does. So my PayPal integration
 is now officially broken.
 
 -- 
 -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
 
 
 
 
 To: use-revolution@lists.runrev.com


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


Re: parsing data returned from the foundLine

2010-03-03 Thread J. Landman Gay

David Coker wrote:


...I think I'm gonna revisit *all* of the documentation covering
chunking again before I go much further with this little project. It
seems that I am still missing some of the concepts, methods and/or
possibilities that Rev offers when it comes to parsing textual data.


Chunking is such an integral part of Rev that a good understanding is 
essential. But actually, what you needed to do probably isn't under the 
text chunking category. The problem was that the foundline returns a 
reference to a line, and what you wanted was the text of that line. That 
means we have to force Rev to evaluate the reference, which is what the 
value function was made to do.


--
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: Re-2: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread J. Landman Gay

runrev260...@m-r-d.de wrote:

Hi,

i just tried it out, and here it works without problems. Maybe its server 
specific.
My server is loki.


Me too, I'm on loki. Andre, what server are you on?

--
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: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Trevor DeVore

On Mar 3, 2010, at 8:55 AM, Andre Garzia wrote:

Did anyone here is able to send email using sendmail in On-Rev, my  
code that
I use everywhere is not working anymore, somehow it can't open the  
sendmail

process.


Maybe the function Michael McCreary mentions in this lesson is worth  
trying. It looks pretty complete.


http://lessons.runrev.com/spaces/lessons/buckets/814/lessons/8184-Sending-Emails-From-revServer-Scripts

--
Trevor DeVore
Blue Mango Learning Systems
ScreenSteps: http://www.screensteps.com
Releasable Revolution Resources for Developers: 
http://revolution.bluemangolearning.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: Re-2: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Andre Garzia
I am on loki as well

ARGH!

it is an addon domain...

On Wed, Mar 3, 2010 at 4:23 PM, J. Landman Gay jac...@hyperactivesw.comwrote:

 runrev260...@m-r-d.de wrote:

 Hi,

 i just tried it out, and here it works without problems. Maybe its server
 specific.
 My server is loki.


 Me too, I'm on loki. Andre, what server are you on?

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




-- 
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: File Associations?

2010-03-03 Thread J. Landman Gay

Andre Garzia wrote:


Folks, this kind of stuff should be easy. Can we abstract that code into a
library? Also, Scott, did you solved it for Mac?


The problem of multiple instances doesn't happen on Macs, so you don't 
have to do anything on that OS. The file associations are all handled in 
the plist file inside the application bundle, so that isn't usually an 
issue either.


--
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: Re-2: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread J. Landman Gay

Andre Garzia wrote:

I am on loki as well

ARGH!

it is an addon domain...


Mine isn't an addon. You could try a test in your main account and see 
if it works there. That would give some info.


--
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: Re-2: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Andre Garzia
I could make it work with the function from Michael, but only sending email
to my .mac account, sending email to my GMail account doesn't work, the
email never arrives and is not on the spam box.

:-/ odd



On Wed, Mar 3, 2010 at 4:30 PM, J. Landman Gay jac...@hyperactivesw.comwrote:

 Andre Garzia wrote:

 I am on loki as well

 ARGH!

 it is an addon domain...


 Mine isn't an addon. You could try a test in your main account and see if
 it works there. That would give some info.


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




-- 
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-4: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread runrev260805
I am also using my script with/on an addon domain.

Regards,

Matthias

 Original Message 
Subject: Re: Re-2: [On-Rev] sending email thru sendmail?! (03-Mrz-2010 20:29)
From:Andre Garzia an...@andregarzia.com
To:  runrev260...@m-r-d.de

 I am on loki as well
 
 ARGH!
 
 it is an addon domain...
 
 On Wed, Mar 3, 2010 at 4:23 PM, J. Landman Gay jac...@hyperactivesw.com
 wrote:
 
  runrev260...@m-r-d.de wrote:
 
  Hi,
 
  i just tried it out, and here it works without problems. Maybe its 
 server
  specific.
  My server is loki.
 
 
  Me too, I'm on loki. Andre, what server are you on?
 
  --
  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
 
 
 
 
 -- 
 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
 
 
 
 
 To: use-revolution@lists.runrev.com


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


Re: use-revolution Digest, Vol 77, Issue 71

2010-03-03 Thread Judy Perry



On Mon, 1 Mar 2010, Richmond Mathewson wrote:

For Graphics and Sound I think that Open Source is really good (GIMP, 
Inkscape, Audacity, Ardour(linux)),


GIMP on the Mac is just okay at best (I've upgraded my assessment of 
it from sucks completely) as everything seems to take two clicks, you 
have to run it under X11 and it neither looks nor behaves like a standard 
Mac app.


Inkscape is blue language-inducing (I would so love to have Freehand 
back), so it can't be used around the kiddies.


I actually like Audacity, but I probably have low standards because for 
the longest time the only audio app I had access to was Adobe's 
SoundEdit...


YMMV.

Judy
___
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: File Associations?

2010-03-03 Thread Scott Rossi
Is it possible that app name entries in the registry need to be in 8.3
format?  My app name is 31 chars long, including spaces.  Maybe Vista is
choking on this?

Regards,

Scott Rossi
Creative Director
Tactile Media, UX Design


___
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: File Associations?

2010-03-03 Thread Trevor DeVore

On Mar 3, 2010, at 3:17 PM, Scott Rossi wrote:


Is it possible that app name entries in the registry need to be in 8.3
format?  My app name is 31 chars long, including spaces.  Maybe  
Vista is

choking on this?


You could try wrapping the name in quotes. I think you mentioned you  
are using INNO Setup. You will need to double-up the quotes to escape.  
Here is an example from my .iss file:


Root: HKCR; Subkey: ScreenSteps\shell\open\command; ValueType:  
string; ValueData: {app}\ScreenSteps.exe %1; Flags:  
uninsdeletekey


--
Trevor DeVore
Blue Mango Learning Systems
ScreenSteps: http://www.screensteps.com
Releasable Revolution Resources for Developers: 
http://revolution.bluemangolearning.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: File Associations?

2010-03-03 Thread Mark Schonewille

Hi,

It is right that you need to catch the relaunch message in the stack  
script of the stack that is opened first. This is always the stack  
that is embedded in the executable. It can't be any other stack. In  
your case, it is the splash stack. As far as I know, this is all  
explained in the documentation, even though it might be a bit brief.


I referred to this http://qurl.tk/4x example before. It works  
perfectly for me, on Win 98 up to and including Vista. I don't know  
about Win 7 (yet).


I do always use very short names for my executables. The paths always  
end in 8.3 DOS file names. The application names, as displayed in the  
Add/Remove Software control panel and in other palces, can be longer  
than that.


I wonder whether something has changed in 4.5. I haven't used Rev 4.5  
for my installer yet. Something has changed with regard to icons of  
Windows executables and perhaps it affects the icon that needs to be  
associated with your file extension. RunRev should be able to tell you  
this.


Maybe you should post your script.

--
Best regards,

Mark Schonewille

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

Economy-x-Talk is always looking for new software development  
projects. Feel free to contact me for a quote.


Op 3 mrt 2010, om 19:07 heeft Scott Rossi het volgende geschreven:


Recently, Scott Morrow wrote:
Thanks Scott.

I'm part way to a solution.  Apparently relaunch only works with  
the stack
bound to the engine in the splash standalone.  I was trying to use  
it with
the main stack opened by the splash app (the splash stack was  
immediately

closed after launch).

I also learned how to get the path of a double-clicked document  
using the
environment variable $1 at startup, so if my app is launched by a  
document,

it will load the document after launching.

But I'm still facing the disassociated file issue.  Documents saved  
by my

app with a custom file extension continue to show up with the generic
Windows document icon, instead of the custom icon in my standalone,  
and
bring up the choose application dialog when double-clicked. I  
tried your
suggestion of manually assigning the icon via file properties, and  
it did
change (to the icon of an app somewhere else on the drive), but I'm  
not sure

where in the registry this was updated (if at all).

[sigh] Hours being sucked away by these details...

Regards,

Scott Rossi
Creative Director
Tactile Media, UX Design


___
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: Re-2: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Bob Sneidar
Doesn't gMail require SSL? Could that be the issue? Also, the SSL port for 
gMail SMTP is not 25 it is 465. 
http://mail.google.com/support/bin/answer.py?hl=enanswer=13287

Bob


On Mar 3, 2010, at 11:54 AM, Andre Garzia wrote:

 I could make it work with the function from Michael, but only sending email
 to my .mac account, sending email to my GMail account doesn't work, the
 email never arrives and is not on the spam box.
 
 :-/ odd
 
 
 
 On Wed, Mar 3, 2010 at 4:30 PM, J. Landman Gay 
 jac...@hyperactivesw.comwrote:
 
 Andre Garzia wrote:
 
 I am on loki as well
 
 ARGH!
 
 it is an addon domain...
 
 
 Mine isn't an addon. You could try a test in your main account and see if
 it works there. That would give some info.
 
 
 --
 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
 
 
 
 
 -- 
 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: Re-2: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Bob Sneidar
Oh nvm you are sending from an email server local to On-Rev. 

BOB

On Mar 3, 2010, at 11:54 AM, Andre Garzia wrote:

 I could make it work with the function from Michael, but only sending email
 to my .mac account, sending email to my GMail account doesn't work, the
 email never arrives and is not on the spam box.
 
 :-/ odd
 
 
 
 On Wed, Mar 3, 2010 at 4:30 PM, J. Landman Gay 
 jac...@hyperactivesw.comwrote:
 
 Andre Garzia wrote:
 
 I am on loki as well
 
 ARGH!
 
 it is an addon domain...
 
 
 Mine isn't an addon. You could try a test in your main account and see if
 it works there. That would give some info.
 
 
 --
 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
 
 
 
 
 -- 
 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: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Pierre Sahores

Andre,

This way works for me as expected on loki from an addon domain  
(wrds.com) :



get mail(pTo, pSub, pMsg, pFrom)




function  shellQuote pText
return quote  pText  quote
end  shellQuote



function shellEscape pText
repeat for each char tChar in \`!$  quote
replace tChar with \  tChar in pText
end repeat
return pText
end shellEscape



function mail pTo, pSub, pMsg, pFrom
	return shell(echo -e   shellQuote(shellEscape(pMsg))  | mail  
-s  shellQuote(shellEscape(pSub))  shellQuote(shellEscape(pTo))  
 -- -f  shellQuote(shellEscape(pFrom)))

end mail


Do you want to get a test message addressed to your gmail account from  
it to see if it works ? If yes, thanks to reply with the neede address.


P.


Le 3 mars 10 à 20:10, Andre Garzia a écrit :

Some one sees something wrong in this code? I've been looking at  
email code

the whole day, I am not distinguishing things anymore.

put /usr/sbin/sendmail -t -oi -f  quote  pFrom  quote into tCMD
write From:  pFrom  crlf after tMail
write To:pTocrlf after tMail
write Subject:   pSubjectcrlf  crlf after tMail
write   pBody   crlf after tMail
put tempname() into tFile
put tMail into url (binfile:  tFile)
put cat quote tFile quote |  tCMD into tCMD
get shell(tCMD)
delete file tFile

On Wed, Mar 3, 2010 at 3:19 PM, Mark Wieder mwie...@ahsoftware.net  
wrote:



Andre-

Wednesday, March 3, 2010, 8:05:32 AM, you wrote:


tried to use mail -s from command line, didn't work here... :-/


mail -s used to work and now no longer does. So my PayPal integration
is now officially broken.

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





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



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


Re: Faking OS X text field behaviour (was: Good books on Cocoa dev?)

2010-03-03 Thread Scott McDonald

Ian,


Ian Wood-3 wrote:
 
 Thanks for the suggestions, everyone. It would certainly save me a lot  
 of time if this could be done in Rev, so maybe it's time to look from  
 a different direction - how do we make a Rev field as OS X-like as  
 possible.
 

I understand why the RRP SpellCheck doesn't meet your needs, and you have
certainly made several comments that give me ideas to work on.

But you are right, the Rev field is not native enough for your users. For
example, the way of marking unknown words when doing the contextual check
was something I thought about a lot during the design. 


anything but dashed red underlining is going to leap out

While Windows users expect a red wriggly line. I couldn't figure out an
efficient way to get those types of visual effects, so in the end just
decided to work within the bounds of what the standard field object can do.


the target audience have been adding words (place names, people's names) to
the OS-level dictionary.

I'll look into ways of priming the RRP SpellCheck with the words already in
the Mac dictionary.

Thank you for the comments, you've left me with plenty to think about and
ideas for future work -- although a lot depends on having extra capabilities
in the Revolution field object. Since a key feature of my spell checker is
cross-platform support this means unless it can be done in Revolution I am
unlikely to do it.

Of course, if I do figure out how to fake it, I'll let you know.

Scott.
www.runrevplanet.com
-- 
View this message in context: 
http://n4.nabble.com/OT-Good-books-on-Cocoa-dev-spellcheck-woes-tp1575279p1577261.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


Devawriter

2010-03-03 Thread Richmond Mathewson

For all of you who just cannot wait to write to your significant other
in Classical Sanskrit I am pleased to announce that Devawriter:

http://andregarzia.on-rev.com/richmond/dwriter.html

has just hit version 1.0.8 !

For those of you unacquainted with Hinduism, Jainism and Buddhism
108 is a number of great significance in those traditions.

I am personally excited by release 1.0.8 because this signifies the
end of the first cycle through the Transcription Help Palette.

Downloads, as far as I can tell, are running somewhere above 3000.

--

Without the good services of many of you on the wonderful RunRev Use-List
Devawriter would still be another of my delayed adolescent fantasies
gathering dust somewhere in the murkier corners of my brain.

Thank you all, for so much support over the years.

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: Faking OS X text field behaviour (was: Good books on Cocoa dev?)

2010-03-03 Thread Richard Gaskin

Scott McDonald wrote:


But you are right, the Rev field is not native enough for your users. For
example, the way of marking unknown words when doing the contextual check
was something I thought about a lot during the design.


anything but dashed red underlining is going to leap out

While Windows users expect a red wriggly line. I couldn't figure out an
efficient way to get those types of visual effects, so in the end just
decided to work within the bounds of what the standard field object can do.


Have you tried a transparent GIF or PNG with the dash near the bottom, 
applied as the backgroundPattern of the portion of text being indicated?


--
 Richard Gaskin
 Fourth World
 Rev training and consulting: http://www.fourthworld.com
 Webzine for Rev developers: http://www.revjournal.com
 revJournal blog: http://revjournal.com/blog.irv
___
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: Docking Stacks

2010-03-03 Thread zryip theSlug
2010/3/2 Andrew Kluthe and...@rjdfarm.com:

 I searched around and haven't really found anything about interactions
 between multiple stacks similar to docking.

 The Problem: I have 4 stacks That I want to dock to the edges of each other
 (open on the edge, snap to the edge, etc).

 1. Two of the stacks are menu stacks on either side of the larger main
 stack:

 One of these is used a menu to navigate the different aspects of the app.
 The other is used to display a report list depending on the selection in the
 menu stack.

 2. A stack on the bottom to continually display help information.

 3. The main stack is in the middle of all of this and the others need to
 snap/dock/open on the edge of this stack.

 [Menu stack][MAIN STACK][Reports Stack]
 [--Help Stack---]


 Any ideas on how to start adding this functionality?

Hi Andrew,

Have a look to my lab's experiment 010:
http://www.aslugontheroad.co.cc/index.php?option=com_contentview=articleid=69:experiment-010-docking-stackscatid=35:labItemid=53

This experiment shows how to dock 3 stacks in the same palette, detach
two of them as individual palettes or attach them to the main palette.


HTH,

-- 
-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: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Sarah Reichelt
 Did anyone here is able to send email using sendmail in On-Rev, my code that
 I use everywhere is not working anymore, somehow it can't open the sendmail
 process.

 function sendMail pFrom, pTo, pSubject, pBody

  switch the platform
  case Linux
    put /usr/sbin/sendmail -t into mprocess
    open process mprocess for write
    write From:  pFrom  crlf to process mprocess
    write To:    pTo    crlf to process mprocess
    write Subject:   pSubject    crlf  crlf to process mprocess
    write   pBody   crlf to process mprocess
    close process mprocess
    wait until mprocess is not among the lines of the openprocesses
    return the result
    break

  end switch

 end sendMail


I'm using mail, not sendmail directly and I'm on the odin server and
it's working fine there.
You can test it out  see my scripts at
http://www.troz.net/onrev/samples/form.irev.
I got the mail routines from splash21's site originally.

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


Re: Faking OS X text field behaviour (was: Good books on Cocoa dev?)

2010-03-03 Thread Ian Wood


On 3 Mar 2010, at 21:24, Scott McDonald wrote:

I understand why the RRP SpellCheck doesn't meet your needs, and you  
have certainly made several comments that give me ideas to work on.


Thanks for taking the in the way it was meant! That's partly why I  
changed the direction towards ways of improving the 'nativeness' of  
the existing field object.


If we can put together a standard behaviour set that anyone can then  
use which does the stuff like navigation shortcuts and contextual men  
items like search in Spotlight/Google it'll help everyone. There's  
enough knowledge and interest on this list to do a good job of it.


EDIT - Richard Gaskin has already chimed in with what should be a  
better idea than my overlay plan...


Ian
___
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: Faking OS X text field behaviour (was: Good books on Cocoa dev?)

2010-03-03 Thread Ian Wood
I just had a quick try but can't see how to apply a backgroundpattern  
to anything less than the whole field.


Do you have some example syntax for setting it for part of a field?

Ian

On 3 Mar 2010, at 22:03, Richard Gaskin wrote:

Have you tried a transparent GIF or PNG with the dash near the  
bottom, applied as the backgroundPattern of the portion of text  
being indicated?


___
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: Faking OS X text field behaviour (was: Good books on Cocoa dev?)

2010-03-03 Thread Bob Sneidar
Concur. Text chunks cannot have that property. 

Bob


On Mar 3, 2010, at 3:33 PM, Ian Wood wrote:

 I just had a quick try but can't see how to apply a backgroundpattern to 
 anything less than the whole field.
 
 Do you have some example syntax for setting it for part of a field?
 
 Ian
 
 On 3 Mar 2010, at 22:03, Richard Gaskin wrote:
 
 Have you tried a transparent GIF or PNG with the dash near the bottom, 
 applied as the backgroundPattern of the portion of text being indicated?
 
 ___
 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: Faking OS X text field behaviour (was: Good books on Cocoa dev?)

2010-03-03 Thread Richard Gaskin

Ian Wood wrote:

I just had a quick try but can't see how to apply a backgroundpattern
to anything less than the whole field.


Mea culpa.

According to the dictionary RevTalk allows backgroundColor for chunks, 
and backgroundPattern for fields, and textPattern/foregroundPattern for 
chunks, so I was a little optimistic about the orthogonality of the 
implementation.


But in trying it here, you're right, it seems the backgroundPattern 
cannot be applied to chunks.


This inconsistency seems worth addressing, since doing so has practical 
application as you've noted, so I logged it as a request:


http://quality.runrev.com/qacenter/show_bug.cgi?id=8645

--
 Richard Gaskin
 Fourth World
 Rev training and consulting: http://www.fourthworld.com
 Webzine for Rev developers: http://www.revjournal.com
 revJournal blog: http://revjournal.com/blog.irv
___
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: Re-2: [On-Rev] sending email thru sendmail?!

2010-03-03 Thread Mark Wieder
Andre-

Wednesday, March 3, 2010, 11:26:24 AM, you wrote:

 I am on loki as well

Remember that Loki's a trickster.
However, I'm on Odin and there's no mail here either.

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


Sticky Popup?

2010-03-03 Thread Scott Rossi
Is there any way to make the action of popping up a menu sticky?

I'm trying to work around a menu text color problem by using proxy buttons
to pop up File/Edit/Help menus.  Popping up a menu behaves similarly to
directly clicking the menu button, except that the menu is not sticky --
the menu doesn't stay opened when the mouse is released.  Is there any way
to simulate this sticky behavior when using the popup command?

(BTW, the text color issue is due to using a custom menu color scheme and
differences between XP and Vista.   On Vista, menus are drawn with their own
default color scheme, so changing the text color of the menu button has no
bearing on the menu.  But on XP, the text in a menu is affected by the
textcolor of the menu button, so making the textcolor anything besides black
makes the menu difficult to read.)

Thanks for any suggestions.

Regards,

Scott Rossi
Creative Director
Tactile Media, UX Design


___
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: parsing data returned from the foundLine

2010-03-03 Thread David Coker
I thank you all for the info and suggestions!
...this little project has a bunch of twists and turns due to the
amount and depth of recursion involved, but I've got a pretty good
portion of it figured out now.

This one has been in one stage of development or another for 2-3
months now... I do a bit on it and then set it aside for awhile when I
tire of it. We'll get there eventually. (maybe)

I do appreciate you good folks!
David C.
___
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