Re: Soundoutput Probs

2008-09-17 Thread Nick Guenther
On Tue, Sep 16, 2008 at 1:20 PM, Matthias Reim [EMAIL PROTECTED] wrote:

  Original-Nachricht 
 Datum: Sun, 14 Sep 2008 20:34:28 -0400
 Von: Nick Guenther [EMAIL PROTECTED]
 An: [EMAIL PROTECTED]
 CC: misc@openbsd.org
 Betreff: Re: Soundoutput Probs

 On Sun, Sep 14, 2008 at 6:53 PM,  [EMAIL PROTECTED] wrote:
  Hi all i am new to OpenBSD, installed it, and it looks very interesting,
 i just have one problem... the Sound output.
  this is my card:
 
  # dmesg | grep ac97
  ac97: codec id 0x43585429 (Conexant CX20468 rev 1)
  ac97: codec features reserved, headphone, 18 bit DAC, 18 bit ADC, No 3D
 Stereo
  #
 
  this is my soundcard : Conexant Cx20468


 
  what can i do? i tryed to mute / unmute all devices in gnome it seems
 all ok, when i play a mp3 on Audacious, it shows the lines pumping.. looks ok
 
 
  sry for my bad english.
 

 The very first thing you should do when diagnosing audio problems is
 (just from the terminal, without running gnome or anything)
 $ cat /dev/urandom  /dev/audio
 and see if you get sound

 -Nick
 Hello Nick, thank you for the response, i tryed that, but i dont get a sound. 
 what can i do next? sound is working using a knoppix / backtrack liveCD . 
 something goes wrong for me.
 --

Okay so then your problem is indeed at the OpenBSD-level.

Sometimes the problem is that the sound is there but it's too quiet to
notice. I notice you have a outputs.extamp=off, perhaps turning it on
would help?

I don't know. The only thing you can really do here is try toggling
every option you see until it works. Sorry I can't help any better.
-Nick



Soundoutput Probs

2008-09-14 Thread zm0
->









  
  Soundoutput Probs
  
  
  
  
  
  








	

	misc 

	
		
			-- Thread --
			-- Date --
			





			
		
	



	
	
	





		
			Soundoutput Probs
			zm0
			Sun, 14 Sep 2008 16:08:22 -0700
		


 




<!--
google_ad_client = "pub-7266757337600734";
google_alternate_ad_url = "http://www.mail-archive.com/blank.png";
google_ad_width = 160;
google_ad_height = 600;
google_ad_format = "160x600_as";
google_ad_channel = "8427791634";
google_color_border = "FF";
google_color_bg = "FF";
google_color_link = "006792";
google_color_url = "006792";
google_color_text = "00";
//-->








Soundoutput Probs
zm0
 


Re: Soundoutput Probs
Nick Guenther





 






  
  





Reply via email to



  
  





 
 








 




<!--
google_ad_client = "pub-7266757337600734";
google_alternate_ad_url = "http://www.mail-archive.com/blank.png";
google_ad_width = 160;
google_ad_height = 600;
google_ad_format = "160x600_as";
google_ad_channel = "8427791634";
google_color_border = "FF";
google_color_bg = "FF";
google_color_link = "006792";
google_color_url = "006792";
google_color_text = "00";
//-->








Soundoutput Probs
zm0
 


Re: Soundoutput Probs
Nick Guenther


Re: Soundoutput Probs
Nick Guenther







 






  
  





Reply via email to



  
  





 
 







Re: Soundoutput Probs

2008-09-14 Thread Nick Guenther
var myIFrame = new IFrame({
   src: 'test.html',
   'id' : 'test',
   'name' : 'test',
   styles: {
   width: 800,
   height: 600,
   border: '1px solid #ccc'
   },
   events : {
  'load' : function(){
this.setStyle('height', window.test.getScrollSize().y );
}
   }
})

This isn't a 100% full proof but it should point you in the right direction.
I set both the name and id to the same on the frame because I recall there
is some reference issues with some browsers (IE). I also set the load event.
So when the iframe is loaded I traverse into the frame and find the
ScrollSize height and set the iframe height as such.




On Mon, Sep 15, 2008 at 3:58 AM, websam [EMAIL PROTECTED] wrote:


 I have been trying to find a way to set the height on a iframe
 depending on
 the height of the content in the page i'm loading in the iframe.

 But have not been able to do that. I'm using the iframe class within
 mootools:

 var myIFrame = new IFrame({
src: 'test.html',
styles: {
width: 800,
height: 600,
border: '1px solid #ccc'
}
 });

 Can anyone help me solve this issue ?