ExtendScript for Updating Links on InDesing 2014

Hello everybody
I am using this a script to update the image links inside my INDD files, but I am unable to use it on my inDesign 2014. Does anybody know what changed on the latest version that the method update(); is no longer updating the links?
Here follows the code I have done to update the links
app.scriptPreferences.userInteractionLevel = UserInteractionLevels.NEVER_INTERACT; 
var numberOfEntriesFound = 0;
start();
function start() {
    var targetFolder = Folder.selectDialog("Select a magazine folder to search for INDD files:");
    var targetFolderPath;
    if (targetFolder != null) {
        targetFolderPath = targetFolder.fsName;
    } else {
         exit();
    var topFolder = (new Folder(targetFolderPath));
    forEachDescendantFile(topFolder, doStuffIfdocument);
    if (numberOfEntriesFound == 0) {
         alert('Process finsihed: No INDD were found under the given folder.');
    } else {
         alert('Process finsihed: ' + numberOfEntriesFound + ' INDD files were updated.');
function forEachDescendantFile(folder, callback) {
    var aChildren = folder.getFiles();
    for (var i = 0; i < aChildren.length; i++) {
        var child = aChildren[i];
        if (child instanceof File) {
            callback(child);
        } else if (child instanceof Folder) {
            this.forEachDescendantFile(child, callback);
        } else {
            throw new Error("The object at \"" + child.fullName + "\" is a child of a folder and yet is not a file or folder.");
function doStuffIfdocument(oFile) {
    if (matchExtension(oFile, "indd")) {
        numberOfEntriesFound++;
        var document = app.open(oFile);
        try {
            doStuff(document);
        } finally {
            document.close(SaveOptions.YES);
function doStuff(document) {
    document.links.everyItem().update();
/*********** HELPERS FUNCTIONS ********************/
* Returns true if the name of the given file ends in the given extension. Case insensitive.
* @param {File} iFile
* @param {String} sExtension The extension to match, not including the dot. Case insensitive.
* @return {boolean}
function matchExtension(iFile, sExtension) {
    sExtension = "." + sExtension.toLowerCase();
    var displayName = iFile.displayName.toLowerCase();
    if (displayName.length < sExtension.length) {
        return false;
    return displayName.slice(-sExtension.length) === sExtension;

Hi,
I have checked your code in InDesign 2014, it is working fine.
Could you please post the error screenshot.
Vandy

Similar Messages

  • CS3 Server Behavior for Update Links

    Hi,
    Here's something I noticed. The following JS code works on the desktop but won't work correctly on the server:
    for(myLinkCounter = 0; myLinkCounter < myDoc.links.length; myLinkCounter ++) {
    var myLink = myDoc.links.item(myLinkCounter);
    myLink.update();
    Conversely:
    for(myLinkCounter = 0; myLinkCounter < myDoc.links.length; myLinkCounter ++) {
    var myLink = myDoc.links.firstItem();
    myLink.update();
    works on the server but not the desktop. And, come to think of it, I think that was CS2 behavior. hmmm...
    -Nissan

    The script is doing exactly what you are telling it to do.  By having the user leave the password blank, it is updating the database with the "blank" passsword.
    In the form field containting the password field, put the password in as the default value from the database.  You can do that by clicking on the form field and then selecting on dynamic.  From there select the field that contains your password.  From there make sure to mark the form field as a password so the password is hidden.  You may also want to make a verify password form field as well with the same default value.  That way when the user changes the password they have to change it on both.
    If you have dreamweaver cs3 or cs4 or cs5 you can use the spry form validation and have it compare two form fields to make sure they match.  If they dont match it wont let the user complete the form.
    If you have an older version of dreamweaver you can download and use the yaromat form validation extension.  It is a free extension.

  • [Req.] script for updating links in Indesign using spotlight

    hi,
    i've got a challange, can somebody please help me?
    I'm a graphic designer from holland and I work with lots of Indesign documents
    whose links are missing because they are moved, so they are somewhere on our server.
    I have several scripts to relink missing links but they are slow,
    because they search every directory and every subdirectory. This takes a while.
    The search engine from apple, spotlight, is much much faster.
    So I think i have this brilliant idea, i thought of the following:
    I select one missing link in the linkpanel in Indesign.
    Then I start the script.
    The path of the missing link is copied and trimmed to just the name of the file
    The filename is then copied to the clipboard.
    The script then opens the dialog window to relink the missing link.
    There the name of the picture is pasted in the spotlight search engine.
    There the script stops.
    Click on the correct file (if there are more choises) and the relink is made.
    I think this way of relinking can be much faster.
    And you can also work with pre-defined clever windows (to limit the results), for example:
    - one witch only shows jpg
    - one witch only shows tiff
    - one witch only shows pdf
    I know a tiny little bit of scripting, but this one I cant figure out yet.
    Can somebody give me a help please?
    Kind regards, Eric
    ps. I still work in CS4

    try this,
    could just test it with ID CS3 and Mac OS 10.4.11
    --startpoint here is a selected graphicframe (which of course should inlude the missing link)
    set myFolder to choose folder with prompt "Where to search for the missing link?" --select a mounted volume, folder ...
    set tid to AppleScript's text item delimiters
    set AppleScript's text item delimiters to ":"
    tell application "Adobe InDesign CS3"
                       set myGraphicFilePath to (file path of (item link of (item 1 of all graphics of (item 1 of selection))) as text)
    end tell
    set myGraphicName to text item -1 of myGraphicFilePath
    set myGraphicFilePath to quoted form of POSIX path of myGraphicFilePath
    set AppleScript's text item delimiters to return
    set PathToAllFiles to every text item of (do shell script "mdfind -onlyin '" & quoted form of POSIX path of myFolder & "'" & space & " -name '" & myGraphicName & "'")
    set PathToAllFiles to my cleanList(myGraphicName, PathToAllFiles)
    repeat with i from 1 to count of PathToAllFiles
                       set theItem to (item i of PathToAllFiles)
                       if button returned of (display dialog theItem with title "Relink this file?" buttons {"OK", "Cancel", "Go on"}) is "OK" then
                                                tell application "Adobe InDesign CS3"
                                                                         relink (item link of (item 1 of all graphics of (item 1 of selection))) to POSIX file theItem
                                                end tell
                       end if
    end repeat
    set AppleScript's text item delimiters to tid
    on cleanList(fileName, listOfFilePaths)
                       set myCleanList to {}
                       set AppleScript's text item delimiters to "/"
                       repeat with p from 1 to count of listOfFilePaths
                                                set aName to (text item -1 of (item p of listOfFilePaths))
                                                if aName is equal to fileName then set end of myCleanList to (item p of listOfFilePaths)
                       end repeat
                       return myCleanList
    end cleanList
    Hans-Gerd Classen

  • Intermittent Scan issues for Update Agent

    I am having an issue with SUP/WSUS that I am hoping someone can point me on the right direction on..
    The environment is:
    SCCM 2012 R2 Primary Site Server on Server 2012 R2 Update
    SQL 2012 SP1 on Server 2012 R2 Update (standalone server) that houses the SCCM DB and the WSUS DB.  
    Software Update Point is on Server 2012 R2 Update (standalone) with WSUS roll installed. WSUS is configured for SSL (with "requires ssl" checked on the role) and using port 8531.
    No issues with the SUP install.  The SUP is synchronizing just fine with Microsoft and I am able manage update objects in the SCCM Admin console (create update groups, ADR's, etc.)  
    WSUSCtrl.log:
    Checking for supported version of WSUS (min WSUS 3.0 SP2 + KB2720211 + KB2734608)
    SMS_WSUS_CONTROL_MANAGER 5/27/2014 2:16:03 PM
    3304 (0x0CE8)
    Checking runtime v2.0.50727... SMS_WSUS_CONTROL_MANAGER
    5/27/2014 2:16:03 PM 3304 (0x0CE8)
    Did not find supported version of assembly Microsoft.UpdateServices.Administration.
    SMS_WSUS_CONTROL_MANAGER 5/27/2014 2:16:03 PM
    3304 (0x0CE8)
    Checking runtime v4.0.30319... SMS_WSUS_CONTROL_MANAGER
    5/27/2014 2:16:03 PM 3304 (0x0CE8)
    Found supported assembly Microsoft.UpdateServices.Administration version 4.0.0.0, file version 6.3.9600.16384
    SMS_WSUS_CONTROL_MANAGER 5/27/2014 2:16:03 PM
    3304 (0x0CE8)
    Found supported assembly Microsoft.UpdateServices.BaseApi version 4.0.0.0, file version 6.3.9600.16384
    SMS_WSUS_CONTROL_MANAGER 5/27/2014 2:16:03 PM
    3304 (0x0CE8)
    Supported WSUS version found SMS_WSUS_CONTROL_MANAGER
    5/27/2014 2:16:03 PM 3304 (0x0CE8)
    Attempting connection to local WSUS server
    SMS_WSUS_CONTROL_MANAGER 5/27/2014 2:16:03 PM
    3304 (0x0CE8)
    Successfully connected to local WSUS server
    SMS_WSUS_CONTROL_MANAGER 5/27/2014 2:16:03 PM
    3304 (0x0CE8)
    No changes - local WSUS Server Proxy settings are correctly configured as Proxy Name  and Proxy Port 80
    SMS_WSUS_CONTROL_MANAGER 5/27/2014 2:16:03 PM
    3304 (0x0CE8)
    Attempting connection to local WSUS server
    SMS_WSUS_CONTROL_MANAGER 5/27/2014 2:16:03 PM
    3304 (0x0CE8)
    Successfully connected to local WSUS server
    SMS_WSUS_CONTROL_MANAGER 5/27/2014 2:16:03 PM
    3304 (0x0CE8)
    There are no unhealthy WSUS Server components on WSUS Server SERVER.SUBDOMAIN.DOMAIN.ORG
    SMS_WSUS_CONTROL_MANAGER 5/27/2014 2:16:03 PM
    3304 (0x0CE8)
    Successfully checked database connection on WSUS server SERVER.SUBDOMAIN.DOMAIN.ORG
    SMS_WSUS_CONTROL_MANAGER 5/27/2014 2:16:03 PM
    3304 (0x0CE8)
    The clients are getting the local policy pointing it to the correct URL.  This is also verified in the log:
    LocationServices.log:
    Current AD site of machine is EWJ LocationServices
    5/27/2014 1:45:41 PM 4236 (0x108C)
    Created and Sent Location Request '{3ABC15E0-70D3-4AE6-991C-B6BAF165C808}' for package {729742E6-9B66-4516-8A69-8569560D88C7}
    LocationServices 5/27/2014 1:45:41 PM
    4236 (0x108C)
    Calling back with the following WSUS locations
    LocationServices 5/27/2014 1:45:41 PM
    4236 (0x108C)
    WSUS Path='https://server.subdomain.domain.org:8531', Server='server.subdomain.domain.org', Version='10'
    LocationServices 5/27/2014 1:45:41 PM
    4236 (0x108C)
    Calling back with locations for WSUS request {3ABC15E0-70D3-4AE6-991C-B6BAF165C808}
    LocationServices 5/27/2014 1:45:41 PM
    4236 (0x108C)
    The issue comes into play in the fact that what appears to be about 85-90% of the time, the client scan cycle fails with error 0x80244004.  This is both Windows 7 x86/64 Pro and Windows XP SP3.  The error translates to:
    Same as SOAPCLIENT_CONNECT_ERROR - SOAP client failed to connect to the server.
    Source: Windows Update Agent
    The REALLY bizarre thing is that the OS's are inverted on their failure rates.  Win 7 fails 85-90% of the time, where as Win XP succeeds 85-90% of the time.
    We completely rebuilt the SUP Server (including OS and reconfigured it again for SSL) and alas the issue remains.
    Here's some snippets from the logs files from a machine when it fails:
    ScanAgent.log
    Message received: '<?xml version='1.0' ?>
    <UpdateSourceMessage MessageType='ScanByUpdateSource'>
    <ForceScan>TRUE</ForceScan>
    <UpdateSourceIDs>
    <ID>{729742E6-9B66-4516-8A69-8569560D88C7}
    </ID>
    </UpdateSourceIDs>
    </UpdateSourceMessage>'
    ScanAgent
    5/27/2014 1:45:41 PM 4236 (0x108C)
    *****ScanByUpdateSource request received with ForceReScan=2, ScanOptions=0x0000000a,  WSUSLocationTimeout = 604800
    ScanAgent 5/27/2014 1:45:41 PM
    4236 (0x108C)
    Sources are current, but Invalid. TTL is also invalid.
    ScanAgent 5/27/2014 1:45:41 PM
    4236 (0x108C)
    ScanJob({DDFF8212-94D4-4BDC-8A47-41E203F6AD79}): - - - - - -Locations requested for ScanJobID={DDFF8212-94D4-4BDC-8A47-41E203F6AD79} (LocationRequestID={3ABC15E0-70D3-4AE6-991C-B6BAF165C808}), will process the scan request once locations are available.
    ScanAgent 5/27/2014 1:45:41 PM
    4236 (0x108C)
    *****WSUSLocationUpdate received for location request guid={3ABC15E0-70D3-4AE6-991C-B6BAF165C808}
    ScanAgent 5/27/2014 1:45:41 PM
    4236 (0x108C)
    Sources are current, but Invalid. TTL is also invalid.
    ScanAgent 5/27/2014 1:45:41 PM
    2216 (0x08A8)
    ScanJob({DDFF8212-94D4-4BDC-8A47-41E203F6AD79}): CScanJob::OnScanComplete -Scan Failed with Error=0x80244004
    ScanAgent 5/27/2014 1:45:44 PM
    4236 (0x108C)
    ScanJob({DDFF8212-94D4-4BDC-8A47-41E203F6AD79}): CScanJob::ScheduleScanRetry- ScanRetry Timer task successfully scheduled. Will wake up in next 1800 seconds
    ScanAgent 5/27/2014 1:45:44 PM
    4236 (0x108C)
    ScanJob({DDFF8212-94D4-4BDC-8A47-41E203F6AD79}): CScanJob::OnScanComplete - Scan Retry successfully scheduled
    ScanAgent 5/27/2014 1:45:44 PM
    4236 (0x108C)
    ScanJob({DDFF8212-94D4-4BDC-8A47-41E203F6AD79}): CScanJobManager::OnScanComplete- Scan has failed, scan request will be pending for scan retry cycle.
    ScanAgent 5/27/2014 1:45:44 PM
    4236 (0x108C)
    CScanAgent::ScanCompleteCallback - failed at OnScanComplete with error=0x87d00631
    ScanAgent 5/27/2014 1:45:44 PM
    4236 (0x108C)
    WindowsUpdate.log:
    2014-05-27 13:45:41:482
    2956 8a8
    COMAPI -------------
    2014-05-27 13:45:41:482
    2956 8a8
    COMAPI -- START --  COMAPI: Search [ClientId = CcmExec]
    2014-05-27 13:45:41:482
    2956 8a8
    COMAPI ---------
    2014-05-27 13:45:41:497
    936 ed4
    Agent *************
    2014-05-27 13:45:41:497
    936 ed4
    Agent ** START **  Agent: Finding updates [CallerId = CcmExec]
    2014-05-27 13:45:41:497
    936 ed4
    Agent *********
    2014-05-27 13:45:41:497
    936 ed4
    Agent  * Include potentially superseded updates
    2014-05-27 13:45:41:497
    936 ed4
    Agent  * Online = Yes; Ignore download priority = Yes
    2014-05-27 13:45:41:497
    936 ed4
    Agent  * Criteria = "(DeploymentAction=* AND Type='Software') OR (DeploymentAction=* AND Type='Driver')"
    2014-05-27 13:45:41:497
    936 ed4
    Agent  * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2014-05-27 13:45:41:497
    936 ed4
    Agent  * Search Scope = {Machine}
    2014-05-27 13:45:41:497
    2956 8a8
    COMAPI <<-- SUBMITTED -- COMAPI: Search [ClientId = CcmExec]
    2014-05-27 13:45:44:025
    936 ed4
    PT +++++++++++  PT: Synchronizing server updates  +++++++++++
    2014-05-27 13:45:44:025
    936 ed4
    PT  + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL = https://server.subdomain.domain::8531/ClientWebService/client.asmx
    2014-05-27 13:45:44:056
    936 ed4
    PT WARNING: Cached cookie has expired or new PID is available
    2014-05-27 13:45:44:056
    936 ed4
    PT Initializing simple targeting cookie, clientId = cf0c5d2d-2a04-41a7-8a1b-4182de886397, target group = , DNS name = sccmtstw7x641.subdomain.domain:
    2014-05-27 13:45:44:056
    936 ed4
    PT  Server URL = https://server.subdomain.domain:8531/SimpleAuthWebService/SimpleAuth.asmx
    2014-05-27 13:45:44:056
    936 ed4
    PT WARNING: GetAuthorizationCookie failure, error = 0x80244004, soap client error = 4, soap error code = 0, HTTP status code = 200
    2014-05-27 13:45:44:056
    936 ed4
    PT WARNING: Failed to initialize Simple Targeting Cookie: 0x80244004
    2014-05-27 13:45:44:056
    936 ed4
    PT WARNING: PopulateAuthCookies failed: 0x80244004
    2014-05-27 13:45:44:056
    936 ed4
    PT WARNING: RefreshCookie failed: 0x80244004
    2014-05-27 13:45:44:056
    936 ed4
    PT WARNING: RefreshPTState failed: 0x80244004
    2014-05-27 13:45:44:056
    936 ed4
    PT WARNING: Sync of Updates: 0x80244004
    2014-05-27 13:45:44:056
    936 ed4
    PT WARNING: SyncServerUpdatesInternal failed: 0x80244004
    2014-05-27 13:45:44:056
    936 ed4
    Agent  * WARNING: Failed to synchronize, error = 0x80244004
    2014-05-27 13:45:44:056
    936 ed4
    Agent  * WARNING: Exit code = 0x80244004
    2014-05-27 13:45:44:056
    936 ed4
    Agent *********
    2014-05-27 13:45:44:056
    936 ed4
    Agent **  END  **  Agent: Finding updates [CallerId = CcmExec]
    2014-05-27 13:45:44:056
    936 ed4
    Agent *************
    2014-05-27 13:45:44:056
    936 ed4
    Agent WARNING: WU client failed Searching for update with error 0x80244004
    2014-05-27 13:45:44:071
    2956 8a8
    COMAPI >>--  RESUMED  -- COMAPI: Search [ClientId = CcmExec]
    2014-05-27 13:45:44:071
    2956 8a8
    COMAPI  - Updates found = 0
    2014-05-27 13:45:44:071
    2956 8a8
    COMAPI  - WARNING: Exit code = 0x00000000, Result code = 0x80244004
    2014-05-27 13:45:44:071
    2956 8a8
    COMAPI ---------
    2014-05-27 13:45:44:071
    2956 8a8
    COMAPI --  END  --  COMAPI: Search [ClientId = CcmExec]
    2014-05-27 13:45:44:071
    2956 8a8
    COMAPI -------------
    2014-05-27 13:45:44:071
    2956 8a8
    COMAPI WARNING: Operation failed due to earlier error, hr=80244004
    2014-05-27 13:45:44:071
    2956 8a8
    COMAPI FATAL: Unable to complete asynchronous search. (hr=80244004)
    Log file for contrast on a client when it works:
    ScanAgent.log
    Message received: '<?xml version='1.0' ?>
    <UpdateSourceMessage MessageType='ScanByUpdateSource'>
    <ForceScan>TRUE</ForceScan>
    <UpdateSourceIDs>
    <ID>{729742E6-9B66-4516-8A69-8569560D88C7}
    </ID>
    </UpdateSourceIDs>
    </UpdateSourceMessage>'
    ScanAgent
    5/27/2014 1:43:20 PM 4052 (0x0FD4)
    *****ScanByUpdateSource request received with ForceReScan=2, ScanOptions=0x0000000a,  WSUSLocationTimeout = 604800
    ScanAgent 5/27/2014 1:43:20 PM
    4052 (0x0FD4)
    Sources are current and valid. TTLs are however, invalid.
    ScanAgent 5/27/2014 1:43:20 PM
    4052 (0x0FD4)
    ScanJob({1BF68613-35BB-4627-A3F3-FCA455547578}): - - - - - -Locations requested for ScanJobID={1BF68613-35BB-4627-A3F3-FCA455547578} (LocationRequestID={F6F11712-31EA-49BF-AD63-FF3FEF1BA29C}), will process the scan request once locations are available.
    ScanAgent 5/27/2014 1:43:20 PM
    4052 (0x0FD4)
    *****WSUSLocationUpdate received for location request guid={F6F11712-31EA-49BF-AD63-FF3FEF1BA29C}
    ScanAgent 5/27/2014 1:43:20 PM
    3648 (0x0E40)
    Sources are current and valid. TTLs are however, invalid.
    ScanAgent 5/27/2014 1:43:20 PM
    4052 (0x0FD4)
    ScanJob({1BF68613-35BB-4627-A3F3-FCA455547578}): Performing Full Scan.
    ScanAgent 5/27/2014 1:43:20 PM
    4052 (0x0FD4)
    ScanJob({1BF68613-35BB-4627-A3F3-FCA455547578}): Scan Succeeded, Resetting Source to Current and TTLs to Valid
    ScanAgent 5/27/2014 1:43:35 PM
    3648 (0x0E40)
    ScanJob({1BF68613-35BB-4627-A3F3-FCA455547578}): CScanJob::OnScanComplete - Scan completed successfully, ScanType=1
    ScanAgent 5/27/2014 1:43:35 PM
    3648 (0x0E40)
    ScanJob({1BF68613-35BB-4627-A3F3-FCA455547578}): CScanJobManager::OnScanComplete -ScanJob is completed.
    ScanAgent 5/27/2014 1:43:35 PM
    3648 (0x0E40)
    ScanJob({1BF68613-35BB-4627-A3F3-FCA455547578}): CScanJobManager::OnScanComplete - Reporting Scan request complete to clients...
    ScanAgent 5/27/2014 1:43:35 PM
    3648 (0x0E40)
    - - Calling back to client on Scan request complete...
    ScanAgent 5/27/2014 1:43:35 PM
    3648 (0x0E40)
    CScanAgent::ScanComplete- Scan completion received.
    ScanAgent 5/27/2014 1:43:35 PM
    3648 (0x0E40)
    I have verified there are no proxy settings on any of these devices by running "Netsh winhttp show proxy"
    Current WinHTTP proxy settings:
        Direct access (no proxy server).
    Firewall is OFF on both clients and servers.  There are no WU GPO settings applied.
    Anyone have any clues on where to look next?  I have been scouring the internet for a couple of days now and seems that all roads with this type of error leads back to a proxy issue, but since no proxy's are in play here, hasn't been of much help.  Still
    digging through stuff but if anyone has any pointers on where to look next it would much appreciated!
    Thanks,

    Found this Technet article: http://social.technet.microsoft.com/Forums/ru-RU/a1c81d16-d5d0-4367-bae6-3338aab0633f/client-updates-failing-windowsupdatelog-0x80244004?forum=configmanagersecurity
    I ran a Wireshark trace and received the exact same error on my client.  I have sent this over to the client to take a closer look.  Fingers crossed that this is the issue as it should be a simple fix.  *fingers crossed*

  • Dreamweaver cs6 does not update links when moving files.

    Dreamweaver cs6 does not update links when moving files. I've tried changing my general > settings for "Update links when moving files" to "prompt", and Ive tried "always". Neither work for me. The files are moved fine, but the links don't change. When it's set to "prompt" - I'm never prompted. Is this a bug or is there another setting somewhere?

    MadelineCACA wrote:
    I haven't define a site. I've opened an index.htm file within a folder structure that I have on my MAC. When I moved a  file called art.htm (within the files tab) from a subfolder into the root folder with the index.htm file, it didn't update the image links in art.htm.
    In order for DW to manage links, you absolutely MUST Define a Site...
    http://tv.adobe.com/watch/learn-dreamweaver-cs5/gs01-defining-a-new-site/
    Also, you MUST use the Files tab within DW to move files around within your Defined Site in order for DW to know it needs to update links.

  • Check for updates - no response

    In the last few days I notice that when I click on the "Check for updates" link on the applications tab in iTunes that it will say "accessing itunes store" and then instead of saying updates are or aren't available, it gives me no answer at all, and I have to retry, sometimes multiple times. Anyone else having this problem? Seems to me like an ITMS problem, and not a local problem for me.

    Its not just limited to the app store via itunes either.
    using the remote app on my phone its sometimes very slow to check for updates , its worse in the evening but its nowhere near as fast as it should be , even over wifi.
    It was fine till the start of last weekend ( 19 th ) but since then its been a bit ropey )
    So its not a local issue there must be a fault with it somewhere

  • Updated to Adobe Muse 2014 this morning and have worked in it for the last 8 hours. Now when I try to publish the updated site to Business Catalyst for my client to preview it crashes everytime. I have tried just publishing altered files only, then tried

    Updated to Adobe Muse 2014 this morning and have worked in it for the last 8 hours. Now when I try to publish the updated site to Business Catalyst for my client to preview it crashes everytime. I have tried just publishing altered files only, then tried the whole site again, and then tried publishing as a new site altogether. Thought I would then try to export as HTML in the hope of uploading the files via an FTP client and Muse crashes and locks up again. I am extremely stressed about this as I am in the last few days of of website I have been working on now with no issues since December. We are due to go live and my client needs to see it. I am desperate for an answer. It is not looking good. I am on an Apple Mac and have not had any isses publishing it for the last 6 months. Not very happy to say the least. Need desperate help.

    Hi Zak, I got onto Adobe Customer Care Live Chat this morning and gave them the error message. After some trouble shooting with them it appears the older archived file of the site still publishes. I have now reverted back to the old file and copied and pasted out of the new file and from some ideas given to me by support I am now able to publish to Business Catalyst. It seems there was something corrupt within the new pages added yesterday. I have no idea if this would have still happened if I hadn't updated but I am glad it wasn't a Muse specific problem. I am loving using Muse and the support from Adobe has been excellent. Thanks everyone. By the way I do love the new version and apart from this hick up that lost me a few hours, aged me some more and gave me grey hair I really love Muse. Thanks again.

  • HT201303 I received this update from Apple, but I have no record of altering anything, can you tell me what has been updated, who updated anything, and how was it done?  Hello,  The following information for your Apple ID was updated on 03/22/2014:  Phone

    I received this  update from Apple, but I have no record of altering anything, in particular telephone numbers, can anyone tell me what has been updated, who updated it, and how was entry made to my account?
    Hello,
    The following information for your Apple ID was updated on 03/22/2014:
    Phone number(s)
    If these changes were made in error, please CLICK HERE,  to Cancel this changes withing 24hours..
    This is an automated message. Please do not reply to this email. If you need additional help, visit Apple Support.
    Thanks,
    Apple Customer Support

    This is a user to user forum, so no one here can provide an answer.  You should contact iTunes Support directly.
    Here's how you can do that:  http://www.apple.com/support/itunes/contact/

  • HT4972 Where can I find the link for updating to iOS5 version?

    I have iPad version 4.3.5(8L1) and want update to the recent version. As I understood, has to go to iOS5 first and then further to the latest version. Where can I find the link for updating to iOS5 version? Thank you.

    you have iOS 4... See Here...  http://support.apple.com/kb/HT4972
    OR...
    Connect to iTunes on the computer you usually Sync with and “ Check for Updates “...
    See the Using iTunes Section Here...
    How to update your iPhone, iPad, or iPod touch
    Note:
    The iPad 1 can only update as far as iOS 5.1.1

  • Update of illustrator cc 2014 using Creative Cloud for desktop fails permanently.

    Hello,
    I am trying to update the illustrator cc 2014 using Creative Cloud for desktop. The download fails due to error -60.
    Yesterday I spent few hours on chat with a support repesentative, who directed me to ask ISP for download file size limitation. The ISP responded that there are no limitations of download file at all.
    Any help with direct download instead of the desktop is appreciated.
    Best regards,
    Izidor

    No you have not lost your work. You can still open the old project in CC. Providing you did not overwrite. CC14 project should read Projectname-1. Otherwise try an auto save.
    Try this:
    Error "This project contained a sequence that could not be opened"

  • Global Variable Update for URL Link

    Hello
    I cant seem to find the article anymore and not sure if I was imagining this.
    Within OBIEE when editing a dashboard we can add dashboard objects including a link
    For this link, we can have any web URL we want to redirect to another web page.
    For this URL, is there anyway to declare a static variable for this so we can go to one central location to update the URL?
    Recently I had to go into each dashboard and update the URL manually one by one. Rather avoid this exercise if I can just make one global variable change
    Any ideas?

    So I finally found what I was looking for and it was right in front of my nose
    In the catalog manager there is an option for "XML Search and Replace"
    To update all the URL's across all my dashboards I just needed to use this function
    http://obiee101.blogspot.ca/2010/08/obiee-catalog-search-and-replace.html
    Remember after updating to refresh, or exit and log back into your catalog manager to see the newly updated changes
    Thanks
    Edited by: chillychin on May 17, 2013 2:13 PM

  • I getting mistake for Update Photoshop CC and AE CC, but Photoshop CC(2014) and AE CC is right. Why is happening?

    I getting mistake for Update Photoshop CC and AE CC, but Photoshop CC(2014) and AE CC is right. Why is happening?

    __imaster it looks like you received an error while attempting to apply the update.  I would recommend reviewing your installation logs for the specific error.  You can find details on how to locate and interpret your installation log files at Troubleshoot install issues with log files | CC - http://helpx.adobe.com/creative-cloud/kb/troubleshoot-install-logs-cc.html.  You are welcome to post any specific errors you discover to this discussion.

  • Installing the update to InDesign CC 2014 it only gets to where it says "Finishing," hung up at this point for a week or more. What now?

    Installing the update to InDesign CC 2014 it only gets to where it says "Finishing," hung up at this point for a week or more. What now? In the CC Activity Stream it is not listed as a program I have updated, so I am sure it did not finish. If it is stable as is I do not have to upgrade at this point -- just started an important project and stability is my biggest concern. But I do want to know how to complete installing  this upgrade.
    Thanks,
    Jackie

    Nobody can tell you anything without proper system info or other technical details.
    Mylenium

  • Anyone have an updated link to the unspported drivers for the X-Fi series?

    JAnyone have an updated link to the unspported drivers for the X-Fi series?dI honestly cannot believe what I'm reading about all the people having problems in Windows 7. Having just upgraded to it and being a loyal CL customer since I've been building PCs, decided to upgrade my Audigy 2 and bought an X-Fi Gamer only to be rewarded with the inability to install the drivers, and I find out I'm not the only one and it actually seems...very common...what? Are you even serious Creative? All these posts about people not being able to use your cards with Windows 7 and you don't do a thing? Anyway, if someone has a mirror for the supposedly working unsupported drivers that would be great, every mirror I've found is outdated. If someone has them and they work, great, but I'm seriously never buying one of your products again if this is how you do customer service. If not, newegg's return policy is great, Asus here I come, sooner or later

    Nsame here broo i won't buy ever product from creative company. I realy tought it's best music card ever ( and expensi've for normal beaing ) but they are just funny with their customer support. anyway just pm me with mail adres ill sent you unsuported drivers, or you can download them from my site (but pm me first i need to make that they won't charge you for downloading it )

  • Windows could not search for new updates after applied June 2014 Windows Updates - Error code 80244004

    After applied June 2014 Windows Updates from Microsoft (Not using WSUS server to obtain WU), our Windows Server 2012 R2 and Windows Server 2008 now getting this error message when we perform the "Check for Updates":
    Windows could not search for new updates.  Error code 80244004. 
    Richard

    Hi Richard,
    Just addition, please refer to following KB to reset Windows Update components and monitor the result.
    How do I reset Windows Update components?
    If didn’t use ESET security software, please also refer to following thread and check if can help you.
    Latest
    version of Windows Update causing error 80244004
    Hope this helps.
    Best regards,
    Justin Gu

Maybe you are looking for