Re: Runrev Server Client Example?

2010-04-05 Thread Pierre Sahores


Le 5 avr. 10 à 04:20, Shani a écrit :


1, Revtalk to PHP through Socket using TCP/IP


http://www2.sahores-conseil.com/insead/page4.php

--
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: Saving audioclips to a file as ...

2010-04-05 Thread Richmond Mathewson

 On 05/04/2010 03:54, stephen barncard wrote:

Good Afternoon,

Is it possible to export an audioclip to a standard .wav or .aif file in
Rev?

put audioClip 3 into URL(binfile:  sFilePath)

...  creates a file, but it won't play -- just makes a text file with the
contents of sFIlepath..

can't get there from here?

what is the audio equivalent of imageData  ?


sqb

This is an old chestnut that I remember mentioning about 6 years ago!

RunRev has no audioClip or videoClip export facilities; a lack that needs
to be remedied.
___
use-revolution mailing list
use-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: Which char is NOT in result MD5Digest

2010-04-05 Thread Claudi Cornaz

Hi Richard and Dave,

Thanks for the answers. It works like a charm.
Not something I would have found in a long long time.

Anyway back to coding again.

Claudi




On 3 apr 2010, at 17:28, Richard Gaskin wrote:


Claudi Cornaz wrote:


Is there a character that won't be in the result of the MD5Digest?

I try to ceate a list of control id's a comma and the MD5Digest of  
the

script of that control.
Unfortunatly the cr character can be part of the resulting MD5 thus
throwing of my lines with a part of the MD5.

Now of course I can replace the cr but which char to use? I need one
that for sure isn't returned by the MD5.
Or differently: how can I keep my control id's and corresponding MD5
seperated from each other in a list, to get at each in turn?


If you can deal with a string that's a bit longer, you could base64- 
encode the MD5 digest:


put base64Encode(md5Digest(tMyString))

That'll result in a string using only a relatively small subset of  
ASCII characters, leaving most common delimiters (commas, tabs,  
etc.) free for you to use however you like.


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


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


Wierd stack behaviour- location is off the planet!

2010-04-05 Thread planix

Hiya,

RunRev 4 Build 950 on a Windows XP.

I wonder if anyone has seen the following.

I have a stack which fronts a series of sub-stacks. It doesn't have any
scripts apart from a menu choice so the user can go from this stack to the
other sub-stacks where data is stored and managed.

The problem I have is that suddenly, and for no discernible reason, the
front stack disappeared. It seemed to be available and visible was set to
true. So, I had a look in size  position properties. There I found that the
location of this stack was set at -32165, -31850. Bizarre. I don't have any
coding anywhere in my stacks that resets window location or anything.

Ho, hum, thunk I I'll just reset the location manually and viola, problem
solved! Hah! No such luck. I can't change the location. Doesn't matter what
I type in it sets back to the location described above. Without even a mild
attempt to come back to me.

I have no idea how I made this happen. And I have no idea of how to make it
come back.

Any thoughts on this? Seems like a bug to me. So, I will report it unless I
am just doing something blindingly stupid. 
-- 
View this message in context: 
http://n4.nabble.com/Wierd-stack-behaviour-location-is-off-the-planet-tp1751550p1751550.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: Wierd stack behaviour- location is off the planet!

2010-04-05 Thread Devin Asay


On Apr 5, 2010, at 6:02 AM, planix wrote:



Hiya,

RunRev 4 Build 950 on a Windows XP.

I wonder if anyone has seen the following.

I have a stack which fronts a series of sub-stacks. It doesn't have  
any
scripts apart from a menu choice so the user can go from this stack  
to the

other sub-stacks where data is stored and managed.

The problem I have is that suddenly, and for no discernible reason,  
the
front stack disappeared. It seemed to be available and visible was  
set to
true. So, I had a look in size  position properties. There I found  
that the
location of this stack was set at -32165, -31850. Bizarre. I don't  
have any

coding anywhere in my stacks that resets window location or anything.

Ho, hum, thunk I I'll just reset the location manually and viola,  
problem
solved! Hah! No such luck. I can't change the location. Doesn't  
matter what
I type in it sets back to the location described above. Without even  
a mild

