[Embed(source='font.ttf')] suddenly failing in AIR 13.0

Hi all,
I have an app for iOS and Android that we've been testing for about 6 months with no problem.  It uses Embed code to define 5 different fonts used throughout the app, like this:
[Embed(source='fonts/Feijoa_Medium.ttf', fontFamily="_Feijoa", fontWeight=FontWeight.NORMAL, advancedAntiAliasing="true", embedAsCFF="false")]
  public static const FeijoaClass : Class;
// Sometime later
Font.registerFont( FeijoaClass );
This has been working perfectly in AIR 3.9
I recently upgraded the AIR version to 13.0 (Edit: also happens in 14.0) and first received this error message:
Build failed: Warning. The constant 'FeijoaClass' was not initialised
On a whim, I changed the variable to private static var like this:
[Embed(source='fonts/Feijoa_Medium.ttf', fontFamily="_Feijoa", fontWeight=FontWeight.NORMAL, advancedAntiAliasing="true", embedAsCFF="false")]
  private static var FeijoaClass : Class;
The project now compiles, but I get the following run-time error on the Font.registerFont call:
[Fault] exception, information=TypeError: Error #2007: Parameter font must be non-null.
And sure enough, all my embedded classes are null.
The path to the font is correct.  However, another weird thing is that if I deliberately change the path to the font to be incorrect, I do not receive any sort of error (I'm sure i used to in AIR 3.9 if the path was incorrect).
Any ideas?  Scratching my head at this one!

Ok, this turned out to be a problem with my IDE.
I use FlashDevelop and had recently updated to 4.6.2
I reinstalled an older version (4.5.2) and embeds are working again!

Similar Messages

  • Embedding Font in FB 4.7 AIR 3.9

    Hello,
    Is there a different way to embed fonts with Air 3.9 or FB 4.7? I've recently upgrading and I am experience tempremental results with embedding fonts.
    With FB 4.6 and Air 3.7 the following works fine -
    [Embed(source="/assets/fonts/SEGOEUIL.TTF", fontName="Segoe UI Light", mimeType="application/x-font-truetype")]
                        public static var EverydayFont:Class;
                                            var textFormat:TextFormat = new TextFormat();
                                            var mainFont:Font = new EverydayFont();
                                            textFormat.font = mainFont.fontName;
                                  var textfield:TextField = new TextField();
                                  textfield.mouseEnabled = false;
                                  textfield.selectable = false;
      textfield.defaultTextFormat = textFormat;
                                  textfield.multiline = false;
                                  textfield.border = true;
                                  textfield.embedFonts = embedFont;
                                  textfield.width = width;
      textfield.antiAliasType = antiAliasStyle;
                                  textfield.htmlText = label;
    However now with the latest versions the text box is just blank..??

    Ok, I'm gonna give you the code that worked for me when I was working on a project back than, cause I also had a simillar, if not the same (can't remember), problem.
    So here it goes:
    [Embed(source="SuchFont.ttf", fontName="SuchFont", mimeType="application/x-font", embedAsCFF="true")]
    public static var SuchFont:Class;
    var font:Font = new SuchFont;
    var format:TextFormat = new TextFormat(font.fontName, 20, 0xFFFFFF, true, null, null, null, null, TextAlign.LEFT);
    awesomeText = new TextField;
    awesomeText.defaultTextFormat = format;
    awesomeText.embedFonts = true;
    awesomeText.width = 158;
    awesomeText.height = 56;
    awesomeText.x = 106;
    awesomeText.y = 420;
    I think the trick is using embedAsCFF="true", but the issue here could be that you're using htmlText, have you tried with text?

  • Embed TrueType Font not working

    I've tried for several hours to use a embedded font without
    succes.
    I have:
    <mx:Script>
    <![CDATA[[
    Embed(source="work/ttf/KIMSHAND.TTF", fontName="KIMSHAND",
    mimeType="application/x-font")]
    private var fontKIMSHAND:Class;
    ]]>
    </mx:Script>
    <mx:Text
    id="helpText"
    height="240"
    width="240"
    text="My help text"
    fontSize="24" color="#ffffff" fontFamily="KIMSHAND">
    </mx:Text>
    The .text isn't displayed when I run the project.
    I've trief a lot of other truetype fonts, but none are
    working.
    I'm using Flex 2.0.1 on OSX.
    Thanks for help!
    Jaap

    The easiest/cleanest way to embed fonts is in css code, try
    the following:
    <mx:Style>
    @font-face {
    src:url("work/ttf/KIMSHAND.TTF");
    fontFamily: myFont;
    flashType: true;
    .MyStyle {
    fontFamily: myFont;
    fontSize: 24;
    </mx:Style>
    <mx:Label styleName="MyStyle" text="HELLO WORLD"/>

  • How to embed a font air Android App????

    Hi, im new to this forum so please forgive me if i question in the wrong section.
    I am Beginner and am working on an air android game in flash cs6.. i need embed fonts please help me sort out htis problem..

    The easiest for me is to simply embed your font into your main document class, like this:
    package
         import flash.display.Sprite;
         import flash.text.*;
         public final class MyApp extends Sprite
              [Embed(source="../fonts/ITCAvantGardeStd-Bold.otf", embedAsCFF = "false", fontWeight="bold", fontName = "ITCAvantGardeStd_DemiAndBold", mimeType = "application/x-font-truetype", unicodeRange="U+0021-U+007E, U+00A9, U+00AE")] // Main characters + Copyright and Registered glyphs
              static public var ITCAvantGardeStdBold:Class; // that's what the embed gets baked into
              Font.registerFont( ITCAvantGardeStdBold ); // do this once per font
              public function MyApp():void // Constructor
                   // Create a textformat that uses the font
                   var tft:TextFormat = new TextFormat( "ITCAvantGardeStd_DemiAndBold", 20, 0xffff00, true );  // size = 20 pix, color is yellow, bold = true, matching the font weight
                   // create a text field
                   var tf:TextField = new TextField();
                   with ( tf )
                        antiAliasType = AntiAliasType.ADVANCED; // optional
                        defaultTextFormat = tft;
                        embedFonts = true; // this is using an embedded font
                        width = 100;
                        autoSize = TextFieldAutoSize.LEFT;
                        wordWrap = true;
                        text = "Hello world ! blah blah blah blah blah blah blah blah blah blah blah blah";
                        height = textHeight + 8; // nice and tight
                        border = true; // for fun
                        borderColor = 0xffff00; // yellow
                   addChild( tf );
         } // end of: class
    } // end of: package
    The embed statement contains several optional properties, like fontWeight, fontStyle, and fontFamily.
    Check here for info:  http://divillysausages.com/blog/as3_font_embedding_masterclass
    Note: Alternatively, you could use Flash Professional to embed the font into the document class via the IDE ( like so: http://www.adobe.com/devnet/flash/quickstart/embedding_fonts.html ).
    Also, for these kinds of questions, I recommend:
    1) O'Reilly -- Essential ActionScript 3.0
    2) O'Reilly -- ActionScript 3.0 Cookbook

  • How to embed custom font (tamil font [ta_IN]) in my android application

    We are developing a mobile application (targeting for android & ios) using Adobe Flash Builder 4.6, Adobe AIR 3.5.  Requirement is to localize the content for indian languages, and rite now we are targeting tamil locale.  We implemented the localization, it is working for the locales where the fonts are available on the device, like french, chinese etc., but not for tamil locale.  As the device doesn't have the font, we would like to embed TTF font.
    After googling on the subject, these are the steps we did to embed tamil font, without any luck.
    1. Used fontswf to convert to SWF
    2. In the main application, we embed the SWF (got the Class reference)
    3. Registered the font
    4. When the locale is changed to Tamil, we are changing the application style (fontFamily) to the Class that we got in Step 2
    PS: Currently we are testing on android devices, however the solution needs to work for ios as well
    Unfortunately, this is not working.  Requesting your help in this regard!

    i am bumping this up. i cannot seem to get this to work on iOS, but was able to get this to work on Android using device fonts.
    Anyone here have expereince dealing with the Tamil language on iOS through AIR?

  • Embed OTF Font as CFF in Pure Actionscript Project using Flex SDK 4.0

    I want to apply the method explained here: http://www.insideria.com/2009/03/flash-text-engine.html using only the Flex SDK 4 (not using FlashBuilder)
    Specifically:
    Embedding fonts can be tricky. In Flex, embed the font and store it
    using DefineFont4 and font subsetting currently only supported by Gumbo.
    A future version of Flash will support it but in the meantime, a Gumbo
    SWC with the embedded font must be created then adding to your Flash CS4
    project.
    The following is the method I am using to embed the fonts.
    public class Main extends Sprite {
         [Embed(source="../assets/GE Thameen DemiBold.otf",
                                  fontFamily = "GE Thameen",
                                  fontWeight = "bold",
                                  mimeType = "application/x-font",
                                  embedAsCFF = "true"
         private const GEThameen:Class;
    The following command line was assimilated after solving the output error messages using google and a little looking into how FlashDevelop works..
    mxmlc Main.as -load-config config.xml -managers flash.fonts.AFEFontManager
    The output SWF is not working as supposed, and the file size (20KB) does not seem to account for the embedded font. PS: When the font embedding is bypassed, and a device font is used for the text engine classes, the file works perfectly.
    The contents of config.xml are as the following:
    <?xml version="1.0" encoding="utf-8"?>
    <!--This Adobe Flex compiler configuration file was generated by a tool.-->
    <!--Any modifications you make may be lost.-->
    <flex-config>
      <target-player>10.0.0</target-player>
      <compiler>
        <source-path append="true">
          <path-element>E:\actionscript</path-element>
        </source-path>
        <external-library-path>
            <path-element>C:\bin\flex_sdk_4\frameworks\libs\player\10.0\playerglobal.swc</path-element>
            <path-element>C:\bin\flex_sdk_4\frameworks\libs\flex.swc</path-element>
        </external-library-path>
      </compiler>
      <file-specs>
      </file-specs>
      <default-background-color>#FFFFFF</default-background-color>
      <default-frame-rate>30</default-frame-rate>
      <default-size>
        <width>800</width>
        <height>600</height>
      </default-size>
    </flex-config>

    After losing about 2-3 days to trying to figure this stuff out, I rolled back to build 4.5.0.19786 and the problem doesn't occur anymore.  I'll revisit this issue once we ship the product next week.
    Thanks Alex.
    Cheers,
    Nate Beck

  • How to embed custom font

    Guys, on a daFont web I found some fonts and I would like to use them on my web which I make with animate. How can I embed that font in animate document? That font is called delicate little flower. If somebody could show me how to do it I will be really grateful.
    Thank you.

    i am bumping this up. i cannot seem to get this to work on iOS, but was able to get this to work on Android using device fonts.
    Anyone here have expereince dealing with the Tamil language on iOS through AIR?

  • Embed Barcode Fonts for Watermark

    I hope someone could help me with this:
    I need to add a barcode to a scanned image pdf file. This file will be viewed by a number of users on their workstations. Therefore the barcode font has to be embedded to the newly created pdf file.
    I used the following VB.Net code to add the watermark:
    Dim jsObj As Object
    Dim SamplePDFFilePath As String = "c:\inputFile.pdf"
    Dim OutputFilePath As String = "c:\outputFile.pdf"
    ' Create a PDDoc IAC object.
    Dim pdDoc As Acrobat.CAcroPDDoc
    pdDoc = CreateObject("AcroExch.PDDoc")
    ' Open the source PDF document
    Dim rc As Integer
    rc = pdDoc.Open(SamplePDFFilePath)
    ' Acquire the Acrobat JavaScript Object interface from the PDDoc object
    jsObj = pdDoc.GetJSObject
    ' make a color object
    Dim oColor As Object
    oColor = jsObj.color.black()
    ' Add a text watermark.
    ' function prototype:
    '   addWatermarkFromText(cText, nTextAlign, cFont, nFontSize, oColor, nStart, nEnd, bOnTop, bOnScreen, bOnPrint, nHorizAlign, nVertAlign, nHorizValue, nVertValue, bPercentage, nScale, bFixedPrint, nRotation, nOpacity)
    jsObj.addWatermarkFromText("12345678", 1, "BarcodeFontName", 26, oColor, 0, 0, True, True, True, 0, 3, 100, -7, False, 1.0, False, 0, 1)
    ' save the PDF with watermarks to a new document.
    rc = pdDoc.Save(1, OutputFilePath)  ' full save
    This works. However the font is not embedded.
    I am using Acrobat X.
    My questions:
    1. How to embed the barcode font to the newly created pdf file using VB code?
    2. I have tried to add an additional watermark from a pdf file using this function: addWatermarkFromFile(cDIPath, nSourcePage, nStart, nEnd, bOnTop, bOnScreen, bOnPrint, nHorizAlign, nVertAlign, nHorizValue, nVertValue, bPercentage, nScale, bFixedPrint, nRotation, nOpacity). The file is a pdf containing a small graphic image. I notice after I added this image pdf as watermark, the barcode font is embedded in the new pdf file. Is this an Acrobat design? But the strange thing is that I removed the addWatermarkFromFile() function from my code and recompiled it. The graphic is not included in the new pdf file, but the font is still embedded. I wonder why Acrobat still embeds the barcode font. Is this a normal behaviour of Acrobat?
    3. I have read a posting that addWatermarkAsText() function will always embed the font. But I am not able to find this function in the SDK 10. Is this function obsolete?
    Any help is appreciated.

    Thanks, Irosenth.
    The barcode font I used is Installable. But it is not embedded.
    In fact I tried adding two lines of watermarks, one using the barcode font and the other using Windows Courier font. I checked the created pdf file, both of them were not embedded.
    Like I said, after I added a file using addWatermarkFromFile(), the fonts were embedded.
    Also, I printed the document through the Adobe PDF printer driver, the fonts were embedded.
    It looks to me that these fonts are embeddable. But they just are not embedded with the addWatermarkFromText() function.
    Any further suggestions?

  • Embedding fonts at runtime in Adobe AIR

    I'm trying to register fonts that are stored in an external SWF, and embed them at runtime into an Adobe AIR application. I'm currently using a File object to load the SWF, but am not sure how to register the fonts after that. Anyone has any ideas? Thanks!

    This is the code I have. Basically I hit a button, a file open dialog comes up, and then I use a Loader to load the SWF. But how do I register the font after that? Is what I'm doing in fontLoaded() correct?
    Thanks!
    ZQ
    --- Code ---
    import flash.utils.describeType;
                import mx.controls.SWFLoader;
                private var myFontFile: FileReference = new FileReference();
                private var myFont: File = new File();
                private function initApp(): void
                    var embeddedFonts: Array = Font.enumerateFonts(false);
                    trace ("=== BEFORE ===");
                    for (var i: int = 0; i < embeddedFonts.length; i++)
                        var item: Font = embeddedFonts[i];
                        trace("["+i+"] name: "+item.fontName + ", style: "+ item.fontStyle+", type: "+item.fontType);
                    btnLoadFont.addEventListener(MouseEvent.CLICK, loadFont);
                private function loadFont(e: MouseEvent): void
                    myFont.browseForOpen("Select Font");
                    myFont.addEventListener(Event.SELECT, fontSelect);
                private function fontSelect(e: Event): void
                    trace("File: "+myFont.url);
                    var loader: Loader = new Loader();
                    var context: LoaderContext;
                    var loaderInfo: LoaderInfo = loader.contentLoaderInfo;
                    loaderInfo.addEventListener(Event.COMPLETE, fontLoaded);
                    context = new LoaderContext( true, new ApplicationDomain( ApplicationDomain.currentDomain ) );
                    loader.load(new URLRequest(myFont.url), context);
                private function fontLoaded(e: Event): void
                    trace(e.target);
                    var FontLibrary:Class = ApplicationDomain((e.target as LoaderInfo).applicationDomain).getDefinition('_Verdana') as Class;
                    Font.registerFont(FontLibrary);
                    var embeddedFonts: Array = Font.enumerateFonts(false);
                    trace("=== AFTER ===");
                    for (var i: int = 0; i < embeddedFonts.length; i++)
                        var item: Font = embeddedFonts[i];
                        trace("["+i+"] name: "+item.fontName + ", style: "+ item.fontStyle+", type: "+item.fontType);

  • Suddenly my MacBook Air is very slow to boot up. I'm running Mac OS X Lion 10.7.5 (11G63). Any tips? Thanks!

    Suddenly my MacBook Air is very slow to boot up. It's about a year and a half old. I'm running Mac OS X Lion 10.7.5 (11G63) -- and I'm far from being an expert at any of this stuff, have seen a few different answers and not sure what to do. Help! Grateful.

    Okay, I am having a try at this. My machine wouldn't boot this morning again (like I said, it's erratic, so I then did a "safe boot" and restarted. This is what I think (I hope...) you want. Here's the first part, tho you'll see I am struggling with Part 2.
    10/06/2014 07:48:18.000 bootlog: BOOT_TIME 1402382898 0
    10/06/2014 07:55:07.983 com.apple.kextd: Safe boot mode detected; invalidating system extensions caches.
    10/06/2014 07:55:07.985 com.apple.kextd: Cache file /System/Library/Caches/com.apple.kext.caches/Directories/System/Library/Extensi ons/KextIdentifiers.plist.gz is out of date; not using.
    10/06/2014 07:55:07.000 kernel: PMAP: PCID enabled
    10/06/2014 07:55:07.000 kernel: PMAP: Supervisor Mode Execute Protection enabled
    10/06/2014 07:55:07.000 kernel: Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64
    10/06/2014 07:55:07.000 kernel: vm_page_bootstrap: 546822 free pages and 501754 wired pages
    10/06/2014 07:55:07.000 kernel: kext submap [0xffffff7f80736000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000736000]
    10/06/2014 07:55:07.000 kernel: zone leak detection enabled
    10/06/2014 07:55:07.000 kernel: standard timeslicing quantum is 10000 us
    10/06/2014 07:55:07.000 kernel: mig_table_max_displ = 73
    10/06/2014 07:55:07.000 kernel: TSC Deadline Timer supported and enabled
    10/06/2014 07:55:07.000 kernel: SAFE BOOT DETECTED - only valid OSBundleRequired kexts will be loaded.
    10/06/2014 07:55:07.000 kernel: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    10/06/2014 07:55:07.000 kernel: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    10/06/2014 07:55:07.000 kernel: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    10/06/2014 07:55:07.000 kernel: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    10/06/2014 07:55:07.000 kernel: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    10/06/2014 07:55:07.000 kernel: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    10/06/2014 07:55:07.000 kernel: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    10/06/2014 07:55:07.000 kernel: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    10/06/2014 07:55:07.000 kernel: calling mpo_policy_init for Sandbox
    10/06/2014 07:55:07.000 kernel: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    10/06/2014 07:55:07.000 kernel: calling mpo_policy_init for Quarantine
    10/06/2014 07:55:07.000 kernel: Security policy loaded: Quarantine policy (Quarantine)
    10/06/2014 07:55:07.000 kernel: calling mpo_policy_init for TMSafetyNet
    10/06/2014 07:55:07.000 kernel: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    10/06/2014 07:55:07.000 kernel: Copyright (c) 1982, 1986, 1989, 1991, 1993
    10/06/2014 07:55:07.000 kernel: The Regents of the University of California. All rights reserved.
    10/06/2014 07:55:07.000 kernel: MAC Framework successfully initialized
    10/06/2014 07:55:07.000 kernel: using 16384 buffer headers and 10240 cluster IO buffer headers
    10/06/2014 07:55:07.000 kernel: IOAPIC: Version 0x20 Vectors 64:87
    10/06/2014 07:55:07.000 kernel: ACPI: System State [S0 S3 S4 S5]
    10/06/2014 07:55:07.000 kernel: PFM64 (36 cpu) 0xf10000000, 0xf0000000
    10/06/2014 07:55:07.000 kernel: [ PCI configuration begin ]
    10/06/2014 07:55:07.000 kernel: console relocated to 0xf50000000
    10/06/2014 07:55:08.000 kernel: PCI configuration changed (bridge=15 device=2 cardbus=0)
    10/06/2014 07:55:08.000 kernel: [ PCI configuration end, bridges 10 devices 12 ]
    10/06/2014 07:55:08.000 kernel: AppleIntelCPUPowerManagement: Turbo Ratios 0035
    10/06/2014 07:55:08.000 kernel: AppleIntelCPUPowerManagement: (built 16:32:09 Aug 23 2012) initialization complete
    10/06/2014 07:55:08.000 kernel: mbinit: done [64 MB total pool size, (42/21) split]
    10/06/2014 07:55:08.000 kernel: Pthread support ABORTS when sync kernel primitives misused
    10/06/2014 07:55:08.000 kernel: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    10/06/2014 07:55:08.000 kernel: AppleThunderboltNHIType2::start - type 2 sleep enabled
    10/06/2014 07:55:08.000 kernel: AppleThunderboltNHIType2::start - SXFP method found
    10/06/2014 07:55:08.000 kernel: com.apple.AppleFSCompressionTypeDataless kmod start
    10/06/2014 07:55:08.000 kernel: com.apple.AppleFSCompressionTypeZlib kmod start
    10/06/2014 07:55:08.000 kernel: com.apple.AppleFSCompressionTypeDataless load succeeded
    10/06/2014 07:55:08.000 kernel: com.apple.AppleFSCompressionTypeZlib load succeeded
    10/06/2014 07:55:08.000 kernel: AppleIntelCPUPowerManagementClient: ready
    10/06/2014 07:55:08.000 kernel: BTCOEXIST off
    10/06/2014 07:55:08.000 kernel: wl0: Broadcom BCM4353 802.11 Wireless Controller
    10/06/2014 07:55:08.000 kernel: 5.106.198.19
    10/06/2014 07:55:08.000 kernel: rooting via boot-uuid from /chosen: 70452A04-BA27-3AA6-A252-7F32179EC729
    10/06/2014 07:55:08.000 kernel: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    10/06/2014 07:55:08.000 kernel: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/APPLE SSD TS128E Media/IOGUIDPartitionScheme/Customer@2
    10/06/2014 07:55:08.000 kernel: BSD root: disk0s2, major 14, minor 2
    10/06/2014 07:55:08.000 kernel: jnl: unknown-dev: replay_journal: from: 7179264 to: 8289280 (joffset 0x11502000)
    10/06/2014 07:55:08.000 kernel: jnl: unknown-dev: journal replay done.
    10/06/2014 07:55:08.000 kernel: Kernel is LP64
    10/06/2014 07:55:08.000 kernel: USBMSC Identifier (non-unique): 000000000310 0x5ac 0x8404 0x310
    10/06/2014 07:55:08.000 kernel: IOThunderboltSwitch(0x0)::listenerCallbackStatic - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    10/06/2014 07:55:08.000 kernel: IOThunderboltSwitch(0x0)::listenerCallbackStatic - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    10/06/2014 07:55:08.000 kernel: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    10/06/2014 07:55:08.000 kernel: USBF:          4.615          IOUSBCompositeDriver[0xffffff8008374300](CompositeDevice) SetConfiguration (1) returned 0xe000404f
    10/06/2014 07:55:08.000 kernel: [IOBluetoothHCIController::setConfigState] calling registerService
    10/06/2014 07:55:08.000 kernel: hfs: Removed 0 orphaned / unlinked files and 10 directories
    10/06/2014 07:48:19.176 com.apple.launchd: *** launchd[1] has started up. ***
    10/06/2014 07:55:07.907 com.apple.launchd: (com.apple.powerd) Unknown value for key POSIXSpawnType: Interactive
    10/06/2014 07:55:07.907 com.apple.launchd: (com.apple.sandboxd) Unknown value for key POSIXSpawnType: Interactive
    10/06/2014 07:55:07.908 com.apple.launchd: (com.apple.usbmuxd) Unknown value for key POSIXSpawnType: Interactive
    10/06/2014 07:55:08.733 fseventsd: event logs in /.fseventsd out of sync with volume.  destroying old logs. (32317 409 32766)
    10/06/2014 07:55:08.749 fseventsd: log dir: /.fseventsd getting new uuid: 28A0FB38-2172-4936-8866-3220B9641918
    10/06/2014 07:55:09.009 UserEventAgent: starting CaptiveNetworkSupport as SystemEventAgent built Jun 25 2011 01:16:59
    10/06/2014 07:55:09.013 UserEventAgent: CaptiveNetworkSupport:CreateInterfaceWatchList:2788 WiFi Devices Found.
    10/06/2014 07:55:09.013 UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en0 - PreProbe
    10/06/2014 07:55:09.013 UserEventAgent: CaptiveNetworkSupport:CaptiveSCRebuildCache:81 Failed to get service order
    10/06/2014 07:55:09.014 UserEventAgent: CaptiveNetworkSupport:CaptiveSCRebuildCache:81 Failed to get service order
    10/06/2014 07:55:09.014 UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en0 - PreProbe
    10/06/2014 07:55:09.014 UserEventAgent: CaptiveNetworkSupport:CaptiveSCRebuildCache:81 Failed to get service order
    10/06/2014 07:55:09.014 UserEventAgent: CaptiveNetworkSupport:CaptiveSCRebuildCache:81 Failed to get service order
    10/06/2014 07:55:09.000 kernel: AirPort_Brcm4331: Ethernet address 7c:d1:c3:de:35:3d
    10/06/2014 07:55:09.000 kernel: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    10/06/2014 07:55:09.000 kernel: IO80211Interface::efiNVRAMPublished(): 
    10/06/2014 07:55:09.823 com.apple.kextd: Cache file /System/Library/Caches/com.apple.kext.caches/Startup/IOKitPersonalities_x86_64. ioplist.gz is out of date; not using.
    10/06/2014 07:55:09.938 airportd: _processDLILEvent: en0 attached (down)
    10/06/2014 07:55:10.076 com.apple.SecurityServer: Session 100000 created
    10/06/2014 07:55:10.000 kernel: in func createVirtualInterface ifRole = 1
    10/06/2014 07:55:10.000 kernel: Created virtif 0xffffff8006faba00 p2p0
    10/06/2014 07:55:10.101 UserEventAgent: CaptiveNetworkSupport:CaptiveSCRebuildCache:81 Failed to get service order
    10/06/2014 07:55:10.101 UserEventAgent: CaptiveNetworkSupport:CaptiveSCRebuildCache:81 Failed to get service order
    10/06/2014 07:55:10.128 UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en0 - PreProbe
    10/06/2014 07:55:10.189 configd: setting hostname to "Names-MacBook-Air.local"
    10/06/2014 07:55:10.000 kernel: AirPort: Link Down on en0. Reason 1 (Unspecified).
    10/06/2014 07:55:10.202 configd: network configuration changed.
    10/06/2014 07:55:10.207 com.apple.SecurityServer: Entering service
    10/06/2014 07:55:10.424 UserEventAgent: ServermgrdRegistration cannot load config data
    10/06/2014 07:55:10.444 UserEventAgent: get_backup_share_points no AFP
    10/06/2014 07:55:12.000 kernel: en0: 802.11d country code set to 'GB'.
    10/06/2014 07:55:12.000 kernel: en0: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140
    10/06/2014 07:55:13.031 com.apple.ucupdate.plist: ucupdate: Checked 1 update, no match found.
    10/06/2014 07:55:13.098 com.apple.pfctl: No ALTQ support in kernel
    10/06/2014 07:55:13.098 com.apple.pfctl: ALTQ related functions disabled
    10/06/2014 07:55:13.337 com.apple.kextd: Can't load AppleMCCSControl.kext - ineligible during safe boot.
    10/06/2014 07:55:13.347 com.apple.kextd: Load com.apple.driver.AppleMCCSControl failed; removing personalities from kernel.
    10/06/2014 07:55:13.361 mDNSResponder: mDNSResponder mDNSResponder-320.16 (Jul 19 2012 21:07:07) starting OSXVers 11
    10/06/2014 07:55:13.000 kernel: macx_swapon SUCCESS
    10/06/2014 07:55:13.656 com.apple.usbmuxd: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    10/06/2014 07:55:13.918 com.apple.kextd: Can't load AppleThunderboltEDMSink.kext - ineligible during safe boot.
    10/06/2014 07:55:13.924 com.apple.kextd: Load com.apple.driver.AppleThunderboltEDMSink failed; removing personalities from kernel.
    10/06/2014 07:55:13.967 systemkeychain: done file: /var/run/systemkeychaincheck.done
    10/06/2014 07:55:14.000 kernel: Waiting for DSMOS...
    10/06/2014 07:55:14.036 configd: network configuration changed.
    10/06/2014 07:55:14.042 configd: network configuration changed.
    10/06/2014 07:55:14.092 com.apple.kextd: Can't load AppleSMBusPCI.kext - ineligible during safe boot.
    10/06/2014 07:55:14.096 com.apple.kextd: Load com.apple.driver.AppleSMBusPCI failed; removing personalities from kernel.
    10/06/2014 07:55:14.099 mDNSResponder: D2D_IPC: Loaded
    10/06/2014 07:55:14.099 mDNSResponder: D2DInitialize succeeded
    10/06/2014 07:55:14.000 kernel: MacAuthEvent en0   Auth result for: cc:33:bb:49:b1:9a  MAC AUTH succeeded
    10/06/2014 07:55:14.000 kernel: wlEvent: en0 en0 Link UP virtIf = 0
    10/06/2014 07:55:14.000 kernel: AirPort: Link Up on en0
    10/06/2014 07:55:14.000 kernel: en0: BSSID changed to cc:33:bb:49:b1:9a
    10/06/2014 07:55:14.314 com.apple.kextd: Can't load AppleHDAController.kext - ineligible during safe boot.
    10/06/2014 07:55:14.318 com.apple.kextd: Load com.apple.driver.AppleHDAController failed; removing personalities from kernel.
    10/06/2014 07:55:14.363 com.apple.kextd: Can't load AppleSMCLMU.kext - ineligible during safe boot.
    10/06/2014 07:55:14.366 com.apple.kextd: Load com.apple.driver.AppleSMCLMU failed; removing personalities from kernel.
    10/06/2014 07:55:14.000 kernel: AirPort: RSN handshake complete on en0
    10/06/2014 07:55:14.000 kernel: Previous Shutdown Cause: 3
    10/06/2014 07:55:14.373 com.apple.kextd: Can't load AppleSMCPDRC.kext - ineligible during safe boot.
    10/06/2014 07:55:14.377 com.apple.kextd: Load com.apple.driver.AppleSMCPDRC failed; removing personalities from kernel.
    10/06/2014 07:55:14.709 com.apple.kextd: Can't load AudioIPCDriver.kext - ineligible during safe boot.
    10/06/2014 07:55:14.712 com.apple.kextd: Load com.apple.driver.AudioIPCDriver failed; removing personalities from kernel.
    10/06/2014 07:55:14.717 com.apple.kextd: Can't load AudioIPCDriver.kext - ineligible during safe boot.
    10/06/2014 07:55:14.720 com.apple.kextd: Load com.apple.driver.AudioIPCDriver failed; removing personalities from kernel.
    10/06/2014 07:55:14.727 com.apple.kextd: Can't load AppleIntelHD4000Graphics.kext - ineligible during safe boot.
    10/06/2014 07:55:14.729 com.apple.kextd: Load com.apple.driver.AppleIntelHD4000Graphics failed; removing personalities from kernel.
    10/06/2014 07:55:14.776 netbiosd: Unable to start NetBIOS name service:
    10/06/2014 07:55:14.936 com.apple.kextd: Can't load AppleUpstreamUserClient.kext - ineligible during safe boot.
    10/06/2014 07:55:14.938 com.apple.kextd: Load com.apple.driver.AppleUpstreamUserClient failed; removing personalities from kernel.
    10/06/2014 07:55:15.087 com.apple.kextd: Can't load ApplePlatformEnabler.kext - ineligible during safe boot.
    10/06/2014 07:55:15.093 com.apple.kextd: Load com.apple.driver.ApplePlatformEnabler failed; removing personalities from kernel.
    10/06/2014 07:55:15.306 com.apple.kextd: Can't load IOBluetoothSerialManager.kext - ineligible during safe boot.
    10/06/2014 07:55:15.310 com.apple.kextd: Load com.apple.iokit.IOBluetoothSerialManager failed; removing personalities from kernel.
    10/06/2014 07:55:15.319 com.apple.kextd: Can't load IOSurface.kext - ineligible during safe boot.
    10/06/2014 07:55:15.322 com.apple.kextd: Load com.apple.iokit.IOSurface failed; removing personalities from kernel.
    10/06/2014 07:55:15.330 com.apple.kextd: Can't load IOUserEthernet.kext - ineligible during safe boot.
    10/06/2014 07:55:15.333 com.apple.kextd: Load com.apple.iokit.IOUserEthernet failed; removing personalities from kernel.
    10/06/2014 07:55:15.000 kernel: X86PlatformShim::sendStepper - in safe boot. Set PState to PMin.
    10/06/2014 07:55:15.523 loginwindow: Login Window Application Started
    10/06/2014 07:55:15.927 mds: (Normal) FMW: FMW 0 0
    10/06/2014 07:55:16.000 kernel: DSMOS has arrived
    10/06/2014 07:55:16.135 mds: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/06/2014 07:55:16.137 mds: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/06/2014 07:55:16.178 WindowServer: (ipc/send) invalid destination port: IOServiceWaitQuiet for CGXMappedDisplayStart
    10/06/2014 07:55:16.178 WindowServer: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    10/06/2014 07:55:16.431 mds: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/06/2014 07:55:16.636 loginwindow: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    10/06/2014 07:55:17.000 kernel: nspace-handler-set-snapshot-time: 1402383318
    10/06/2014 07:55:17.986 com.apple.launchctl.LoginWindow: com.apple.findmymacmessenger: Already loaded
    10/06/2014 07:55:17.986 com.apple.launchctl.LoginWindow: com.apple.store_helper: Already loaded
    10/06/2014 07:55:17.986 com.apple.launchctl.LoginWindow: com.apple.storeagent: Already loaded
    10/06/2014 07:55:18.232 com.apple.SecurityServer: Session 100004 created
    10/06/2014 07:55:18.239 loginwindow: Login Window Started Security Agent
    10/06/2014 07:55:18.481 airportd: _doAutoJoin: Already associated to “BTHub4-S56J”. Bailing on auto-join.
    10/06/2014 07:55:19.160 SecurityAgent: Echo enabled
    10/06/2014 07:55:19.160 SecurityAgent: Echo enabled
    10/06/2014 07:55:19.281 configd: network configuration changed.
    10/06/2014 07:55:19.499 UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en0 - Probe
    10/06/2014 07:55:19.501 UserEventAgent: CaptiveNetworkSupport:CNSPreferencesBuildSSIDLookup:278 ssidLookup:
    10/06/2014 07:55:19.502 UserEventAgent:   <empty>
    10/06/2014 07:55:19.613 configd: setting hostname to "unknown-7c:d1:c3:de:35:3d.home"
    10/06/2014 07:55:19.666 UserEventAgent: CaptiveNetworkSupport:CaptiveStartDetect:2343 Bypassing probe on BTHub4-S56J because it is protected and not on the exception list
    10/06/2014 07:55:19.680 UserEventAgent: CaptiveNetworkSupport:CaptivePublishState:1211 en0 - Unknown
    10/06/2014 07:55:19.688 configd: network configuration changed.
    10/06/2014 07:55:19.959 ntpd: proto: precision = 1.000 usec
    10/06/2014 07:55:21.399 com.apple.mtmfs: /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T//mtmfsMap46
    10/06/2014 07:55:23.996 genatsdb: *GENATSDB* FontObjects generated = 364
    10/06/2014 07:55:24.287 com.apple.launchd: (com.apple.xprotectupdater[33]) Exited with code: 252
    10/06/2014 07:55:46.110 com.apple.backupd: Starting standard backup
    10/06/2014 07:55:46.151 com.apple.backupd: Error -35 while resolving alias to backup target
    10/06/2014 07:55:46.000 kernel: nspace-handler-set-snapshot-time: 1402383348
    10/06/2014 07:55:56.277 com.apple.backupd: Backup failed with error: 19
    10/06/2014 07:56:36.042 com.apple.backupd: Starting standard backup
    10/06/2014 07:56:36.054 com.apple.backupd: Error -35 while resolving alias to backup target
    10/06/2014 07:56:36.000 kernel: nspace-handler-set-snapshot-time: 1402383398
    10/06/2014 07:56:46.175 com.apple.backupd: Backup failed with error: 19
    10/06/2014 07:58:18.298 com.apple.mtmd: low disk space thinning needed for volume Macintosh HD (/) with 7.8 <= 10.0 pct free space
    10/06/2014 07:58:18.301 com.apple.mtmd: attempting to thin because of low free space on Macintosh HD (/) by removing 2014-06-09 21:04:36 +0000
    10/06/2014 07:58:18.310 com.apple.mtmd: attempting to thin because of low free space on Macintosh HD (/) by removing 2014-06-10 06:55:16 +0000
    10/06/2014 07:58:18.330 com.apple.mtmd: attempting to thin because of low free space on Macintosh HD (/) by removing 2014-06-10 06:55:48 +0000
    10/06/2014 07:58:18.338 com.apple.mtmd: volume Macintosh HD (/) is now in an emergency freespace condition
    10/06/2014 08:00:09.756 com.apple.kextd: Cache file /System/Library/Caches/com.apple.kext.caches/Startup/KextPropertyValues_OSBundl eHelper_x86_64.plist.gz is out of date; not using.
    10/06/2014 08:00:09.756 com.apple.kextd: Rescanning kernel extensions.
    10/06/2014 08:00:10.192 com.apple.kextd: Can't load /System/Library/Extensions/AudioIPCDriver.kext - ineligible during safe boot.
    10/06/2014 08:00:10.196 com.apple.kextd: Load com.apple.driver.AudioIPCDriver failed; removing personalities from kernel.
    10/06/2014 08:00:10.198 com.apple.kextcache: rebuilding /System/Library/Caches/com.apple.kext.caches/Startup/kernelcache
    10/06/2014 08:00:10.204 com.apple.kextd: Can't load /System/Library/Extensions/AppleThunderboltEDMService.kext/Contents/PlugIns/App leThunderboltEDMSink.kext - ineligible during safe boot.
    10/06/2014 08:00:10.209 com.apple.kextd: Load com.apple.driver.AppleThunderboltEDMSink failed; removing personalities from kernel.
    10/06/2014 08:00:10.217 com.apple.kextd: Can't load /System/Library/Extensions/AppleIntelHD4000Graphics.kext - ineligible during safe boot.
    10/06/2014 08:00:10.221 com.apple.kextd: Load com.apple.driver.AppleIntelHD4000Graphics failed; removing personalities from kernel.
    10/06/2014 08:00:10.233 com.apple.kextd: Can't load /System/Library/Extensions/AppleSMBusPCI.kext - ineligible during safe boot.
    10/06/2014 08:00:10.237 com.apple.kextd: Load com.apple.driver.AppleSMBusPCI failed; removing personalities from kernel.
    10/06/2014 08:00:10.249 com.apple.kextd: Can't load /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAController.ke xt - ineligible during safe boot.
    10/06/2014 08:00:10.253 com.apple.kextd: Load com.apple.driver.AppleHDAController failed; removing personalities from kernel.
    10/06/2014 08:00:10.264 com.apple.kextd: Can't load /System/Library/Extensions/AppleMCCSControl.kext - ineligible during safe boot.
    10/06/2014 08:00:10.270 com.apple.kextd: Load com.apple.driver.AppleMCCSControl failed; removing personalities from kernel.
    10/06/2014 08:00:10.285 com.apple.kextd: Can't load /System/Library/Extensions/ApplePlatformEnabler.kext - ineligible during safe boot.
    10/06/2014 08:00:10.289 com.apple.kextd: Load com.apple.driver.ApplePlatformEnabler failed; removing personalities from kernel.
    10/06/2014 08:00:10.298 com.apple.kextd: Can't load /System/Library/Extensions/AppleSMCLMU.kext - ineligible during safe boot.
    10/06/2014 08:00:10.302 com.apple.kextd: Load com.apple.driver.AppleSMCLMU failed; removing personalities from kernel.
    10/06/2014 08:00:10.310 com.apple.kextd: Can't load /System/Library/Extensions/IOPlatformPluginFamily.kext/Contents/PlugIns/AppleSM CPDRC.kext - ineligible during safe boot.
    10/06/2014 08:00:10.314 com.apple.kextd: Load com.apple.driver.AppleSMCPDRC failed; removing personalities from kernel.
    10/06/2014 08:00:10.325 com.apple.kextd: Can't load /System/Library/Extensions/IOBluetoothFamily.kext/Contents/PlugIns/IOBluetoothS erialManager.kext - ineligible during safe boot.
    10/06/2014 08:00:10.329 com.apple.kextd: Load com.apple.iokit.IOBluetoothSerialManager failed; removing personalities from kernel.
    10/06/2014 08:00:10.337 com.apple.kextd: Can't load /System/Library/Extensions/AppleUpstreamUserClient.kext - ineligible during safe boot.
    10/06/2014 08:00:10.341 com.apple.kextd: Load com.apple.driver.AppleUpstreamUserClient failed; removing personalities from kernel.
    10/06/2014 08:00:10.355 com.apple.kextd: Can't load /System/Library/Extensions/IOSurface.kext - ineligible during safe boot.
    10/06/2014 08:00:10.358 com.apple.kextd: Load com.apple.iokit.IOSurface failed; removing personalities from kernel.
    10/06/2014 08:00:10.366 com.apple.kextd: Can't load /System/Library/Extensions/IOUserEthernet.kext - ineligible during safe boot.
    10/06/2014 08:00:10.369 com.apple.kextd: Load com.apple.iokit.IOUserEthernet failed; removing personalities from kernel.
    10/06/2014 08:00:10.000 kernel: Resetting IOCatalogue.
    10/06/2014 08:00:11.694 com.apple.kextcache: SierraSwitchKicker.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    10/06/2014 08:00:11.705 com.apple.kextcache: SierraSupport.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    10/06/2014 08:00:11.744 com.apple.kextcache: JMicronATA.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    10/06/2014 08:00:12.952 com.apple.kextcache: SierraSwitchKicker.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    10/06/2014 08:00:12.954 com.apple.kextcache: SierraSupport.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    10/06/2014 08:00:12.958 com.apple.kextcache: JMicronATA.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    10/06/2014 08:00:13.482 com.apple.kextcache: SierraSwitchKicker.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    10/06/2014 08:00:13.625 com.apple.kextcache: SierraSupport.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    10/06/2014 08:00:14.118 com.apple.kextcache: JMicronATA.kext does not declare a kernel dependency; using com.apple.kernel.6.0.
    10/06/2014 08:00:16.599 com.apple.kextcache: / locked; waiting for lock.
    10/06/2014 08:00:41.407 com.apple.kextcache: / locked; waiting for lock.
    10/06/2014 08:00:50.620 SecurityAgent: User info context values set for Name
    10/06/2014 08:00:50.620 SecurityAgent: User info context values set for Name
    10/06/2014 08:00:50.816 authorizationhost: Failed to authenticate user <Name> (error: 9).
    10/06/2014 08:00:51.000 kernel: nspace-handler-set-snapshot-time: 1402383652
    10/06/2014 08:00:55.132 SecurityAgent: User info context values set for Name
    10/06/2014 08:00:55.132 SecurityAgent: User info context values set for Name
    10/06/2014 08:00:55.638 com.apple.mtmd: attempting to thin because of low free space on Macintosh HD (/) by removing 2014-06-10 06:56:38 +0000
    10/06/2014 08:00:57.595 SecurityAgent: Login Window login proceeding
    10/06/2014 08:00:57.595 SecurityAgent: Login Window login proceeding
    10/06/2014 08:00:58.422 loginwindow: Login Window - Returned from Security Agent
    10/06/2014 08:00:58.591 loginwindow: USER_PROCESS: 51 console
    10/06/2014 08:00:58.967 applepushserviced: Unable to bootstrap_lookup connection port for 'com.apple.iCalPush': unknown error code
    10/06/2014 08:00:58.968 applepushserviced: Unable to bootstrap_lookup connection port for 'com.apple.syncdefaultsd.push': unknown error code
    10/06/2014 08:00:58.969 applepushserviced: Unable to bootstrap_lookup connection port for 'com.apple.AddressBook.PushNotification': unknown error code
    10/06/2014 08:00:58.970 applepushserviced: Unable to bootstrap_lookup connection port for 'com.apple.safaridavclient.push': unknown error code
    10/06/2014 08:00:59.119 com.apple.launchd.peruser.502: (com.apple.AirPortBaseStationAgent) Unknown value for key POSIXSpawnType: Background
    10/06/2014 08:00:59.124 com.apple.launchd.peruser.502: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    10/06/2014 08:00:59.134 com.apple.launchctl.Aqua: load: option requires an argument -- D
    10/06/2014 08:00:59.134 com.apple.launchctl.Aqua: usage: launchctl load [-wF] [-D <user|local|network|system|all>] paths...
    10/06/2014 08:01:02.788 UserEventAgent: CaptiveNetworkSupport:CNSServerRegisterUserAgent:187 new user agent port: 39947
    10/06/2014 08:01:03.289 mds: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputerIndexed"
    10/06/2014 08:01:03.321 com.apple.launchd.peruser.502: (com.apple.launchctl.Aqua[133]) Exited with code: 1
    10/06/2014 08:01:03.762 com.apple.launchd.peruser.502: (com.apple.mrt.uiagent[145]) Exited with code: 255
    10/06/2014 08:01:05.842 SystemUIServer: Could not load menu extra NSBundle </System/Library/CoreServices/Menu Extras/Volume.menu> (not yet loaded) for Class AppleVolumeExtra
    10/06/2014 08:01:09.565 com.apple.dock.extra: Could not connect the action buttonPressed: to target of class NSApplication
    10/06/2014 08:01:09.565 com.apple.dock.extra: 2014-06-10 08:01:09.555 com.apple.dock.extra[161:1a07] Could not connect the action buttonPressed: to target of class NSApplication
    10/06/2014 08:01:09.573 com.apple.dock.extra: Could not connect the action buttonPressed: to target of class NSApplication
    10/06/2014 08:01:09.575 com.apple.dock.extra: 2014-06-10 08:01:09.566 com.apple.dock.extra[161:1a07] Could not connect the action buttonPressed: to target of class NSApplication
    10/06/2014 08:01:09.583 com.apple.dock.extra: Could not connect the action buttonPressed: to target of class NSApplication
    10/06/2014 08:01:09.584 com.apple.dock.extra: 2014-06-10 08:01:09.575 com.apple.dock.extra[161:1a07] Could not connect the action buttonPressed: to target of class NSApplication
    10/06/2014 08:01:09.588 com.apple.dock.extra: Could not connect the action buttonPressed: to target of class NSApplication
    10/06/2014 08:01:09.589 com.apple.dock.extra: 2014-06-10 08:01:09.586 com.apple.dock.extra[161:1a07] Could not connect the action buttonPressed: to target of class NSApplication
    10/06/2014 08:01:10.169 mds: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/06/2014 08:01:12.998 com.apple.SecurityServer: Session 100008 created
    10/06/2014 08:01:18.200 com.apple.SecurityServer: Session 100010 created
    10/06/2014 08:01:20.025 mds: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    10/06/2014 08:01:20.124 sandboxd: ([169]) com.apple.qtkits(169) deny ipc-posix-shm _CS_DSHMEMLOCK
    10/06/2014 08:01:20.128 sandboxd: ([169]) com.apple.qtkits(169) deny ipc-posix-shm _CS_DSHMEMLOCK
    10/06/2014 08:01:20.132 sandboxd: ([169]) com.apple.qtkits(169) deny ipc-posix-shm _CGM0000000502
    10/06/2014 08:01:20.136 sandboxd: ([169]) com.apple.qtkits(169) deny ipc-posix-shm _CGM0000000502
    10/06/2014 08:01:20.147 sandboxd: ([169]) com.apple.qtkits(169) deny file-read-data /Library/ColorSync/Profiles/Displays/Color LCD-00000610-0000-9CDF-0000-0000042737C0.icc
    10/06/2014 08:01:20.157 sandboxd: ([169]) com.apple.qtkits(169) deny file-read-data /Library/ColorSync/Profiles/Displays/Color LCD-00000610-0000-9CDF-0000-0000042737C0.icc
    10/06/2014 08:01:20.176 sandboxd: ([169]) com.apple.qtkits(169) deny mach-lookup com.apple.printtool.agent
    10/06/2014 08:01:21.178 sandboxd: ([169]) com.apple.qtkits(169) deny file-read-data /Library/ColorSync/Profiles/Displays/Color LCD-00000610-0000-9CDF-0000-0000042737C0.icc
    10/06/2014 08:01:21.256 sandboxd: ([169]) com.apple.qtkits(169) deny ipc-posix-shm _CS_GSHMEMLOCK
    10/06/2014 08:01:21.260 sandboxd: ([169]) com.apple.qtkits(169) deny ipc-posix-shm _CS_GSHMEMLOCK
    10/06/2014 08:01:22.336 com.apple.coremedia.videodecoder: IOSurface couldn't open service: IOSurfaceRoot
    10/06/2014 08:01:27.505 sandboxd: ([169]) com.apple.qtkits(169) deny file-read-data /Library/ColorSync/Profiles/Displays/Color LCD-00000610-0000-9CDF-0000-0000042737C0.icc
    10/06/2014 08:01:27.906 sandboxd: ([169]) com.apple.qtkits(169) deny file-read-data /Library/ColorSync/Profiles/Displays/Color LCD-00000610-0000-9CDF-0000-0000042737C0.icc
    10/06/2014 08:01:30.610 com.apple.kextcache: Created prelinked kernel //System/Library/Caches/com.apple.kext.caches/Startup/kernelcache.
    10/06/2014 08:01:30.670 com.apple.kextcache: /: no supported helper partitions to update.
    10/06/2014 08:01:30.671 com.apple.kextcache: Lock acquired; proceeding.
    10/06/2014 08:01:30.685 com.apple.kextcache: /: no supported helper partitions to update.
    10/06/2014 08:01:30.686 com.apple.kextcache: Lock acquired; proceeding.
    10/06/2014 08:01:30.701 com.apple.kextcache: /: no supported helper partitions to update.
    10/06/2014 08:01:44.000 kernel: CODE SIGNING: cs_invalid_page(0x1000): p=181[ksadmin] clearing CS_VALID
    In Part 2, you say:
    DIAGNOSTIC AND USAGE INFORMATION ▹ System Diagnostic Reports
    (not Diagnostic and Usage Messages) from the log list on the left. If you don't see that list, select
    View ▹ Show Log List
    from the menu bar.
    There is a disclosure triangle to the left of the list item. If the triangle is pointing to the right, click it so that it points down. You'll see a list of reports.
    BUT -- when I go into "System diagnostic reports" (and I have checked I'm clicking on the correct one) there's nothing in the log to the right, even when I click the arrow pointing down. Below that, on the left, it says FILES and then below that there's
    system.log
    kernel.log
    and then /Library/logs (twice) and /var/logs
    What am I doing wrong?
    Grateful for help.

  • Embed all fonts in eps

    I have a lot of existing eps-files of which the option "embed all fonts" is unchecked.
    Know I have to check the "embed all fonts" in the existing eps-files.
    I tried to modify the script below, but it seems that the embedallfonts is NOT working.
    When I do it manually (without script), then it works fine. With script, it doesn't work.
    #target illustrator
    // PART 1
    var doc = app.activeDocument;
    // PART 2 -> herbewaren eps als eps
    var destFile = new File(decodeURI(doc.fullName).replace(/(?: \[Converted\])?\.eps$/, '.eps'));   // also remove "[Converted]" from filename
    var options = new IllustratorSaveOptions({});   // new save as options
    options.compatibility = Compatibility.ILLUSTRATOR15;   // save as CS5
    options.embedICCProfile=true;
    options.embedAllFonts=true;
    options.pdfCompatible = true;
    options.useCompression = true;
    doc.saveAs(destFile,  options);  // save the file in the same foldere as the eps
    // PART 3
    doc.close(SaveOptions.SAVECHANGES);   // close the file with saving
    Another question will be: can I get a dialog box to put in the path to the eps-files, I can do thereafter it in batch instead of each time opening and closing a file.

    For the people who are interested. This script asks for a source and target folder, opens an ai or eps file, save to an eps file with fonts embedded, create automatic a scaled png folder and close the file(s).
    #target illustrator
    var destFolder, sourceFolder, files, fileType, sourceDoc, targetFile, pngExportOpts;
    // Selecteer de bronfolder.
    sourceFolder = Folder.selectDialog( 'Selecteer de folder met je files die je wil converteren naar PNG', '~' );
    // indien folder geselecteerd is dan....
    if ( sourceFolder != null )
        files = new Array();
        fileType = prompt( 'Welke type files wil je herbewaren als eps met embedded fonts en converteren naar png? Voorbeeld: *.ai', ' ' );
        // controleer of alle files aan de juiste extensie voldoen zoals aangegeven hier net boven.
        files = sourceFolder.getFiles( fileType );
        if ( files.length > 0 )
            // folder opgeven waar de png-files bewaard moeten worden
            destFolder = Folder.selectDialog( 'Selecteer de folder waar de geconverteerde PNG-bestanden bewaard moeten worden.', '~' );
            for ( i = 0; i < files.length; i++ )
                sourceDoc = app.open(files[i]); // returns the document object
                // Call function getNewName to get the name and file to save the pdf
                targetFile = getNewName();
                // call funtion getEpsoptions
                epsExportOpts=getEpsOptions();
                // Call function getPNGOptions get the PNGExportOptions for the files
                pngExportOpts = getPNGOptions();
                // Export as PNG
                sourceDoc.exportFile( targetFile, ExportType.PNG24, pngExportOpts );
                // save as eps but with extra options like embed all fonts checked
                sourceDoc.saveAs(targetFile,epsExportOpts);
            alert( 'De bewaarde PNG bestanden staan in volgende folder: ' + destFolder );
        else
            alert( 'Geen files gevonden!' );
    getNewName: Function to get the new file name. The primary
    name is the same as the source file.
    Functie om de nieuwe filenaam te genereren. De oorspronkelijke naam wordt gebruikt (zonder extensie)
    function getNewName()
        var ext, docName, newName, saveInFile, docName;
        docName = sourceDoc.name;
        ext = '.png'; // nieuwe extensie voor PNG
        newName = "";
        for ( var i = 0 ; docName[i] != "." ; i++ )
            newName += docName[i];
        newName += ext; // volledige naam van nieuw bestand inclusief png-extensie
        // nieuwe file maken met correctie extensie
        saveInFile = new File( destFolder + '/' + newName );
        return saveInFile;
    getPNGOptions: Function to set the PNG saving options of the
    files using the PDFSaveOptions object.
    Hier worden de PNG opties beschreven (= als je een opslaan als selecteert, welke opties je aanvinkt en uitvinkt.
    function getPNGOptions()
        // Hier worden de PNG opties beschreven (= als je een opslaan als selecteert, welke opties je aanvinkt en uitvinkt.
        var pngExportOpts = new ExportOptionsPNG24();
        // Setting PNGExportOptions properties. Please see the JavaScript Reference
        // for a description of these properties.
        // Add more properties here if you like
        pngExportOpts.antiAliasing = true;
        pngExportOpts.artBoardClipping = false;
        pngExportOpts.horizontalScale = 200;
        //pngExportOpts.matte = true;
        //pngExportOpts.matteColor = 0, 0, 0;
        pngExportOpts.saveAsHTML = false;
        pngExportOpts.transparency = true;
        pngExportOpts.verticalScale = 200;
        return pngExportOpts;
    function getEpsOptions()
        var epsExportOpts = new EPSSaveOptions();   // new save as options
        epsExportOpts.compatibility = Compatibility.ILLUSTRATOR15;   // save as CS5
        epsExportOpts.embedICCProfile=true;
        epsExportOpts.embedAllFonts=true;
        epsExportOpts.fontSubsetThreshold = 100.0;
        epsExportOpts.pdfCompatible = true;
        epsExportOpts.useCompression = true;
        return epsExportOpts;  // save the file in the same foldere as the eps

  • Variable embed source

    Dear,
    I will make a variable Embed source. I tried several things
    but not getting it worked. What I want is the following:
    Attached code
    How can I do something like that?
    I want use a flash var for the image ID.
    Your sincerely,
    Marten-it

    Adobe Newsbot hopes that the following resources helps you.
    NewsBot is experimental and any feedback (reply to this post) on
    its utility will be appreciated:
    Flex 3 - Embedding asset types:
    When embedding an SVG image, Flex defines imgCls as a
    reference to a subclass of the mx.core.SpriteAsset class, which is
    a subclass of the flash.display.
    Link:
    http://livedocs.adobe.com/flex/3/html/embed_4.html
    Exporting Flex image as PNG image - Flex India Community |
    Google:
    Sep 19, 2007 ... import flash.utils.*;. and declare crcTable
    and crcTableComputed .... So, I want to write a code to which can
    convert the flex image in PNG
    Link:
    http://groups.google.com/group/flex_india/browse_thread/thread/519598c7fcba6447
    Flex 3 - Image control:
    ... a delay when you use the images and load them into Adobe
    Flash Player or AIR. .... By preserving the aspect ratio of the
    image, Flex might not draw the
    Link:
    http://livedocs.adobe.com/flex/3/html/controls_16.html
    Preloading Image | Flex.org - Rich Internet Application
    Development:
    Flex.org is built with Drupal. Integrate Flex and Drupal with
    the Services module. ... Flash and Silverlight: 3D Image Rotation.
    10 hours 11 min ago
    Link:
    http://flex.org/software/component/preloading-image
    mx.controls.Image (Flex 2.0.1 Language Reference):
    Note: Flex also includes the SWFLoader control for loading
    Flex applications. ...... Image. Inherited. deactivate. Dispatched
    when Flash Player loses
    Link:
    http://livedocs.adobe.com/flex/201/langref/mx/controls/Image.html
    15+ Free, powerful and easy to integrate Flash image gallery
    - Ntt.cc:
    Ajax both have their pros and cons, we know that both Flex
    and Ajax have ... Following are some free but powerful flash image
    gallery which I collected.
    Link:
    http://ntt.cc/2008/04/10/over-15-free-powerful-and-easy-to-integrate-flash-image-gallery.h tml
    Disclaimer: This response is generated automatically by the
    Adobe NewsBot based on Adobe
    Community
    Engine.

  • External USB Maxtor One-Touch 3  suddenly fails to mount on MacBook Pro:

    External USB HD suddenly fails to mount on MacBook Pro:
    My One Touch III 600GB drive, external power supply, suddenly will not mount and is not recognized by the system profiler or Disk Utility, however, drive, connected USB, appears under windows XP.
    1. Power cable and usb cable working.
    2. Using external AC adapter(not relying on USB power).
    3. Other USB devices, mice, flash drives work on both USB ports.
    4. Drive works on Windows, folders and data integrity ok.
    5. Drive format is NTFS.
    6. No Maxtor software installed.
    7. No humming or strange noises emanating from drive.
    8. No problem to January 14, 2008,
    9. Mac OS 10.4.10 updates last downloaded and installed Jan 20, 2008.
    10.1 blip of the light on "The One Touch Button", then light turns solid white.
    Questions:
    1. Does Apple set sleep or lock switch for devices (drives)?
    2. If so, can it be reset manually?
    3. Does Apple have configuration profile for devices, like a registry key?
    4. If so, where is it located?
    Configuration:
    Dual 2 GHz MacBook Pro 15”
    2 GB DDR SDRAM
    OSX 10.4.10
    2 USB Ports Left and Right

    NOTE: This Update is required when using a OneTouch Drive as a bootable device. Seagate suggests that you dismount and disconnect your FireWire Drive before continuing.
    Users have identified issues when connecting OneTouch External Drives to FireWire Ports on their Mac G4 and/or G5 computers. These Problems range from system hangs, kernel panics to slow data transfer rates. The cause of these problems has been traced back to the FireWire Driver. Seagate has resolved these problems through updated FireWire Drivers.
    I am using USB and not trying to use drive as a boot device.

  • How do I embed multiple font outlines in dynamic text field

    Can anyone tell me how I can embed multiple font outlines in
    Flash MX so I can get smooth text in a dynamic
    text frame? I want to use Regular, bold and italic in various
    parts of the text.
    I was using the Character button in the properties manager
    and tried to include all Characters. That does not work.
    In the Properties manager I can choose Bold and/or Italic.
    But it becomes a universal setting that overrides my HTML tags in
    my external txt file that I am importing. I dont want all my text
    to be bold.
    If I dont select them in the properties, however, Flash will
    not embed the font that it needs.
    Is there a different way to embed fonts other than under the
    Character Tab?
    I tried to import fonts to the library, but can not select
    them.
    Your help would really be appreciated.
    Sincerely,
    ggaarde

    ggaarde wrote:
    > Thanks Urami
    > Tried your method and it does not work for me.
    > I put 3 dynamic text fields in the first frame of the
    movie. Set them up to
    > where one is regular, one is bold and one is italic
    Helvetica.
    Weird, it works for me on first go, always had in fact :)
    Show you an example, try to compare to your file see if you
    missed anything accidentally.
    http://flashfugitive.com/stuff/font/text.swf
    text file
    http://flashfugitive.com/stuff/font/text.txt
    fla
    http://flashfugitive.com/stuff/font/text.fla
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • When trying to upload a PDF to an interactive site I get the announcement:"The attached PDF file references a non-embedded font Tahoma. Please remove file, embed the font and reattach." How do I embed this, or in fact any other font ?

    When trying to upload a PDF to an interactive site I get the announcement: "The attached PDF file references a non-embedded font Tahoma. Please remove file, embed the font and reattach."
    I could not get rid of the Tahoma font in the WORD file.
    How do I embed this, or in fact any other font ?

    Thank you very much !
    Indeed, I was unaware of the enormous number of options that can be selected when converting a WORD file to PDF.
    I went thru the settings and found the right one for embedding the fonts.
    Thanks again !
    Oren

Maybe you are looking for