Bug with OSMF 1.6 MediaPlayer and swf version = 13.

When swf version = 13, the MediaPlayer seems to fire the TimeEvent.COMPLETE event twice for a progressive video playback.
I debugged it down to the NetStreamTimeTrait. It looks like in the case of a progressive video, the "signalComplete" method is called twice.
First from the onNetStatus event handler (NetStreamCodes.NETSTREAM_PLAY_STOP) and second from the onPlayStatus event handler (NetStreamCodes.NETSTREAM_PLAY_COMPLETE).
There seems to be an implicit assumption in onPlayStatus that it should not fire for progressive, but yet it does fire. Looks like a bug to me.
This is not an issue with swf-version=11
- Abey

Hi,
This looks like an issue outside OSMF (might be Flash Player). I can't tell if there's a workaround until we investigate it.
Please raise a bug in http://bugs.adobe.com/jira/browse/FM so we'll be able to track it further.
S.

Similar Messages

  • Loading external swf using Loader.load() method is delayed with flash player 10.1 and next versions.

    I am trying to load an external swf file of size 300 kb using Loader.load() method and trying to access some objects in it and i am getting some delay in loading the external file with flash players 10.1 and next versions.
    The action script code used to load:
    var strUrl:String="toLoad.swf";
    var urlReq:URLRequest=new URLRequest(strUrl);
    var ldrLoader:Loader = new Loader();
    var ldrLoaderContext:LoaderContext = new LoaderContext();
    ldrLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, externakSwfLoaded);
    ldrLoader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, errorInLoadingSwf);
    ldrLoader.contentLoaderInfo.addEventListener(SecurityErrorEvent.SECURITY_ERROR, errorInLoadingSwf);
    ldrLoaderContext.applicationDomain = ApplicationDomain.currentDomain;
    ldrLoader.load(urlReq, ldrLoaderContext);
    addChild(ldrLoader);
    System specifications:
    O.S. Windows XP sp2 (32 bit)
    Browser IE 6.0 (128 bit)
    Flash Player version WIN 10,2,152,32

    I think you are lost. This forum is for ROME. It sounds like you want one of the Flash or Flex forums...
    Good luck!
    Harbs

  • JDBC Problem with Oracle 8.1.7. and OC4J  Version 2

    I use the following connection statement with Oracle 8.1.7. and JDeveloper 3 and Apache Server. It works fine.
    String user = "scott/tiger";
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    Connection conn = DriverManager.getConnection("jdbc:oracle:oci8:"+user+"@RDL");
    The same program does not obtain the connection with JDeveloper 9i, OC4J Version 2 and Oracle 8.1.7. I do not receive any error message, no exception is thrown.
    Please help me.

    Hi Avi,
    I had already tried the thin Diriver but after yout help I try again.
    With this thin driver, I received a SQLException which helps me.
    As usual, there were a lot of different problems. The main one was that my default configuration do not use the jdbc/lib817 main jdbc/lib. There is a classe12.jar in these libs that are apparently different.
    Finally, I obtain the connection with the "thin" driver.
    Thank you very much Avi!
    Reni

  • Not able to sync music on my iPhone 5 with ios 6.0.2 and latest version of itunes on PC

    Dear all,
    I have iPhone 5 with ios 6.0.2 and itunes with the latest version on my PC
    I did restor all details from itunes to my new iPhone easily but not able to sync music to it
    The funny thing is my wife has iPhone 5 also but on ios 6.0.1 and we did all sync including music sync
    I did reset the device and earase all content but it doesnt work.
    Whats wrong with ios 6.0.2 and how can i solve the above problem ??
    regarsd,

    A second generation iPod touch can't be updated past 4.2.1.
    (86969)

  • Bugs with 10.4 (80), 6 and counting...

    I've downloaded the last iTunes version (I´m running Leopard 10.5.8), and since I've found 6 annoying bugs:
    1. Already discussed in here, "Drag & Drop" feature is not working anymore, at least for me to create new playlists. With previous versions I just dragged the Finder folder to the top left side, just between the "Music" section and the RW / STOP / FFWD buttons , and the playlist would be created with the Finder folder name automatically. Nothing happens now.
    2. No additional iTunes windows will open after I close and re-open the application. When I use iTunes I´ve got a few other iTunes windows opened (some playlists, etc.) and they used to remain opened when I re-launched the application. Not anymore.
    3. If I Drag some songs to a playlist, the Library won't update. I have to add those songs to the Library in order to get the songs there as well. You can try this yourself.
    4. Sometimes, and for no apparent reason, search function doesn't work. I type an Artist/Song or Copy/paste it and nothing happens.
    5. A few other times, my Playlist Folders, which contains several playlists won't spread out the playlists. I'd need to re-launch iTunes.
    6. Sometimes if I quit the iTunes by Q or "iTunes" "Quit iTunes" it doesn't quit, but a pop-up window appears saying "iTunes is updating Album Artwork. Cancel or Quit" when I'm not doing anything of that. If I click "Cancel" nothing happens, if I click "Quit" it won't quit at all... I'd need to Force Quit.
    Is anyone having the same problems?
    Feel free to post here all your bugs and also the troubleshooting!

    Hi,
    Is there a "real" reason that you are still using OSX 10.5.8?  I think that we are being "shepherded" in the direction of Lion.....
    iTunes may work in your v10.5.8, but I think it will have some issues....or hick-ups....
    I just upgraded from OSX 10.6.4 to v10.6.8 and all is good still.
    It's gonna get worse as Lion gets momentum..... might as well get on the bus....
    Sorry,,,, I feel your burn.

  • Weird bug with desynced nodes - including demo and screencast

    This is a follow-up to Desync of Elements and logic - how to debug?
    I started a new thread because I will provide better information on this.
    So we've made our graph editor working with JavaFX. One of our common demos for different products is a organizational chart demo. This is a tree-like graph with employees as nodes to depict the hierarchical structure of companies.
    You can try this demo here (jre7u6 with JavaFX 2.2 b17 required):
    http://www.yworks.com/products/yfilesfx/OrgChartDemo/OrgChartDemo.jnlp
    We have also made a screencast which can be viewed here that shows the usage and most importantly the problem we are facing with JavaFX here:
    http://www.screenr.com/uEF8
    The startup is quite slow, it takes a few seconds for the graph to load. This is because the visual representation of the nodes is described within (nested) fxml files and each of those files is loaded in a not so effective way (because it is at the moment not possible in JavaFX to define a custom BeanAdapter in the FXMLLoader that does proper caching). After those files are loaded, there are still some ClassNotFoundExceptions thrown in the background by some part of the JavaFX framework I did not identify, yet. After a few seconds the performance speeds up significantly.
    What you can do in this demo is described on the right. Basically you can zoom in/out, fit view, center a certain employee and interact with them.
    Interaction means you can collapse and enlarge certain parts of the graph. For example, you can hide all subordinates of an employee and show them again.
    The part of "showing them again" is done with an animation effect that is implemented in our framework, not in JavaFX.
    When you hover an employee, a fading translation is played as a hover effect and some buttons appear. This part is important so i wanted to highlighted.
    The hover effect is triggered by a onMouseEntered and onMouseExited event.
    Also you can focus a certain employee by clicking on them. When clicked, the color changes from blue to orange. This is done by our internal logic, since the clickable things on the screen are not the JavaFX rectangles and such but rather a logical representation of a node with a position on the screen and a with and height.
    So this is where things go wrong and what is really crucial for our application:
    When you collapse/enlarge nodes (employees) a bug appears quite frequently that causes the internal representation and the actual appearence of JavaFX elements on the screen to be out of sync. Most notably the hover effect doesn't work anymore: The node is visually present (as you can see it) and the values of the nodes in the scenegraph match as well, but those nodes just are not present any more for any events. They do not receive mouse entered/exited events, hover-events and pressed-events and so on. You can still click on the node and focus it, but this is done in our framework (indicating that our logic works).
    The connection of the logic and the javafx controller is done via databinding. The controller listens to changes in the corresponding model item and updates itself accordingly - you can see it when clicking on a node, the selection state of the model item changes and the controller updates the style of the javafx node.
    The other effects however, like the hover-effect, are implemented on databinding on properties of the JavaFX node class: hoverProperty, onMouseEntered onMouseExited and so on.
    Once a node is in this state, weird stuff is happening. For example, a node that is in this state seems to have normal values when viewed in ScenicView. However, when changing some values, for example translateX / Y, the node just disappears. (see also: http://www.screenr.com/lYF8 where i recorded that (a bit later in the video))
    For an example of this have a look at the link to the screencast above. We showed how to reproduce the bug there.
    We noticed that without any animation played this does not happen. So it seems to be caused by the animation. This is itself quite surprising, because we used the same animation process with other javaFX applications but never experienced this bug.
    What happens is that our Animator sets the layoutX and layoutY values of a node that is being animated repeatedly and in rapid succession over a period of time.
    The only thing we can think of that might cause this problem is that JavaFX somehow is not able to process a large amount of such update-calls and throws some exception internally and just dies.
    Because of this we strongly hope that somebody can point us to were we have to look or how to even debug this problem.
    * edit: added second screencast for ScenicView

    jsmith wrote:
    Just want to say thanks for the yworks stuff phelan.
    I use the swing version embedded in Idea and the diagrams are really nice => everytime I make a printout I get asked "what tool did you use to generate that diagram?".:D thank you very much.
    Only real advice I can offer is something you almost certainly know =>
    JavaFX is a singlethreaded UI framework.
    Ensure that anything you do which could read/write from nodes in an active scenegraph be done on the JavaFX application thread.I just double checked this and unless Platform.isFxApplicationThread() returns a wrong value, the only interaction with JavaFX nodes is done in the JavaFX application thread.
    I think your app issues will prove very hard to resolve through this forum. Nicolas Lorain is the javafx product manager, so you could try contacting him directly for support. There is also some kind of JavaFX partner program which may be able to offer support as well, Nicolas should also have details on that.
    Good luck with your app.I just searched for the JavaFX partner program, and couldn't find anything ongoing. The only advanced support I could find is the Oracle Premier Support, which at this point isn't suitable for us. I also couldn't find any contact information for Nicolas Lorain (he has a blog and twitter but I cannot find his email). So if you could point me to somewhere, I'd be very glad.

  • Bug with BI Samples Common Schema and AWM 10.1.0.4

    I have installed the BI Samples available here
    http://www.oracle.com/technology/products/bi/samples/samples_readme.html
    The common_schema installs 3 AW's in the cs_olap user.
    Now in AWM 10.1.0.4 change to "object view" and open the Utils AW. Here it is not possible to expand the "Programs" folder even though there are 32 programs in this AW.
    After some debugging it turns out that the reason lies in the "BUILD_IDD" programs. Specifically the 3 lines starting with the "LD" command. When these are removed from this program it is possible to view all the programs through AWM.
    Don't know if the bug lies in AWM or the BUILD_IDD program.

    The program will not compile unless the AW SHAW is attached and other programs have been run to add new objects to the AW. The LD command is used to add additional descriptive information to each new object added to SHAW.
    Thanks for the post, this has been forwarded on to development.

  • Does anybody have a current status on all the bugs with iTunes 10.5.2 and Windows 7?

    I guess that fact that iTunes isn't even available as a drop down kind of answers my question!

    Most of the info on the web page you link to is 2-4 years old. I doubt it applies. Your workaround is actually the best solution: It's always preferred to use the latest PDF viewer. Reader and Acrobat can exist on the same machine.
    Also, why 10.1.2? There have been 6 releases since then with documented security enhancements (meaning there are also published vulnerabilities which are patched), bug fixesm, and feature enhancments.
    I'll ping some folks about the error you are getting. . .
    hth,
    Ben

  • Bug with Base LVOOP object variants and flatten string.

    I found a bug when if the base LabVIEW Object is wrapped in a variant (even indirectly), it cannot sucessfully be flattened to and from a string.
    Neither of these should produce an error.
    And if you try to work around it with XML, it can lockup or crash.

    The first is the simplest demonstration of the problem.
    The second is to show that problem is indirect (through multiply layers of different structures).
    As for the purpose I was writing a SQLite interface that could write any form of LabVIEW data while maintaining variant attributes. I have to serialize the data somehow so the first attempt I just packed it into a variant then turned that into a string with flatten to string (since the variant contains the type info for what it holds I just need to use the type info for a variant to unserialize it). That failed with the first bug if I tried to store a variant with a attribute holding something down classed to the LabVIEW base object.
    So instead of wrapping it in a variant I tried directly flattening it to a string and storing the type info from variant to flatten as a pascal string at the front of serialized data (of course this breaks if a LabVIEW object two variant levels deep is passed in). But that destroys variant attributes. So I tried wrapping that in a cluster then flattening the cluster (hence error two, and since it's indirect I can't wrap it in anything to avoid the problem).
    So the current work around is to never store anything in the LabVIEW base object. So If I wanted a generic LVOOP container I would have to make a class for storable items then everything that can be stored would have to inherit from that.
    I'm mainly posting since unknown bugs are rarely fixed, and this one is a bit obscure.

  • Is there a known bug with the zen vision;m and usb internet adapt

    i bought the zen m yesterday. i've down loaded it onto my pc.
    audible wont sync to it. the creative firmware updater wont update it keeps saying its not connected.
    Windows media player synced to it ( the only thing thats gone right so far lol )
    and worst of all every time i plug in the unit via usb. if i unplug the unit my netgear usb WPNT2 stops recieving all 802. signals until the driver explodes taking the system down with it. or i manual reboot.
    whats going on?
    i'm thinking i should have gotten a Zune, and if i can't resolve this i'm going to have to take this back.
    i put the zen on my laptop and xbox 360 and it works fine. it runs a pcmcia adaptor.
    my desktop is a media center rollup 2 everything up todate. my netgear drivers are uptodate. i dont know whats going on here.Message Edited by paladin238 on 2-02-200604:24 PM

    it's not connected on a hub.
    update audible still can't activate the zen, and it still keeps crashing the wireless adaptor, which inturns causes a stop error and crashes the system. i can't win =/

  • Bug with Network Load Balancing Services and SkipAsSource always reverting to true

    Steps to reproduce:
    Add an IP address to the cluster (2 nodes running Windows Server 2012) using the Network Load Balancing Manager
    Using PowerShell set the SkipAsSource flag on the IP Address to true (Set-NetIpAddress -IpAddress 192.168.1.10 -SkipAsSource $true). The flag is correctly set.
    Try to reverse the setting (Set-NetIpAddress -IpAddress 192.168.1.10 -SkipAsSource $false). Flag stays as true.
    It appears as though Network Load Balancing Services is remembering the setting from someone.
    Things I've tried all without success (in no particular order):
    Removing the IP address from the cluster and adding it back in
    Using PowerShell to remove the IP address and add it back in manually (on each host).Flag stays set as true on the 1st node but takes a second before it reverts back to true on the 2nd node.
    Using netsh to remove the IP address and add it back in manually (on each host). Flag stays set as true on the 1st node but takes a second before it reverts back to true on the 2nd node.
    Deleting each host from the cluster (one at a time), removing the registry keys CurrentControlSet\Services\WLBS and
    Removing both hosts from the cluster
    Restarting the hosts
    Using processmon (sysinternals) to try and find a registry entry that might be set when SkipAsSource is set
    Does anyone know:
    How to resolve this issue? I'm guessing resetting the TCP/IP stack would work but that's a last resort as it requires an on sight visit to the datacentre.
    Where the SkipAsSource flag it stored?
    How to reset the master/global cluster config?
    Thank in advance,
    Antony

    Hi Antony,
    I am trying to involve someone familiar with this topic to further look at this issue.
    There might be some time delay. Appreciate your patience.
    Best Regards.
    Steven Lee
    TechNet Community Support

  • Bugs with 10.5.7 update and Logic reported

    Apparently, some users are having display problems after up dating to 10.5.7.
    http://www.logicprohelp.com/viewtopic.php?t=41255
    So I guess I'll wait. There doesn't seem to be anything important in the update anyway.

    Working well here (I have an ATI graphics card, as do you I suspect with that model 8 Core)

  • Problems with Safari 7.0.6 and older versions

    When I visit the site of my school (http://www.adelbert.nl) I don't see all the fotos. From the 15, 6 are missing. In any other browser (except Webkit) everything looks fine.
    What did I try: reset Safari; restart; delele plists; log in as an other user. Nothing helps. The strange thing is that occasionally everything works, but after a reload it's wrong again..
    I have the same problem on my own site: http://www.jackvans.nl/PlekvanJack/Zomer/Sasbachwalden-Engel.html.
    Any clues, thank you!

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem. But with the aid of the test results, the solution may take a few minutes, instead of hours or days.
    Don't be put off merely by the seeming complexity of these instructions. The process is much less complicated than the description. You do harder tasks with the computer all the time.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. Backup is always a must, and when you're having any kind of trouble with the computer, you may be at higher than usual risk of losing data, whether you follow these instructions or not.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. As I wrote above, it changes nothing. It doesn't send or receive any data on the network. All it does is to generate a human-readable report on the state of the computer. That report goes nowhere unless you choose to share it. If you prefer, you can read it yourself without disclosing the contents to me or anyone else.
    You should be wondering whether you can believe me, and whether it's safe to run a program at the behest of a stranger. In general, no, it's not safe and I don't encourage it.
    In this case, however, there are a couple of ways for you to decide whether the program is safe without having to trust me. First, you can read it. Unlike an application that you download and click to run, it's transparent, so anyone with the necessary skill can verify what it does.
    You may not be able to understand the script yourself. But variations of the script have been posted on this website thousands of times over a period of years. The site is hosted by Apple, which does not allow it to be used to distribute harmful software. Any one of the millions of registered users could have read the script and raised the alarm if it was harmful. Then I would not be here now and you would not be reading this message.
    Nevertheless, if you can't satisfy yourself that these instructions are safe, don't follow them. Ask for other options.
    4. Here's a summary of what you need to do, if you choose to proceed:
    ☞ Copy a line of text in this window to the Clipboard.
    ☞ Paste into the window of another application.
    ☞ Wait for the test to run. It usually takes a few minutes.
    ☞ Paste the results, which will have been copied automatically, back into a reply on this page.
    The sequence is: copy, paste, wait, paste again. You don't need to copy a second time. Details follow.
    5. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode, under the conditions in which the problem is reproduced. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    6. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    7. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/libexec;clear;cd;p=(Software Hardware Memory Diagnostics Power FireWire Thunderbolt USB Fonts SerialATA 4 1000 25 5120 KiB/s 1024 85 \\b%% 20480 1 MB/s 25000 ports ' com.clark.\* \*dropbox \*GoogleDr\* \*k.AutoCAD\* \*k.Maya\* vidinst\* ' DYLD_INSERT_LIBRARIES\ DYLD_LIBRARY_PATH -86 "` route -n get default|awk '/e:/{print $2}' `" 25 N\\/A down up 102400 25600 recvfrom sendto CFBundleIdentifier 25 25 25 1000 MB com.apple.AirPortBaseStationAgent 464843899 51 5120 files );N5=${#p[@]};p[N5]=` networksetup -listnetworkserviceorder|awk ' NR>1 { sub(/^\([0-9]+\) /,"");n=$0;getline;} $NF=="'${p[26]}')" { sub(/.$/,"",$NF);print n;exit;} ' `;f=('\n%s: %s\n' '\n%s\n\n%s\n' '\nRAM details\n%s\n' %s\ %s '%s\n-\t%s\n' );S0() { echo ' { q=$NF+0;$NF="";u=$(NF-1);$(NF-1)="";gsub(/^ +| +$/,"");if(q>='${p[$1]}') printf("%s (UID %s) is using %s '${p[$2]}'",$0,u,q);} ';};s=(' /^ *$|CSConfigDot/d;s/^ */   /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/;/Shared/!s/\/Users\/[^/]+/~/g ' ' s/^ +//;/de: S|[nst]:/p;' ' {sub(/^ +/,"")};/er:/;/y:/&&$2<'${p[10]} ' 1s/://;3,6d;/[my].+:/d;s/^ {4}//;H;${ g;s/\n$//;/s: [^EO]|x([^08]|02[^F]|8[^0])/p;} ' ' 5h;6{ H;g;/P/!p;} ' ' ($1~/^Cy/&&$3>'${p[11]}')||($1~/^Cond/&&$2!~/^N/) ' ' /:$/{ N;/:.+:/d;s/ *://;b0'$'\n'' };/^ *(V.+ [0N]|Man).+ /{ s/ 0x.... //;s/[()]//g;s/(.+: )(.+)/ (\2)/;H;};$b0'$'\n'' d;:0'$'\n'' x;s/\n\n//;/Apple[ ,]|Genesy|Intel|SMSC/d;s/\n.*//;/\)$/p;' ' s/^.*C/C/;H;${ g;/No th|pms/!p;} ' '/= [^GO]/p' '{$1=""};1' ' /Of/!{ s/^.+is |\.//g;p;} ' ' $0&&!/ / { n++;print;} END { if(n<200) print "com.apple.";} ' ' $3~/[0-9]:[0-9]{2}$/ { gsub(/:[0-9:a-f]{14}/,"");} { print|"tail -n'${p[12]}'";} ' ' NR==2&&$4<='${p[13]}' { print $4;} ' ' END { $2/=256;if($2>='${p[15]}') print int($2) } ' ' NR!=13{next};{sub(/[+-]$/,"",$NF)};'"`S0 21 22`" 'NR!=2{next}'"`S0 37 17`" ' NR!=5||$8!~/[RW]/{next};{ $(NF-1)=$1;$NF=int($NF/10000000);for(i=1;i<=3;i++){$i="";$(NF-1-i)="";};};'"`S0 19 20`" 's:^:/:p' '/\.kext\/(Contents\/)?Info\.plist$/p' 's/^.{52}(.+) <.+/\1/p' ' /Launch[AD].+\.plist$/ { n++;print;} END { print "'${p[41]}'";if(n<200) print "/System/";} ' '/\.xpc\/(Contents\/)?Info\.plist$/p' ' NR>1&&!/0x|\.[0-9]+$|com\.apple\.launchctl\.(Aqua|Background|System)$|'${p[41]}'/ { print $3;} ' ' /\.(framew|lproj)|\):/d;/plist:|:.+(Mach|scrip)/s/:[^:]+//p ' '/^root$/p' ' !/\/Contents\/.+\/Contents|Applic|Autom|Frameworks/&&/Lib.+\/Info.plist$/ { n++;print;} END { if(n<1100) print "/System/";} ' '/^\/usr\/lib\/.+dylib$/p' ' /Temp|emac/{next};/(etc|Preferences|Launch[AD].+)\// { sub(".(/private)?","");n++;print;} END { print "'${p[41]}'.plist\t'${p[42]}'";if(n<500) print "Launch";} ' ' /\/(Contents\/.+\/Contents|Frameworks)\/|\.wdgt\/.+\.([bw]|plu)/d;p;' 's/\/(Contents\/)?Info.plist$//;p' ' { gsub("^| |\n","\\|\\|kMDItem'${p[35]}'=");sub("^...."," ") };1 ' p '{print $3"\t"$1}' 's/\'$'\t''.+//p' 's/1/On/p' '/Prox.+: [^0]/p' '$2>'${p[43]}'{$2=$2-1;print}' ' BEGIN { i="'${p[26]}'";M1='${p[16]}';M2='${p[18]}';M3='${p[31]}';M4='${p[32]}';} !/^A/{next};/%/ { getline;if($5<M1) a="user "$2"%, system "$4"%";} /disk0/&&$4>M2 { b=$3" ops/s, "$4" blocks/s";} $2==i { if(c) { d=$3+$4+$5+$6;next;};if($4>M3||$6>M4) c=int($4/1024)" in, "int($6/1024)" out";} END { if(a) print "CPU: "a;if(b) print "I/O: "b;if(c) print "Net: "c" (KiB/s)";if(d) print "Net errors: "d" packets/s";} ' ' /r\[0\] /&&$NF!~/^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./ { print $NF;exit;} ' ' !/^T/ { printf "(static)";exit;} ' '/apsd|BKAg|OpenD/!s/:.+//p' ' (/k:/&&$3!~/(255\.){3}0/ )||(/v6:/&&$2!~/A/ ) ' ' $1~"lR"&&$2<='${p[25]}';$1~"li"&&$3!~"wpa2";' ' BEGIN { FS=":";p="uniq -c|sed -E '"'s/ +\\([0-9]+\\)\\(.+\\)/\\\2 x\\\1/;s/x1$//'"'";} { n=split($3,a,".");sub(/_2[01].+/,"",$3);print $2" "$3" "a[n]$1|p;b=b$1;} END { close(p) if(b) print("\n\t* Code injection");} ' ' NR!=4{next} {$NF/=10240} '"`S0 27 14`" ' END { if($3~/[0-9]/)print$3;} ' ' BEGIN { L='${p[36]}';} !/^[[:space:]]*(#.*)?$/ { l++;if(l<=L) f=f"\n   "$0;} END { F=FILENAME;if(!F) exit;if(!f) f="\n   [N/A]";"file -b "F|getline T;if(T!~/^(AS.+ (En.+ )?text$|(Bo|PO).+ sh.+ text ex)/) F=F" ("T")";printf("\nContents of %s\n%s\n",F,f);if(l>L) printf("\n   ...and %s more line(s)\n",l-L);} ' ' /^ +[NP].+ =/h;/^( +D.+[{]|[}])/{ g;s/.+= //p;};' 's/0/Off/p' ' END{print NR} ' ' /id: N|te: Y/{i++} END{print i} ' ' / / { print "'"${p[28]}"'";exit;};1;' '/ en/!s/\.//p' ' NR!=13{next};{sub(/[+-M]$/,"",$NF)};'"`S0 39 40`" ' $10~/\(L/&&$9!~"localhost" { sub(/.+:/,"",$9);print $1": "$9;} ' '/^ +r/s/.+"(.+)".+/\1/p' 's/(.+\.wdgt)\/(Contents\/)?Info\.plist$/\1/p' 's/^.+\/(.+)\.wdgt$/\1/p' ' /l: /{ /DVD/d;s/.+: //;b0'$'\n'' };/s: /{ /V/d;s/^ */- /;H;};$b0'$'\n'' d;:0'$'\n'' x;/APPLE [^:]+$/d;p;' ' /^find: /d;p;' "`S0 44 45`" );c1=(system_profiler pmset\ -g nvram fdesetup find syslog df vm_stat sar ps sudo\ crontab sudo\ iotop top pkgutil 'PlistBuddy 2>&1 -c "Print' whoami cksum kextstat launchctl sudo\ launchctl crontab 'sudo defaults read' stat lsbom mdfind ' for i in ${p[24]};do ${c1[18]} ${c2[27]} $i;done;' defaults\ read scutil sudo\ dtrace sudo\ profiles sed\ -En awk /S*/*/P*/*/*/C*/*/airport networksetup mdutil sudo\ lsof test );c2=(com.apple.loginwindow\ LoginHook '" /L*/P*/loginw*' '" L*/P*/*loginit*' 'L*/Ca*/com.ap*.Saf*/E*/* -d 1 -name In*t -exec '"${c1[14]}"' :CFBundleDisplayName" {} \;|sort|uniq' '~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \)' '.??* -path .Trash -prune -o -type d -name *.app -print -prune' :${p[35]}\" :Label\" '{/,}L*/{Con,Pref}* -type f ! -size 0 -name *.plist -exec plutil -s {} \;' "-f'%N: %l' Desktop L*/Keyc*" therm sysload boot-args status " -F '\$Time \$Message' -k Sender kernel -k Message Req 'bad |Beac|caug|dead[^bl]|FAIL|fail|GPU |hfs: Ru|inval|jnl:|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|tim(ed? ?|ing )o|WARN' -k Message Rne 'Goog|ksadm|SMC:| VALI|xpma' -o -k Sender fseventsd -k Message Req 'SL' " '-du -n DEV -n EDEV 1 10' 'acrx -o comm,ruid,%cpu' '-t1 10 1' '-f -pfc /var/db/r*/com.apple.*.{BS,Bas,Es,J,OSXU,Rem,up}*.bom' '{/,}L*/Lo*/Diag* -type f -regex .\*[cgh] ! -name *ag \( -exec grep -lq "^Thread c" {} \; -exec printf \* \; -o -true \) -execdir stat -f:%Sc:%N -t%F {} \;|sort -t: -k2 |tail -n'${p[38]} '-L {/{S*/,},}L*/Lau* -type f' '-L /{S*/,}L*/StartupItems -type f -exec file {} +' '-L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Ca*/*/Ex,Co{mpon,reM},Ex,Inter,iTu*/*P,Keyb,Mail/B,Pr*P,Qu*T,Scripti,Sec,Servi,Spo,Widg}* -path \\*s/Resources -prune -o -type f -name Info.plist' '/usr/lib -type f -name *.dylib' `awk "${s[31]}"<<<${p[23]}` "/e*/{auto,{cron,fs}tab,hosts,{[lp],sy}*.conf,pam.d/*,ssh{,d}_config,*.local} {,/usr/local}/etc/periodic/*/* /L*/P*{,/*}/com.a*.{Bo,sec*.ap}*t /S*/L*/Lau*/*t .launchd.conf" list getenv /Library/Preferences/com.apple.alf\ globalstate --proxy '-n get default' -I --dns -getdnsservers\ "${p[N5]}" -getinfo\ "${p[N5]}" -P -m\ / '' -n1 '-R -l1 -n1 -o prt -stats command,uid,prt' '--regexp --only-files --files com.apple.pkg.*|sort|uniq' -kl -l -s\ / '-R -l1 -n1 -o mem -stats command,uid,mem' '+c0 -i4TCP:0-1023' com.apple.dashboard\ layer-gadgets '-d /L*/Mana*/$USER&&echo On' '-app Safari WebKitDNSPrefetchingEnabled' "+c0 -l|awk '{print(\$1,\$3)}'|sort|uniq -c|sort -n|tail -1|awk '{print(\$2,\$3,\$1)}'" );N1=${#c2[@]};for j in {0..9};do c2[N1+j]=SP${p[j]}DataType;done;N2=${#c2[@]};for j in 0 1;do c2[N2+j]="-n ' syscall::'${p[33+j]}':return { @out[execname,uid]=sum(arg0) } tick-10sec { trunc(@out,1);exit(0);} '";done;l=(Restricted\ files Hidden\ apps 'Elapsed time (s)' POST Battery Safari\ extensions Bad\ plists 'High file counts' User Heat System\ load boot\ args FileVault Diagnostic\ reports Log 'Free space (MiB)' 'Swap (MiB)' Activity 'CPU per process' Login\ hook 'I/O per process' Mach\ ports kexts Daemons Agents launchd Startup\ items Admin\ access Root\ access Bundles dylibs Apps Font\ issues Inserted\ dylibs Firewall Proxies DNS TCP/IP Wi-Fi Profiles Root\ crontab User\ crontab 'Global login items' 'User login items' Spotlight Memory Listeners Widgets Parental\ Controls Prefetching SATA Descriptors );N3=${#l[@]};for i in 0 1 2;do l[N3+i]=${p[5+i]};done;N4=${#l[@]};for j in 0 1;do l[N4+j]="Current ${p[29+j]}stream data";done;A0() { id -G|grep -qw 80;v[1]=$?;((v[1]==0))&&sudo true;v[2]=$?;v[3]=`date +%s`;clear >&-;date '+Start time: %T %D%n';};for i in 0 1;do eval ' A'$((1+i))'() { v=` eval "${c1[$1]} ${c2[$2]}"|'${c1[30+i]}' "${s[$3]}" `;[[ "$v" ]];};A'$((3+i))'() { v=` while read i;do [[ "$i" ]]&&eval "${c1[$1]} ${c2[$2]}" \"$i\"|'${c1[30+i]}' "${s[$3]}";done<<<"${v[$4]}" `;[[ "$v" ]];};A'$((5+i))'() { v=` while read i;do '${c1[30+i]}' "${s[$1]}" "$i";done<<<"${v[$2]}" `;[[ "$v" ]];};';done;A7(){ v=$((`date +%s`-v[3]));};B2(){ v[$1]="$v";};for i in 0 1;do eval ' B'$i'() { v=;((v['$((i+1))']==0))||{ v=No;false;};};B'$((3+i))'() { v[$2]=`'${c1[30+i]}' "${s[$3]}"<<<"${v[$1]}"`;} ';done;B5(){ v[$1]="${v[$1]}"$'\n'"${v[$2]}";};B6() { v=` paste -d: <(printf "${v[$1]}") <(printf "${v[$2]}")|awk -F: ' {printf("'"${f[$3]}"'",$1,$2)} ' `;};B7(){ v=`grep -Fv "${v[$1]}"<<<"$v"`;};C0(){ [[ "$v" ]]&&echo "$v";};C1() { [[ "$v" ]]&&printf "${f[$1]}" "${l[$2]}" "$v";};C2() { v=`echo $v`;[[ "$v" != 0 ]]&&C1 0 $1;};C3() { v=`sed -E "$s"<<<"$v"`&&C1 1 $1;};for i in 1 2;do for j in 0 2 3;do eval D$i$j'(){ A'$i' $1 $2 $3; C'$j' $4;};';done;done;{ A0;D20 0 $((N1+1)) 2;D10 0 $N1 1;B0;C2 27;B0&&! B1&&C2 28;D12 15 37 25 8;A1 0 $((N1+2)) 3;C0;D13 0 $((N1+3)) 4 3;D23 0 $((N1+4)) 5 4;D13 0 $((N1+9)) 59 50;for i in 0 1 2;do D13 0 $((N1+5+i)) 6 $((N3+i));done;D13 1 10 7 9;D13 1 11 8 10;D22 2 12 9 11;D12 3 13 10 12;D23 4 19 44 13;D23 5 14 12 14;D22 6 36 13 15;D22 7 37 14 16;D23 8 15 38 17;D22 9 16 16 18;B1&&{ D22 35 49 61 51;D22 11 17 17 20;for i in 0 1;do D22 28 $((N2+i)) 45 $((N4+i));done;};D22 12 44 54 45;D22 12 39 15 21;A1 13 40 18;B2 4;B3 4 0 19;A3 14 6 32 0;B4 0 5 11;A1 17 41 20;B7 5;C3 22;B4 4 6 21;A3 14 7 32 6;B4 0 7 11;B3 4 0 22;A3 14 6 32 0;B4 0 8 11;B5 7 8;B1&&{ A2 19 26 23;B7 7;C3 23;};A2 18 26 23;B7 7;C3 24;A2 4 20 21;B7 6;B2 9;A4 14 7 52 9;B2 10;B6 9 10 4;C3 25;D13 4 21 24 26;B4 4 12 26;B3 4 13 27;A1 4 22 29;B7 12;B2 14;A4 14 6 52 14;B2 15;B6 14 15 4;B3 0 0 30;C3 29;A1 4 23 27;B7 13;C3 30;D13 24 24 32 31;D13 25 37 32 33;A2 23 18 28;B2 16;A2 16 25 33;B7 16;B3 0 0 34;B2 21;A6 47 21&&C0;B1&&{ D13 21 0 32 19;D13 10 42 32 40;D22 29 35 46 39;};D13 14 1 48 42;D12 34 43 53 44;D22 0 $((N1+8)) 51 32;D13 4 8 41 6;D12 26 28 35 34;D13 27 29 36 35;A2 27 32 39&&{ B2 19;A2 33 33 40;B2 20;B6 19 20 3;};C2 36;D23 33 34 42 37;B1&&D23 35 45 55 46;D23 32 31 43 38;D12 36 47 32 48;D13 20 42 32 41;D13 14 2 48 43;D13 4 5 32 1;D13 4 3 60 5;D12 26 48 49 49;B3 4 22 57;A1 26 46 56;B7 22;B3 0 0 58;C3 47;D22 4 4 50 0;D23 22 9 37 7;A7;C2 2;} 2>/dev/null|pbcopy;exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    8. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste by pressing command-V. The text you pasted should vanish immediately. If it doesn't, press the return key.
    9. If you see an error message in the Terminal window such as "Syntax error" or "Event not found," enter
    exec bash
    and press return. Then paste the script again.
    10. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return  three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    11. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report what happened. No harm will be done.
    12. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    At the top of the results, there will be a line that begins with the words "Start time." If you don't see that, but instead see a mass of gibberish, you didn't wait for the "Process completed" message to appear in the Terminal window. Please wait for it and try again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    13. When you post the results, you might see an error message on the web page: "You have included content in your post that is not permitted," or "You are not authorized to post." That's a bug in the forum software. Please post the test results on Pastebin, then post a link here to the page you created.
    14. This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Use Agreement for the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • IPhoto '11 v. 9.2.3 bug when splitting events containing flagged and duplicate versions of same photo in Event.

    UPDATE:
    Okay, I don't know how to delete this - so I'm just saying that after sending this, I found Terrance's reply to a similar post (3/3/12).  I didn't realize iPhoto had been changed so that the "master" controls duplicates.  I do understand how to export, et cetera .... and I do use albums also!  I just really want the duplicate photos to NOT be in the general Events.  Trust me, I have a good reason!
    Thank you for your (previous) help!
    ~h
    Okay, when I created this User Name, I didn't foresee this situation.  I'm pretty sure this is a real bug - and maybe someone can let the appropriate programmer know....
    Essentially, I'm organizing my 2012 iPhoto library and am trying to get around the rule that a photo can only be in one Event.  I flagged the photos I want to keep where they are - AND - be grouped separately.
    Then in Flagged, I duplicated all.  Then I unflag the orginal files.
    Then I modified the duplicated (version 2 or version 3) files.
    So, in the original events, there are the two versions of some photos.
    Opening one of the events, I select a couple of photos and "split".
    Split event does get created, but it has no photos.
    Photos and duplicated photos remain in original event.
    I'm quitting now - before I lose everything.....!
    (I'll back up the library and try again later.........!)
    and jsut for the fn of it, I'm adding that I find it strange that I'd have to manually click "abc-check" -- that spellcheck doesn't run automatically.   --I guess it annoys others?
    holly

    First Try the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home/Library/ Preferences folder.
    2 - delete iPhoto's cache file, Cache.db, that is located in your
    User/Home/Library/Caches/com.apple.iPhoto folder (Snow Leopard and Earlier).
    or with Lion and Mt. Lion from the User/Library/Containers/com.apple.iPhoto/
    Data/Library/Caches/com.apple.iPhoto folder
    3 - launch iPhoto and try again.
    NOTE:  In Lion and Mountain Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    If that doesn't help apply the two fixes below in order as needed:
    Fix #1
    1 - launch iPhoto with the Command+Option keys held down and rebuild the library.
    2 - run Option #4 to rebuild the database.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button and select the library you want to add in the selection window..
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the Library ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments.  However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.

  • I'm getting this error "sec_error_ocsp_bad_http_response" on several sites with FF 6.0.2 and earlier versions, but not getting the error with IE.

    I've been getting this error on several websites, this is the latest one it just came up on. I got it while trying to sign onto this page.
    I am able to connect using IE 9, Windows 7 Enterprise.

    Under Advanced>Encryption:Certificate>Validation both boxes were checked, to Use OCSP server to validate the certificate and if the connection fails, then to consider the certificate as Invalid.
    I unchecked the second box (consider the cert as invalid) and now I am able to connect to the websites. This is a business computer and I don't surf with it very much (when I do it is to answer IT questions using Google searches) so I'm not too concerned about turning off the validation.
    Thanks for you assistance to both '''cor-el''' and to''' mha007'''.

Maybe you are looking for

  • Group by based upon condition

    Database : SQL Server 2000 Enterprise Edition OS : Windows Server 2003 Huh?  Every one will ask me why I am posting SQL Server question in Oracle forum ?  I shall reply something like this : Actually my friend is SQL Server DBA and he is getting prob

  • Can't update because wrong email

    My parents bought me a used Mac Laptop Christmas one year, since it was used, there was an email saved in the App Store. There are a few things I can NOT update because the update for it is threw this email that is NOT mine. iPhotos being one of them

  • Install application to ipad

    I'm currently unable to install an application to an iPad from Flash CC after updationg iOS7... Have deleted all certificates and completely re-created and reloaded new certificates (from scratch - generated new certificates in iOS Dev Cntr.) Itunes

  • Please could you tell me if the Mackeeper is worth downloading and can anyone tell me if they have found it useful ?

    my computer was bought in 2006 and was upgraded and the screen replaced about three years ago. It's running on OS 10.5.8.  processor 1.83 GHz intel core Duo.  Memory 512 MB 667 MHz DDR2 SDRAM. Thank you. Teresa Linsey

  • Iphone/iPad sync

    My pad and my phone were synced at one point. I had to reset my iphone 5 last week and since then they are no longer synced. By synced I mean if I had a conversation with another iphone from my phone it could be seen on my pad too. Can anyone help me