Re: record sound with livecode

2010-10-19 Thread Olivier Dussutour

Hello,
I deleted all files tmp.wav on my PC then I tried my script to see if a 
file recorded tmp.wav somewhere but nothing.

as we say in French: me trompe-je quelque part?

Cordialement,
Olivier Dussutour
olivierdussut...@gmail.com
- Original Message - 
From: Thierry th.do...@sunnyrevtalk.com

To: How to use Revolution use-revolution@lists.runrev.com
Sent: Monday, October 18, 2010 2:21 PM
Subject: Re: record sound with livecode



Le 18 oct. 2010 à 08:13, Olivier Dussutour a écrit :

Bonjour,

une petite idee  a verifier ?

es-tu sur de ton chemin d'acces : tmp  .wav

peut-etre que le defaultfoder n'est pas le meme depuis
ta migration en 4.5 ?

Cordialement,
Thierry

ps: Wouahhh. too cl to speak French sometimes :)


Hello,
Sorry! I did not change the subject of the mail! :'-(

My button script:
on mouseUp
hide me
show button Arrêter
record sound file tmp.wav
end mouseUp

under rev 4.0 in both work (standalone and gui)
under LiveCode it does'nt work (standalone and gui)


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


record sound with livecode

2010-10-18 Thread Olivier Dussutour

Hello,
Sorry! I did not change the subject of the mail! :'-(

My button script:
on mouseUp
hide me
show button Arrêter
record sound file tmp.wav
end mouseUp

under rev 4.0 in both work (standalone and gui)
under LiveCode it does'nt work (standalone and gui)

I hope I'm comprehensible :-s

Cordialement,
Olivier Dussutour
olivierdussut...@gmail.com
- Original Message - 
From: J. Landman Gay jac...@hyperactivesw.com

To: How to use Revolution use-revolution@lists.runrev.com
Sent: Saturday, October 16, 2010 11:08 PM
Subject: Re: Free Scribe Assist made in Rev



On 10/16/10 3:00 AM, Olivier Dussutour wrote:

Hello,
I have update to LiveCode 4.5 under Win XP and my program with a command
record sound doesn't work
When I open it under revolution it works very well!?!
An idea? Can you help me or explain me what I can do?
I'm french and beginner so write slowly please ;-)


I am typing with two fingers only. :)

Did you build a standalone in 4.5? Is that what doesn't work? Or do you
mean the stack doesn't work in the IDE?

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


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


Re: Free Scribe Assist made in Rev

2010-10-16 Thread Olivier Dussutour

Hello,
I have update to LiveCode 4.5 under Win XP and my program with a command 
record sound doesn't work

When I open it under revolution it works very well!?!
An idea? Can you help me or explain me what I can do?
I'm french and beginner so write slowly please ;-)

Cordialement,
Olivier Dussutour
olivierdussut...@gmail.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


RevBrowserOpen et mac os x

2010-07-20 Thread Olivier Dussutour

Hello,
I have a problem with this script in Mac osX (it works under windows!?!)
on altBrowserOn
put the windowid of this stack into tWinID
put revBrowserOpen(tWinID, field adresse of card navigateur) into 
sBrowserId

revBrowserSet sBrowserId, showborder,true
revBrowserSet sBrowserId, rect,rect of img browserimage of card 
navigateur

end altBrowserOn

The error is: stack questionneur2_mac: execution error at line 72 
(function: error in function handler) near revBrowserOpen, char 8


Can you help me?

Cordialement,
Olivier Dussutour
olivierdussut...@gmail.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


RevBrowserOpen et mac os x

2010-07-20 Thread Olivier Dussutour
I feel that my mail does not arrive, so I try again

Hello,
I have a problem with this script in Mac osX (it works under windows!?!)
on altBrowserOn
put the windowid of this stack into tWinID
put revBrowserOpen(tWinID, field adresse of card navigateur) into 
sBrowserId
revBrowserSet sBrowserId, showborder,true
revBrowserSet sBrowserId, rect,rect of img browserimage of card 
navigateur
end altBrowserOn

The error is: stack questionneur2_mac: execution error at line 72 
(function: error in function handler) near revBrowserOpen, char 8

Can you help me?

Cordialement,
Olivier Dussutour
olivierdussut...@gmail.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: RevBrowserOpen et mac os x

2010-07-20 Thread Olivier Dussutour
Thank you for your response but I'm a beginner and I don't understand what I 
must to do :'-(

Can I put this script in openstack:

if the externalCommands of stack Home contains browser
then
go ahead
else
show error message
end if

Cordialement,
Olivier Dussutour
olivierdussut...@gmail.com
- Original Message - 
From: Mark Schonewille m.schonewi...@economy-x-talk.com

To: How to use Revolution use-revolution@lists.runrev.com
Sent: Tuesday, July 20, 2010 1:10 PM
Subject: Re: RevBrowserOpen et mac os x



Dear Olivier,

First of all, strings should ALWAYS be surrounded by quotes:

put revBrowserOpen(tWinID, field adresse of card navigateur) into 
sBrowserId


Apparently, the browser external is not loaded. You can check the 
externalCommands of stack Home in the IDE:


if the externalCommands of stack Home contains browser then
  -- go ahead
else
  -- show error message
end if

Are you testing this on your Mac in the IDE or as a standalone?

--
Best regards,

Mark Schonewille

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

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


On 20 jul 2010, at 12:33, Olivier Dussutour wrote:


I feel that my mail does not arrive, so I try again

