JEditorPane split

Hi all ,
I have a problem with JEditorPane, I would split it in pages .
I mean , i load a StyledDocument from a file and I would show only a page a time, I tried a copy and paste tecnique .
the whole file is in a JEditorPane and the single page is copied in another JEP that is showed.
this is the code :
     public void split(JTextPane from, JTextPane to,int fromWhere ,int toWhere,int jepFromWhere){
          from.select(fromWhere,fromWhere+toWhere);
          from.copy();
          to.setCaretPosition(jepFromWhere);
          to.paste();
     public void setDoc(DefaultStyledDocument document){
          this.doc = document;
          jep.setVisible(false);
          textPaneAppoggio.setDocument(document);
          stateChanged=false;
          stop = true;
          while( how < doc.getLength() && howmuch >0){
               split(textPaneAppoggio,jep,how,howmuch,jepHow);
               if (stateChanged){
                    stateChanged = false;
               }else{
               how = how+howmuch;
               jepHow = jepHow+howmuch;
          stop = false;
          jep.setVisible(true);
          return ;
public void adjustmentValueChanged(AdjustmentEvent e) {
     if(!stateChanged && stop){
          jep.setCaretPosition(jep.getDocument().getLength());
     if (e.getValue()!=0){
          howmuch = 0;
          jep.select( how , jep.getCaretPosition() - e.getValue());
             jep.cut();
                return ;
          jep.select( how , jep.getCaretPosition() - e.getValue());
          jep.cut();
          howmuch = howmuch /2;
          stateChanged = true;
     thanks for the replies !!!

the error is that sometimes the doc setting isn't stopped so the scrolling is done.
I tried the set AutoScroll feature but nothing different appened the JScrollPane scrolls anyway

Similar Messages

  • How can I split long words to feet the line in JEditorPane

    Hi,
    Can someone help me ?
    I'm trying to write long words in JEditorPane,
    and I want the JEditorPane to split them, so it will feet the line...
    (something like word wrapping in JTExtArea).
    How can I fix my code so it will work?
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.text.html.*;
    public class Testing extends JFrame {
        public Testing() {
            setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
            Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
            setBounds((screenSize.width-210)/2, (screenSize.height-200)/2, 210, 200);
            editorPane = new JEditorPane();
            HTMLEditorKit kit = new HTMLEditorKit();
            editorPane.setEditorKit( kit );
            HTMLDocument doc = (HTMLDocument) kit.createDefaultDocument();
            editorPane.setDocument( doc );
            editorPane.setEditable(false); // or true
            String htmlText =
                    "<html>"
                    +"<body>"
                    +"How can I use word wrapping with html JEditorPane?"
                    +"<br>How can I split the next long word, so it will feet the line?"
                    +"<br>loooooooooooooooooooooooooooooooooooooooong"
                    +"</body>"
                    +"</html>";
            try {
                kit.insertHTML(doc, editorPane.getCaretPosition(), htmlText.substring(6) + "<br>", 0, 0, HTML.Tag.HTML);
            catch( Exception exp ) {
                exp.printStackTrace();
            getContentPane().add(editorPane, BorderLayout.CENTER);
        public static void main(String args[]) {
            new Testing().setVisible(true);
        private JEditorPane editorPane;
    }Thanks,
    Maoz

    Sorry forget about paragraph view.
    Here the new code.
    regards,
    Stas
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.text.html.*;
    import javax.swing.text.*;
    public class Test extends JFrame
        public Test()
            setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
            Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
            setBounds((screenSize.width-210)/2, (screenSize.height-200)/2, 210, 200);
            editorPane = new JEditorPane();
            MyHTMLEditorKit kit = new MyHTMLEditorKit();
            editorPane.setEditorKit( kit );
            HTMLDocument doc = (HTMLDocument) kit.createDefaultDocument();
            editorPane.setDocument( doc );
    //        editorPane.setEditable(false); // or true
            String htmlText =
                "<html>"
                +"<body>"
                +"<br>How can I split the next long word, so it will feet the line?"
                +"<br>loooooooooooooooooooooooooooooooooooooooong"
                +"</body>"
                +"</html>";
            try
                 kit.insertHTML(doc, editorPane.getCaretPosition(), htmlText.substring(6) + "<br>", 0, 0, HTML.Tag.HTML);
            catch( Exception exp )
                exp.printStackTrace();
            getContentPane().add(new JScrollPane(editorPane), BorderLayout.CENTER);
        public static void main(String args[])
            new Test().setVisible(true);
        private JEditorPane editorPane;
    class MyHTMLEditorKit extends HTMLEditorKit
        private static final ViewFactory defaultFactory = new MyViewFactory ();
        public ViewFactory getViewFactory()
             return defaultFactory;
        static class MyViewFactory extends HTMLFactory
            public View create(Element elem)
                View v=super.create(elem);
                if (v instanceof InlineView )
                    return new LabelView(elem);
                else if (v instanceof javax.swing.text.html.ParagraphView) {
                    return new MyParagraphView(elem);
                return v;
        static class MyParagraphView extends javax.swing.text.html.ParagraphView {
            public MyParagraphView(Element elem) {
                super(elem);
            protected SizeRequirements calculateMinorAxisRequirements(int axis, SizeRequirements r) {
                if (r == null) {
                    r = new SizeRequirements();
                float pref = layoutPool.getPreferredSpan(axis);
                float min = layoutPool.getMinimumSpan(axis);
                // Don't include insets, Box.getXXXSpan will include them.
                r.minimum = (int)min;
                r.preferred = Math.max(r.minimum, (int) pref);
                r.maximum = Short.MAX_VALUE;
                r.alignment = 0.5f;
                return r;
    }

  • Refreshing JEditorPane (Urgent) plz help

    hello programmers,
    i'm building an html editor:
    My html editor has a split pane, the 2 pane got of the split pane are JEditorPanes, one on which i write tag and the other i display them,... thankfully all's working great, my syntax is highlighting and the html is displayed well but i've got the following problem:
    when i save a html page , i wanna my browser (on the right side of the slipt pane) to display the html page... it's ok .. it displays it with the method JHTMLEditorPane.setPage(file:/// directory/ file) but the problem is that when i save the page again using the same filename... my html page on the JHTMLEditorPane stays the same... it does not update...
    is their a refresh function for the JEditorPane? how can i update my JHTMLPane to reflect the changes i've brought to it? ONe thing , the page changes when i save it by aother file name..... PLz help it's very urgent!!!!!!!
    Bernard

    Have you tried to close and then re-open the file in your editorpane after you've saved?
    It will work when you change the name because it has to open the file as new. Java can't dynamically update values upon files like C does with pointers.

  • How to autofit JEditorPane in a jpanel?

    Hi everybody,
    I have added a JEditorPane to a JPanel wrapped by a splitpane, as displayed in [this snapshot|http://img40.imageshack.us/img40/7540/jeditorpaneissue.png].
    The splitpanel works fine, but for some reason the JEditorPane has a fixed size and won't fit the parent when I resize it by dragging the split bar (the red arrows in the image show the annoying gap).
    I'd like to improve this GUI with 2 things:
    1) autofit: when I change the size of the window or I drag the split bar, the JEditorPane should fit the new size automatically. I suppose I can do this with a listener, but I was wondering if there is better way of doing it (e.g. some settings in the panel).
    2) vertical scrollbar: I obviously need a scrollbar for the JEditorPane, but I don't know where I am supposed to add it.
    Thanks for any hints!
    Mulone

    PS: here's the code:
    JEditorPane:
    public class Recommender extends JEditorPaneInit function of the JEditorPane:
    void init(){
    setEditorKit(new StyledEditorKit());
    setContentType( "text/html" );
    setEditable(false);
    setPreferredSize(new Dimension(300,600));Place where I load the JEditorPane
    InfoBrowserPanel infoBr = new InfoBrowserPanel();
    infoBr.add( UcdNavManager.getInstance().getRecommender() );
    mapHandler.add( infoBr );InfoBrowserPanel (just a container):
    public class InfoBrowserPanel extends JPanel implements BeanContextChild, BeanContextMembershipListenerthen I load it into a splitPane
    if(someObj instanceof InfoBrowserPanel){
    Debug.message("basic", "OpenMapFrame: found an InfoBrowserPanel");
    InfoBrowserPanel bp = (InfoBrowserPanel)someObj;
    splitPane.setRightComponent(bp);which is defined as:
    private JSplitPane splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);That's pretty much it.
    Mulone

  • HTML in JEditorPane question

    Hello
    I am having trouble with displaying HTML with image maps in JEditorPane component. I am trying to load a simple html file as follows:
    <html>
    <IMG SRC="monk.gif" HEIGHT="255" WIDTH="262" ISMAP USEMAP="#mapareas">
    <map NAME="mapareas">
    <area SHAPE=CIRCLE COORDS="107,158 132,162" HREF="basic.htm" ALT="Basic Page">
    <area SHAPE=default HREF="index.html">
    </MAP>
    </html>
    There is no problem with displaying the image. It's rendered fine without any problem. But, When I click on the circle area, I can't seem to get the URL corresponding to the map area. I tried the HyperlinkEvent::getDescription() and HyperlinkEvent::getURL() methods and both of them return the reference to the map as opposed to the reference specified for the specific map area ( in my case, "sample.map" instead of "basic.htm" ).
    Can someone tell me if HTML with image maps is supported in EditorPane? if so, how do I get the reference to the map area clicked?
    thanks in adv
    Venkat Kota

    JTextComponent.viewToModel
    then get the element at that location, either the character or
    paragraph element, then get its StyleContext.NameAttribute value, which is a HTML.Tag.
    That was a fun walk round the API, to find out more, I recomend reading through JTextComponent, and its Model/View Split section.
    The the Element and View interfaces.

  • HTML splitting with java

    I'm currently working on a program that fetches posts from a blog and then presents these posts on a webpage using wicket. The webpage cannot require any user interaction and all content must be visible on the same page (without the use of autoscroll etc.) To be able to fit two or three posts on the same page I have to show only the beginning of each post (and whoever wants to read further will have to go to the blog). I want to split the posts using the following method:
    public void insertPosts(int visiblePosts, int visibleChars);where visiblePosts represents the number of visible posts and visibleChars is the visible characters per post.
    Each post is a html formatted string and I am a little lost on how to get started with this. For instance, characters inside a tag should not be counted, all opened tags must be closed, paragraph tags that does not add any characters, but still consumes space on the page etc. Can anyone get me started? Maybe something similar already exists?

    AndrewThompson64: This will not be a concern. The webserver runs locally on a single computer where we can adjust the numbers of visible post and characters to fit the screen resolution.
    sztyopek: This might be the way to go, although i cannot add JEditorPanes. It must be strings. They are inserted into the document like this:
    Index.java
    page.add(new Label(("content", post.getContent()).setEscapeModelStrings(false)if setEscapeModelStrings is true the html tags is interpreted as part of the content and the whole string is printed to the page as is.
    Index.html
    <div wicket:id="content" />I'll have a look at HTMLDocument. If anyone else has any other suggestions or want to elaborate more on this, please do so! :)

  • Html in JEditorPane

    Hello again! I am in the following situation. I have succeeded in loading an HTML document in a JEditorPane component. My question is can I recognize somehow if a click is performed on an image of the html document or on the text of the html document? If there is a possibility I would very much appreciate if you'd share it.
    Thank you.

    JTextComponent.viewToModel
    then get the element at that location, either the character or
    paragraph element, then get its StyleContext.NameAttribute value, which is a HTML.Tag.
    That was a fun walk round the API, to find out more, I recomend reading through JTextComponent, and its Model/View Split section.
    The the Element and View interfaces.

  • Java 6  JEditorPane.print pagination

    I now see that Java 6 has a print() function for JEditorPane. My question is does this method do some sort of pagination so that a line of text will not be split between two pages? Does anyone have experience with this method yet?

    What do you expect to see if you print a single sentence that is too long to be contained on one page?
    Since there has to be some kind of pagination control in the method, either do some experimenting or take a look at the method's source code - it should be in src.zip in your JDK directory.

  • Does JEditorPane support JavaScript, CSS, XHTML, HTML?

    Can anyone confirm what JEditorPane actually can support? I can't find anything specific in the J6SE release notes and most of the stuff of Google is pretty dated, I have also searched the forums but nothing much on there that is recent. According to one post it supports some CSS and HTML but no JavaScript.
    Can anyone confirm this?
    What I plan to do is make a lightweight split pane editor for the above but I also want to be able to preview the code in another pane instead of launching a browser. If there still is no support then can anyone suggest an alternative way to get the same results?
    Failing that I will just have to try and then fall back to the browser but it would be nice to know before hand. The online docs I read don't cover a lot on compatibility.
    Cheers

    the answer is no. the html support in JEditorPane is
    very simple to be able to do things like simple help
    manuals and such. But you may be able to integrate
    the mozilla gecko engine into your application if you
    really want this.
    http://jrex.mozdev.org/
    Hi Gimbal,
    Thanks for the info. The jrex thing certainly looks more like what I am after.
    Cheers

  • HTMLEditorKit.insertHTML() splits existing tag

    Hi guys!
    I try to create a simple editor with a JEditorPane, but when it comes to formating the HTML content, there's a little problem. ATM I use this way to insert a formatted text:
    HTMLDocument html = (HTMLDocument) editorPane.getDocument();
    HTMLEditorKit kit = (HTMLEditorKit) editorPane.getEditorKit();
    try {
        String s = "<strong>�+html.getText(start, end - start)+�</strong>�;
        // remove old, change to bold
        html.remove(start, end - start);
        kit.insertHTML(html, start, s, 0, 0, HTML.Tag.STRONG);
    } catch (BadLocationException e1) {
        e1.printStackTrace();
    } catch (IOException e1) {
        e1.printStackTrace();
    }But when I try to insert another format inside of the previously created STRONG tag, the HTMLEditorKit splits up the old tags, closing it, inserting the new tag and after the newly isnerted tag it opens up the old STRONG again.
    Can someone please help me with this? It think it's just a small thinking mistake I make, but I can't figure out how to insert a tag inside another tag...
    thanks in forward

    Sorry for the long gap between my postings. I'm kinda busy these days.
    I tried to use the parameters, but when I change the code from
    HTMLDocument html = (HTMLDocument) editorPane.getDocument();
    HTMLEditorKit kit = (HTMLEditorKit) editorPane.getEditorKit();
    try {
      String s = "<strong>"+html.getText(start, end - start)+"</strong>";
      // remove old, change to bold
      html.remove(start, end - start);
      kit.insertHTML(html, start, s, 0, 0, HTML.Tag.STRONG);
    } catch (BadLocationException e1) {
      e1.printStackTrace();
    } catch (IOException e1) {
      e1.printStackTrace();
    }into
      kit.insertHTML(html, start, s, 1, 1, HTML.Tag.STRONG);a NullPointerException is generated. Can you help me to interpret the API docs for those parameters? I don't have a clue how to insert a bold text into a sentence.
    I tried with a sentence without any formatting and with a EM tag surrounding the whole sentence.

  • PTax ded Twice incase of WPBP SPLIT (Mid month Transfer)

    Hi Friends:
    In SAP, whenever an Employee transfers from one state to another then system deducts P Tax Twice in that Payroll Period and this is a standard behaviour. (Due to two Splits and two regions)
    Ex: 1- 15 in MH and 16 to 30 in AP then P tax of MH is deducted for 1-15 days GROSS and P Tax of AP deducted for GROSS on 16 to 30.
    Now, i want to deduct only the P Tax for the Last split record in that Payroll Period. That is P tax for Extire GROSS to be deducted based on AP Region slab.
    Has anyone faced this scenario/ issue. Any Exits/ BADI's available to achieve this?
    regards,
    Srikanth

    Hi
    If you want to differ from the standard calculation then you can use the BADI
    HR_IN_CALC_PTX_BASIS
    Regards
    Sumit Pradhan

  • IP Phone SSL VPN and Split tunneling

    Hi Team,
    I went throught the following document which is very useful:
    https://supportforums.cisco.com/docs/DOC-9124
    The only things i'm not sure about split-tunneling point:
    Group-policy must not be configured with split tunnel or split exclude.  Only tunnel all is the supported tunneling policy
    I could see many implementation when they used split-tunneling, like one of my customer:
    group-policy GroupPolicy1 internal
    group-policy GroupPolicy1 attributes
    banner value This system is only for Authorized users.
    dns-server value 10.64.10.13 10.64.10.14
    vpn-tunnel-protocol ssl-client
    split-tunnel-policy tunnelspecified
    split-tunnel-network-list value split-tunnel
    default-domain value prod.mobily.lan
    address-pools value SSLClientPool
    webvpn
      anyconnect keep-installer installed
      anyconnect ssl rekey time 30
      anyconnect ssl rekey method ssl
      anyconnect ask none default anyconnect
    username manager-max password XTEsn4mfYvPwC5af encrypted privilege 15
    username manager-max attributes
    vpn-group-policy GroupPolicy1
    tunnel-group PhoneVPN type remote-access
    tunnel-group PhoneVPN general-attributes
    address-pool SSLClientPool
    authentication-server-group AD
    default-group-policy GroupPolicy1
    tunnel-group PhoneVPN webvpn-attributes
    group-url https://84.23.107.10 enable
    ip local pool SSLClientPool 10.200.18.1-10.200.18.254 mask 255.255.254.0
    access-list split-tunnel remark split-tunnel network list
    access-list split-tunnel standard permit 10.0.0.0 255.0.0.0
    It is working for them w/o any issue.
    My question would be
    - is the limitation about split-tunneling still valid? If yes, why it is not recommended?
    Thanks!
    Eva

    Hi,
    If you're not using certificates in client authentication then the SSL handshake will complete before the user is requested to authenticate with username/password.  If this authentication request fails you will see the SSL session terminated immediately following this failure (as in the logs you provided).  Notice the 5 seconds between the SSL session establishment and termination, this is most likely when the user is being authenticated against the aaa server.  If the phone is failing authentication against an external aaa-server you'll want to investigate the logs on that server to determine the root cause of the failure.  The ASA can also provide confirmation of the authentication request/reject with the command 'show aaa-server'.  If you want to see what's going on at an authentication protocol level you can enable several debugs including "debug aaa authentication|common|internal' and protocol specific debugs such as 'debug radius user|session|all' or 'debug ldap'.
    Did this answer your question? If so, please mark it Answered!

  • Hi, I am having trouble MacBook Air crashing since Yosemite upgrade. I ran an Etresoft check but I don't know what it means... my system runs slowly and crashes. I have to force shutdown. Sometimes screen is black for a split second b/w webmail pages

    Hello,
    I am having trouble with my MacBook Air 13 inch June 2012 MacBook Air5, 2 4GB RAM  details below in Etresoft report. I recently upgraded to Yosemite and am having system trouble. My computer crashes and I have to force quit to restart. When using webmail there is a black screen for a split second between pages. This did not happen before. I am worried that it is not running properly and perhaps I need to revert to the previous operating system. I only have a MacBook Air and no need to share images between a tablet or phone so I did not need the new photo sharing software of Yosemite. I wonder if I don't have enough RAM to run it? I did not run time machine before I made the upgrade as I did not realise the significance of an upgrade as not very Mac literate. Any advice on whether my system is in danger... most appreciated! I am writing a book and making a back up but this machine is my lifeline and my work is conducted through it. It ran perfectly before... the Yosemite upgrade has perhaps highlighted some problems and it has unnerved me!
    Thanks ever so much for your advice!
    Lillibet
    EtreCheck version: 2.2 (132)
    Report generated 5/2/15, 9:53 PM
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Air (13-inch, Mid 2012) (Technical Specifications)
        MacBook Air - model: MacBookAir5,2
        1 1.8 GHz Intel Core i5 CPU: 2-core
        4 GB RAM Not upgradeable
            BANK 0/DIMM0
                2 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en0: 802.11 a/b/g/n
        Battery: Health = Normal - Cycle count = 694 - SN = D86218700K2DKRNAF
    Video Information: ℹ️
        Intel HD Graphics 4000
            Color LCD 1440 x 900
    System Software: ℹ️
        OS X 10.10.3 (14D136) - Time since boot: 0:22:41
    Disk Information: ℹ️
        APPLE SSD SM256E disk0 : (251 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 249.77 GB (167.35 GB free)
                Encrypted AES-XTS Unlocked
                Core Storage: disk0s2 250.14 GB Online
    USB Information: ℹ️
        Apple, Inc. Keyboard Hub
            Mitsumi Electric Apple Optical USB Mouse
            Apple Inc. Apple Keyboard
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Internal Memory Card Reader
        Apple Inc. Apple Internal Keyboard / Trackpad
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Applications/WD +TURBO Installer.app
        [not loaded]    com.wdc.driver.1394HP (1.0.11 - SDK 10.4) [Click for support]
        [not loaded]    com.wdc.driver.1394_64HP (1.0.1 - SDK 10.6) [Click for support]
        [not loaded]    com.wdc.driver.USB-64HP (1.0.3) [Click for support]
        [not loaded]    com.wdc.driver.USBHP (1.0.14) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.wdc.driver.1394.64.10.9 (1.0.1 - SDK 10.9) [Click for support]
        [loaded]    com.wdc.driver.USB.64.10.9 (1.0.1 - SDK 10.9) [Click for support]
    Problem System Launch Daemons: ℹ️
        [failed]    com.apple.mtrecorder.plist
    Launch Agents: ℹ️
        [running]    com.mcafee.menulet.plist [Click for support]
        [running]    com.mcafee.reporter.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
    Launch Daemons: ℹ️
        [running]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [failed]    com.apple.spirecorder.plist
        [running]    com.mcafee.ssm.Eupdate.plist [Click for support]
        [running]    com.mcafee.ssm.ScanManager.plist [Click for support]
        [running]    com.mcafee.virusscan.fmpd.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Application Hidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        AdobeResourceSynchronizer    Application Hidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
        EvernoteHelper    Application  (/Applications/Evernote.app/Contents/Library/LoginItems/EvernoteHelper.app)
        TouchP-150M    Application  (/Applications/Canon P-150M/TouchP-150M.app)
        iPhoto    Application  (/Applications/iPhoto.app)
        WDDriveUtilityHelper    Application  (/Applications/WD Drive Utilities.app/Contents/WDDriveUtilityHelper.app)
        WDSecurityHelper    Application  (/Applications/WD Security.app/Contents/WDSecurityHelper.app)
    Internet Plug-ins: ℹ️
        FlashPlayer-10.6: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Click for support]
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Click for support]
        Flash Player: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        JavaAppletPlugin: Version: Java 8 Update 45 Check version
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        FUSE for OS X (OSXFUSE)  [Click for support]
        Java  [Click for support]
        MacFUSE  [Click for support]
        NTFS-3G  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: ON
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 249.77 GB Disk used: 82.42 GB
        Destinations:
            My Passport Edge for Mac [Local]
            Total size: 499.94 GB
            Total number of backups: 27
            Oldest backup: 2013-01-31 21:15:26 +0000
            Last backup: 2015-05-02 11:33:09 +0000
            Size of backup disk: Adequate
                Backup size 499.94 GB > (Disk used 82.42 GB X 3)
    Top Processes by CPU: ℹ️
             6%    WindowServer
             3%    fontd
             2%    VShieldScanManager
             0%    taskgated
             0%    notifyd
    Top Processes by Memory: ℹ️
        745 MB    Google Chrome Helper(8)
        439 MB    kernel_task
        246 MB    VShieldScanner(3)
        160 MB    Google Chrome
        127 MB    Finder
    Virtual Memory Information: ℹ️
        130 MB    Free RAM
        3.87 GB    Used RAM
        0 B    Swap Used
    Diagnostics Information: ℹ️
        May 2, 2015, 09:30:08 PM    Self test - passed
        May 2, 2015, 08:52:59 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/soffice_2015-05-02-205259_[red acted].crash
        May 2, 2015, 09:28:53 AM    /Library/Logs/DiagnosticReports/backupd_2015-05-02-092853_[redacted].cpu_resour ce.diag [Click for details]
        May 1, 2015, 05:45:24 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/EvernoteHelper_2015-05-01-1745 24_[redacted].crash
        May 1, 2015, 05:38:54 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173854_[redacted].crash
        May 1, 2015, 05:38:43 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173843_[redacted].crash
        May 1, 2015, 05:38:32 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173832_[redacted].crash
        May 1, 2015, 05:38:27 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173827_[redacted].crash
        May 1, 2015, 05:38:10 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173810_[redacted].crash
        May 1, 2015, 05:38:00 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173800_[redacted].crash
        May 1, 2015, 05:37:49 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173749_[redacted].crash
        May 1, 2015, 05:37:38 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173738_[redacted].crash
        May 1, 2015, 05:37:27 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173727_[redacted].crash
        May 1, 2015, 05:37:22 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173722_[redacted].crash
        May 1, 2015, 05:37:06 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173706_[redacted].crash
        May 1, 2015, 05:36:55 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173655_[redacted].crash
        May 1, 2015, 05:36:44 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173644_[redacted].crash
        May 1, 2015, 05:36:33 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173633_[redacted].crash
        May 1, 2015, 05:36:22 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173622_[redacted].crash
        May 1, 2015, 05:36:17 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173617_[redacted].crash
        May 1, 2015, 05:36:01 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173601_[redacted].crash
        May 1, 2015, 05:35:50 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173550_[redacted].crash
        May 1, 2015, 05:35:39 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173539_[redacted].crash
        May 1, 2015, 05:35:28 PM    /Library/Logs/DiagnosticReports/mds_2015-05-01-173528_[redacted].crash
        May 1, 2015, 05:20:29 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/soffice_2015-05-01-172029_[red acted].crash
        May 1, 2015, 04:55:05 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/soffice_2015-05-01-165505_[red acted].crash
        May 1, 2015, 02:53:58 PM    /Library/Logs/DiagnosticReports/sharingd_2015-05-01-145358_[redacted].crash
        Apr 20, 2015, 09:31:20 PM    /Library/Logs/DiagnosticReports/Kernel_2015-04-20-213120_[redacted].panic [Click for details]

    When you have kernel panics, the pertinent information is in the panic report.
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console 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 and start typing the name.
    In the Console window, select
              DIAGNOSTIC AND USAGE INFORMATION ▹ System Diagnostic Reports
    (not Diagnostic and Usage Messages) from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar.
    There is a disclosure triangle to the left of the list item. If the triangle is pointing to the right, click it so that it points down. You'll see a list of reports. A panic report has a name that begins with "Kernel" and ends in ".panic". Select the most recent one. The contents of the report will appear on the right. Use copy and paste to post the entire contents—the text, not a screenshot.
    If you don't see any reports listed, but you know there was a panic, you may have chosen Diagnostic and Usage Messages from the log list. Choose DIAGNOSTIC AND USAGE INFORMATION instead.
    In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.)
    Please don’t post other kinds of diagnostic report.
    I know the report is long, maybe several hundred lines. Please post all of it anyway.

  • How do we split our iCloud accounts but keep one iTunes account so we can share purchased content for our multiple iPhones and iPads?

    How do we split our iCloud accounts but keep one iTunes account so we can share purchased content for our multiple iPhones and iPads?

    You can migrate a copy of the data to a new account, then delete the other person's data from each account.  To do this, on the phone that will be changing accounts, if you have any photos in photo stream that you want to keep on the phone, save these to your camera roll by opening the photo stream album in the thumbnail view, tapping Edit, then tap all the photos you want to save, tap Share and tap Save to Camera Roll. If you have any synced notes that you want to keep on the phone, email these to yourself so you can create new notes in the new account.
    Once this is done, go to Settings>iCloud, scroll to the bottom and tap Delete Account.  (This will only delete the account from this phone, not from iCloud.  The phone that will be keeping the account will not be effected by this.)  When prompted about what to do with the iCloud data, be sure to select Keep On My iPhone.  Next, set up a new iCloud account using a different Apple ID (if you don't have one, tap Get a Free Apple ID at the bottom).  Then turn iCloud data syncing for contacts, etc. back to On, and when prompted about merging with iCloud, choose Merge.  This will upload the data to the new account.  You will create a new icloud email address with you turn Mail to On.
    Finally, to un-merge the data you will then have to go to icloud.com on your computer and sign into each iCloud account separately and manually delete the data you don't want (such as deleting your wife's data from your account, and vice versa).

  • How can I display & split the audio & video from the same digitized clip?

    I digitized a scene into iMovie that I edited on a professional system which I don't have access to anymore. The whole scene is 1 clip. Now I see a few tweaks that I want to make, so I was hoping to do them in iMovie.
    I want to "pull up" the audio in one section - meaning I want to take cut about 20 frames of audio from the end of a shot, and then move all the other audio up to fill the hole. To compensate for the missing 20 frames, I'll cut video off the head of the next shot. Some call this prelapping. Some call it an L-cut. Some call it asymmetrical trimming. Either way, I can't figure out how to do it in iMovie.
    My clip appears in the timeline as one track - a single track that contains the video and 2 audio tracks. How can I display the audio that's tied to the video on its own track? Then I think I could split audio & video wherever I wanted and trim things up - but I can't figure out how to do it.
    Am I asking too much of this software?
    BTW, I never see the option to "Split audio clip at playhead". I'm not displaying clip volume or waveforms. Choosing to display waveforms doesn't show me anything. Maybe iMovie thinks I'd only want to see waveforms of audio that isn't tied to my video-and-audio clips?
    Thanks in advance for any help...

    Jordon,
    "Am I asking too much of this software?"
    No, you're not.
    You first want to select your clip(s) and choose Advanced>Extract Audio.
    This will copy the audio from the video clip and place it on one of the two separate audio tracks while lowering the audio level to zero in the original video track.
    You can now edit and move the audio independently of the video.
    With the audio clip selected, you'll find you now have access to Edit>Split Selected Audio Clip at Playhead.
    Matt

Maybe you are looking for