attempt to come back to me.

I have no idea how I made this happen. And I have no idea of how to  
make it

come back.

Any thoughts on this? Seems like a bug to me. So, I will report it  
unless I

am just doing something blindingly stupid.


Did you try 'set the lockmessages to true' before changing the loc?  
Don't forget to set it to false when everything's fixed, though.


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: formatting data in a field

2010-04-05 Thread DunbarX
Dave, I think what was not made strongly enough in all the posts was that 
at least one numerical operation has to be performed for the numberformat to 
lock in. So:

get 1.234
set numberformat to 0.0
put it

will give you 1.234

In the responses, you may have seen the variable multiplied by 1, which may 
have seemed superfluous. It is not. Personally, I like to add 0. But you 
have to do something.

get 1.234
set numberformat to 0.0
add 0 to it
put it

gives you 1.2

Craig Newman
___
use-revolution mailing list
use-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: Runrev Server Client Example?

2010-04-05 Thread Shani
Thanks Pierre, this is very good Example and it is very helpful. is there is
any other examples.


2. Revtalk to VB through Socket using TCP/IP
3. Revtalk to JAVA through Socket using TCP/IP
4. Revtalk to C through Socket using TCP/IP
5. Revtalk to JADE through Socket using TCP/IP
6 Revtalk to C++ through Socket using TCP/IP
7  Revtalk to C# through Socket using TCP/IP
etc

Regards,
SHANI

On Mon, Apr 5, 2010 at 8:32 AM, Pierre Sahores psaho...@free.fr wrote:


 Le 5 avr. 10 à 04:20, Shani a écrit :


  1, Revtalk to PHP through Socket using TCP/IP


 http://www2.sahores-conseil.com/insead/page4.php

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

___
use-revolution mailing list
use-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: Rev Talk Socket

2010-04-05 Thread Mark Schonewille

Hi Shani,

I have posted the script for a very simple telnet server on my blog at  
http://blog.schonewille.tk. Maybe it helps you.


--
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 5 apr 2010, om 04:20 heeft Shani het volgende geschreven:


HI

Is there is any RevTalk Server Client Example with any program

1, Revtalk to PHP through Socket using TCP/IP
2. Revtalk to VB through Socket using TCP/IP
3. Revtalk to JAVA through Socket using TCP/IP
4. Revtalk to C through Socket using TCP/IP
5. Revtalk to JADE through Socket using TCP/IP
6 Revtalk to C++ through Socket using TCP/IP
7  Revtalk to C# through Socket using TCP/IP
etc


___
use-revolution mailing list
use-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: formatting data in a field

2010-04-05 Thread David Coker
 Dave, I think what was not made strongly enough in all the posts was that
 at least one numerical operation has to be performed for the numberformat to
 lock in. So:

 get 1.234
 set numberformat to 0.0
 put it

 will give you 1.234

 In the responses, you may have seen the variable multiplied by 1, which may
 have seemed superfluous. It is not. Personally, I like to add 0. But you
 have to do something.

 get 1.234
 set numberformat to 0.0
 add 0 to it
 put it

 gives you 1.2

Thank you Craig,
Out of all the small apps I've built with Rev so far, this is the
first time I've ever had the need to to format a number and in this
case it's purely to enhance what the user will see. It's all good info
and I appreciate all of the tips and suggestions because I'm sure that
I (or someone else) will need the knowledge down the road somewhere.

Best 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


Mucking around with unicodeText fields ???

2010-04-05 Thread Richmond Mathewson
 Imagine, if you will, a field containing a fairly long string of 
unicodeText . . .


