Beep when done not working

I'm setting preferences in Photoshop CS6 and I'm trying to figure out how "Beep when done" works. Whether this option is on or off doesn't seem to make any difference.  I never hear any beep.  (I'm working on a Mac and I have my volume turned up).

Noel,
Much time has passes, and the brain is not what it was, but I thought that Beep When Done was part of things, at least back to PS version 3.0 (not CS 3), but I could be wrong.
Way back, I was on a hotrod computer, but let's admit, it was 1/1,000th of what most folk purchase at Best Buy today for an "entry-level" computer. I was doing triple-truck ads on it, and it was as stout as was possible, in that day. I had to do a Save_As, and then write that file to tape, before I felt comfortable to continue. We are talking maybe 30 - 45 mins. for that. Beep When Done would wake me up, and I knew that I could then edit some more. Many nights of nodding off at the console, and then grabbing another coffee, for the next operation. If I am wrong, I will bet that it is not off by more than one version.
Now, with workstations being what they are, I cannot remember the last time that I invoked that feature.
Hunt

Similar Messages

  • Case when statement not working

    hi there, I am trying to work out how to get my case statement to work.
    I have got the following code. 
    select pthproto.pthdbo.cnarole.tpkcnarole, pthproto.pthdbo.cnaidta.formataddr as formataddr, cnaidta.dateeffect as maxdate, isnull(cast (pthproto.pthdbo.cnaaddr.prefix1key as varchar (50)),'') + ' ' + isnull(cast (pthproto.pthdbo.cnaaddr.prefix2key
    as varchar (50)),'')+ ' ' + isnull(cast (pthproto.pthdbo.cnaaddr.prefix3key as varchar (50)),'') + ' ' + isnull (cast (pthproto.pthdbo.cnaaddr.houseidkey as varchar (100)),'') + ' ' + isnull (cast (pthproto.pthdbo.cnaaddr.component1
    as varchar (100)),'') + ' ' + isnull (cast (pthproto.pthdbo.cnaaddr.component2 as varchar (100)),'') + ' ' + isnull (cast (pthproto.pthdbo.cnaaddr.component3 as varchar (100)),'') + ' ' + isnull (cast (pthproto.pthdbo.cnaaddr.component4
    as varchar (100)),'') + ' ' + isnull (cast (pthproto.pthdbo.cnaaddr.component5 as varchar (100)),'') as mailaddress, row_number() over(partition by pthproto.pthdbo.cnarole.tpkcnarole order by cnaidta.dateeffect desc) as rn into #address from pthproto.pthdbo.cnarole
    inner join pthproto.pthdbo.cnaidty on cnarole.tfkcnaidty =cnaidty.tpkcnaidty inner join pthproto.pthdbo.cnaidta on cnaidty.tpkcnaidty = cnaidta.tfkcnaidty inner join pthproto.pthdbo.cnaaddr on cnaidta.tfkcnaaddr = cnaaddr.tpkcnaaddr order by cnaidta.dateeffect
    select *, case when mailaddress is not null then mailaddress else formataddr end as test from #address where tpkcnarole = '18306695'
    The case when statement is struggling with how i have created the column mailaddress.  As it does seem to understand when it is null.  In the example I have got there is no value in any of the columns to create
    the mailaddress.  Hence why I am referencing it from elsewhere.  Due to having a way on the system where it picks up data from 2 different places.    The mailaddress is always correct if there is one, hence why
    trying to reference that one first.  So how do i change this case when statement to work ?            

    It's ok I have fixed my own problem
    when
    (mailaddress
    is
    null 
    or mailaddress

    then formataddr
    else mailaddress
    end
    as test
    case

  • Case when then not working

    In my database, two variable ID and time (varchar2) are there. I want to populate another variable using case when then by putting below conditon to convert like this
    But its not working. Can anyone help me
    if time =1 day then '1 Day'
    time > 2 days and time <=7 days then '2 to 7 days'
    time > 8 days and time <=15 days then '8 to 15 days'
    else 'not matching'
    ID Time
    12 1 days
    23 244 days
    12 2 days
    14 4 days
    15 6 days
    17 9 days
    select time,
    case WHEN
    UPPER(Time) = '1 DAY'
    THEN
    '1 day'
    WHEN
    UPPER(Time) Between '2 DAYS' and '7 DAYS'
    THEN
    '2 to 7 days'
    WHEN
    UPPER(Time) Between '8 DAYS' and '15 DAYS'
    THEN
    '8 to 15 days'
    ELSE
    'Not matching'
    END "update time"
    from table1

    900487 wrote:
    In my database, two variable ID and time (varchar2) are there. If you are storing Days in a column store it as NUMBER or INTERVAL data type. The way you have stored the value looks incorrect.
    What you can do is extract the number portion of your time column and apply the CASE statement. Something like this
    SQL> with t
      2  as
      3  (
      4  select 12 id, '1 days' time1 from dual union all
      5  select 23 id, '244 days' time1 from dual union all
      6  select 12 id, '2 days' time1 from dual union all
      7  select 14 id, '4 days' time1 from dual union all
      8  select 15 id, '6 days' time1 from dual union all
      9  select 17 id, '9 days' time1 from dual
    10  )
    11   select id,
    12          time1,
    13          case when time1 = 1              then '1 day'
    14               when time1 between 2 and 7  then '2 to 7 days'
    15               when time1 between 8 and 15 then '8 to 15 days'
    16               else 'not matching'
    17          end "update time"
    18     from (
    19              select id, to_number(regexp_substr(time1, '^[[:digit:]]*')) time1
    20                from t
    21          )
    22  /
            ID      TIME1 update time
            12          1 1 day
            23        244 not matching
            12          2 2 to 7 days
            14          4 2 to 7 days
            15          6 2 to 7 days
            17          9 8 to 15 days
    6 rows selected.

  • Xslt when is not working

    HI,
    my when function is not working fine.
    IF E1EDP20 is existing then
    text = everything OK
    else
    text = not confirmed
    if there are only lines with E1EDP20 missing or existing then the functions is working fine but if the lines are different E1EDP01/E1EDP20 is missing and another line E1DP01/E1EDP20 is existing then the function uses text = everything OK.
    Is that an kontext issue ?
    <xsl:for-each select="ORDERS05/IDOC/E1EDP01">
    <xsl:choose>
        <xsl:choose>
                      <xsl:when test="string-length(//E1EDP20)=0">
                             <div valign="top" align="top" class="event" style="color: #ff0000">
                          <xsl:text>not confirmed</xsl:text>
                    </div>
                   </xsl:when>
                   <xsl:otherwise>
                                   <xsl:text>everything OK</xsl:text>
                   </xsl:otherwise>
        </xsl:choose>
    2. How can is use the text color "Red" without using the div function ?
    Message was edited by:
            Gordon Breuer

    Hi Gordon,
    check out
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
         <xsl:template match="/">
              <output>
                   <xsl:for-each select="//E1EDP01">
                        <xsl:choose>
                        <xsl:when test="count(E1EDP20)!=0">everything ok</xsl:when>
                        <xsl:otherwise>not confirmed</xsl:otherwise>
                        </xsl:choose>
                   </xsl:for-each>
              </output>
         </xsl:template>
    </xsl:stylesheet>
    It is not easy to find out what you like to have as result. Imagine: People in XI forum dont know your daily work...
    Regards,
    Udo

  • What to do when iCloud not working ?, what to do when iCloud not working ?

    First to begin - I am a big iCloud fan. When it's working, nothing beats it
    And then, then there are days like today
    Although the support site for iCloud tells me clearly, that there are no reported problems with iCloud at this time - I cannot load for instance Mail, Contacts, Calendar, Notes - consistently over some hours - and yes, I have reported this to Apple - consistently - over the last few hours.
    One asks oneself how long the site takes to register problems.
    Additionally accessing Apple support sites (including this one) has proved incredibly slow this evening - as if the problem were a more general one ( ? )
    The most frustrating aspect of iCloud downtime for me is, that when I make changes in "Contacts" and sometimes in "Calendar" on my computer - they are sometimes not saved when iCloud is down.
    It is a pattern I have noticed repeatedly over the last year.
    Can anyone suggest ways to ensure this does not happen - there being no "save" function in "Contacts" or in "Calendar"
    (would this not perhaps be a useful addition ? - particularly at the times that the iCloud is down)
    Thank you
    Znon
    OSX 10.8.3, Mac Book Pro 13" late 2012, Safari 6.0.3

    Welcome to the Apple Community.
    First check that all your settings are correct, that reminders syncing (calendars on a computer) is checked on all devices (system preferences > iCloud on a mac and settings > iCloud on a iPhone, iPad or iPod).
    Make sure the reminders you are adding are added to your 'iCloud' account and not an 'On My Mac', 'On My Phone'  or other non iCloud account (you can do this by checking in accounts on an iOS device by tapping the icon with three lines in the top left corner of the screen, or the right side panel by clicking on the small triangle to the right of the word 'Reminders' in iCal on a computer), non iCloud reminders will not sync.
    If you are sure that everything is set up correctly and your reminders are in the iCloud group, you might try unchecking reminders syncing (calendars syncing on a computer) in the iCloud settings, restarting your device and then re-enabling notes syncing.

  • HT201210 How to reset ipod when passcode not working?

    I just bought a 4th gen ipod from someone and I need to do a factory reset.  I have tried to reset but it needs a pass code and the girl I bought it from couldn't remember the code to reset.  How can I reset it myself without having to call tech support?

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software

  • The skype video keeps rotating and microphone dones not work

    Hi, I upgraded my laptop (Lenovo P400 touch) to windows 10.  After the upgrade my skype is not working properly.  I have installed the latest version of skype.  My video in the skype keeps rotating and mic in the headphone is not working.  People in the other end are not able to hear my voice propely.What is the solution to this? Karthik

    Try this for the microphone:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00833331&lc=en&cc=us&dlc=en#N74
    For the web cam, go into device manager and see if the web cam is detected and if the driver is loaded.  Check to see if it is disabled or has a yellow ! or red triangle.
    Reminder: Please select the "Accept as Solution" button on the post that best answers your question. Also, you may click on the white star in the "Kudos" button for any helpful post to give that person a quick thanks. These feedback tools help keep our community active, so you receive better answers faster.

  • "DONE" not working in Movie Mode

    I just noticed that when I want to stop my movie, the "done" option is non-responsive. It has worked fine for 4 months. I know you can just hit stop, but I would like to know if this is a bug fix or not. I'm going to call apple, but I just wanted to know if anyone has encountered this problem. I also tried reseting the phone too, but that did not help......
    Message was edited by: icar
    Message was edited by: icar

    Done button works for me.

  • CS6 "Ask When Pasting" not working?

    I have "Ask When Pasting" checked in Color Settings, but I just realized that images are being converted without asking. Is this a bug in CS6?
    If not maybe there is something wrong with my preferences?
    I have to rebuild a document because the base image was an FPO in sRGB that I forgot to convert to my CMYK space. Usually I would be asked if I want to convert when I drag a new layer over which would catch my mistake.
    I tried resetting the dialog by going to Prefences>General>Reset all warning dialogs, which didn't fix it. Howerver, I'm not sure that the reset in Gereral Preferences also affects the Color Settings preferences.
    I also tried closing PS and throwing out Color Settings.csf from my User Preferences. This didn't fix it either. I've never had Color Settings go bad, so I'm not 100% sure this is the right file to remove.
    Can anyone confirm that this works correctly with their copy of CS6? I first saw this when my base document was in sRGB and the layer I dragged over was in "Web Coated SWOP 2006 Grade 3 Paper". I just tried it in the opposite direction with the same results.
    Photoshop CS6 Extended, Version 13.0 x64. Mac OS10.7.4. 17" MacBook Pro 2.5 GHz Quad Core i7, 16GB ram.
    Message was edited by: Ric Cohn

    The dialog has two functions in this case - a warning, and a choice.
    The dialog for a color mode conversion could just be a warning without the choice.  The preference does mention being given the choice, but I think the key thing here is the warning.  It's not like we don't have a way to avoid the warning (by unchecking the preference).  The wording could be changed slightly in the Color Settings description to handle the possibility that you won't be asked - it's kind of silly to think the warning could be suppressed because it's not possible to ask the user to maintain the color numbers.
    An example rewording:
    Profile Mismatches - Ask When Pasting:  When enabled, you will be notified whenever color profile mismatches occur as colors are imported into a document (via pasting, drag-and-drop, etc.0), and (where appropriate) given the option to override the policy's default mismatch behavior.
    -Noel

  • Z30 STA100-5 Assistant "activate with Mute Key" with "use Assistant when locked" not working

    When my phone is connected to bluetooth, the mute key should allow me to use the assistant even when the phone is locked.  The assistant works just fine on bluethooth when the phone is NOT locked but when the phone locks, the mute button does not function.  
    I use picture lock but this all seemed to work in previous versions.
    OS 10.3.1.1767
    Rogers Wireless
    Any ideas?
    Thanks

    May not help but give this a try on the G5:
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger and Leopard.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer. Now restart.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    I would also first turn off both computers then connect the FW cable. If both computers have a FW800 port then you can use a standard FW800 cable. Boot the G5 into TDM. After the TDM screen appears boot the new computer normally.

  • MSI GTX 460 HAWK Talon Attack beeps when is not on load.

    Hello!
    Yesterday I bought MSI GTX 460 HAWK Talon Attack together with FSP Group EVEREST 85PLUS 600W PSU.
    I put it all in my old PC, powered on, but then after a while (when started to install latest MSI drivers for HAWK) my VGA started beeping periodically. These are short beeps in not fixed time interval.
    The most interesting thing is that when I put my card on load, the beeping stops - it beeps only when I am in windows surfing internet etc.
    I have searched through forums and didn't find a clear solution to this problem, but most likely it is a PSU issue.
    MSI states, that card requires 24A on 12V for whole system (Core i7 ...).
    My PSU is capable of the following:
    Output Current:   
     30.0A @ +3.3V DC
        30.0A @ +5V DC
        18.0A @ +12V1 DC
        18.0A @ +12V2 DC
        18.0A @ +12V3 DC
        18.0A @ +12V4 DC
        .8A @ -12V DC
        3.0A @ +5Vsb DC Standby
    Complete configuration of my system is:
    CPU: AMD Athlon 64 x2 6000+ (Will change soon)
    MB: Asus M2N-E (Will change soon)
    RAM: 2 x 2 GB DDR2 800 (Will change soon)
    HDD: 2 SATA drives
    DVD: 1 PATA drive
    VGA: MSI GTX 460 HAWK Talon Attack
    PSU: FSP Everest 85PLUS 600
    Is there a problem with PSU or something else could be wrong?
    Thank you in advance.

    Hi all !
    I also have the annoying beep problem.
    A couple of weeks ago I purchased a GTX460 Talon Attack and as soon as I entered a game I got beeps coming from the card. Tried a 3DMark and Kombustor, same issue. The PC is build by me, had a JeanTech 700W PSU and a GTX260 which gave me no problems, ever. As soon as I replaced it with the 460, the beeping started.
    I returned it to the supplier and i got it back two days ago with the following message:
    "Graphics card passes all Tests with no issues, Tests Run: Crysis WarHead, Furmark, 3Dmark Vantage, AVP, Lost Planet 2, Stone Benchmark MSI Kombuster, Resident Evil Benchmark, ATI Mecha, ATI Ladybug, "
    (Graphics card passes all Tests with no issues, Tests Run: Crysis WarHead, Furmark, 3Dmark Vantage, AVP, Lost Planet 2, Stone Benchmark MSI Kombuster, Resident Evil Benchmark, ATI Mecha, ATI Ladybug, Streetfighter Benchmark and heaven benchmark tool, these were all tested at 1920 x 1200 resolution running maximum settings, tested on DX9, DX10 and DX11 where applicable, there was no issues apparent. There was no bleeping coming from the card)
    Regards,
    Overclockers UK - Support"
    So I bought a brand new Antec TruePower 650W as I thought maybe the PSU does not regulate the voltages properly. No luck, I am still getting beeps but it's very weird. In idle (browsing internet, watching a movie or listening to music) the card is completely silent and sits in 25-29 degrees. As soon as I enter World of Warcraft (for example) and the temperature rises, at 35-36 degrees, I get 4-5 beeps then it stays quiet and I can play normally. (1920x1200 highest settings)
    When I get out of the game and the temp drops, again around 36-35 degrees I get 1-2 beeps and then it remains silent again. No artefacts, errors or freezes. (so far)
    I have seen the round sticker "Warranty void if removed" on the back of the card but I haven't touched it.
    I really don't know what to do with it at this point and it's a very annoying problem, I cannot play anything like this.
    I don't want to RMA it again since it already cost me £30 (transport & testing) plus a brand new PSU. And I love the card, the construction, the looks and the fact that it runs so cold. I just want a "fix".
    Any ideas please ?
    My system:
    Intel i7 920 2.67GHz
    Asus P6T SE X58
    Corsair XMS3 3x2Gb DDR3, 1600MHz, 7-7-7-20, 1T
    Zalman CNPS10X-Quiet
    Creative X-Fi Fatal1ty
    Windows 7 Home Premium 64bit
    Sorry for the wall of text and thanks in advance. I really hope someone has a solution or it's going to be an annoying Christmas. (I'm a technical PC engineer with a fixation for everything to go smooth)

  • Auto Logout when idle not working for transaction iview

    Hi,
    When we open an SAP system using transaction iview and if the screen is idle for 30 mins, auto logout doesn't seem to be work.
    We have verified that rdisp/gui_auto_logout parameter is set to 1800 i.e., 30 min. which a default value. Do we have to activate this service or its activated by default? Let me know if any other parameter needs to be configured.
    Also, is there a way to detect multiple sessions when SAP transaction is executed like the way SAP Logon pad detects when user has logged in into SAP system on different PC?
    We are using NW portal 7.01 and IE 7.
    Regards,
    Vaibhav

    Hi
    the param icm/keep_alive_timeout does only that if within this time interval new data arrives over the network from the partner, the ICM attempts to keep the connection open once it has been established. If, for the existing connection, there is no further communication within the specified time period, the ICM terminates the connection. and this is a static param so if u change this it needs a sys restart and the param rdisp/plugin_auto_logout is also dependent on the above param as then it delets only the user context after the time period is reached not the work process context and the param login/disable_multi_gui_login works only for dialog log ins not for prta and as far as my knowledge there is no other way to detect this but i heard like by doing some code changes u can know something regarding that.
    Thanks & Regards
    Pradeep Srimanthula

  • Skip when shuffling not working

    I have all the songs in one playlist marked "Skip when shuffling" but they play anyway, no matter how many times I un-do and re-do it then re-sync my iPod.

    Let me see if I can be clearer in my description of what's happening, sorry. 
    I put a group of songs into a playlist titled with the genre of the songs.  Then I highlighted all of the songs in that playlist and clicked on options.  Checked off the box "Skip when shuffling" because those songs still appear in my library in general.  This should enable me to play my library and those songs would automatically get skipped everytime (yes, my iPod is in Shuffle mode) but they don't.  They do when playing from iTunes on my desktop but not on my iPod when in the dock.  (Yes, I sync'd my iPod)

  • Apex_Item References don not work in operative application

    Good evening fellow Apex-Developers!
    I just started to import pages from a developer version into the operative version of an application. Everything seems to work except of the pages that contain reports with apex_item references in the queries. The pages are displayed but the reports don't show. In turn I receive the following error:
    ORA-20001: Query must begin with SELECT or WITH
    Of course the statement begins with Select:
    SELECT
    CASE WHEN z.disable_status = 1 then apex_item.hidden(5, cnt_matrix_custom_eval, 'disabled=true') else apex_item.hidden(5, cnt_matrix_custom_eval) end as cnt_matrix_custom_eval, z.lng_baumart, CASE WHEN z.disable_status = 1 then apex_item.select_list_from_lov(6, z.ba_kat, 'BA_KAT', 'disabled= true', 'class="combobox"') else apex_item.select_list_from_lov(6, z.ba_kat, 'BA_KAT','%',
    '%', null,null, null, 'class="combobox"') end as ba_kat, z.BA_GRUPPE, case when z.disable_status = 1 then apex_item.text(4, z.Bemerkung, 70, 256, 'disabled=true') else apex_item.text(4, z.Bemerkung, 70, 256) end as Bemerkung,
    z.LNG_GEBIET, z.LRT_CLASS, decode(z.ba_kat,'H',1,'N',2,'P',3,'S',4,'B',5,'hG',6,'nG',7) as CS, z.disable_status from
    vt_tbl_matrix_custom_eval z
    where lng_gebiet= :p2008_str_gebiet and lrt_class = :p2008_str_lrt and int_be = :p2008_be and int_wg = :p2008_wg and eval_type = 1
    order by csDo you have an idea what could be wrong with my operative application?
    Any help is greatly appreciated!
    Regards,
    Sebastian

    I found the bug!
    I forgot to copy or create an LOV that is being addressed in the sql_statement with "apex_item.select_list_from_lov" to Shared Components!
    As soon as created a list BA_KAT the query worked. Ouch...
    But it might help others too I guess!

  • Preferences - Links - Ask When Modified - not working

    When images are updated shouldn’t you get a dialog box in the program saying that a link had been modified?
    This has now happened to me more then once. When images have been updated on the server I am getting no notice of this in Illustrator. The images are just being linked with no warning that they were modified. Thus if an image changed at all in position I won’t get a warning about this, unless I catch it. And if it is very minor, or if say a small part of the image was masked or removed I would not know.
    I have attached a screen caption of how my settings are in Illustrator… I should be getting a dialog box asking me what to do.

    The dialog has two functions in this case - a warning, and a choice.
    The dialog for a color mode conversion could just be a warning without the choice.  The preference does mention being given the choice, but I think the key thing here is the warning.  It's not like we don't have a way to avoid the warning (by unchecking the preference).  The wording could be changed slightly in the Color Settings description to handle the possibility that you won't be asked - it's kind of silly to think the warning could be suppressed because it's not possible to ask the user to maintain the color numbers.
    An example rewording:
    Profile Mismatches - Ask When Pasting:  When enabled, you will be notified whenever color profile mismatches occur as colors are imported into a document (via pasting, drag-and-drop, etc.0), and (where appropriate) given the option to override the policy's default mismatch behavior.
    -Noel

Maybe you are looking for

  • ITunes Keeps Starting Up Attention Cappy

    Hello All This is the third post I've made about a few issues I'm having with ML and they have gone unoticed. Can someone please give me some help. Cappy if you pick up on this can you please help me? 1. iTunes for some reason keeps opening up on it'

  • Microsoft Word 2011 crash after preview

    I have a problem with Microsoft Word 2011. When I push the button for the preview I have a black screen and after the software crash. I have the following report. I'm sorry for my bad english. Process:         Microsoft Error Reporting [1479] Path:  

  • Different privelege level for Active directory users

    Hi, We have integrated Acs 4.1se with windows active directory.now we need to give certain users full privige to some client devices and only show level privilege to some devices.what is the neccessary steps required in ACS and ACS clients.Also how m

  • PDF's - import and organize large library?

    noob question perhaps... I have on my macbook several thousand single-page PDF files of design jobs that I have done for various clients over the past decade or more. I have them sorted into folders named either by date done (ie - "April 2010") or a

  • How to Save a File form a JAVA code into the CDrive

    Hello, i need to create a file and save it in the Cdrive of my computer. I could create the file and get the command prompt to ask me the file name to save it. However, my problem is that the file is saved in the Cdrive with nothing inside! I can man