Is the result of app.activeDocument.metadataPreferences a XMPMeta object?

Hello again

Hope this isn't a stupid question.

I wondered if the result of

app.activeDocument.metadataPreferences;

is an object of XMPMeta according to "JavaScript Tools Guide.

I would say yes, because I found examples where the previous statement is followed

myDocXMP.setProperty (destNamespace, destNodeName, nodeValue);

But I would also say no, because when I'm looking for

myDocXMP.deleteProperty (destNamespace, 'CreatorTool');

ExtendScript Toolkit, I get an error message saying "myDocXMP.deleteProperty is not a function".

More I read, the more I get confused. Can you help me find a source of information for beginners? Thank you very much.

Giordano

Hello

metadatapreferences does not have a method deleteProperty()

Take a look: http://jongware.mit.edu/idcsjs5.5/pc_MetadataPreference.html

These methods belong to lib: AdobeXMPScript.

It is not as easy to manage as well. Have you tried another tool like exiftool commadline...

Tags: InDesign

Similar Questions

  • Text block path-> the text along the path of the resulting stream

    I am trying to create a text effect in small characters following the outline of the text very large block "BOLD" (see photo).  The idea I had was to create the 'ME' in very large print text.  Then convert this text in object / path using "object-> flatten transparency...->"convert all text to describe.  Then, select this path and use the type tool ' along the way '.  However, when I use this process, the way that results is a path that does not work, that is why the long path Type tool.  Guidance on how to achieve this?  The picture below I just used a pencil to draw the letters (quick and dirty) but the result is choppy, etc..

    Screen Shot 2013-11-04 at 9.43.55 PM.png

    Object > Compound Path > Release.

  • Or is the error: app.activeDocument.saveAs (saveFile, saveOptions, true, Extension.LOWERCASE);

    Hello

    I have a script that works on Mac, I pass it on PC, and here he made a mistake with this message "a general photoshop error occurred. "This is may not be available in this version of photoshop.

    This is my function:

    Function to save files

    function SaveFile() {}

    var app.activeDocument.name = docRef;

    saveFile = new File(destinationFolder+"//"+docRef);

    Alert (SaveFile);

    saveOptions = new JPEGSaveOptions();

    saveOptions.embedColorProfile = true;

    saveOptions.formatOptions = FormatOptions.OPTIMIZEDBASELINE;

    saveOptions.matte = MatteType.NONE;

    saveOptions.quality = 10;

    app.activeDocument.saveAs (saveFile, saveOptions, true, Extension.LOWERCASE);

    app.activeDocument.close (SaveOptions.DONOTSAVECHANGES)

    }

    Can someone help me?

    Thank you

    "saveFile" is defined on line 14

  • [CS5.5] [JS] delete the character before the result of the search

    Hello

    I have a small question.

    I would like to remove all spaces before any text containing the tag with a specific character style.

    Example: "call: [SPACE] [BEGIN TANK STYLE FRUIT] 5 parts [END TANK STYLE FRUIT]".

    I would like to remove the space...

    A piece of my code:

    app.findTextPreferences = NothingEnum.nothing;

    app.findTextPreferences.appliedCharacterStyle = "FRUIT".

    myResultsList = app.activeDocument.findText ();

    for (var k = myResultsList.length - 1; k >-1; k = k - 1) {}

    How can I remove the space before the result?

    }

    Aynone have an idea?

    Thank you

    John

    Hi J & J,

    I have a little problem with the two scripts here.

    Jarek is obviously going to be very fast, but it assumes there is no local formatting on the words of style FRUIT, i.e. No bold / italic / color / highlight replacements applied to these texts. If this is the case then his script (perhaps with a more original original combination) them IS way to go. If it's not!

    John, I don't understand how the script you found could possibly work.

    There are 2 major bugs with it.

    var myCharacters = myResultsList [k] .parentTextFrames [0] .characters;

    myCharacters.itemByRange(myLocation-1,1).remove ();

    should be replaced by

    var myCharacters is myResultsList [k].parentStory.characters;.

    myCharacters.itemByRange (myLocation-1, myLocation) .remove ();

    To the help of parentTextFrames is not a good idea because it will fail on threaded textframe, give it index the character of possiosion since the beginning of the story and not the beginning of the textframe.

    having itemByRange(myLocation-1,1).remove () will withdraw find it until the second character in the story. I understand that you just want to remove the space before the style!

    This brings to a 3rd problem in your script that removes the (fixed once upwards) any character preceding the style regardless of whether or not it is a space.

    In any case my way would be with one of these 2 functions according to the conditions weather there is always a space before the style of fruits or not.

    It will only remove spaces (no returns or other characters) that precede the style.

    The first function 'removeCharacterBeforeStyle' is the equivalent of your corrected script but better (at least in my humble opinion)

    // http://forums.adobe.com/thread/1213463?tstart=0word.
    // Removes  letter / spaces before a character style
    app.doScript("removeAllSpacesBeforeStyle()", ScriptLanguage.javascript, undefined, UndoModes.ENTIRE_SCRIPT);
    //app.doScript("removeCharacterBeforeStyle()", ScriptLanguage.javascript, undefined, UndoModes.ENTIRE_SCRIPT);
    
    function removeCharacterBeforeStyle() {
        // to delete ANY character that precedes the FRUIT style. short and sweet :-)
        app.findTextPreferences = null;
        app.findTextPreferences.appliedCharacterStyle = "FRUIT";
        var  myFinds =  app.documents[0].findText(),
               l = myFinds.length, pos;
        while (l--)   myFinds[l].parentStory.characters.itemByRange (pos = myFinds[l].insertionPoints[0].index-1, pos++).remove();
    };
    
    function removeAllSpacesBeforeStyle() {
        // This will delete spaces (including hairspaces), tabs etc. but not returns that precedes the FRUIT style
        // see http://www.indiscripts.com/post/2011/09/what-exactly-is-a-word for hairspace and other potential issues
        // not so short and not so sweet :-(
        // but does the job without messing up most of the local overrides of the character style |:-)
        var doc = app.documents[0];
        app.findTextPreferences = app.changeTextPreferences = null;
        app.findTextPreferences.findWhat = "^|"; // this is one way of dealing with hairline spaces (warning their format will get messed up)
        app.changeTextPreferences.changeTo = "^4^4^4^4^3";
        doc.changeText();
        app.findTextPreferences = null;
        app.findTextPreferences.appliedCharacterStyle = "FRUIT";
        var  myFinds = doc.findText(),
               l = myFinds.length,
               ps, find_CharacterInStoryIndex, find_WordInStoryIndex, StartOfGap, EndOfGap;
        app.findTextPreferences = app.findGrepPreferences = app.changeGrepPreferences = null;
        app.findGrepPreferences.findWhat = "((?![\\r\\n])\\s)+"; // find spaces that are not returns about the same as "[~m~>~f~S~s~<~/~.~3~4~%\\x{20}~|\\t]+" I have not compaired the speeds
        while (l--)  {
            ps = myFinds[l].parentStory;
            find_CharacterInStoryIndex = myFinds[l].insertionPoints[0].index-1;
            if ((find_WordInStoryIndex = ps.words.itemByRange(ps.words[0], myFinds[l].words[0]).words.length-2) <0) continue;
            // the 'if' checks that the find is not the first word in the story if it was the ALL the spaces in the whole story would be removed
            StartOfGap = ps.words[find_WordInStoryIndex].insertionPoints[-1].index;
            EndOfGap = ps.words[find_WordInStoryIndex+1].index-1;
            // if the FRUIT style starts at the beginning  of a word remove spaces before that word
            if (find_CharacterInStoryIndex == EndOfGap)  ps.characters.itemByRange(StartOfGap,EndOfGap).changeGrep();
        }
        app.findTextPreferences.findWhat = "^4^4^4^4^3"; // put the hairspaces back
        app.changeTextPreferences.changeTo = "^|";
        doc.changeText();
        app.findTextPreferences  = app.changeTextPreferences = app.findGrepPreferences = null;
    }
    

    Concerning

    Trevor

    P.s. If you do not have hairspaces (and you probably haven't) her you could for aesthetic reasons to remove at least 6 lines of code.

  • What is the best way to manage the result variable? (IF THEN GOTO)

    I want to ask a question and then use the response on the position of my result, in a very old language and is no longer used, it would be IF a = 1 THEN GOTO 20, SO a = 2 THEN GOTO 30

    I did experiment with switch, case

    but its not really give me the results that I'm at the end, the conclusion is i do not use the syntax correctly or I use the right method.

    var docRef = app.activeDocument;

    var items = docRef.selection;

    var abRef = docRef.artboards;

    var swatchBoxX =-71.5

    var swatchBoxY = 372.518

    var swatchBoxSize = 22.04

    var totalSelected = items.length;

    newGroup var = docRef.groupItems.add ();

    newGroup.name = "ArtworkGroup";

    app.coordinateSystem = CoordinateSystem.ARTBOARDCOORDINATESYSTEM;

    abRef.setActiveArtboardIndex (0);

    position var prompt = ("Please enter the Position (1) front, (2) = back, (3) = left channel, (4)" = right channel ', '1', 'Print Position' ");

    switch (position) {}

    case 1: swatchBoxX =-71.5.

    break;

    case 2: swatchBoxX =-490;

    break;

    box 3: swatchBoxY = 840 & & swatchBoxX =-490;

    break;

    }

    If (totalSelected > 0) / / check selected objects

    {

    for (var j = 0; j < totalSelected; j ++) //loop through selection

    {

    var tpBox = swatchBoxX +-34.2

    var currentObject = items [j];

    var color = currentObject.fillColor.spot;

    myText = docRef.textFrames.add ();

    myText.contents = color;

    myText.position = [401, swatchBoxX];

    Rect = docRef.pathItems.rectangle (swatchBoxX, swatchBoxY, swatchBoxSize, swatchBoxSize) var;

    swatchBoxX = tpBox

    rect.fillColor = colour.color;

    Rect.stroked = true

    items [j] .duplicate (newGroup, ElementPlacement.PLACEATEND);

    } //end for

    } //end if

    else {}

    Alert ("Please select at least one object");

    }

    newGroup.resize (20,20,true,true,true,true,20,Transformation.CENTER)

    newGroup.position = [160, -130];

    I just need some advice please

    Yep, put your more likely to use the first option, and more add an option 'default' in the end, in the case where a person enters a key out of reach

    default:
         swatchBoxX='whatever you want';
    
  • How the other drive app option to calculate calories? I did 45 minutes yoga with him and he showed the 260 callus which is high of 45 mins of yoga session.

    How the other drive app option to calculate calories? I did 45 minutes yoga with him and he showed the 260 callus which is high of 45 mins of yoga session.

    ISuspect that is not correct.

    Hello

    Saving workouts through the app to drive using others as the type of activity, active calories are estimated at a rate equivalent to a brisk walk or based on the data recorded by the heart rate sensor, according to what is higher.

    The following steps can help to improve the accuracy of the estimates made by your watch:

    • Estimates for calories and other results depend, in part, your personal information. To verify that it is accurate:
      • On your iPhone, in the application of the watch, go to: My Watch (tab) > health > Edit (top-right).
    • While training, to optimize the performance of the heart rate sensor (data from which is used when estimating calories), make sure you wear your watch fits on top of your wrist. Apple suggests that consider you the clamping Strip before starting a workout and it loosen again thereafter.
      • Note that the heart rate sensor is likely to give better results for the workouts that involve rhythmic (such as running) rather than the irregular movements.
    • Calibrate your watch can improve the accuracy of various estimates related to the activity, including estimates of calorie. To calibrate your watch, follow the instructions in the link below support article. You can reset your calibration data and start the process:
      • On your iPhone, in the application of the watch, go to: Watch My > privacy > Motion & Fitness > tap reset Calibration data.

    More information:

    Use of the workout on your Apple Watch - Apple Support

    Your heart rate. What it means, and where on Apple Watch you will find. -Apple Support

    Calibrate your Apple Watch for better accuracy of training and activity - Apple Support

  • iMac is slow and I would like to improve his speed/performance.  Ran ETREcheck - here are the results:

    EtreCheck version: 2.9.12 (265)

    Report generated 2016-05-01 17:52:49

    Download EtreCheck from https://etrecheck.com

    Time 08:31

    Performance: Below average

    Click the [Support] links to help with non-Apple products.

    Click [details] for more information on this line.

    Problem: Computer is too slow

    Hardware Information:

    iMac (21.5 inch, mid 2011)

    [Data sheet] - [User Guide] - [warranty & Service]

    iMac - model: iMac12, 1

    1 2.5 GHz Intel Core i5 CPU: 4 strands

    12 GB of RAM expandable - [Instructions]

    BANK 0/DIMM0

    OK 2 GB DDR3 1333 MHz

    BANK 1/DIMM0

    OK 2 GB DDR3 1333 MHz

    0/DIMM1 BANK

    OK 4 GB DDR3 1333 MHz

    BANK 1/DIMM1

    OK 4 GB DDR3 1333 MHz

    Bluetooth: Old - transfer/Airdrop2 not supported

    Wireless: en1: 802.11 a/b/g/n

    Video information:

    AMD Radeon HD 6750M - VRAM: 512 MB

    iMac, 1920 x 1080

    Software:

    OS X El Capitan 10.11.4 (15E65) - since the start time: about 6 days

    Disc information:

    WDC WD5000AAKS-402AA0 disk0: (500,11 GB) (rotation)

    EFI (disk0s1) < not mounted >: 210 MB

    Recovery HD (disk0s3) < not mounted > [recovery]: 650 MB

    Macintosh HD (disk 1) /: 498,91 go-go (375,32 free)

    Encrypted AES - XTS unlocked

    Storage of carrots: disk0s2 499.25 GB Online

    OPTIARC DVD RW AD - 5690H)

    USB information:

    AudioEngine Audioengine D1

    Computer, Inc. Apple IR receiver.

    Card reader Apple

    Apple Inc. FaceTime HD camera (built-in)

    Apple Inc. BRCM2046 hub.

    Apple Inc. Bluetooth USB host controller.

    Lightning information:

    Apple Inc. Thunderbolt_bus.

    Guardian:

    Mac App Store and identified developers

    Kernel extensions:

    / Library/Application Support/LogMeIn/drivers

    com.logmein.driver.LogMeInSoundDriver [no charge] (1.0.0 - 2012-07-19) [Support]

    / Library/Extensions

    [loading] com.sophos.kext.sav (9.4.52 - SDK 10.9 - 2016-04-05) [Support]

    [no charge] com.sophos.nke.swi (9.4.52 - SDK 10.9 - 2016-04-05) [Support]

    / System/Library/Extensions

    [loading] com.rim.driver.BlackBerryUSBDriverInt (0.0.74 - 2016-04-05) [Support]

    [no charge] com.rim.driver.BlackBerryUSBDriverVSP (0.0.74 - 2016-04-05) [Support]

    Launch system officers:

    [loaded] 8 tasks Apple

    [loading] 153 tasks Apple

    [operation] 73 tasks Apple

    [killed] 4 tasks Apple

    4 processes killed due to lack of RAM

    Launch system demons:

    [loaded] 43 tasks Apple

    [loading] 143 tasks Apple

    [operation] 93 tasks Apple

    [killed] 10 tasks Apple

    10 killed process lack of RAM

    Launch officers:

    [failure] com.adobe.ARMDCHelper.cc24aef4a1b90ed56a... plist (2015-11-07) [Support]

    [operation] com.logmein.logmeingui.plist (02 / 02/2013) [Support]

    com.LogMeIn.logmeinguiagent.plist [no charge] (2013-04-08) [Support]

    com.LogMeIn.logmeinguiagentatlogin.plist [no charge] (2013-04-08) [Support]

    [operation] com.rim.BBAlbumArtCacher.plist (2012-04-19) [Support]

    [operation] com.rim.BBLaunchAgent.plist (2012-04-19) [Support]

    [operation] com.sophos.uiserver.plist (2015-09-26) [Support]

    [operation] net.culater.SIMBL.Agent.plist (2013-04-03) [Support]

    Launch demons:

    [loading] com.adobe.ARMDC.Communicator.plist (2015-11-07) [Support]

    [loading] com.adobe.ARMDC.SMJobBlessHelper.plist (2015-11-07) [Support]

    [loading] com.adobe.fpsaud.plist (2016-04-15) [Support]

    com.LogMeIn.logmeinserver.plist [no charge] (2012-07-19) [Support]

    [operation] com.memeo.Memeod.plist (2009-09-30) [Support]

    [operation] com.rim.BBDaemon.plist (2012-04-19) [Support]

    [operation] com.sophos.common.servicemanager.plist (2016-02-11) [Support]

    User launch officers:

    [failure] com.adobe.ARM. [...]. plist (2013-02-18) [Support]

    [market] com.akamai.single - user - client.plist (2015-09-23) [Support]

    [operation] com.amazon.music.plist (2015-03-07) [Support]

    com.apple.AddressBook.ScheduledSync.PHXC... plist [loading]

    [operation] ws.agile.1PasswordAgent.plist (2014-09-18) [Support]

    Items in user login:

    Hidden OpenDNS Updater Application (/ Applications/OpenDNS Updater.app)

    Nikon Message Center 2 launch application (/ Applications/Nikon/Nikon Message Center 2 software / Nikon Message Center 2.app/Contents/SharedSupport/Launch Nikon Message Center 2.app)

    Eye - Fi Helper Application (/ Applications/Eye-Fi/Eye-Fi Helper.app)

    MemeoAgent Application (/ Library/Application Support/Memeo/Memeo Backup/Agents/MemeoAgent.app)

    Other applications:

    [ongoing] 2BUA8C4S2C.com.agilebits.onepassword4 - helper

    [performance]    P72E3GC48.com.Dashlane.DashlaneAgent

    com [running]. Growl.GrowlHelperApp.96032

    com [running]. Memeo.MemeoAgent.92832

    [ongoing] com.opendns.OpenDNS_Updater.72352

    [ongoing] com.Sophos.AutoUpdate

    [ongoing] com.Sophos.Configuration

    [ongoing] com.Sophos.InterCheck

    [ongoing] com.Sophos.notification

    [ongoing] com.Sophos.scan

    [ongoing] com.Sophos.sxld

    [ongoing] fi.eye.helper.98912

    [loading] 383 tasks Apple

    [operation] 223 tasks Apple

    [killed] 11 tasks Apple

    Plug-ins Internet:

    JavaAppletPlugin: 15.0.1 - 10.11 (2012-08-14) check the version of the SDK

    FlashPlayer - 10.6: 21.0.0.226 - SDK 10.6 (2016-04-25) [Support]

    QuickTime Plugin: 7.7.3 (2016-03-25)

    AdobePDFViewerNPAPI: 15.009.20069 - SDK 10.8 (2015-09-30) [Support]

    Flash Player: 21.0.0.226 - SDK 10.6 (2016-04-25) [Support]

    AdobePDFViewer: 15.009.20069 - SDK 10.8 (2015-09-30) [Support]

    CANONiMAGEGATEWAYDL: 3.1.0.2 (2009-09-08) [Support]

    EPPEX plugin: 3.0.5.0 (2009-07-29) [Support]

    Default browser: 601 - SDK 10.11 (2016-03-25)

    GarminGpsControl: 4.0.2.6 Beta - SDK 10.6 (2012-11-16) [Support]

    iPhotoPhotocast: 7.0 - 10.8 SDK (2013-04-19)

    User Plug-ins internet:

    CitrixOnlineWebDeploymentPlugin: 1.0.104 (2013-04-11) [Support]

    Dashlane: Dashlane 1.0.0 - SDK 10.7 (2014-04-11) [Support]

    Safari extensions:

    Ka-block! -David Graham & Josh Peek - http://kablock.com (2016-04-22)

    AdBlock Ultimate - Secure Download - https://adblockultimate.net/ (2016-02-07)

    Ghostery - GHOSTERY, Inc. - https://www.ghostery.com/ (2016-03-11)

    EverNote Web Clipper - Evernote Corp. - http://evernote.com (2016-02-07)

    Keeper® Password Manager & Digital Vault - Keeper Security, Inc. - https://keepersecurity.com (2016-03-11)

    DuckDuckGo - DuckDuckGo - http://duckduckgo.com (2015-07-13)

    1Password - AgileBits - https://agilebits.com/onepassword (2016-03-29)

    AdBlock - BetaFish, Inc. - https://getadblock.com (2016-04-29)

    Adblock more - Eyeo GmbH - https://adblockplus.org/ (2016-03-26)

    WOT - WOT Services Ltd. - http://www.mywot.com/ (2016-04-22)

    YoutubeWide - Pedrocc - http://www.pedrocc.com/safari (2014-10-22)

    Dashlane - Dashlane Inc. - http://www.dashlane.com (2016-02-07)

    Save on Pocket - Read It Later, Inc. - http://getpocket.com/ (2015-11-07)

    Blur - Abine, the society for the protection of personal information online. - https://www.abine.com (2016-05-01)

    TrafficLight - Bitdefender SRL - http://trafficlight.bitdefender.com/ (2016-02-07)

    3rd party preference panes:

    Akamai NetSession preferences (2015-09-23) [Support]

    Flash Player (2016-04-15) [Support]

    Growl (2006-12-30) [Support]

    Time Machine:

    Time Machine not configured!

    Top of page process CPU:

    13% WindowServer

    Dock of 10%

    7% launchd

    6% kernel_task

    1% Memeod

    Top of page process of memory:

    2.83 GB com.apple.WebKit.WebContent (8)

    2.08 GB Safari

    917 MB kernel_task

    467 MB softwareupdated

    406 MB iTunes

    Virtual memory information:

    310 MB free RAM

    12,00 GB used RAM (2.47 GB being cached)

    134 MB used Swap

    When you see a beachball cursor or the slowness is particularly bad, note the exact time: hour, minute, second.

    These must be run as administrator. If you have only one user account, you are the administrator.

    Run the Console application in one of the following ways:

    ☞ Enter the first letters of his name in a Spotlight search. Select from the results (it should be at the top).

    ☞ In the Finder, select go utilities ▹ of menu bar or press the combination of keys shift-command-U. The application is in the folder that opens.

    ☞ Open LaunchPad and start typing the name.

    The title of the Console window should be all Messages. If it isn't, select

    SYSTEM LOG QUERIES ▹ all Messages

    in the list of logs on the left. If you don't see this list, select

    List of newspapers seen ▹ display

    in the menu at the top of the screen bar.

    Each message in the journal begins with the date and time when it was entered. Highlight date back to the time you noted above.

    Select the messages entered since then until the end of the episode, or until they begin to repeat, whichever comes first.

    Copy messages to the Clipboard by pressing Control-C key combination. Paste into a reply to this message by pressing command + V.

    The journal contains a large amount of information, almost all this is useless to solve any particular problem. When you post a journal excerpt, be selective. A few dozen lines are almost always more than enough.

    Please don't dump blindly thousands of lines in the journal in this discussion.

    Please do not post screenshots of log messages - text poster.

    Some private information, such as your name, may appear in the log. Anonymize before posting.

    When you post the journal excerpt, an error message may appear on the web page: "you include content in your post that is not allowed", or "the message contains invalid characters." It's a bug in the forum software. Thanks for posting the text on Pastebin, then post here a link to the page you created.

    If you have an account on Pastebin, please do not select private in exposure menu to paste on the page, because no one else that you will be able to see it.

  • Apple TV-Siri shows Hulu in the results, but I have not installed the Hulu application

    My research findings using Siri on the new Apple TV keep showing Hulu as an option. The only thing is, I have not installed the Hulu application, and I'm not a subscriber of Hulu. Is this a mistake or what is 'normal '.

    To check, I select Hulu in the search results, and was invited to install the application.

    It is correct. The page that displays the result of your search will connect you to the app from Hulu on the App Store if you have not installed it.

    The research aims to get you a way to watch the TV Show/movie you want to watch. It's a great way to see if a Hulu subscription is something you want to pay.

  • 10.11.2 update blocks the account and apps

    I've updated my Mac mini (i7, 16 GB; computer with 1 TB of HDD, more NAS RAID 5 attached, more a Lacie 2 TB hard drive for Time Machine backups) of OS X El Capitan 10.11.1 in 10.11.2. After the reboot, don't not a single application works. The only program that is running is Finder. Now, everything is extremely slow. Other applications - including system preferences - display a message that the app is damaged or incomplete. But on a second account (a standard account without administrator privileges), everything seems to work properly. Because I did a lot of customization in my admin account - and most of the programs are configured to run on this account only - I would be really grateful to pick up everything.

    BTW, the idea to start my Mac with command-r and reinstall El Capitan 10.11.2 did not help.

    Any idea?

    Please read this message before doing anything.

    This procedure is a diagnostic test. It is unlikely to solve your problem. Don't be disappointed when you find that nothing has changed after you complete it.

    The test is intended to determine if the problem is caused by a third-party software that loads automatically at startup or logon, by a device, by a police conflict or corruption of system files or some system caches.

    Disconnect all devices wired except those required to test and remove all the expansion cards from secondary market, as appropriate. Start in safe mode and log on to the account of the problem.

    Note: If FileVault is enabled in OS X 10.9 or an earlier version, or if a firmware password is defined, or if the boot volume is a software RAID, you can not do this. Ask for additional instructions.

    Safe mode is much slower to boot and run as normal, with limited graphics performance, and some things work at all, including an audio output and a Wi - Fi connection on some models. The next normal boot can also be a bit slow.

    The login screen is displayed even if you usually connect automatically. You need your password to log on. If you have forgotten the password, you will have to reset it before you begin.

    Test in safe mode. Same problem?

    After testing, restart as usual (not in safe mode) and make sure you always have the problem. View the results of the test.

  • 500 unexpected substitute error when changing the id of the application in - app. XML

    Hi, I'm debugging my app on the real PlayBook,

    I decided to change the application in the - app.xml id, since then, I get an error "500 unexpected substitute" when you try to run the FB4.5 application.

    This threa500 unexpected substitute at the launch of app browsing I understood the problem came from the ID of the application being changed, but not the inner packaging ID used to reference the app in the PlayBook.

    This is verified by looking inside the bar file for application id generated old and new application id, package id remains unchanged. (I think it's actually a bug in the SDK, I'd love to have confirmation of this from someone competent)

    so I thought OK, I'll just delete the app from the PlayBook to clear the former association IDPack applicationid and reinstall...

    but still no hope.

    Here is a detailed description

    old id of the application has been myOldAppID

    new application id is myNewAppID

    generated from the package id: myPackID (even for the two application ID)

    It seems that the PlayBook maintains a list of applications that have already been installed on it: I tried to delete the application from the command line using blackberry - deploy and the package id (obtained from the .bar):

    blackberry-deploy -uninstallApp -device 169.254.0.1 -password *** -package-id myPackID
    

    The app is removed as planned, it is deleted from the PlayBook, the command displays the result menu

    Info: Sending request: Uninstall
    Info: Action: Uninstall
    Info: Uninstalling myPackID...
    Info: Processing 0 bytes
    actual_dname::myOldAppID.debug.myPackID
    actual_id::myPackID
    actual_version::
    result::success
    

    The result, we see that the PlayBook concludes the old reference to my application and displays the ID of the application on line actual_dname

    now, if I run the same command, but with an obviously wrong package ID:

    blackberry-deploy -uninstallApp -device 169.254.0.1 -password *** -package-id someWrongID
    

    I get the result

    Info: Sending request: Uninstall
    Info: Action: Uninstall
    Info: Uninstalling someWrongID...
    Info: Processing 0 bytes
    actual_dname::
    actual_id::someWrongID
    actual_version::
    result::success
    

    Note the line actual_dname is empty, there is no reference for the application with package ID someWrongID

    Here, I'd rather see an output like "application not found for package id someWrongID" but anyway...

    So if I run the same command again, with my application package ID, I expect the line actual_dname will be empty, because the application has already been deleted, but the result is always:

    Info: Sending request: Uninstall
    Info: Action: Uninstall
    Info: Uninstalling myPackID...
    Info: Processing 0 bytes
    actual_dname::myOldAppID.debug.myPackID
    actual_id::myPackID
    actual_version::
    result::success
    

    Here, I see that the PlayBook still holds the former association of myOldAppID with myPackID, even if the application has been removed...

    I tried to restart the PlayBook, cleaning and reconstruction project, all without result... the reference remains in the PlayBook, and myPackID remains unchanged.

    NoI am blocked, if I want my app to debug, it seems that I must leave application ID with the old value...

    I would like to know, is it possible to remove completely an application and all of its references, of the PlayBook?

    And there at - there someone who can explain how the Package Id is generated, and if it's a bug or a feature?

    Thank you!

    Hi Julien,

    This problem is supposed to be fixed on the latest SDK version: 1.1.1. Could you please confirm what command line tools do you use?

    blackberry-airpackager -version
    

    will show you its own version.

    See you soon!

  • [Issue] Sourcefire/Firesight Syslog to include the result online

    Hi guys,.

    I have set up an alert to syslog on Firesight Virtual Center of defence, but I can't get the result online for events.

    Here is an example of event raw that I received

    April 14 01:09:20 XXX XXXX: [primary detection engine (a9d9147e-dd96-11e2-a935-a6cb913df812)] [XXXX] [1:34463:2] 'Attempt to outgoing connection of the TeamViewer APP-DETECT remote administration tool' [Classification: potential Violation of company policy] user: unknown, Application: TeamViewer, Client: Internet Explorer, Protocol App: HTTPInterface infiltration: s1p2, output interface: s1p1, entry Security Zone: external, out of Security Zone: internal, [priority: 1] {TCP} x.x.x.x:51355 -> x.x.x.x:80

    Here we could see the snort ID, source, destination, port, but not the result of inline (if it is abandoned or not)

    Y at - it anyway to change and include these result inline using syslog.

    Thank you

    Hello

    Yes you are right to change gravity and priority will not make changes.

    Check: https://bst.cloudapps.cisco.com/bugsearch/bug/CSCux57517/?reffering_site...

    Apparently in 5.4 and 6.0 according to the user guide thus only under the settings will be seen in syslog:

    -date and time of the alert generation

    -event message

    -event data

    -ID of the triggering event for the generator

    -Snort event trigger ID

    -review

    Kind regards

    Aastha Bhardwaj

    Rate if this is useful!

  • Get an error in downloading on the applications tab in the Office CC App.

    I scoured internet, checked all forums made everything I could find and yet still no solution. I deleted the adobe, disconnected, signed in temp files. Software and everything works but the CC App show me progress or updates of the software. It's a business account and I discovered our IT department blocked all Adobe updates if I had them remove the block for me and still nothing.

    I get a message that says:

    Download error. Press Retry to try or contact Service customer (-7). I can't find a reference to the error code - 7. Help, please!
    Download.jpg

    I ask you to try the troubleshooting steps in the "Solution 2" link in the following text and share the results: error "Unable to install" received when installing Adobe Creative Cloud desktop App.

  • app.activeDocument.activeDataset.name

    Hello

    I have set up an action that I use for my batch process. I have to iterate over the [i] data sets that have unique names. I am trying to determine the name of the current index [i] data sets. I am able to read the name like this:

    Alert(App.activeDocument.dataSets[0].) (Name) / / It only reads the name of the dataset to [0] for each iteration. myset_0, myset_0, myset_0, myset_0, myset_0, myset_0, myset_0...

    The problem is that what I call for the batch using the dataset object. I can't delete the dataset from scratch, because she's going to change the length and spoil the batch.

    I want to do it like this:

    Alert (app.activeDocument.activeDataset.name); myset_0, myset_1, myset_2, myset_3, myset_4, et_5, myset_6 mys...

    but I get undefined.

    I don't know what the problem with this syntax:

    app.activeDocument.activeDataset.name

    Thank you

    Aubrey

    Try:

    app.activeDocument.activeDataSet.name;

  • How to order search results web app by weight?

    HI, I know it can be done, but the page I thik I bookmark is dead, how do I register search results web app by weight?

    http://helpx.Adobe.com/business-catalyst/KB/tags---quick-reference.html

    http://helpx.Adobe.com/business-catalyst/KB/modules-quick-reference.html

    Change to support managed not the best at the moment. Work in progress I think but expressed my concerns about the withdrawal of the old content with no redirect at the very least.

    You want the module module_webappsresults and use weightreverse if you want that. Weight intervenes automatically if added and overides alphabeical.

  • Get spaces empy in the result set

    Hello

    We are migration CF 5 to 9. App works great in CF5. but when we run the same code in CF9, for all sets of results, we get the empty sapce for each field.

    Ex:

    CF5: field1: order_id, value = "OL123456".

    CF9: field1: order_id, value = "OL123456".

    We get the empty sapce for each field in the result sets. I know that we can use the topping, but we have so many pages in the application and we cannot do that. can someone help how to solve this problem. I am using the database Ingres and connection with another datasource in CF Admin.

    Srinivas

    I used the query of queries and the problem is solved.

Maybe you are looking for

  • Delays in the start up

    Two days ago my iMac began to take more than 2 minutes to start.  It is the initial tone until you see the white Apple.   Then another minute or so to load.  Never encountered this problem before.  I installed a few months ago to El Capitan.  No othe

  • How to manage search engines in Firefox Beta for Android

    When I type a search in the search bar, I get a list of search engines to use options: GoogleAmazonTwitterWikipedia I would use google.co.uk not google.com (and probably amazon.co.uk and not amazon.com) but may not know how to manage search engines.

  • Question about the Satellite Pro M40X upgrades

    I bought it about 10 months ago, it works well, but now I have two questions: (1) the original 256 M RAM, I will still add a 512 m? (2) the original operating system is in Czech language, can I get an English recovery DVDs?, because I'll go to anothe

  • Z420 HP: HP Z420 with GPU fanless

    Hello I recently replaced the NVIDIA Quadro 2000 with an area of 750 ZOTAC GTX with passive cooling. Since this change, the rear case fan is running at a very high speed, so that my office is much stronger than usual. My suspicion is that smart mothe

  • Why do I hear a siren when I run firefox

    whenever I boot firefox I hear a siren that resembles pacman play, what's This has happened Each time Firefox opened is May 21, 2010