Now, some of the characters in the field (let's call it fld FIRST) are 
in the wrong order . . .


And, we want to find the ones that are in the wrong places and move them 
into the right places

let's say in fld SECOND . . .

Now, my problem is that I can envisage this sort of script:

on mouseUp
   if the unicodeText in fld FIRST contains (numToChar(57888)  
numToChar(57999)) then


   --- do something terribly clever that changes their order in the 
unicodeText and

   --- puts the whole unicodeText into fld SECOND

  end if
end mouseUp

but for the life of me I can't work out how to swap the chars round; 
this is extremely easy to do with

non-unicode text:

on mouseUp
put CHEESE into fld THIRD
   replace EE with A in fld THIRD
end mouseUp

this:

on mouseUp
   set the useUnicode to true
   if the unicodeText of fld FIRST contains (numToChar(57888)  
numToChar(57999)) then
  replace the unicodeText(numToChar(57888)  numToChar(57999)) with 
the unicodeText(numToChar(57999)  numToChar(57888)) in fld FIRST

   end if
end mouseUp

does not work.

And this:

on mouseUp
   set the useUnicode to true
   if the unicodeText of fld FIRST contains (numToChar(57888)  
numToChar(57999)) then
  replace (numToChar(57888)  numToChar(57999)) with 
(numToChar(57999)  numToChar(57888)) in fld FIRST

   end if
end mouseUp

de-unicodes the text in fld FIRST, so I end up with a string of boxes.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Fwd: Mucking around with unicodeText fields ???

2010-04-05 Thread Richmond Mathewson

 Here he goes again; replying to his own messages . . . :)

Imagine, if you will, a field containing a fairly long string of 
unicodeText . . .