Hello,
I have a problem with this script in Mac osX (it works under  windows!?!)
on altBrowserOn
put the windowid of this stack into tWinID
put revBrowserOpen(tWinID, field adresse of card navigateur) into
sBrowserId
revBrowserSet sBrowserId, showborder,true
revBrowserSet sBrowserId, rect,rect of img browserimage of card
navigateur
end altBrowserOn

The error is: stack questionneur2_mac: execution error at line 72
(function: error in function handler) near revBrowserOpen, char 8

Can you help me?

Cordialement,
Olivier Dussutour
olivierdussut...@gmail.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: RevBrowserOpen et mac os x

2010-07-20 Thread Olivier Dussutour
OK but why stack Home?

2010/7/20 Mike Bonner bonnm...@gmail.com

 What Mark means is that you can wrap your browser opening statements
 in the 'if' he suggested. It checks to see if the revbrowser external
 is loaded yet.  If you're been using a preopenstack handler to try and
 start up the browser thats the problem, its not there yet. I think
 using openstack is far enough along to be safe, but using the If to
 see if its actually there at the time you're trying to load it. If its
 not there yet, the error message lets you know.



 on altBrowserOn
 if the extternalCommands of stack Home contains browser then

 put the windowid of this stack into tWinID
 put revBrowserOpen(tWinID, field adresse of card navigateur) into
 sBrowserId
 revBrowserSet sBrowserId, showborder,true
 revBrowserSet sBrowserId, rect,rect of img browserimage of card
 navigateur

 else

 answer information The revbrowser external wasn't loaded!

 end if

 end altBrowserOn

 On Tue, Jul 20, 2010 at 1:41 PM, Olivier Dussutour
 olivierdussut...@gmail.com wrote:
  Thank you for your response but I'm a beginner and I don't understand
 what I
  must to do :'-(
  Can I put this script in openstack:
 
  if the externalCommands of stack Home contains browser
  then
  go ahead
  else
  show error message
  end if
 
  Cordialement,
  Olivier Dussutour
  olivierdussut...@gmail.com
  - Original Message - From: Mark Schonewille
  m.schonewi...@economy-x-talk.com
  To: How to use Revolution use-revolution@lists.runrev.com
  Sent: Tuesday, July 20, 2010 1:10 PM
  Subject: Re: RevBrowserOpen et mac os x
 
 
  Dear Olivier,
 
  First of all, strings should ALWAYS be surrounded by quotes:
 
  put revBrowserOpen(tWinID, field adresse of card navigateur) into
  sBrowserId
 
  Apparently, the browser external is not loaded. You can check the
  externalCommands of stack Home in the IDE:
 
  if the externalCommands of stack Home contains browser then
   -- go ahead
  else
   -- show error message
  end if
 
  Are you testing this on your Mac in the IDE or as a standalone?
 
  --
  Best regards,
 
  Mark Schonewille
 
  Economy-x-Talk Consulting and Software Engineering
  Homepage: http://economy-x-talk.com
  Twitter: http://twitter.com/xtalkprogrammer
  KvK: 50277553
 
  Download the Installer Maker plugin for Runtime Revolution at
  http://qurl.tk/ce
 
  On 20 jul 2010, at 12:33, Olivier Dussutour wrote:
 
  I feel that my mail does not arrive, so I try again
 
  Hello,
  I have a problem with this script in Mac osX (it works under
  windows!?!)
  on altBrowserOn
  put the windowid of this stack into tWinID
  put revBrowserOpen(tWinID, field adresse of card navigateur) into
  sBrowserId
  revBrowserSet sBrowserId, showborder,true
  revBrowserSet sBrowserId, rect,rect of img browserimage of card
  navigateur
  end altBrowserOn
 
  The error is: stack questionneur2_mac: execution error at line 72
  (function: error in function handler) near revBrowserOpen, char 8
 
  Can you help me?
 
  Cordialement,
  Olivier Dussutour
  olivierdussut...@gmail.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




-- 
Cordialement,
Olivier Dussutour
___
use-revolution mailing list
use-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: answer file and windows 7

2010-07-12 Thread Olivier Dussutour

Hello,
Thank you for your response but it doesn't work too.
Your code works but win7 chooses the library as default folder and not my 
folder questionnaires
In fact, the two codes works (your and mine) but it requires the 
compatibility xp mode. It's not a solution!

I'm the only one in this case?

Cordialement,
Olivier Dussutour
olivierdussut...@gmail.com
- Original Message - 
From: Mark Wieder mwie...@ahsoftware.net

To: How to use Revolution use-revolution@lists.runrev.com
Sent: Sunday, July 11, 2010 7:46 PM
Subject: Re: answer file and windows 7



Olivier-

Sunday, July 11, 2010, 10:35:09 AM, you wrote:


Hello,
It's the first time that i post a message to the list :-s


Welcome.


I'm french and my english is deplorable, sorry
I have problems with the command answer file and windows 7. It have no 
effect!?!

my code is :
answer file Selectionnez un questionnaire : with
questionnaires/ with type Text|txt
Can you help me? Thank you.


Your English is fine. Much better than my deplorable French. Does this
do what you want?

set the defaultFolder to questionnaires
answer file Selectionnez un questionnaire : with type Text|txt

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


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


answer file and windows 7

2010-07-11 Thread Olivier Dussutour
Hello,
It's the first time that i post a message to the list :-s
I'm french and my english is deplorable, sorry
I have problems with the command answer file and windows 7. It have no 
effect!?!
my code is :
answer file Selectionnez un questionnaire : with questionnaires/ with type 
Text|txt
Can you help me? Thank you.

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