Welcome window problem.  appears every time i save and close a file of photoshop

How to fix a bug regarding welcome window. this window appears every time i save and close a file of photoshop, its started after the last update 2014.2.0

See this document: Troubleshoot Welcome Screen in Photoshop
Scroll all the way down to the bottom. There's a check box "Don't Show Welcome Screen Again"
You can relaunch the screen at a later date by selecting Help>Welcome Screen...
~ Arpit

Similar Messages

  • Save and close InDesign file CS4 JS

    Hi, I need to save and close InDesign file after export pdf was done. Once export is complete the script opens the pdf file and the script gets interrupted. Here what I was trying and I am not sure if it even in the right direction:
    #targetengine "session"
    main();
    function main(){
        var myApplicationEventListener = app.eventListeners.add("afterExport",
        mySaveInDesign, false);
        var myDocumentEventListener = app.documents.item(0).eventListeners.add
        ("afterExport", mySaveInDesign, false);
        app.scriptPreferences.version = 6.0;
    var myEventNames = ["afterExport"] ;
    function mySaveInDesign(myEvent){
        var myDocument = myEvent.parent;
        saveInDesign ();
    function saveInDesign (){
        //myDocument.save(myDocument);
        app.activeDocument.save(myDocument);
        app.activeDocument.close(myDocument);
    Your help is highly appreciated.
    Yulia

    Save either takes no argument (equivalent to the File/Save menu option) or a file path, equivalent to File/Save As.
    So, your save commands aren't going to work as written. You either need just save(); or save(myDocument.fullName);
    Dave

  • Hello, Indesign 6 will not allow me to save and close my file

    Hello, Indesign 6 will not allow me to save and close my file

    Try exporting to .idml. If that works, openthe .idml and save as a new .indd.
    If it doesn't work, force quit ID and then restart. Auto-recovery should kick in and reopen the file at about the last state, then try again.

  • Photoshop Elements 13 crashes my Windows 7 PC every time I edit and try to save a panorama jpg created on a Samsung Galaxy S5 camera phone.

    Photoshop Elements 13 program crashes every time when using my Windows 7 PC to edit and try to save a panorama jpg created on a Samsung Galaxy S5 camera phone.
    However, Photoshop Elements 11 will perform and save the edits OK. What is wrong with version 13?

    Hi,
    Can you please share the logs?
    You can use the Adobe  Log Collector tool (Log Collector Tool) and share the corresponding zip file @ [email protected]
    Thanks,
    Shikha

  • How can I stop the update to Internet explorer 9 pop up window that appears every time I open my Firefox, I don't want Explorer 9. Help!

    It is an annoying popup window that should not be allowed to persist I say no every time. I found a fix for it in the UK but none for Canada.

    hello, can you try to replicate this behaviour when you launch firefox in safe mode once? if not, probably an addon is interfering here...
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]

  • Firefox opens the old browsing window (previous session) every time i try and open a new window, how do I change this back?

    Every time I go to open a new window, the old one will come up instead. For a while it was working fine, then I kept needing the old window and would use the 'restore previous session' feature to access this. However, even after I didn't need it anymore (and without me selecting the feature, it would still open the previous session.

    Tools > Options > General > Startup: "When Firefox Starts": "Show my home page" "Show a blank page"
    It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the files sessionstore.js [2] and sessionstore.bak in the Firefox Profile Folder.
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.<br />
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost, so you will have to create them again (make a note or bookmark them).
    See also:
    * [1] http://kb.mozillazine.org/Session_Restore
    * [2] http://kb.mozillazine.org/sessionstore.js

  • Cloud Closing every time I save and Spontaneously

    Every time I use my trial version of Cloud OR Photoshop, I will be working on a product and the program closes itself out. I am getting so annoyed, I can never save anything before it boots me off the program. HELP!

    See this document: Troubleshoot Welcome Screen in Photoshop
    Scroll all the way down to the bottom. There's a check box "Don't Show Welcome Screen Again"
    You can relaunch the screen at a later date by selecting Help>Welcome Screen...
    ~ Arpit

  • The message 'The application "Preview" can't be opened -1712. appeared every time I tried to open a file (PDF, JPEG and others) Please help

    The message 'The application "Preview" can't be opened. -1712' appears on the screen every time I try to open a document (PDF, JPEG & others).  Anyone has an answer? Thanks.

    Thanks Meg,
    I had tried that, but tried it again. No luck...this is so frustrating! Can anyone help? I tried calling Tech Support but I am one month over the "Phone Support" warranty even though I pay monthly for a continued warranty. GRRRR Any ideas?? Thanks!
    Kimmons09

  • Save and Close excel file opened through OLE

    Hi,
    I have opened an excel file on my desktop and edited it.Now I have to save this file and close it.
    Right now , I am manually saving the file and closing it. So please give the steps to automate the process of saving and closing .
    Please find the code below for opening a file and editing.
    report zkntest2.
    INCLUDE: <line>,
             <icon>,
             <symbol>,
             ole2incl.
    DATA: g_excel_app             TYPE ole2_object,
          g_excel_workbook        TYPE ole2_object,
          g_excel_worksheet       TYPE ole2_object,
          g_excel_usedrange       TYPE ole2_object,
          g_excel_cell            TYPE ole2_object,
          g_excel_return          TYPE ole2_object.
    data :H_MAPL TYPE OLE2_OBJECT,         " list of workbooks
          H_MAP TYPE OLE2_OBJECT,          " workbook
          H_ZL TYPE OLE2_OBJECT,           " cell
          H_F TYPE OLE2_OBJECT.            " font
    CONSTANTS:c_appl(17)              TYPE c VALUE 'Excel.Application'.
    SELECTION-SCREEN BEGIN OF BLOCK blk1 with frame title text-001.
    PARAMETERS p_ofile LIKE rlgrap-filename default 'C:\layout.xls'.
    SELECTION-SCREEN END OF BLOCK blk1.
    CREATE OBJECT g_excel_app c_appl.
    CALL METHOD OF g_excel_app 'Workbooks' = g_excel_workbook.
    CALL METHOD OF g_excel_workbook 'Open'
      EXPORTING #1 = p_ofile.
    SET PROPERTY OF g_excel_app 'Visible' = 1.
    CALL METHOD OF g_excel_app 'Workbooks' = H_MAPL.
    PERFORM FILL_CELL USING  4 9 1 'Kiran'(001).
    PERFORM FILL_CELL USING  5 9 1 'Ref#'(002).
    PERFORM FILL_CELL USING  6 9 1 'Claim#'(003).
    PERFORM FILL_CELL USING  7 9 1 'Location'(004).
    FREE OBJECT g_excel_app.
    FORM FILL_CELL USING I J BOLD VAL.
      CALL METHOD OF g_excel_app 'Cells' = H_ZL EXPORTING #1 = I #2 = J.
      SET PROPERTY OF H_ZL 'Value' = VAL .
      GET PROPERTY OF H_ZL 'Font' = H_F.
      SET PROPERTY OF H_F 'Bold' = BOLD .
    ENDFORM.                    "FILL_CELL

    Try add this code below.
      CALL METHOD OF G_EXCEL_APP 'ActiveWorkbook' = G_EXCEL_WORKBOOK.
      CALL METHOD OF G_EXCEL_WORKBOOK 'SaveAs' EXPORTING #1 = '1.xls'.
      CALL METHOD OF G_EXCEL_WORKBOOK 'Close'.
      CALL METHOD OF G_EXCEL_APP 'Quit'.
      FREE G_EXCEL_APP.

  • Save and close excel file using C#.

    I am not sure why I get the following error for the below code.  Everything seems to work otherwise.
    Error found: System.Runtime.InteropServices.COMException (0x8002000B): Invalid index. (Exception from HRESULT: 0x8002000
    B (DISP_E_BADINDEX))
    Application _application;public void CloseFile(string filename, bool isSaveChanges)
    _application.Workbooks[filename].Close(SaveChanges: isSaveChanges);

    I' work with excel files with connection you can save data and  close connection Easy.
     //connection String for xls file format.
                        if (fileExtension == ".xls")
                            excelConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + fileLocation + ";Extended Properties=\"Excel 8.0;HDR=Yes;IMEX=2\"";
                        //connection String for xlsx file format.
                        else if (fileExtension == ".xlsx")
                            excelConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + fileLocation + ";Extended Properties=\"Excel 12.0;HDR=Yes;IMEX=2\"";
                        //Create Connection to Excel work book and add oledb namespace
                        OleDbConnection excelConnection = new OleDbConnection(excelConnectionString);
                        excelConnection.Open();
    DataTable dt = new DataTable();
                        dt = excelConnection.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
                        if (dt == null)
                            return null;
                        String[] excelSheets = new String[dt.Rows.Count];
                        int t = 0;
                        //excel data saves in temp file here.
                        foreach (DataRow row in dt.Rows)
                            excelSheets[t] = row["TABLE_NAME"].ToString();
                            t++;
                        OleDbConnection excelConnection1 = new OleDbConnection(excelConnectionString);
                        string query = string.Format("Select * from [{0}]", excelSheets[0]);
                        using (OleDbDataAdapter dataAdapter = new OleDbDataAdapter(query, excelConnection1))
                            dataAdapter.Fill(ds);
    Best Regards
    Hakim.

  • How can I fix the problem of a pop up window that appears every time firefix loads titled [Javascript Application] and says "balance.balance is undefined"

    The small "[Javascript Application] and balance.balance is undefined" pop up window is followed by a pop up that shows a caution sign and the number 3. They repeatedly pop back up when I click on the OK button or X, I must click them 10 times before they go away. Then Firefox seems to run normally until I exit and try to return later to Firefox.
    I uninstalled Firefox and reinstalled it with no effect. I have also run any troubleshooter that seemed to remotely refer to this problem with no effect.
    This does not happen when I load Internet Explorer or Google Chrome. Except for this problem, I much prefer Firefox over either one.

    hello, can you try to replicate this behaviour when you launch firefox in safe mode once? if not, probably an addon is interfering here...
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]

  • Print popup appears every time i save biiling document vf01/vf02

    Hi All,
    I am facing following problem in PRD system while saving billing doc via VF01 or VF02.
    Whenever user saves the billing dicument popup for printing that document appears. It does not allow to cancel the print. So user has to print each n every document...
    How to diable this...
    Please consider this at high priority.
    Thanks.

    Thanks all for reply.
    User is facing the mentioned problem only for certain billing documents not for all...
    "Output Immidietly" unchecked has no effect....
    Any other solution??

  • Every time I open and close iPhoto, I get to see the beach ball for over a minute.  What have I done?   27,000 pic

    Not Sure when this started, but the wait is way too long.   I can't tell what it is processing.   Any suggestions would be appreciated.
    Randy

    - What version of iPhoto.   9.2.1 
    - What version of the Operating System.     10.7.3 operating on a new iMac
    - Details. What were you doing when the problem arose?    Opening or Closing iPhoto
    - Did it ever work properly?     Yes it has.   I also have had this issue on previous MacBook
    - Are there error messages?     No error messages
    - What steps have you tried already to solve the issue.     I have taken no steps at this time.

  • Why does my iWorks Keynote freeze every time I try and open ppt files???

    For whatever reason, my iWorks Keynote freezes every single time I attempt to open a powerpoint file or open office file. I was under the impression that keynote would be able to read ppt files but now I am thinking that this was misleading. I have the latest software and upgrade (iWorks 09') and am not sure on how to review my powerpoints for school. Can someone tell me what's going on?

    For whatever reason, my iWorks Keynote freezes every single time I attempt to open a powerpoint file or open office file. I was under the impression that keynote would be able to read ppt files but now I am thinking that this was misleading. I have the latest software and upgrade (iWorks 09') and am not sure on how to review my powerpoints for school. Can someone tell me what's going on?

  • I don't want to see the Create, etc window when opening PS CC2014. How do I stop it from appearing EVERY time I start PS?

    Overall, I like PS CC 2014. However, the most annoying thing is the popup window that appears EVERY time I start the program. It's the one with "Create", etc at the top and links to a bunch of videos. How do I make it so I no longer have to see it any more?

    Scroll to the bottom of the Welcome screen. There you can tick 'Don't show ...'

Maybe you are looking for