Now, some of the characters in the field (let's call it fld FIRST) 
are in the wrong order . . .


And, we want to find the ones that are in the wrong places and move 
them into the right places

let's say in fld SECOND . . .

Now, my problem is that I can envisage this sort of script:

on mouseUp
if the unicodeText in fld FIRST contains (numToChar(57888)  
numToChar(57999)) then


--- do something terribly clever that changes their order in the 
unicodeText and

--- puts the whole unicodeText into fld SECOND

end if
end mouseUp

but for the life of me I can't work out how to swap the chars round; 
this is extremely easy to do with

non-unicode text:

on mouseUp
put CHEESE into fld THIRD
replace EE with A in fld THIRD
end mouseUp

this:

on mouseUp
set the useUnicode to true
if the unicodeText of fld FIRST contains (numToChar(57888)  
numToChar(57999)) then
replace the unicodeText(numToChar(57888)  numToChar(57999)) with the 
unicodeText(numToChar(57999)  numToChar(57888)) in fld FIRST

end if
end mouseUp

does not work.

And this:

on mouseUp
set the useUnicode to true
if the unicodeText of fld FIRST contains (numToChar(57888)  
numToChar(57999)) then
replace (numToChar(57888)  numToChar(57999)) with (numToChar(57999)  
numToChar(57888)) in fld FIRST

end if
end mouseUp

de-unicodes the text in fld FIRST, so I end up with a string of boxes.

This WORKS:

on mouseUp
   set the useUnicode to true
   if the unicodeText of fld FIRST contains (numToChar(57888)  
numToChar(57999)) then

  get the unicodeText of fld FIRST
  replace (numToChar(57888)  numToChar(57999)) with 
(numToChar(57999)  numToChar(57888)) in it

  set the unicodeText of fld FIRST to it
   end if
end mouseUp

Documentation is NOT helpful in this respect.

___
use-revolution mailing list
use-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: Rev Talk Socket

2010-04-05 Thread Shani
Great work!

Thanks

Regards,
SHANI

On Mon, Apr 5, 2010 at 6:41 PM, Mark Schonewille 
m.schonewi...@economy-x-talk.com wrote:

 Hi Shani,

 I have posted the script for a very simple telnet server on my blog at 
 http://blog.schonewille.tk. Maybe it helps you.

 --
 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 5 apr 2010, om 04:20 heeft Shani het volgende geschreven:


  HI

 Is there is any RevTalk Server Client Example with any program

 1, Revtalk to PHP through Socket using TCP/IP
 2. Revtalk to VB through Socket using TCP/IP
 3. Revtalk to JAVA through Socket using TCP/IP
 4. Revtalk to C through Socket using TCP/IP
 5. Revtalk to JADE through Socket using TCP/IP
 6 Revtalk to C++ through Socket using TCP/IP
 7  Revtalk to C# through Socket using TCP/IP
 etc


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


Wierd stack behaviour- location is off the planet!

2010-04-05 Thread Malte Pfaff-Brill
Hi Planix,

is by chance the iconic property of your stack set to true?

Try in messagebox:

set the iconic of stack yourStack to false


Hth,

Malte

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


Desktop innovation? Future of the desktop?

2010-04-05 Thread Peter Alcibiades
I don't use gnome, and preferred kde 3.5 to 4.x, and fluxbox to both of 
them, but evidently some are really really enthusiastic about the 
innovation which Gnome 3 supposedly represents.  

Gnome enthusiasts like Richard G may find this interesting.

Peter

http://blogs.techrepublic.com.com/opensource/?p=1405tag=leftCol;post-1405
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Is onrev down?

2010-04-05 Thread Jim Lambert
Anyone else having difficulty logging into onRev cPanel, using the on-rev app, 
or using on-rev mail?

thanks,
jimL___
use-revolution mailing list
use-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: Is onrev down?

2010-04-05 Thread Matthias Rebbe
Works here with loki.on-rev.com.

Regards,

Matthias
Am 05.04.2010 um 22:19 schrieb Jim Lambert:

 Anyone else having difficulty logging into onRev cPanel, using the on-rev 
 app, or using on-rev mail?
 
 thanks,
 jimL___
 use-revolution mailing list
 use-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: Is onrev down?

2010-04-05 Thread Malte Pfaff-Brill
No problems on thor.

Cheers,

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


Re: Is onrev down?

2010-04-05 Thread J. Landman Gay

Jim Lambert wrote:

Anyone else having difficulty logging into onRev cPanel, using the
on-rev app, or using on-rev mail?


Works okay here on loki, but Jerry Daniels wrote me today and said he's 
having trouble. 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: Is onrev down?

2010-04-05 Thread BNig

does not work for me on freyr, neither AccesscPanel nor on-Rev.app.
Website works.
regards
Bernd
-- 
View this message in context: 
http://n4.nabble.com/Is-onrev-down-tp1752055p1752089.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: use-revolution Digest, Vol 79, Issue 6

2010-04-05 Thread Jim Lambert
Thanks for the responses!

Jacque wrote:
 Works okay here on loki, but Jerry Daniels wrote me today and said he's 
 having trouble. What server are you on?
 
I'm on Freyr
freyr.on-rev.com

kind of sad that a phallic fertility god is down!

Jim Lambert
___
use-revolution mailing list
use-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: Is onrev down?

2010-04-05 Thread Jim Lambert
Sorry. wrong subject in my earlier response.
Now I see Bernd also has problems on Freyr.
JimL

Thanks for the responses!

Jacque wrote:
 Works okay here on loki, but Jerry Daniels wrote me today and said he's 
 having trouble. What server are you on?
 
I'm on Freyr
freyr.on-rev.com

kind of sad that a phallic fertility god is down!

Jim Lambert

___
use-revolution mailing list
use-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: Is onrev down?

2010-04-05 Thread Colin Holgate

On Apr 5, 2010, at 4:55 PM, Jim Lambert wrote:

 
 freyr.on-rev.com


It's not a very exciting page, but it does load for me in NYC, as do my own 
pages on on-rev.


___
use-revolution mailing list
use-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: Is onrev down?

2010-04-05 Thread Jim Lambert
Colin wrote:
  freyr.on-rev.com
 
 
 It's not a very exciting page, but it does load for me in NYC, as do my own 
 pages on on-rev.

Everything, cPanel, mail, onRev app work here now, too.

Long live Freyr!

Thanks All,
Jim Lambert


___
use-revolution mailing list
use-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: Is onrev down?

2010-04-05 Thread Jerry J
On Apr 5, 2010, at 2:08 PM, Jim Lambert wrote:

 Colin wrote:
 freyr.on-rev.com
 
 
 It's not a very exciting page, but it does load for me in NYC, as do my own 
 pages on on-rev.
 
 Everything, cPanel, mail, onRev app work here now, too.
 
 Long live Freyr!

Freyr is working fine for me too, but I'm getting a lot of duplicate emails, 
sometimes separated by a few hours. Something's afoot!

Jerry Jensen

___
use-revolution mailing list
use-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: Is onrev down?

2010-04-05 Thread Pierre Sahores

Loki is OK for me.

Best Regards,

Le 5 avr. 10 à 22:19, Jim Lambert a écrit :

Anyone else having difficulty logging into onRev cPanel, using the  
on-rev app, or using on-rev mail?


thanks,
jimL___
use-revolution mailing list
use-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: Runrev Server Client Example?

2010-04-05 Thread Pierre Sahores

Hello Shani,

Take time to download the package if needed. I will remove the old  
server www2.sahores-conseil.com next week and reinstall all it  
contents to my on-rev account as soon as possible.


Best Regards,

Pierre

Le 5 avr. 10 à 18:39, Shani a écrit :

Thanks Pierre, this is very good Example and it is very helpful. is  
there is

any other examples.


2. Revtalk to VB through Socket using TCP/IP
3. Revtalk to JAVA through Socket using TCP/IP
4. Revtalk to C through Socket using TCP/IP
5. Revtalk to JADE through Socket using TCP/IP
6 Revtalk to C++ through Socket using TCP/IP
7  Revtalk to C# through Socket using TCP/IP
etc

Regards,
SHANI

On Mon, Apr 5, 2010 at 8:32 AM, Pierre Sahores psaho...@free.fr  
wrote:




Le 5 avr. 10 à 04:20, Shani a écrit :


1, Revtalk to PHP through Socket using TCP/IP




http://www2.sahores-conseil.com/insead/page4.php

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


___
use-revolution mailing list
use-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: Is onrev down?

2010-04-05 Thread Bob Sneidar
Um... perhaps a foot is?

Bob


On Apr 5, 2010, at 2:13 PM, Jerry J wrote:

 Freyr is working fine for me too, but I'm getting a lot of duplicate emails, 
 sometimes separated by a few hours. Something's afoot!
 
 Jerry Jensen

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


Need someone with knowlege of sound files

2010-04-05 Thread Fred Moyer

Dear friends:

I am looking for a Revolution programmer with experience at  
manipulating sound files -- -- for a several projects that I am  
working on. Also desired: knowledge of Quicktime and Midi.


Any recommendations would be most welcome! Thanks.

Fred Moyer

___
use-revolution mailing list
use-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: Is onrev down?

2010-04-05 Thread Jerry Daniels
Same here. Up and down. No pattern to it. 

On Apr 5, 2010, at 5:17 PM, Bob Sneidar b...@twft.com wrote:

 Um... perhaps a foot is?
 
 Bob
 
 
 On Apr 5, 2010, at 2:13 PM, Jerry J wrote:
 
 Freyr is working fine for me too, but I'm getting a lot of duplicate emails, 
 sometimes separated by a few hours. Something's afoot!
 
 Jerry Jensen
 
 ___
 use-revolution mailing list
 use-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: Is onrev down?

2010-04-05 Thread Jerry Daniels
I should note that it onlyseems to be the FTP connections that are at fault. 
HTTP cruising right along. 

On Apr 5, 2010, at 6:08 PM, Jerry Daniels jerry.dani...@me.com wrote:

 Same here. Up and down. No pattern to it. 
 
 On Apr 5, 2010, at 5:17 PM, Bob Sneidar b...@twft.com wrote:
 
 Um... perhaps a foot is?
 
 Bob
 
 
 On Apr 5, 2010, at 2:13 PM, Jerry J wrote:
 
 Freyr is working fine for me too, but I'm getting a lot of duplicate 
 emails, sometimes separated by a few hours. Something's afoot!
 
 Jerry Jensen
 
 ___
 use-revolution mailing list
 use-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


[ANN] The Slug's color picker is on the road again for beta test

2010-04-05 Thread zryip theSlug
Dear friends,

A new version of the Slug's color picker is available for beta test on
my website.

http://www.aslugontheroad.co.cc/index.php?option=com_phocadownloadview=categoryid=2:toolsItemid=63

What's new in the 0.2 ß version:
- Add the possibility to choose the color of the selected objects
(red, system color or custom color)
- Add the possibility to define the default color mode : web or RGB
- Hold down the mouse on the picker to dock / undock it with the rev
tool palette. Wait until the hand cursor appears, then move the picker
to undock it. To dock the picker again, wait the hand cursor and move
the picker in the rev tools palette.

Features:
- Pick a color from the content of your screen.
- Apply a background and / or a border color to a control by drag  drop.
- Apply a background color to a stack by drag  drop.
- During the drag, a focus indicates which controls will be colorized.
- Apply the selected color to the RR tools.
- Choose between RGB or Web color format.
- Edit the color value in a field.

I'm waiting for your feedbacks and bugs report ;)

TIA


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


Re: Is onrev down?

2010-04-05 Thread Jerry J
HTTP is fine for me too, but IMAP mail is a mess. Multiple and/or very late 
deliveries. I don't use their SMTP.

On Apr 5, 2010, at 4:14 PM, Jerry Daniels wrote:

 I should note that it onlyseems to be the FTP connections that are at fault. 
 HTTP cruising right along. 
 
 On Apr 5, 2010, at 6:08 PM, Jerry Daniels jerry.dani...@me.com wrote:
 
 Same here. Up and down. No pattern to it. 
 
 On Apr 5, 2010, at 5:17 PM, Bob Sneidar b...@twft.com wrote:
 
 Um... perhaps a foot is?
 
 Bob
 
 
 On Apr 5, 2010, at 2:13 PM, Jerry J wrote:
 
 Freyr is working fine for me too, but I'm getting a lot of duplicate 
 emails, sometimes separated by a few hours. Something's afoot!
 
 Jerry Jensen
 
 ___
 use-revolution mailing list
 use-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

___
use-revolution mailing list
use-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: Is onrev down?

2010-04-05 Thread Sarah Reichelt
On Tue, Apr 6, 2010 at 6:19 AM, Jim Lambert j...@netrin.com wrote:
 Anyone else having difficulty logging into onRev cPanel, using the on-rev 
 app, or using on-rev mail?

Everything is working on odin: http, ftp, pop, smtp.

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: Is onrev down?

2010-04-05 Thread Jim Lambert
Thanks to all who responded.

The Freyr server was a bit flaky earlier today, but now all seems normal.
All other onRev servers reportedly weren't affected.

Thanks, too, to runrev (or the hosting company, or both!) for rectifying things.

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


Why is ComboBox button never transparent?

2010-04-05 Thread Bill Vlahos
Regardless of the Opaque setting, a ComboBox button is never transparent. Is 
this a bug or is there some other way I can make the button transparent?

Bill Vlahos
_
InfoWallet (http://www.infowallet.com) is about keeping your important life 
information with you, accessible, and secure.

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


Grouping cloned objects

2010-04-05 Thread Jeffrey Massung
Sorry if this is in the documentation and I just haven't seen it, but...

I have a group of objects that - at runtime, I'll be cloning. Simple enough, 
but when I clone it, I'd also like to add some objects to the group, but I 
haven't found any simple way of adding objects to an already existing group via 
code at runtime.

Is there a simple way of doing this other than getting all the controls in the 
group, selecting them (and the new objects) and regrouping the controls?

Thanks!

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


Re: Grouping cloned objects

2010-04-05 Thread J. Landman Gay

Jeffrey Massung wrote:

Sorry if this is in the documentation and I just haven't seen it,
but...

I have a group of objects that - at runtime, I'll be cloning. Simple
enough, but when I clone it, I'd also like to add some objects to the
group, but I haven't found any simple way of adding objects to an
already existing group via code at runtime.

Is there a simple way of doing this other than getting all the
controls in the group, selecting them (and the new objects) and
regrouping the controls?


If it's an existing object:

  copy obj to grp group specifier

  i.e.: copy btn example to grp 1

If you need a new control:

  create obj in group group specifier

  i.e.: create btn example in grp clonedGroup


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