Applescript Safari Save Document error

The following applescript command started giving me an error message 3 days ago.   I suspect there was a bug in Apple's last OS software update.
tell application "Safari" to save document 1 in file ((path to desktop as string) & "test")
The error I get is "The document “Start New Discussion : Apple Support Communities” could not be saved as “test”. "  It doesn't seem to matter what document is currently open in Safari nor the type of document.  I first encountered it with a JPEG image.  At that time the code was part of a larger script and the file name included ".jpg" but the error occurs with or without an extension.
I get the same error on my Mac Pro, my MacBook Pro and my wife's Mac Mini.  I believe all 3 Mac's have the must current OS 10.6 updates.
The larger script in question functioned correctly on July 25, 2011, so this must be recent.
Any ideas?
TIA
Rich Cohen

I suspect there was a bug in Apple's last OS software update.
I think you're right.
Any ideas?
Maybe you might want to try the following workaround (which doesn't require that you enable access for assistive devices in the Universal Access System Preference pane):
tell application "Finder"
    set fileExists to file ((path to desktop as text) & "test") exists
end tell
tell application "Safari"
    if not (document 1 exists) then return
    activate
end tell
tell application "System Events"
    keystroke "s" using {command down}
    delay 1 -- might be less
    keystroke "test"
    keystroke "d" using {command down} -- desktop
    keystroke return -- save
    if fileExists then
        delay 1 -- might be less
        keystroke "r" using {command down} -- replace
    end if
end tell

Similar Messages

  • Pages V5 COULDN'T AUTO-SAVE DOCUMENT error message

    Why am I getting this error message when I attempt to save a document, duplicate a document, move a document--"Couldn't Auto-Save Document" I cannot save the document. I originally opened this document from the server computer to my laptop, made changes on the laptop at remote office and now I cannot save it, even to a new location on the laptop.

    Hi.
    I was just now suddenly afflicted by this problem.
    Have new macbook pro retina - iOS X 10.9.2.
    Everything is up to date.
    Even Pages is up to date. checked it (of course), as soon as I started getting the error message every time I tried to save. Even tried saving or 'exporting' to Word, PDF...still same message.
    Now...I recall that any time an app is 'acting up' (i.e. not responding the way it should)...it usually means that it either needs updating, or it has some sort of 'bug' to it.
    If it needs updating...then simply update it. I checked that option...and got message that Pages is indeed up to date.
    So...opted to simply 'force quit' pages (as well as quit many other still-open apps that I wasn't using at the moment...to try to cut down on excess memory being used...thinking that may be part of the problem.
    Also...thought that maybe my hard disk was getting rather full...so opted also to move all my music, movies & pictures to an external hard disk to free up internal storage space (by eventually deleting all after first backing up to external hard disk)...and then of course finally freeing up all space by emptying the trash.
    Then...after force quitting pages (and all other non-used apps at the time)...and still before completing the transfer of all those heavy files to an external hard disk...then I re-opened pages to test it...and 'WHOALA!"...it worked just fine!!!
    So...it seems that this was the solution...at least for me at this moment...to simply force quit the renegade app, and then re-start it.
    If that didn't work, I was going to simply shut down the computer...and do a complete re-start. That is another option that often times gives a new look to life for apps which are acting up.
    OK...just thought to put in my two cents-worth here.
    Hope this helps someone else.
    Regards,
    Balqees Mohammed.

  • AppleScript: Safari - Save As Web Archive

    The title says it all: Can someone tell me please how - most likely via UI scripting, since I can't see anything in the dictionary - I can get Safari to save the front most document as a Web Archive using AppleScript?

    This is one I have recently written that saves all tabs in a window, it remembers the parent folder until next time, and also uses the webarchive  ending when Safari is in doubt. You can set properties for whether you like it to overwrite or not. Please look at Macscripter for any updates.
    property tlvl : me
    # Release 1.0.1
    # © 2012 McUsr and  put in Public Domain under GPL 1.0
    # Please refer to this post: http://macscripter.net/post.php?tid=30892
    property shallClose : false # set this to false if you don't want to close the windows, just saving them
    property dontOverWriteSavedTabs : false # set this to true if you don't want to overwrite already saved tabs in the folder
    script saveTabsInSafariWindowsToFolder
              property parent : AppleScript
              property scripttitle : "SafariSaveTabs"
              on run
                        if downloadWindowInFront() then return 0 # activates Safari
                        local script_cache
                        set script_cache to my storage's scriptCache()
                        set saveFolder to POSIX path of (getHFSFolder({theMessage:"Choose or create folder to save Safari-tabs in.", hfsPath:DefaultLocation of script_cache as alias}))
                        if saveFolder = false then return 0 -- we were obviously mistaken, about what we wanted to do.
                        my storage's saveParenFolderInScriptCache(saveFolder, script_cache)
                        tell application "Safari"
                                  tell its window 1
                                            local tabc, oldidx
                                            set tabc to count tabs of it
                                            if not tlvl's shallClose then
                                                      set oldidx to index of current tab
                                                      tell tab tabc to do JavaScript "self.focus()"
                                            end if
                                            local saveCounter
                                            set saveCounter to 1 -- regulates setting of save folder to only first time in Safari.
                                            repeat while tabc > 0
                                                      local theUrl, theIdx, theProtocol, alreadyClosed
                                                      set {theUrl, theIdx, alreadyClosed} to {URL of its current tab, index of its current tab, false}
                                                      if my isntAduplicateTab(theIdx, it) then
                                                                set theProtocol to my urlprotocol(theUrl)
                                                                if theProtocol is in {"http", "https"} then
                                                                          # save it
                                                                          set saveCounter to my saveCurrentTab(saveFolder, saveCounter)
                                                                else if theProtocol is "file" then
                                                                          # make an alias of it
                                                                          my makeAliasForAFurl(saveFolder, theUrl)
                                                                end if
                                                      else
                                                                if tlvl's shallClose then
                                                                          close current tab
                                                                          set alreadyClosed to true
                                                                end if
                                                      end if
                                                      if not alreadyClosed and tlvl's shallClose then
                                                                close current tab of it
                                                                set tabc to tabc - 1
                                                      else if not tlvl's shallClose then
                                                                set tabc to tabc - 1
                                                                if tabc > 0 then tell tab tabc to do JavaScript "self.focus()"
                                                      end if
                                            end repeat
                                            # move forwards
                                            if not tlvl's shallClose then
                                                      tell tab oldidx to do JavaScript "self.focus()"
                                            end if
                                  end tell
                        end tell
              end run
              to makeAliasForAFurl(destinationFolder, furl)
                        local ti, tids, thefilePath
                        set ti to "file://"
                        set {tids, AppleScript's text item delimiters} to {AppleScript's text item delimiters, ti}
                        set thefilePath to text item 2 of furl
                        set AppleScript's text item delimiters to tids
                        set theFile to POSIX file thefilePath as alias
                        set theFolder to POSIX file destinationFolder
                        tell application "Finder"
                                  make alias at theFolder to theFile
                                  # I don't care if there was one there from before, as it could equally
                                  # be a file with the same name.
                        end tell
              end makeAliasForAFurl
              to saveCurrentTab(destinationFolder, timeNumber)
                        tell application id "sfri" to activate
                        tell application "System Events"
                                  set UI elements enabled to true
                                  tell process "Safari"
                                            keystroke "s" using {command down}
                                            tell window 1
                                                      repeat until exists sheet 1
                                                                delay 0.2
                                                      end repeat
                                                      tell sheet 1
                                                                if timeNumber = 1 then -- We'll set the savepath upon first call
                                                                          keystroke "g" using {command down, shift down}
                                                                          repeat until exists sheet 1
                                                                                    delay 0.2
                                                                          end repeat
                                                                          tell sheet 1
                                                                                    set value of text field 1 to destinationFolder
                                                                                    click button 1
                                                                                    delay 0.1
                                                                          end tell
                                                                end if
                                                                keystroke return
                                                                delay 0.2
                                                                if exists sheet 1 then -- We are being asked if we want to overwrite already saved tab
                                                                          if dontOverWriteSavedTabs then
                                                                                    keystroke return # if it was already saved. We don't overwrite it
                                                                                    click button 3
                                                                          else
                                                                                    keystroke tab
                                                                                    keystroke space # we are  to overwrite
                                                                          end if
                                                                else
                                                                          try
                                                                                    set dummy to focused of sheet 1
                                                                          on error
                                                                                    # click button 1 of panel of application "Safari"
                                                                                    keystroke return
                                                                                    delay 0.2
                                                                                    if exists sheet 1 then -- We are being asked if we want to overwrite already saved tab
                                                                                              if dontOverWriteSavedTabs then
                                                                                                        keystroke return # if it was already saved. We don't overwrite it
                                                                                                        click button 3
                                                                                              else
                                                                                                        keystroke tab
                                                                                                        keystroke space # we are  to overwrite
                                                                                              end if
                                                                                    end if
                                                                          end try
                                                                end if
                                                      end tell
                                            end tell
                                  end tell
                        end tell
                        set timeNumber to timeNumber + 1
                        return timeNumber
              end saveCurrentTab
              on downloadWindowInFront()
                        tell application "Safari"
                                  activate
                                  set tabCount to count tabs of its window 1
                                  if tabCount < 1 then
                                            tell application "SystemUIServer" to activate
                                            activate
                                            return true # Downloads window or somethingelse
                                  end if
                        end tell
                        return false
              end downloadWindowInFront
              on isntAduplicateTab(idxOfCurrentTab, theWin)
                        using terms from application "Safari"
                                  tell theWin
                                            set curTabname to name of tab idxOfCurrentTab
                                            set curTabUrl to URL of tab idxOfCurrentTab
                                            repeat with i from (idxOfCurrentTab - 1) to 1 by -1
                                                      if name of tab i = curTabname and URL of tab i = curTabUrl then return false
                                            end repeat
                                            return true
                                  end tell
                        end using terms from
              end isntAduplicateTab
              on getHFSFolder(R) -- Returns hfsPathAsText
                        -- R : {Amessage:theMessage,hfsPath:aStartPath}
                        local new_path, failed
                        set failed to false
                        tell application "SystemUIServer"
                                  activate
                                  repeat while true
                                            try
                                                      set new_path to (choose folder with prompt (theMessage of R) default location (hfsPath of R) without invisibles) as text
                                            on error e number n
                                                      if n is -128 then
                                                                set failed to true
                                                                exit repeat
                                                      end if
                                            end try
                                            exit repeat
                                  end repeat
                        end tell
                        if failed is true then
                                  return false
                        else
                                  return new_path
                        end if
              end getHFSFolder
              on urlprotocol(anUrl)
                        # returns the protocol of an Url, i.e. http, https, file, localhost etc.
                        local tids, theProtocol
                        set {tids, AppleScript's text item delimiters} to {AppleScript's text item delimiters, "://"}
                        set theProtocol to text item 1 of anUrl
                        set AppleScript's text item delimiters to tids
                        return theProtocol
              end urlprotocol
              to parentfolder for aPath
                        local colons, slashes, origDelims
                        set {colons, slashes} to {false, false}
                        if (offset of ":" in aPath) > 0 then set colons to true
                        if (offset of "/" in aPath) > 0 then set slashes to true
                        if colons and slashes then
                                  return null
                        else if colons then
                                  set origDelims to ":"
                        else if slashes then
                                  set origDelims to "/"
                        else
                                  return null
                        end if
                        local tids
                        set {tids, AppleScript's text item delimiters} to {AppleScript's text item delimiters, origDelims}
                        if aPath = "/" then
                                  -- we return root when we get root
                                  set AppleScript's text item delimiters to tids
                                  return "/"
                        end if
                        local theParentFolder
                        if text -1 of aPath is in {":", "/"} then
                                  set theParentFolder to text items 1 thru -2 of text 1 thru -2 of aPath
                        else
                                  set theParentFolder to text items 1 thru -2 of aPath
                        end if
                        set theParentFolder to theParentFolder as text
                        if slashes and theParentFolder = "" then set theParentFolder to "/"
                        -- sets the root path if we got a folder one level below it
                        if colons and (":" is not in theParentFolder) then set theParentFolder to theParentFolder & ":"
                        -- we return volumename, if we are given volumename
                        set AppleScript's text item delimiters to tids
                        return theParentFolder
              end parentfolder
              script storage
                        property cachespath : ((path to library folder from user domain as text) & "caches:" & "net.mcusr." & scripttitle)
                        on scriptCache()
                                  local script_cache
                                  try
                                            set script_cache to load script alias (my cachespath)
                                  on error
                                            script newScriptCache
                                                      property DefaultLocation : (path to desktop folder as text)
                                                      # edit any of those with default values
                                            end script
                                            set script_cache to newScriptCache
                                  end try
                                  return script_cache
                        end scriptCache
                        to saveScriptCache(theCache)
                                  store script theCache in my cachespath replacing yes
                        end saveScriptCache
                        to saveParenFolderInScriptCache(theFolderToSaveIn, script_cache)
                                  local containingFolder
                                  set containingFolder to (parentfolder of saveTabsInSafariWindowsToFolder for theFolderToSaveIn) & "/"
                                  local theLoc
                                  set theLoc to POSIX file containingFolder as alias
                                  set DefaultLocation of script_cache to theLoc
                                  my saveScriptCache(script_cache)
                        end saveParenFolderInScriptCache
              end script
    end script
    tell saveTabsInSafariWindowsToFolder to run

  • Pages 5.1 giving a 'Couldn't auto-save document' error on OSX Mavericks 10.9.1.

    I was working on a class assignment, which was stored on iCloud and was working great until I noticed that instead of the ' -Edited' tag beside the file name stood a peculiar 'Not Saved' tag. When I tried to manually save the updated version, it's giving me a dialogue box error saying 'Couldn't Autosave document'. I am able to work through the document and make changes and print, but it isn't saving. Even if I try to export its giving me the same Dialogue box error. Please advice, this is the first time I have come across such a problem in using Pages in the last 7 years.
    This is on a mid - 2010 Macbook Pro 13".
    Thank you for considering my question.

    Bah!!! I have only just experienced this issue (along with a billion other issues in Pages, but I'll leave that for another day!).
    Thank you to all the great suggestions here, which didn't quite work, but led me to something that did.
    I tried this and it didn't quite work:
    "Hi! There seems to be a workaround for this (I've had this problem too, you'd think Apple'd sort it out?!?!)
    At the top of your Pages document is the name of your document. Hover your mouse over this briefly and a drop down arrow will appear. From here you can name the document, give it a Tag and choose the save destination. Click this drop down arrow, and select your save destination from another drop down that will apear. After you have clicked on your selected save destination, click away from the drop down. Then, simply save (Cmd+S OR navigate to file>save) and it will have saved for you!"
    But this worked for me:
    I clicked on the drop down arrow, like suggested above, and changed the document name. Then I clicked on the 'Where' drop down menu and went right down the list and clicked on the 'other...' choice right at the bottom of the list. I chose a different location and then clicked 'Move'
    For some unknown reason this worked for me where the other suggestion didn't quite work.
    I've had to find so many work arounds like this in Pages recently, which you shouldn't have to do!
    The only reason why I am persisting with pages is it save my clickable links when exported to PDF, where the Word program doesn't.
    I hope these issues get sorted before I thrown the computer out the window due to pure frustration!

  • Logic can't save document error

    Logic is giving serious problems. I had my project file, a large piece for orchestra, complete balanced in mixing and was just on the point of bouncing when I got error messages that Logic could not save the document. I tried to save it as a new file, as a copy, even as a template. But every time the same message: Logic can't save this file. Then it crashed completely. I lost 4 hours of mixing work today. Very frustrating.
    My hard drive has 430 GB free space so lack of space can't be the problem.

    I'm having the same problem. I could scream my head off—normally I would consider doing so a waste of time, but it's at least as effective as checking the File Info window in the Finder, which is what Logic insists I have to do. I don't know if it matters, but this started happening after upgrading to Lion, which makes all sorts of insufferable changes to modifying files, and in most programs removes the Save As option. Perhaps it should be called Lyin'. Anyway, are you running Lion? And are you getting error messages saying that you don't have proper permissions, and should check the File Info window for the file?

  • ERROR SAVE DOCUMENT IN OFFICE 2013 REMOTE APPS

    HI,
    All my student receive error message when she's try to save document in this document
    - Document redirectec YES!
    - Roaming Profile YES!
    Look this video explain the problems : VIDEO
    If you have any solution your WELCCOME....
    THANK YOU
    SM

    Hi,
    Thank you for posting in Windows Server Forum.
    From the provided video, it appears that user trying to save excel file on local system but the error dialog box says that there is no enough permission for user to perform that action.
    Does this only apply when try to save document or same thing happens for other apps also?
    Have you assign permission to user to save the local file?
    Please check the whether you have not applied any permission to save the user file to users. Also please check the path where they are saving the document have access to that location.
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    TechNet Community Support

  • Xformbuilder error ... Could not save document Name/Name-Schema.xml

    Hello everyone,
    We're using 7.00 SP14 and I have a problem with the xml forms builder on one of our systems. We're having a 3 system landscape - all three are on the same patch level etc.
    I was able to create a new xml form on one machine, unfortunately it doesn't work on our P-system. I tried to create a new form as well as copied an existing one - with the same error result.
    While saving a project the following errors appear:
    The following error occured when saving the schema: Could not save document Name/Name-Schema.xml. Reason: Operation is not supported
    The project could not be saved on the server. Do you want to save a local copy?
    Oct 13, 2008 2:45:43 PM - (ERROR)com.sapportals.wcm.app.xfbuilder.server.ServerManager :Could not serialize document: Operation not supported
    Does anyone know what the problem is? I'd appreciate your help, thanks.
    Sincerely,
    Susanne
    Okay I just found out that it's not possible to create a new folder in KM under xmlforms. That's working on the other 2 systems quite well. I have all the admin roles but somehow somewhere somewho must have restricted that. We found out that ice, etc, runtim, entry points and maybe even a few more aren't setup to create new folders in there. Does anyone know where/how to change that? It doesn't work with Details - permissions etc.
    Edited by: Susanne Zahn on Oct 13, 2008 3:40 PM

    For anyone who's interested in the solution.. there you go.
    14.10.2008 - 17:53:00 CET - Antwort von SAP     
    Dear customer,
    Can you please check whether the repository /etc is in read-only
    mode?
    Please navigate to -
    System Administration -> System Configuration -> Knowledge Management
    -> Content Management -> Repository Managers -> File System Repository
    There you can see the checkbox for "read-only".
    Please insure that this is not ticked. If it is, please uncheck it
    and building/saving the project again.

  • Developers I need an applescript that opens documents in excel from a specified folder and saves them as .xlsx from their current .xlsb

    mule13470 
    Apr 3, 2014 11:12 AM 
    I tried simply renaming them however it just corrupts the files when I do it like that so I need the applescript to open the files in excel and the save them as .xlsx to test I only need it one folder but if it works I'd like to be able to do it for all documents with .xlsb extentions that are in a huge folder with subfolders that contain a mix of .pdf, .docx, .xlsx and .xlsb. Please Help.
    Applescript Editor, Mac OS X (10.6.8) 
    I have this question too (0) 
    Reply
    Categories: Using OS X MavericksTags: mac, help, finder, excel, applescript_editor
    Level 1 (0 points)
    mule13470
    Re: I need an applescript that opens documents in excel from a specified folder and saves them as .xlsx from their current .xlsbApr 3, 2014 11:19 AM (in response to mule13470) 
    In that huge folder I only need the .xlsb files opened and saved to .xlsx not the others, in case that wasn't clear above.

    In that huge folder I only need the .xlsb files opened and saved to .xlsx not the others, in case that wasn't clear above.

  • Unable to save document - Read Only or Open by another user error occurs when PDF is opened from Windows Explorer

    Adobe Pro XI  - using Windows 7 Pro OS
    When a PDF document is opened from Windows Explorer, and pages are added, deleted, notations made, any type of changes, it cannot be saved until Windows Explorer is fully closed.  If you try to save the document, you receive the following error - "The document could not be saved.  The file may be read-only, or another user may have it opened.  Please save the document with a different name or in a differnt folder. "   I have confirmed the document is not read only, it is not open by another user, and it is not open multiple times.  Once you fully close Windows Explorer, and try to save the document, it saves without a problem.
    Are there settings in either Adobe Pro XI or Windows that will allow you to save documents without closing Windows Explorer first?
    Thank you for any assistance you can provide.  This error is a frustration since I open all my documents through Windows Explorer.

    [discussion moved to Creating, Editing & Exporting PDFs forum]

  • An error occurred: Save document failed / An error occurred while saving the document: PATH (HDB 00055)

    Hello Colleagues, I am creating an analysis in build 576, everything goes well, the algorithm calculates the needed values, but when I try to save the analysis, I receive the following error message: "An error occurred: Save document failed / An error occurred while saving the document: <PATH> (HDB 00055)".
    Does anyone know what could cause this error message?
    Thanks a lot for any hint.
    Sergey

    Hi Henry,
    I am using PA 1.0.11 and received this error; any update on this fix for SAP PA. Does this happen for a particular data source.
    I am currently using Excel as source and whenever I try to use this data; I get this even if I move the data to a new file or rename a file. I tried to check the same issue with a different file and it works fine. This file worked fine a day back.
    Please let me know if this is unusual for this version.
    Regards,
    Arvind E

  • Failed to Save Document. and Not Supported. Error Message

    Post Author: dscoiho
    CA Forum: General
    I am using Crystal 10 and SQL Server. I have ran into instances when I try to save a report with data or save as I get Failed to Save Document. and Not Supported. error messages. Does anyone have a clue on why this would be happening and is there a work around.

    Post Author: rhartness
    CA Forum: General
    Has anyone found the answer to this problem?  I am experiencing the exact same issue today.  This is quite frustrating!  If anyone has a clue on how to fix this or how to prevent it from happening again please post a reply.
    I'd hate to lose all of my work over the past hour (I couldn't imagine of loosing a days worth of work like the original poster stated) but if there is no fix, I understand.  However, is there something that I could have done to cause this?  If so, I want to avoid doing it in the future.
    Thanks guys.

  • I can't save documents in Pages.

    I can't save documents in Pages. I get a "file does not exist" error message. I've tried changing the file name, length, and location. To no avail. This is only sporadic.

    Hey fruhulda,
    I have a similar problem although I'm running OSX 10.9.5.  I'v just started to completely remove pages and attempt a reinstall.  I did the search for the plist file.  There was only one file with the com.apple.iwork.pages name but it did not have the .plist extension, even when I checked the info page.  Is this the same file?
    I'm not sure I want to update to Yosemite yet, but it looks like I may have to in order to continue to work with my pages documents, unless the reinstall works.

  • "...not a valid Photoshop document" error when opening Mac cc file on PC

    I get a "Could not complete your request because it is not a valid Photoshop document." error message whenever I try to open up a PSD file created on a Mac using Photoshop CC on my PC using CC. Other people have been able to open the file from the same location, so the files aren't corrupted. Anyone know how to fix this?

    I know this thread is a bit old, but I wanted to share my experience and solution in case anyone else runs into this.
    The other day, I spent many hours editing some photos for a client. I saved them all and closed Photoshop. When I tried to open the .PSDs, they all came up with this "Not a valid Photoshop document" error. I was freaking out. I could see the thunmbnails and previews with the MacOS Finder and could see the images just fine in Lightroom, but couldn't open them in Photoshop CC.
    Finally, I remembered that these were NOT supposed to be .psd files! They were supposed to be TIFFs. What happened was, when I edited them from within Lightroom into Photoshop, they opened as TIFFs. However, when I did "save as", I wanted to name them similarly to some other files I had. I clicked on one of the existing files to copy the file name in the Save As dialog to make it easier to name the new file I was saving, but I didn't realize it was changing the file extention from ".tif" to ".psd" as well. The older MacOS (version 9 and earlier) didn't rely on file extensions fo identifying file types, so it didn't hit me right away that this would be the problem. When I changed the incorrect .psd file extension to .tiff, the files opened in Photoshop just fine.
    SO... if you run into this "Not a valid Photoshop document" error, try figuring out if it's actually another file type (.jpg, .tif, .png, etc) by either getting the file info from another program or just experimenting with different file extensions. Chances are good that your file isn't actually corrupt, but just named improperly!

  • Save document from word into sharepoint library does not work !

    Hi,
    I'm trying to resolve a problem that i have with word and my sharepoint website.
    Some of my users have to open and RDP session on a windows 2008 server and work from there. They open their session with their credential and they do everything they do in local on sharepoint using IE.
    BUT, we have always and ever had an issue on this server as they c'ant save a document (Word or Excel) from office. They have to upload it from sharepoint uising IE. In example, i want to save my document from word into the sharepoint document library I  have
    this error message :
    "Windows doesn't find (http://intranet.sharepoint.com/DocumentLibrary/). Check and retry".
    If I open my sharepoint site and i upload the document it works perfectly. Also if I open and edit an existing document from any library it will work with word. The problem seems to happen when i want to browse sharepoint from word for saving files...
    As this server is a windows 2008, IE version is 9 and the office version is the same as on all computers (Office 2010 SP2 32Bit)
    Any help would by appreciated
    Regards

    Hi,
    I understand you encountered the issue when save document from Office client application to SharePoint 2010 site.
    Is there any Proxy settings in networking side? Please bring up IE > Internet options > Connections > Lan settings. If so, please uncheck options in Proxy server and test the issue again.
    If you have deploy GPO to add SharePoint site into Trusted sites, please check if there is any other GP associated with trusted sites that might affect the issue. You could also remove it from Trusted sites via IE options and test the issue again.
    In addition, please provide more error message to help narrow down the issue, you could locate error information in Event log at least.
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • Flash Cs6 incredibly sluggish save time, & unable to save document as

    I am using Flash CS6, animating on ones with the brush tool.  my timeline is 100 frames long, there arent keyframes on every frame, but there are a lot of them.  my .fla file is 79mb. 
    there is only one thing in my library - a 15 second .wav audio file... 
    Saving the .fla file takes about 2 1/2 minutes!
    after the 2 1/2 minutes I get flashed the "cannot save document as...   please try saving with a different name or on a different volume".
    contrary to the error message the file does in fact save perfectly fine - in that volume with that name.
    what is the deal with the save time being so outrageously long? the program is equally sluggish with copying and pasting keyframes - though thats less of an issue than the save time. 
    please help me, i can send you the flash file if your willing to look at it.
    ps: I tried opening the file in cs5.5 - the save time was slightly faster, but not by much.

    Sujai, here’s what I found:
    1.       The student’s project is 58 mbytes in size. This is mostly because she used the flame deco tool to create a frame-by-frame animation of a rocket.
    2.       At school students have networked folders. The network is 1 gbit, and the server is in the same building.
    3.       It took 3 minutes and 40 seconds to save her project. At the end of the Save operation, we got the error message that it didn’t save properly (And, if we have auto-save on, this happens every 10 minutes). . However, the file was properly saved, and could be opened.
    So, it appears that Flash has problems saving files of this size, at least in our network. This surprises me, because 50 mbytes is not that big.
    I was able to get around this problem by having the student change her flame animation to a movie clip, and Tween the flames. It doesn’t have quite as cool a look as the frame-by-frame, but it’s more efficient (and only 6mbytes in size).
    Thoughts? JR

Maybe you are looking for

  • Travel to US from Aus

    Hi everyone. I want to purchase an Ipad here in Aus. Will I beable to use the 3g service if I get a mini sim card for it. Are all ipads unlocked. Also does anyone know whether there is any issues with the power charger. US is 110v and Aus 240v. I ass

  • Set up the Organizational structure for MSS scenario

    Hi! I would like to set up the Organizational structure for MSS scenario within SAP Portal. Question: 1) How to set up/map real user from SU01 to Manager? (tcode, report) 2) How to mark them as 'Chief' (tcode, report) 3) How to be sure that PA & OM a

  • Oracle 8i Lite Login Problems

    I have installed Oracle 8i Lite on my computer, which has Windows 98. But I have been unable to access the database after trying several combinations of usernames & passwords such as tiger/scott and system/manager, among others. I must be missing a s

  • How can I change default audio / sound output or remove the displayport audio option?

    I upgraded from Mavericks to Yosemite and while I don't have any of the number of issues that see to accompany that move, I've discovered a different one that is not necessarily related to it, but is irritating. 2014 Macbook Pro Retina I use a thunde

  • Have Multiple Sites.  Now Only LAST Updated Website Can Be Accessed!

    Using updated .Mac account and iWeb '08, I have started using a personal domain name with three subdomains, one for each of my websites. PROBLEM. Only the last updated website works. The other two can't be accessed. Prior to using a personal domain n