home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Multimed / Multimed.zip / albt171.zip / FAQ.txt < prev    next >
Text File  |  1995-01-26  |  5KB  |  138 lines

  1. ==============================================================
  2.  This FAQ file should help in making Albatros installation
  3.  clearer should the installation program not proceed smoothly.
  4.  
  5.  September '94, Norbert Heller
  6. ==============================================================
  7.  
  8. Q:     I have Albatros installed, but when i try to start it, it says MDM.***
  9.        not found or the program does not start and instead shows a settings
  10.        page.
  11.  
  12. A:     Please install MMPM/2 for OS/2.
  13.  
  14.  
  15. Q:     I have MMPM/2 installed, but Albatros shows "NO DISC" even when there
  16.        is an AUDIO CD in the drive.
  17.  
  18. A:     There are two possible solutions:
  19.        1)  You installed MMPM/2 but forgot to install CD ROM support, just
  20.            reinstall CD ROM support in MMPM/2.
  21.  
  22.        2)  You installed CD ROM support in MMPM/2 but the path is incorrect.
  23.            Check in the MMPM/2 setup to find out if the CD ROM refers to the
  24.            correct drive letter.
  25.  
  26.  
  27. Q:     Albatros starts fine, but there is no sound coming through the speaker,
  28.        even when I turn the Albatros volume knob all the way up.
  29.  
  30. A:     This problem is usually related to your sound card.  When the CD ROM
  31.        wiring is connected to the CD ROM input of your sound card, the input
  32.        of your sound card is sometimes set to "0".
  33.  
  34.        You will have to use a PMMIXER program for your sound card to enable
  35.        the CD ROM Sound input to anything higher than "0".
  36.  
  37.        On an IBM or compatible computer it might help to
  38.        start the Wave Editor
  39.        applet to restore your CD Sound ( sounds strange, but it works ! )
  40.  
  41.  
  42. Q:     Albatros shows a totally black display ( I had Version 1.2 and
  43.        everything was fine until I upgraded to 1.6x ).
  44.  
  45. A:     The color selector has changed. Please go to notebook, page three and
  46.        select COLOR-DEFAULT.  This will restore your colors.
  47.  
  48.  
  49. Q:     What is the Font Developers Kit good for ?
  50.  
  51. A:     To create you own LCD Style Fonts ( It requires the OS/2 Programming
  52.        Toolkit )
  53.  
  54.  
  55. Q:     I had quite a few titles entered in CD EXPLORER, do
  56.        I have to type them  again?
  57.  
  58. A:     No, use the STEALTXT.CMD file for extracting titles
  59.        from the CD Explorer INI file.
  60.  
  61.  
  62. Q:     When I try to select a new color from the color palette and drop it on
  63.        the color preview page, the color of the background
  64.        is changed, but not the foreground.
  65.  
  66. A:     Please use CTRL-Right mouse button to change the foreground color.
  67.  
  68.  
  69. Q:     I am using WARP II Beta and there is no CD ROM Support ?
  70.  
  71. A:
  72.        *) Open a session (Dos or Os/2)
  73.        *) change directory to /mmos2
  74.        *) edit the mmpm2.ini file...
  75.  
  76.        *) add the CDaudio line to the drivers section, e.g.
  77.  
  78.        [Drivers]
  79.        Digitalvideo=IBMDIGVIDPLAYER01
  80.        Waveaudio=IBMWAVESB01
  81.        Sequencer=IBMSEQSB01
  82.        Ampmix=IBMAMPMIXSB01
  83.        Speaker=SPEAKER
  84.        Headphone=HEADPHONE
  85.        Microphone=MICROPHONE
  86.        CDaudio=IBMCD010_1  <---------------------add this
  87.  
  88.        *) add the following to the end of the file...
  89.  
  90.        [IBMCD010_1]
  91.        VERSIONNUMBER=1
  92.        PRODUCTINFO=DEFAULT
  93.        MCDDRIVER=CDAUDIO
  94.        VSDDRIVER=GENCDVSD
  95.        PDDNAME=CDROM
  96.        MCDTABLE=MDM
  97.        RESOURCENAME=F:  <----------------change to your drive letter
  98.        DEVICEFLAG=1
  99.        DEVICETYPE=3
  100.        SHARETYPE=2
  101.        RESOURCEUNITS=1
  102.        RESOURCECLASSES=1,1
  103.        PARMSTRING=Drive=F,Model=DEFAULT DEFAULT1     <----change drive letter
  104.        CONNECTORS=1,6,HEADPHONE,1
  105.        ALIASNAME=Compact Disc
  106.  
  107.        *) Save the file
  108.        *) Shutdown OS/2
  109.        *) Reboot
  110.  
  111.  
  112. Q:     I have troubles with the displayed fonts (cd player looks bad, half of
  113.        the display not visible).
  114.  
  115. A :    This problem is related to your graphic device driver (e.g. new ATI
  116.        mach 32 version 85).
  117.  
  118.        To fix this copy the following lines into a file called "FIXDEV.CMD"
  119.        and run it.
  120.  
  121. /*  Set default font to 10.System Proportional */
  122. call RxFuncAdd "SysIni", "RexxUtil", "SysIni"
  123. AppName = "PM_SystemFonts"
  124. KeyName = "DefaultFont"
  125. FontName = "10.System Proportional Non-ISO"
  126. call SysIni "USER", AppName, KeyName, FontName||"0"x
  127. exit
  128.  
  129.  
  130. /* Set default font to Helv size 8 */
  131. call RxFuncAdd "SysIni", "RexxUtil", "SysIni"
  132. AppName = "PM_SystemFonts"
  133. KeyName = "DefaultFont"
  134. FontName = "8.Helv"
  135. call SysIni "USER", AppName, KeyName, FontName||"0"x
  136. exit
  137. 
  138.