Problems animating OSCILLATE behaviour

Hola!
I'm try to make the oscillation of an object's rotation decay away as it stops moving.
Tried keyframing Amplitude and Speed down to zero with nice curve but it seems to have no impact at all or only occur at the end of the behaviour slug (rather than with the keyframes).
Not used this behaviour/approach before and wonder if I'm missing the obvious...
Thank you all in advance for your great brain power.
All the best
Tall Jim
Motion 4 / 10.6.6 / Beefy enough MacPro

No, that's the correct way to do it. I'm not sure why you're having trouble. It works fine for me. As an alternative, you could right-click the Amplitude of the Oscillate behavior and apply a Logarithmic behavior. Trim it to the same length as the Oscillate behavior and then in the End Value place the negative value of your Amplitude. In other words, if your amplitude is set to 50, then set the End Value of the Logarithmic behavior to -50.
But keyframing should work. Can you post a copy of the project sans media?
Andy

Similar Messages

  • Problem animating 3D position change in Photoshop Extended CS6

    I am trying to animate  a simple 3D position change in Photoshop Extended CS6 (OS 10.7.4)
    Here's what I do:
    1. I move my object to its starting position.
    2. I move the Current Time Indicator ("playhead")  to the time I want the position change to start.
    3. I click the Time‑Vary stopwatch icon on the Position layer of the timeline, and a keyframe is automatically created, no problem.
    4. I move the playhead away from the initial keyframe to the time I want the position change to end.
    5. I move my object to its ending position.
    At this point, I expect to see the second keyframe be automatically created, as advertised, BUT it is not. What's more, if i move the playhead to "scrub" through the animation, I see no movement. What's happened is the position I set for Keyframe 1 has changed to the position I just moved the object to, which I intended to be Keyframe 2.
    Any advice greatly appreciated! 
    Thanks!
    --Carol Gunn

    Same problem here. I cant seem to get any predictable behaviour from the 3d camera in terms of adding keyframes. Other non-3d layers dont seem to be affected.

  • Test case: unusual locking problem or expected behaviour?

    I have tried the following test case on both 9.0.1 and 10.2.0. The problem I am seeing here is that a table receives an exclusive lock that doesn't get trapped by a FOR UPDATE NOWAIT condition.
    Test case setup
    create table x (
    f1 number not null,
    f2 varchar2(100) );
    create table y (
    f1 number not null,
    f2 number not null,
    f3 number,
    f4 varchar2(100) );
    alter table x add constraint pk_x
    primary key (f1);
    alter table y add constraint pk_y
    primary key (f1);
    /*** This is a self-referential integrity check ****/
    alter table y add constraint fk_y
    foreign key (f3)
    references y ( f1 );
    create or replace trigger trig_y
    before insert on y
    for each row
    begin
    update x
    set f2 = 'trig test ' || to_char(sysdate,'ddmmyyyy hhmiss')
    where f1 = :new.f2;
    end;
    insert into x values (1,'test 1');
    insert into x values (2,'test 2');
    insert into x values (3,'test 3');
    insert into y values (2,2,2,'y test 2');
    insert into y values (3,3,3,'y test 3');
    commit;
    Test case actions
    This requires 3 independent sessions to be started.
    * SESSION 1 *
    select * from x
    where f1 = 1
    for update nowait;
    * SESSION 2 *
    insert into y values (1,1,1,'test');
    -- This session waits because of the trigger that is attempting to update the
    -- same row that is locked in session 1.
    * SESSION 3 *
    select *
    from y
    where f1 = 2
    for update of f1 nowait;
    -- The row lock succeeds.
    -- Now update the primary key column in Y.
    update y
    set f1 = 2
    where f1 = 2;
    -- This update statement waits because of a lock. Why is this as the row
    -- has been successfully locked by the FOR UPDATE?
    -- Remove the foreign key constraint from table Y and try again. This time
    -- the update will not wait but will complete successfully.
    Is this expected behaviour, or a bug in self-referential integrity checks, or in
    all foreign keys? The reason this came about in our application is because FORMS attempts to update every column on a block regardless of whether all values in the block have changed. This includes the primary key columns.
    We have worked around this issue for now by setting the 'update changed columns only' property on blocks in the forms.

    No. All you are doing there is stating your intention of later updating the selected locked rows.
    You may not even update any rows, if the program logic decides that way. Your actual update is the only case where the validation of foreign key will be applied. It cannot be done at the time of doing FOR UPDATE select, since the database does not know what new value is going to be when you do update so it is not possible to check.
    Also, note that yoru statement did NOT fail. It was just rying to validate your foreign key, and in that process wants to make sure no one else makes the changes. The statement was waiting for resource to be free, it DID NOT FAIL (no error was raised).

  • Problem: Animation publishing incorrectly, but working in Cp preview.

    Hi,
    I created an animation in Flash CS5 with some code in it (see below for the code). What the code does is it allows the user to play/pause the movie by pressing the spacebar. It allows that keyboard shortcut to be used on all slides except certain ones (in this case: slides 9, 13, and 15). I just need to drop this animation onto the first slide of my Cp project, and the function works throughout the rest of the project. When I hit F4 to preview, it works great, but when I publish it, it has problems: It won't work, for starters, but also, when I go to a slide, press the spacebar, and then go back to the previous slide, the play/pause button down on the playbar shows the 'play' icon (meaning the video should be paused), but the video continues to play. The play/pause button in the playbar and the keyboard shortcut do nothing. Keep in mind that it works perfectly when I 'F4' it, just not when I publish it and open the SWF. Usually when stuff works in Cp but not when published, its something in the publish settings that's the problem, but I can't find anything in there that would help. Plus, F4ing the project within Cp should factor in the publish settings. Just to be clear, all I need help with is making the published file work exactly like the F4 preview. The code is below, and thanks to anyone that can help.
    // Keyboard Shortcut: Play/Pause (Space)
    stage.addEventListener(KeyboardEvent.KEY_DOWN, keypressPause);
    function keypressPause(event:KeyboardEvent):void
        switch(event.keyCode)
                case Keyboard.SPACE :
                var myRoot:MovieClip = MovieClip(root);
                var mainmov:MovieClip = MovieClip(myRoot.parent.root);
                if (mainmov.cpInfoCurrentSlide != 9 &&
                    mainmov.cpInfoCurrentSlide != 13 &&
                    mainmov.cpInfoCurrentSlide != 15)
                        if (mainmov.rdcmndPause == 1)
                            {mainmov.rdcmndResume = 1;}
                            else
                            {mainmov.rdcmndPause = 1;}
                        break;

    The issue is the way the code is obtaining Captivate's main time line (mainmov).  When you F4 the movie, it's being loaded differently than when you F12 web preview... thus the main time line is obtained differently.  Here's a way to search for the main time line and the rest of the code:
    import flash.display.DisplayObject;
    import flash.display.DisplayObjectContainer;
    import flash.utils.describeType;
    import flash.display.MovieClip;
    var mainmov:MovieClip = findMainMovie();
    // Keyboard Shortcut: Play/Pause (Space)
    stage.addEventListener(KeyboardEvent.KEY_DOWN, keypressPause);
    function keypressPause(event:KeyboardEvent):void
        switch(event.keyCode)
                        case Keyboard.SPACE :
                        if (mainmov.cpInfoCurrentSlide != 9 &&
                                  mainmov.cpInfoCurrentSlide != 13 &&
                                  mainmov.cpInfoCurrentSlide != 15){
                                            if (mainmov.rdcmndPause == 1){
                                                      mainmov.rdcmndPause = 0;
                                                      mainmov.rdcmndResume = 1;
                                            }else{
                                                      mainmov.rdcmndPause = 1;
                                                      mainmov.rdcmndResume = 0;
                        break;
    //Returns the Captivate MainTimeLine
    function findMainMovie():MovieClip
              var cpMovie:MovieClip;
              //cpMovie = parent.parent.parent;
              cpMovie = findParentByType(this.parent, "CaptivateMainTimeline") as MovieClip;
              return cpMovie;
    //Iteratively finds a parent object by type
    function findParentByType(source:DisplayObject, parentType:String):DisplayObjectContainer {
              var currentTarget:DisplayObjectContainer = source.parent;
              while (currentTarget != null) {
                        if (describeType(currentTarget)[email protected](parentType) >= 0) return currentTarget;
                        currentTarget = currentTarget.parent;
              return null; // We're at the root
    The code to search for the main time line was gleaned from CpGears written by Whyves
    I'd encourage you to think about making this into a Captivate static widget using the CpGears framework or the WidgetFactory framework by Tristan Ward.  Either framework will make your life much easier.
    I usually set the two variables in tandem: rdcmndPause and rdcmndResume so that all variables stay in sync.
    When I dropped the animation into the Cp project, I had to set it to display for "rest of project" in order for it to work across all slides.
    Report back and let us know how it goes.
    Jim Leichliter

  • Very Bizarre (to me, anyway) problem animating particle emitter movement

    I'm fairly new to Motion, and I'm sure this falls under the "missing a piece of info" category, but for the life of me, I can't figure this one out.
    I've added a simple particle emitter to a video. It's called "Pop Star," found in the "Sparkles" subfolder of the particle emitters folder in the library.
    I want to animate some basic movement of the entire particle emitter. I basically just want it to move from about the middle of the screen to the upper right corner of the screen while doing its particle emitter magic.
    I have placed the emitter in a group by itself. When I choose the group and drag, I have no problem whatsoever moving the emitter wherever I want. HOWEVER, when I try to RECORD the movement, or when I try to set movement keyframes the same way I do when animating any other content, the emitter will no longer move at all. Instead, when I click the group and drag, a red control point appears and I end up dragging that. When I play the animation back, the symbol representing the anchor point is moving along the line from the first control point to the one I created, but the particle emitter itself does not move at all.
    I've tried this on two separate computers, so I'm sure it's user error - I just don't understand what's happening...or NOT happening.
    Any advice/ideas/suggestions appreciated. Thanks in advance...

    Thanks for the response. So the location parameter is unable to be changed in certain emitters like this one? I chose another emitter at random, "Diesel Fire" I think, and I WAS able to animate the movement of that emitter the way I was trying to animate the movement of the "Pop Star" emitter. I have to admit, I'm still having a hard time understanding why that is.
    I suppose a workaround here would be to export the "Pop Star" emitter separately and then bring it back in as a .mov file?
    Message was edited by: Diss

  • AttachMovie problem animating

    I have a bit of an odd problem with attachMovie.
    In my library I have several movies all build up in pretty much the same way.
    They are a couple of frames long with a different image on each frame.
    They have a color layer at 70% as sort of an overlay.
    And on top of that a layer with a movieclip to serve as a mask for the overlay.
    On the stage I have a movieclip named holder to attach them to and a couple of buttons to do that.
    The buttons execute the following function:
    resetVideo = function (idname, flvname) {
        my_video.clear();
        navholder.attachMovie(idname,"navigatie",1);
        my_video.attachVideo(stream_ns);
        stream_ns.play("FLV/"+flvname+".flv");
        trace("check")
    This loads a movie into the my_video object and attaches one of the movieclips to the navholder.
    So far everything works fine. The video loads and the movieclips get replaced every time.
    But now comes the weird part.
    I'm animating the movieclips based on data that is received from cuepoints in the loaded movie and the script for that looks like this:
    stream_ns.onCuePoint = function(infoObject:Object) {
        if (infoObject.parameters != undefined)
            navholder.navigatie.gotoAndStop(infoObject.parameters.navs_Slider);
            navholder.navigatie.navmask._xscale =navholder.navigatie.navmask._yscale=parseFloat(infoObject.parameters.maskscale_Slider)*n avscale;
            navholder.navigatie.navmask._x = parseFloat(infoObject.parameters.maskposx_Slider)*navscale;
            navholder.navigatie.navmask._y = parseFloat(infoObject.parameters.maskposy_Slider)*navscale;
    The thing that happens now is that the gotoAndStop part works fine and the clip goes nicely through the frames but the animation of the mask doesn't work at all. I've checked the naming several times and when I place the clip directly on the stage the mask animation works fine. So somehow when I use the attachMovie command the link to the navmask instance gets either lost or it's not possible to animate it at all in an attached movieclip.
    If anyone could shed some light on this it would be highly appriciated.
    Grtz,
    TaoHunter

    Sigh... Problem solved:
    For the navscale in the formula
    navholder.navigatie.navmask._x = parseFloat(infoObject.parameters.maskposx_Slider)*navscale;
    I used the width of the navigatie object and I hadn't changed that one to navholder.navigatie._width so therefore the values all came back as NaN :/

  • Problems Animating for NTSC DV video

    I'm having a huge problem creating animations for a project in Final Cut Pro. It's a short educational video which is set at 720 x 480 Pixel Aspect Ratio with 3:2 Anamorphic Widescreen setting.  I've got a still image that I've added a glow effect to in Adobe After Effects CS3. I used the NTSC DV Preset at 720 x 480. When I import (Quicktime File with Animation setting including Alpha - Millions of Colors + ) into Final Cut Pro the image is aliased badly. I can only assume that After Effects or even Final Cut is changing the pixel aspect ratio or perhaps I have the wrong aspect ratio. I'm not sure as I thought I matched them up properly. I even tried taking basic text in After Effects. Exporting and importing into Final Cut but still I get horrible aliasing. I've even tried the NTSC DV Widescreen Preset, NTSC Preset, creating the comp in a 1280 x 720 NTSC comp and then dropping it into a regular NTSC DV comp. There has to be some integral knowledge I'm missing here. Thanks for any help you guys can give. I've tried googling the answer to this but all I get is an explanation of differen't aspect ratios as I'm not sure how to phrase the problem I'm having.

    It turns out that I made a few mistakes.   The footage is 1280 x 720 at 29.97 FPS. The animations I made were 720 x 480.  I didn't realize this until I put them on my timeline and notice the wireframe outline for the animation was smaller than the footage. Although it is kinda weird as when I check the footage properties in Final Cut it shows that the size is 720 x 480. Strange. And the biggest mistake was that the preview window was not displaying quality due to system limitations. After rendering the animation and resulting composite looks a lot better. Although I the edges are not as crisp as I wish they were it is passable for now.
    Here's the link to the video. I think it looks okay although there's obviously an interlacing issue.
    http://www.youtube.com/watch?v=oqw5nkIvHe0&feature=channel_page

  • Problem with the behaviour of input ready key figure

    Dear All,
    I am using one input ready key figure in a globally reusable key figure structure for my planning layout. When the input ready query is executed as such, the i/p ready key figure is readily available for inputting any data (as expected), but the moment the global reference from the key figure structure is removed in the query designer (from the context menu - > Remove Reference), that i/p ready key figure structure turns out to be non input ready and hence no entering of data is then possible.
    I am removing the reference from the structure for some other editing purpose but the above mentioned problem comes in between.
    The only input that i can provide is that this i/p ready key figure utilizes two hidden inverse formulas, but eventhough things are fine when the reference is not removed.

    Hello Durgesh,
    I suspect this to be a bug. Please open a customer message so SAP support can analyze the issue (include technical names of the original query with global structure and your new query where the reference was removed; put it on component BW-PLA-IP-QD).
    Regards,
    Marc
    SAP Techology RIG

  • MacBook Pro speed problems and strange behaviour

    Hi all,
    The last few weeks I experienced a serious performance fall back of my MacBook Pro (sometimes it takes minutes to open a simple application like Safari, or show the content of a folder). So yesterday I decided to address this problem. This is what i did:
    ° Cleaned up my desktop
    ° Cleared up some space on my HD (to about 110 GB = +20% of 500 GB)
    ° Cleaned up
    ° In Disk Utility verified and repaired the Disk
    ° In Disk Utility verified and repaired Disk Permissions
    ° Disabled Dashboard
    ° Deleted MacKeeper (I keep on reading bad reviews of the application)
    ° Purged my RAM
    ° Ran Onyx Maintenance Scripts
    ° Cleared most of the cache using Onyx
    Between all these activities I repeatedly restarted the MacBook Pro.
    All with little or no result. The Mac is still very slow. It’s getting really frustrating. But even worse is that after deleting more than 60 GB from my hard drive there seems to be only 50 GB available on the HD, the same amount as before I started deleting stuff.
    At least that’s what System Overview (About this Mac) is showing me, the same number that iStat Menus 4.1 and Onyx are showing. But when I open a Finder window, or ctrl click the HD icon and choose Show Info, I see that there is 110 GB free space on the hard drive.
    Given the fact that the Mac is still very slow and the fact that the system apparently doesn’t recognize the free space to its full extend, I wonder if these two are related.`
    Furhtermore I experience some minor problems, like incorrect dates of files…
    I would appreciate any suggestions to get this solved.
    Cheers,

    Thanks for your patience Linc. I’m not sure if I want to erase and reinstall Mac OS X without giving other possibel solutions a chance. So these are the results of the UNIX shell script. I hope this gives you a clue to how to solve the problem.
    Cheers
    Start time: 17:20:13 06/01/14
    Model Identifier: MacBookPro8,2
    System Version: OS X 10.9.3 (13D65)
    Kernel Version: Darwin 13.2.0
    Boot Mode: Normal
    Time since boot: 9 minutes
    Log
       May 31 00:44:30 process SystemUIServer[212] caught causing excessive wakeups. Observed wakeups rate (per sec): 339; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45143
       May 31 01:57:04 process SystemUIServer[421] caught causing excessive wakeups. Observed wakeups rate (per sec): 452; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45254
       May 31 02:01:40 process SystemUIServer[212] caught causing excessive wakeups. Observed wakeups rate (per sec): 292; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 46382
       May 31 18:49:37 process SystemUIServer[211] caught causing excessive wakeups. Observed wakeups rate (per sec): 276; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 46514
       May 31 18:59:21 process firefox[420] caught causing excessive wakeups. EXC_RESOURCE supressed due to audio playback
       May 31 20:13:01 process SystemUIServer[237] caught causing excessive wakeups. Observed wakeups rate (per sec): 349; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45948
       Jun  1 01:03:56 Previous Shutdown Cause: -60
       Jun  1 01:05:12 Sound assertion in AppleHDAFunctionGroup at line 1042
       Jun  1 17:14:10 process SystemUIServer[204] caught causing excessive wakeups. Observed wakeups rate (per sec): 445; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 47855
    I/O per process: MacJournal (UID 501) is using 6 MB/s
    kexts
       at.obdev.nke.LittleSnitch (4052)
    Daemons
       org.macosforge.xquartz.privileged_startx
       com.zeobit.MacKeeper.plugin.AntiTheft.daemon
       com.zeobit.MacKeeper.AntiVirus
       com.oracle.java.JavaUpdateHelper
       com.noiseindustries.FxFactory
       com.noiseindustries.FxFactory.FxPlug
       com.microsoft.office.licensing.helper
       com.lsreset
       com.freemacsoft.appcleanerd
       com.bjango.istatmenusdaemon
       com.Belgacom.backup
       com.adobe.SwitchBoard
       com.adobe.fpsaud
       at.obdev.littlesnitchd
    Agents
       org.macosforge.xquartz.startx
       com.wacom.wacomtablet
       com.bjango.istatmenusagent
       com.Belgacom.status
       com.adobe.AdobeCreativeCloud
       at.obdev.LittleSnitchUIAgent
       com.zeobit.MacKeeper.Helper
       com.spotify.webhelper
       com.google.keystone.user.agent
       com.digitalrebellion.SoftwareUpdateAutoCheck
    launchd
       /System/Library/LaunchAgents/com.apple.AirPortBaseStationAgent.plist
           (com.apple.AirPortBaseStationAgent)
       /Library/LaunchAgents/at.obdev.LittleSnitchUIAgent.plist
           (at.obdev.LittleSnitchUIAgent)
       /Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist
           (com.adobe.AAM.Startup-1.0)
       /Library/LaunchAgents/com.adobe.AdobeCreativeCloud.plist
           (com.adobe.AdobeCreativeCloud)
       /Library/LaunchAgents/com.Belgacom.status.plist
           (com.Belgacom.status)
       /Library/LaunchAgents/com.bjango.istatmenusagent.plist
           (com.bjango.istatmenusagent)
       /Library/LaunchAgents/com.wacom.wacomtablet.plist
           (com.wacom.wacomtablet)
       /Library/LaunchAgents/org.macosforge.xquartz.startx.plist
           (org.macosforge.xquartz.startx)
       /Library/LaunchDaemons/at.obdev.littlesnitchd.plist
           (at.obdev.littlesnitchd)
       /Library/LaunchDaemons/com.adobe.fpsaud.plist
           (com.adobe.fpsaud)
       /Library/LaunchDaemons/com.adobe.SwitchBoard.plist
           (com.adobe.SwitchBoard)
       /Library/LaunchDaemons/com.apple.aelwriter.plist
           (com.apple.aelwriter)
       /Library/LaunchDaemons/com.Belgacom.backup.plist
           (com.Belgacom.backup)
       /Library/LaunchDaemons/com.bjango.istatmenusdaemon.plist
           (com.bjango.istatmenusdaemon)
       /Library/LaunchDaemons/com.freemacsoft.appcleanerd.plist
           (com.freemacsoft.appcleanerd)
       /Library/LaunchDaemons/com.lsreset.plist
           (com.lsreset)
       /Library/LaunchDaemons/com.microsoft.office.licensing.helper.plist
           (com.microsoft.office.licensing.helper)
       /Library/LaunchDaemons/com.noiseindustries.FxFactory.FxPlug.plist
           (com.noiseindustries.FxFactory.FxPlug)
       /Library/LaunchDaemons/com.noiseindustries.FxFactory.plist
           (com.noiseindustries.FxFactory)
       /Library/LaunchDaemons/com.oracle.java.JavaUpdateHelper.plist
           (com.oracle.java.JavaUpdateHelper)
       /Library/LaunchDaemons/com.zeobit.MacKeeper.AntiVirus.plist
           (com.zeobit.MacKeeper.AntiVirus)
       /Library/LaunchDaemons/com.zeobit.MacKeeper.plugin.AntiTheft.daemon.plist
           (com.zeobit.MacKeeper.plugin.AntiTheft.daemon)
       /Library/LaunchDaemons/org.macosforge.xquartz.privileged_startx.plist
           (org.macosforge.xquartz.privileged_startx)
       Library/LaunchAgents/com.apple.AddressBook.ScheduledSync.PHXCardDAVSource.UUID. plist
           (com.apple.AddressBook.ScheduledSync.PHXCardDAVSource.UUID)
       Library/LaunchAgents/com.apple.FolderActions.enabled.plist
           (com.apple.FolderActions.enabled)
       Library/LaunchAgents/com.apple.FolderActions.folders.plist
           (com.apple.FolderActions.folders)
       Library/LaunchAgents/com.apple.SafariBookmarksSyncer.plist
           (com.apple.Safari)
       Library/LaunchAgents/com.digitalrebellion.SoftwareUpdateAutoCheck.plist
           (com.digitalrebellion.SoftwareUpdateAutoCheck)
       Library/LaunchAgents/com.google.keystone.agent.plist
           (com.google.keystone.user.agent)
       Library/LaunchAgents/com.spotify.webhelper.plist
           (com.spotify.webhelper)
       Library/LaunchAgents/com.zeobit.MacKeeper.Helper.plist
           (com.zeobit.MacKeeper.Helper)
       Library/LaunchAgents/jp.co.canon.Inkjet_Extended_Survey_Agent.plist
           (jp.co.canon.Inkjet_Extended_Survey_Agent)
    Startup items
       /Library/StartupItems/ChmodBPF/ChmodBPF
       /Library/StartupItems/ChmodBPF/StartupParameters.plist
       /Library/StartupItems/ProTec6b/DemoOver
       /Library/StartupItems/ProTec6b/Nalpeirond6b
       /Library/StartupItems/ProTec6b/ProTec6b
       /Library/StartupItems/ProTec6b/StartupParameters.plist
    Bundles
       /System/Library/Extensions/EPSONUSBPrintClass.kext
           (com.epson.print.kext.USBPrintClass)
       /System/Library/Extensions/RoxioBluRaySupport.kext
           (com.roxio.BluRaySupport)
       /System/Library/Extensions/TabletDriverCFPlugin.bundle
           (N/A)
       /System/Library/Extensions/UsbEthernetGadget.kext
           (com.tomtom.driver.UsbEthernetGadget)
       /System/Library/Extensions/Wacom Tablet.kext
           (com.wacom.kext.wacomtablet)
       /Library/Audio/Plug-Ins/Components/Auto-Tune_Evo_AU.component
           (com.Antares.musiceffects.Auto-Tune_Evo_AU.component)
       /Library/Audio/Plug-Ins/Components/iZRX2DeclickerAUHook.component
           (com.izotope.audioplugins.AU.RX2Declicker)
       /Library/Audio/Plug-Ins/Components/iZRX2DeclipperAUHook.component
           (com.izotope.audioplugins.AU.RX2Declipper)
       /Library/Audio/Plug-Ins/Components/iZRX2DecracklerAUHook.component
           (com.izotope.audioplugins.AU.RX2Decrackler)
       /Library/Audio/Plug-Ins/Components/iZRX2DenoiserAUHook.component
           (com.izotope.audioplugins.AU.RX2Denoiser)
       /Library/Audio/Plug-Ins/Components/iZRX2HumRemovalAUHook.component
           (com.izotope.audioplugins.AU.RX2HumRemoval)
       /Library/Audio/Plug-Ins/Components/iZRX2SpectralRepairAUHook.component
           (com.izotope.audioplugins.AU.RX2SpectralRepair)
       /Library/Audio/Plug-Ins/MAS/iZRX2DeclickerMASHook.bundle
           (com.izotope.audioplugins.MAS.RX2Declicker)
       /Library/Audio/Plug-Ins/MAS/iZRX2DeclipperMASHook.bundle
           (com.izotope.audioplugins.MAS.RX2Declipper)
       /Library/Audio/Plug-Ins/MAS/iZRX2DecracklerMASHook.bundle
           (com.izotope.audioplugins.MAS.RX2Decrackler)
       /Library/Audio/Plug-Ins/MAS/iZRX2DenoiserMASHook.bundle
           (com.izotope.audioplugins.MAS.RX2Denoiser)
       /Library/Audio/Plug-Ins/MAS/iZRX2HumRemovalMASHook.bundle
           (com.izotope.audioplugins.MAS.RX2HumRemoval)
       /Library/Audio/Plug-Ins/MAS/iZRX2SpectralRepairMASHook.bundle
           (com.izotope.audioplugins.MAS.RX2SpectralRepair)
       /Library/Audio/Plug-Ins/VST/iZotope RX 2 Declicker.vst
           (com.izotope.audioplugins.VST.RX2Declicker)
       /Library/Audio/Plug-Ins/VST/iZotope RX 2 Declipper.vst
           (com.izotope.audioplugins.VST.RX2Declipper)
       /Library/Audio/Plug-Ins/VST/iZotope RX 2 Decrackler.vst
           (com.izotope.audioplugins.VST.RX2Decrackler)
       /Library/Audio/Plug-Ins/VST/iZotope RX 2 Denoiser.vst
           (com.izotope.audioplugins.VST.RX2Denoiser)
       /Library/Audio/Plug-Ins/VST/iZotope RX 2 Hum Removal.vst
           (com.izotope.audioplugins.VST.RX2HumRemoval)
       /Library/Audio/Plug-Ins/VST/iZotope RX 2 Spectral Repair.vst
           (com.izotope.audioplugins.VST.RX2SpectralRepair)
       /Library/Extensions/LittleSnitch.kext
           (at.obdev.nke.LittleSnitch)
       /Library/Internet Plug-Ins/AdobeAAMDetect.plugin
           (com.AdobeAAMDetectLib.AdobeAAMDetect)
       /Library/Internet Plug-Ins/AdobePDFViewer.plugin
           (com.adobe.acrobat.pdfviewer)
       /Library/Internet Plug-Ins/EPPEX Plugin.plugin
           (N/A)
       /Library/Internet Plug-Ins/Flash Player.plugin
           (N/A)
       /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.plugin
           (net.telestream.wmv.plugin)
       /Library/Internet Plug-Ins/JavaAppletPlugin.plugin
           (com.oracle.java.JavaAppletPlugin)
       /Library/Internet Plug-Ins/Musicnotes.plugin
           (com.musicnotes.plugin)
       /Library/Internet Plug-Ins/Musicnotes.plugin/Contents/Resources
           (com.musicnotes.plugin)
       /Library/Internet Plug-Ins/SharePointBrowserPlugin.plugin
           (com.microsoft.sharepoint.browserplugin)
       /Library/Internet Plug-Ins/SharePointWebKitPlugin.webplugin
           (com.microsoft.sharepoint.webkitplugin)
       /Library/Internet Plug-Ins/Silverlight.plugin
           (com.microsoft.SilverlightPlugin)
       /Library/Internet Plug-Ins/WacomNetscape.plugin
           (com.wacom.tabletplugin)
       /Library/Internet Plug-Ins/WacomSafari.plugin
           (com.wacom.safaritabletplugin)
       /Library/PreferencePanes/Becloud PC Backup.prefPane
           (com.Belgacom.configpane)
       /Library/PreferencePanes/Flash Player.prefPane
           (com.adobe.flashplayerpreferences)
       /Library/PreferencePanes/Growl.prefPane
           (com.growl.prefpanel)
       /Library/PreferencePanes/WacomTablet.prefPane
           (com.wacom.settingsPrefPane)
       /Library/ScriptingAdditions/Adobe Unit Types.osax
           (N/A)
       Library/Address Book Plug-Ins/SkypeABDialer.bundle
           (com.skype.skypeabdialer)
       Library/Address Book Plug-Ins/SkypeABSMS.bundle
           (com.skype.skypeabsms)
       Library/Audio/Plug-Ins/Components/A52Codec.component
           (com.shepmater.A52Codec)
       Library/Caches/com.apple.Safari/Extensions/extension.safariextz
           (com.jonez.vidxplugin)
       Library/Caches/com.apple.Safari/Extensions/torrenthandler.safariextension
           (torrenthandler.com)
       Library/Internet Plug-Ins/Google Earth Web Plug-in.plugin
           (com.Google.GoogleEarthPlugin.plugin)
       Library/Internet Plug-Ins/RealPlayer Plugin.plugin
           (com.RealNetworks.RealPlayerPlugin)
       Library/PreferencePanes/Perian.prefPane
           (org.perian.PerianPane)
       Library/QuickTime/AC3MovieImport.component
           (com.cod3r.ac3movieimport)
       Library/QuickTime/Perian.component
           (org.perian.Perian)
       Library/Services/ToastIt.service
           (com.roxio.ToastItService)
       Library/Widgets/Fetch.wdgt
           (com.fetchsoftworks.widget.fetchupload)
       Library/Widgets/iStat Pro.wdgt
           (com.iSlayer.iStatpro4.widget)
    dylibs
       /usr/lib/ColorEfexPro4FC.dylib
       /usr/lib/SilverEfexPro2FC.dylib
       /usr/lib/Viveza2FC.dylib
    Contents of /etc/hosts
       127.0.0.1    localhost
       255.255.255.255    broadcasthost
       ::1             localhost
       fe80::1%lo0    localhost
       127.0.0.1    activate.adobe.com
       127.0.0.1    practivate.adobe.com
       127.0.0.1    ereg.adobe.com
       127.0.0.1    wip3.adobe.com
       127.0.0.1    activate.wip3.adobe.com
       127.0.0.1    3dns-3.adobe.com
       127.0.0.1    3dns-2.adobe.com
       127.0.0.1    adobe-dns.adobe.com
       127.0.0.1    adobe-dns-2.adobe.com
       127.0.0.1    adobe-dns-3.adobe.com
       127.0.0.1    ereg.wip3.adobe.com
       127.0.0.1    activate-sea.adobe.com
       127.0.0.1    wwis-dubc1-vip60.adobe.com
       127.0.0.1    activate-sjc0.adobe.com
       127.0.0.1    hl2rcv.adobe.com
       127.0.0.1    lm.licenses.adobe.com
       127.0.0.1    na2m-pr.licenses.adobe.com
       127.0.0.1    ims-na1-prprod.adobelogin.com
       127.0.0.1    na4r.services.adobe.com
       127.0.0.1    na1r.services.adobe.com
    Contents of /etc/pf.conf
       scrub-anchor "com.apple/*"
       nat-anchor "com.apple/*"
       rdr-anchor "com.apple/*"
       dummynet-anchor "com.apple/*"
       anchor "com.apple/*"
       load anchor "com.apple" from "/etc/pf.anchors/com.apple"
    Contents of /etc/ssh_config (ASCII English text, with very long lines)
        Host *
          SendEnv LANG LC_*
       Host *
           XAuthLocation /opt/X11/bin/xauth
    Contents of /etc/sshd_config
       SyslogFacility AUTHPRIV
       AuthorizedKeysFile    .ssh/authorized_keys
       UsePrivilegeSeparation sandbox        # Default for new installations.
       AcceptEnv LANG LC_*
       Subsystem    sftp    /usr/libexec/sftp-server
       XAuthLocation /opt/X11/bin/xauth
    Font issues: 13
    Bad plists
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content1-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content10-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content100-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content101-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content102-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content103-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content104-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content105-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content106-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content107-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content108-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content109-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content11-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content110-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content111-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content112-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content113-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content114-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content115-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content116-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content117-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content118-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content119-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content12-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content120-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content121-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content122-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content123-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content124-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content125-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content13-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content14-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content15-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content16-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content17-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content18-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content19-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content2-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content20-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content21-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content22-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content23-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content24-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content25-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content26-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content27-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content28-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content29-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content3-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content30-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content31-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content32-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content33-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content34-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content35-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content36-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content37-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content38-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content39-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content4-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content40-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content41-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content42-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content43-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content44-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content45-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content46-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content47-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content48-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content49-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content5-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content50-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content51-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content52-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content53-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content54-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content55-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content56-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content57-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content58-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content59-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content6-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content60-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content61-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content62-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content63-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content64-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content65-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content66-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content67-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content68-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content69-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content7-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content70-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content71-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content72-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content73-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content74-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content75-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content76-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content77-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content78-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content79-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content8-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content80-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content81-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content82-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content83-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content84-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content85-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content86-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content87-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content88-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content89-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content9-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content90-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content91-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content92-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content93-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content94-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content95-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content96-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content97-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content98-paginated.plist
       Library/Containers/com.apple.BKAgentService/Data/Documents/iBooks/Books/8410728 22.ibooks/OPS/assets/hints/content99-paginated.plist
       Library/Preferences/com.solidstatenetworks.awkhost.plist
    Restricted files: 1318
    Safari extensions
       torrenthandler
       extension
    Elapsed time (s): 309

  • Dodgy router problem - incredibly strange behaviour.

    After waking up this morning to discover my Belkin wireless modem router was entirely dead with no apparent cause of death, I went out to buy another. My new model is again a Belkin (I think its a newer model or something) and I (apparently) managed to set it up correctly with our BTYahoo Broadband connection. The router's setup pages displayed correctly in Internet Explorer on our PC (which is connected to the router via LAN and sits downstairs) and the green words saying CONNECTED appeared. MSN messenger worked and I could visit (most) websites without a problem. I had guessed the settings, guessed the password also cos I couldn't find out documentation, and apparently everything worked.
    Upstairs on my wireless iMac however things are not as straightforwards. Before I came upstairs I correctly started a new wireless network with a WPA password etc and my iMac connects to it fine. But heres the thing: something is stopping only SOME of my apps from connecting. Safari works for some websites (i'm online posting this from Safari), but not all (www.arsenal.com is one that doesnt work) and also Weatherdock, which gets it info from www.weather.com and sits in my menubar doesnt connect. However, my bittorrent client works fine. Mail doesnt connect, and nor does Backup to my iDisk. Firefox works for the same websites Safari does. iTunes doesnt seem to be able to get onto the iTMS.
    Have I goofed up a setting somewhere? What the **** is going on?
    I've already scratched my network settings in Mac OS X, deleted all my previous locations and set up a new one, which network assistant said was working. Can anyone help?

    You are having trouble resolving domain names it seems, but since your computer has cached some IP addresses of certain domains, you can browse and connect to some websites but not others.
    Anyway, what you need to do is put the IP address of your DNS servers (your ISP should provide you with this) into the correct fields in your computer and your router.
    I did a quick search on google and these might be the two you are looking for, but I am not sure, the information is a bit dated and they may have changed.
    Primary DNS Server: 194.73.73.94
    Secondary DNS Server: 194.73.73.95

  • Problems animating combined move/resize transition

    I'm trying to create an animated transition, and have run
    into some strange issues. In the base state I have a bunch of
    buttons in a Tile component. In a second state I decrease the
    tileHeight and tileWidth values, and the width of the Tile itself
    so it's only one column. That in itself works fine.
    I'm then creating a transition for the state change that
    animates move and resize operations on the buttons that the changes
    to the Tile cause. If I animate *only* the move or resize, it works
    great. If I animate the two together, only the resize animates,
    while the move doesn't.
    Any idea what's going on or - more importantly - how to get
    around it? Code attached.

    What do you mean by auto-layout ?
    Well, Indead I use :
    <code>
    <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" width="1000" height="1314"
    creationComplete="parcoursData.send()" >
    </code>
    What I have to put instead of this Canvas ?

  • Problem with accordion behaviours

    Hi, with the new update, my accordions are not behaving as I set them up initially and I cannot use the new settings to effect any changes. I am aware that they have been updated, etc. I have them all closed initially and even though "Overlap items below" is not selected, they still overlap objects below them when I expand them.
    Here is an example of a page I uploaded with the previous version (at the bottom of the page) and how they "should" work http://www.laureus.co.za/about.html.
    So when I export it now, it just overlaps my footer completely.
    Christoff

    Hi Marc,
    I think this was meant for Christoff,
    it came to me instead.
    I replied to him that I have seen issues with the accordion not showing up correctly, specifically in Camino.
    Our Muse/Edge site is working well.
    Thanks,
    Bill Ticineto
    Go Dog Design Group
    17 East Ridge Road
    Ridgefield CT 06877
    203-788-9476
    www.GoDogDesign.com
    Notice of confidentiality: This message is for the intended recipient only and may contain privileged, proprietary, or otherwise private information.
    If you are not the intended recipient of this message, you may not copy, forward, disclose its contents to anyone else, or otherwise use it.
    If you have received it in error, please notify the sender immediately, delete the original, and destroy all copies.

  • JSF fragment reusability  - problem or normal behaviour ?

    Hi all,
    I have one bounded TF (let say TF_A) , consisting of one jsf fragment (let say, fragment A).
    From that TF, I am trying to run another TF (in the af:popup, as as static region) , which uses the same fragment A.
    But, when popup rises up, I am getting:
    oracle.jbo.InvalidOperException: JBO-35110: Nested BindingContainer of this type taskflows.fragment_APageDef is already included in this parent BindingContainer:....So, it is possible to use the same jsf fragment at the same time, in both TF ?
    If yes, then how ?
    Jdev 11.1.1.6

    No, this cannot be done, because my wrong design of jsf fragment.
    I added second TF as a region in the af:popup, which is part of fragment
    So, in the fragment's pageDef, there is TF binding which references second TF, which, in turn, contains the same fragment as a View activity.
    So, the question is - How to design both TF to use same fragment, but to have ability to call second TF in the af:popup ?
    The popup cannot be part of jsf fragment, because of TF binding in the pageDef...or can ?!?

  • Emails from camera roll saved to wrong folder -- IMAP Path Prefix Problem

    I think there's a problem with the behaviour of the way picture emails are saved when you have an IMAP Path Prefix.
    I have an IMAP Path Prefix of "INBOX"... i.e. my sent folder is Inbox/Sent. Any plaintext emails I send from the email application from the iPhone are correctly saved to that folder and I can see them in that folder immediately via the iPhone's interface.
    When I navigate to the camera roll or photo album and send a picture email to somebody, and use the iPhone to go view the sent folder, they never appear in the sent folder. For a while I thought they weren't being saved at all, but I just discovered from my home PC that the camera roll app is indeed saving them somewhere: in Inbox/Inbox/Sent.
    That's right--I now have a new Inbox folder inside my Inbox folder, with just a Drafts and Sent folder. Drafts is Empty, Sent has all the picture emails I've ever sent with the iPhone.
    Bug? I think so... Emails emanating from the camera app are taking the IMAP Path Prefix twice instead of once, and then creating that Path Prefix folder if it doesn't already exist.
    Anybody else with an IMAP Path Prefix experiencing this with picture emails from the camera roll?
    Thanks,
    Andi
      Windows XP Pro  

    Ahhh interesting to find someone else with the same problem! It definitely happens when you send a photo message. My mac mail it shows my Inbox with a new nested sent items folder. I am using fusemail and the iPhone seriously messes with the folder structure. All sent items folders vanished for some reason on the mail server (but not in mac mail oddly) and I had to call technical support to make them reappear. I think this happened when I altered the Settings, Mail, Advanced settings, Mail box behaviour folders after having this problem with sent photo messages.
    Now fusemail's webserver shows TWO Inboxes, one nested inside the other, and a "Sent Items" folder within the "new" inboxes.
    Totally strange. I think there is a bug or two in the iPhone's IMAP software. Hoping for a bug fix soon, but until then perhaps a good work around might be to set the iPhone to store sent messages locally?

  • E72 updated to 051.018 - some problems - quick que...

    Hi.
    I recently updated my E72 and been having a few problems (erratic Bluetooth behaviour, slow and sluggish window changes, contacts from address book stopped appearing on screen when I get phone calls and messages (instead I get the full number, which is annoying), etc. etc. etc.)
    I've been reading about people making "hard resets" to their phones.
    How can I do that on my E72?
    Will I loose any information that's already there? (contacts? messages? themes?)
    Thanks.

    Again, I get your frustrations. I walk with the same shoes.
    Thing is... there really is no perfect phone in the market. Android's and iPhone's have **bleep** battery times or you can't see anything with direct sunlight, or the cameras are not that good.
    It seems like all these mobile-computing-phone-gadget-manufacturers are still in their infancy, trying to grab a market that they don't know where it's going, cramming a lot of stuff into a tiny space and not able to make anything really well.
    I don't think this is a Nokia-only problem. We're probably still in the "Spectrum 48k" of the mobile web.
    And maybe some of the times I blame my phone for not doing something right, it's probably some network or carrier issue that I'm totally oblivious to.
    Fact is I can't be enfuriated about problems I don't know the origin of.
    What really bothers me is that I update my phone to newer OS versions and it ends up worse than it was!
    Come on! How complex can it be to fix this address book contact issue? Do I have to wait a few more months until I'm able to see who's calling me?
    This is the stuff that gets me mad: when the simple and necessary everyday things are not attended.
    But interesting stuff is happening everyday now... Four months for mobile manufacturers is like two years in real time.
    I'll wait for January to find out how the Android vs iPhone vs Symbian battle is going and then I'll make my decision.
    Cheers everyone!

Maybe you are looking for

  • Two array objects compareTo:

    Have two arrays: ttt and ppp. I have to have a method to compare them. public int compareTo(object ob) both of the arrays are int type and both have super long numbers in them. Thanks

  • Decimal places of the field

    i have some fields of datatype  curr and domain wertv6/wertv7...which has 2 decimal places.. but in my screen i'm getting 5 decimal places for all those fields....how is this happening?

  • Financial reporting docs from web analysis

    <p>I need to open some Financial Reporting documents from within aweb analysis page.<br>I put into this page a label, with something like this as text:<br><br><a style="visited:#660000"href="http://scilla:19000/workspace/browse/get/Reports/Rete%20Com

  • How can I download and reinstall my purchased Photoshop CS6?

    I purchased Photoshop CS6 and I'm trying to reload to my "new" computer. After entering the registration (serial) number I get a message that the code is no longer good.

  • I imported 30 minutes of DV tape and it takes 90 minutes to process it?

    I imported 30 minutes of video from a DV tape, and it has been processing it for 70 minutes so far and it says it has 40 minutes to go?  Is this right?