Re: iOS Simulater No Sound

2011-10-24 Thread Todd Geist
I have been able to get sound to play in the Simulator with both iOS 4.3 and
iOS 5 sdks.  I think Scotts suggestion solved the problem.  In the system
Prefs Make sure that the Audio in and Out are set to the same device if you
have multiple devices.

But in iOS 5 the sound does not come out of both speakers. The exact same
app run on iOS 4.3  produces sound in both speakers.

Strange

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


Re: iOS Simulater No Sound

2011-10-20 Thread Todd Geist
I was trying to with 4.2, 4.3, and 5.0  none of them were working.  But I
haven't tried Scott's suggestion, yet.  That may have been it.

Todd

On Thu, Oct 20, 2011 at 3:52 PM, J. Landman Gay wrote:

> On 10/20/11 1:34 PM, John Dixon wrote:
>
>>
>> Todd, Jacque...
>> I find that sound plays in the iOS simulator.
>>
>
> It was fuzzy brain syndrome (been ill for a couple of days.) What I should
> have said was that in older versions of the simulator (3.2), there was no
> sound. In 4.2 sound is okay. So the correct question to ask should have
> been: what version of the simulator are you using?
>
>
> --
> Jacqueline Landman Gay | jac...@hyperactivesw.com
> HyperActive Software   | http://www.hyperactivesw.com
>
> __**_
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/**mailman/listinfo/use-livecode
>



-- 
Todd Geist
geist interactive
(805) 419-9382
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: iOS Simulater No Sound

2011-10-20 Thread J. Landman Gay

On 10/20/11 1:34 PM, John Dixon wrote:


Todd, Jacque...
I find that sound plays in the iOS simulator.


It was fuzzy brain syndrome (been ill for a couple of days.) What I 
should have said was that in older versions of the simulator (3.2), 
there was no sound. In 4.2 sound is okay. So the correct question to ask 
should have been: what version of the simulator are you using?


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

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


Re: iOS Simulater No Sound

2011-10-20 Thread Todd Geist
Thanks very much for all your help!

I will try out  Scott's suggestion

Todd

On Thu, Oct 20, 2011 at 11:34 AM, John Dixon  wrote:

>
> Todd, Jacque...
> I find that sound plays in the iOS simulator. After reading your posts I
> quickly tried it with an mp3 file and found no problem. I used the 'copy
> files' pane to bring in the file
> on mouseUp
>   put specialfolderpath("engine") & "/Do You Want To Know A Secret.mp3"
> into musicTrack
>   play musicTrack
> end mouseUp
> and to stop...
> on mouseUp
>   play empty
> end mouseUp
> be well,
> Dixie
>
>
> > Date: Thu, 20 Oct 2011 12:57:16 -0500
> > From: jac...@hyperactivesw.com
> > To: use-livecode@lists.runrev.com
> > Subject: Re: iOS Simulater No Sound
> >
> > On 10/20/11 12:28 PM, Todd Geist wrote:
> > > I am trying to play sound files in the iOS Simulater.  But I am not
> getting
> > > any sound.  When I build it and put it on an iPad the sound works fine.
> IS
> > > there a problem with sound and the simulator.
> >
> > Yes, and it took me ages to figure that out. The simulator just doesn't
> > seem to work with sound.
> >
> > --
> > Jacqueline Landman Gay | jac...@hyperactivesw.com
> > HyperActive Software   | http://www.hyperactivesw.com
>
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>



-- 
Todd Geist
geist interactive
(805) 419-9382
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


RE: iOS Simulater No Sound

2011-10-20 Thread John Dixon

Todd, Jacque...
I find that sound plays in the iOS simulator. After reading your posts I 
quickly tried it with an mp3 file and found no problem. I used the 'copy files' 
pane to bring in the file
on mouseUp
   put specialfolderpath("engine") & "/Do You Want To Know A Secret.mp3" into 
musicTrack
   play musicTrack
end mouseUp
and to stop...
on mouseUp
   play empty
end mouseUp
be well,
Dixie


> Date: Thu, 20 Oct 2011 12:57:16 -0500
> From: jac...@hyperactivesw.com
> To: use-livecode@lists.runrev.com
> Subject: Re: iOS Simulater No Sound
> 
> On 10/20/11 12:28 PM, Todd Geist wrote:
> > I am trying to play sound files in the iOS Simulater.  But I am not getting
> > any sound.  When I build it and put it on an iPad the sound works fine. IS
> > there a problem with sound and the simulator.
> 
> Yes, and it took me ages to figure that out. The simulator just doesn't 
> seem to work with sound.
> 
> -- 
> Jacqueline Landman Gay | jac...@hyperactivesw.com
> HyperActive Software   | http://www.hyperactivesw.com

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


Re: iOS Simulater No Sound

2011-10-20 Thread Scott Rossi
Do you have multiple audio devices connected to your system?  If so, make sure 
both input and output audio settings are set for the same device.

Todd's message confused me because I have an app that I recently updated which 
plays sound that I know was working fine.  Sure enough, when I saw this message 
and went to test it, no sound!  So a little digging turned up the fact the both 
input and output sound devices need to be set to the same device.

Odd, but it's working here for me.

Scott Rossi
Creative Director
Tactile Media, UX Design



On Oct 20, 2011, at 10:57 AM, "J. Landman Gay"  wrote:

> On 10/20/11 12:28 PM, Todd Geist wrote:
>> I am trying to play sound files in the iOS Simulater.  But I am not getting
>> any sound.  When I build it and put it on an iPad the sound works fine. IS
>> there a problem with sound and the simulator.
> 
> Yes, and it took me ages to figure that out. The simulator just doesn't seem 
> to work with sound.
> 
> -- 
> Jacqueline Landman Gay | jac...@hyperactivesw.com
> HyperActive Software   | http://www.hyperactivesw.com
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode

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


Re: iOS Simulater No Sound

2011-10-20 Thread J. Landman Gay

On 10/20/11 12:28 PM, Todd Geist wrote:

I am trying to play sound files in the iOS Simulater.  But I am not getting
any sound.  When I build it and put it on an iPad the sound works fine. IS
there a problem with sound and the simulator.


Yes, and it took me ages to figure that out. The simulator just doesn't 
seem to work with sound.


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

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