Mods. Please take a look at this topic

Hi,
Please take a look at this topic:
http://discussions.apple.com/thread.jspa?threadID=422678&tstart=0
It's becoming 'unfriendly'
Thanks.
M

Hi Kady,
Thanks for putting the inappropriate parts in the 'Trash'
M

Similar Messages

  • Please take a look at this. Attempting to make a professional brochure/bound 5-page presentation.

    Please take a look at this template I made for a Statement of Qualifications pamphlet.
    Here is a link to google drive. I made this template from scratch in Photoshop CS6.
    SOQ Page_Blank(no lettering).pdf - Google Drive
    What I am curious about, is that some of the lettering often looks blurry, although the page is 500pixels per inch 8.5x11, 76MB .psd file. What can I do about that?
    Also, I want to make it easy to write and edit the actual content that will go onto the page. Not all of us here have photoshop to edit the lettering. Is there a way I can export this to word so they can edit the content whenever? Are there better options (programs) to help me design this template? I am guessing I am somewhat pushing photoshops limit as to making a bound 5-page presentation. I am stuck and would like this to be easier. All suggestions for both of my questions as well as overall action toward making this would be great.
    Here is an example of a SOQ Pamphlet that I have been using as reference. In my eyes the design is perfect!
    http://www.ch2m.com/corporate/markets/environmental/conferences/setac-2013/assets/CH2M-HIL L-land-conservation-restoratio…
    Any help is great,
    Thanks,
    Adam

    Since photoshop can not do pages, your on the right track by using pdf format. Since it can do pages, but really requires acrobat pro to bind the pages together.
    Your best bet is InDesign then Illustrator would be the next option. Each of these can do multi page documents.
    There is absolutely no reason to use 500px/inch for the resolution anything between 150 and 300 would suffice leaning towards 300ppi.
    If the text is blurred a few things that can cause that, 1) anti-aliasing 2) document was created as a low resolution then upsampled 3) text is rasterized 4) document is rasterized.

  • Someone please take a look at this

    Please take a look at this.
    This is my jsp file:
    <%@ page import="java.sql.*" %>
    <%
    String url="jdbc:mysql://localhost/ali";
    String user="root";
    String password="";
    Connection conn=null;
    String classPath="com.mysql.jdbc.Driver";
    try{
         Class.forName(classPath);
         conn = DriverManager.getConnection(url,user,password);
         }catch(Exception exc){
         out.println(exc.toString());
    %>
    <%
         Statement stm=conn.createStatement();
         String update="CREATE TABLE product(id varchar(20) PRIMARY KEY, name char(20))";
         try{
              stm.executeUpdate(update);
              out.println("Successful")
         }catch(Exception exc){
              out.println("sorry loser!!");
         stm.close();
         conn.close();
    %>
    but when I try opening it up in tomcat i get this error:
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: 16 in the jsp file: /mytest/createTable.jsp
    Generated servlet error:
    [javac] Compiling 1 source file
    /usr/java/jakarta-tomcat-4.1.31/work/Standalone/localhost/_/mytest/createTable_jsp.java:64: ';' expected
         }catch(Exception exc){
    ^
    1 error
         at org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:85)
         at org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:248)
         at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:315)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:328)
         at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:427)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:142)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:200)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:146)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:209)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:144)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2358)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:133)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:118)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:116)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:127)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:152)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)

    i've repaired that one already but now i get this.Please....Help me.
    org.apache.jasper.JasperException
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:207)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:200)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:146)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:209)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:144)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2358)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:133)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:118)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:116)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:127)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:152)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)
    root cause
    java.lang.NullPointerException
         at org.apache.jsp.createTable_jsp._jspService(createTable_jsp.java:60)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:92)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:162)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:200)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:146)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:209)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:144)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2358)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:133)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:118)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:116)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:127)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:152)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)

  • Workaround for some W510 Audio Problems. Lenovo, please take a look at this!

    Hi all
    I believe most or all of the people are affected with poor sound quality of W510. I do believe there are some people who bring their laptops along and not convenient to get a external sound card and external speakers on the road. I am not too sure, but what I think that causes audio problem in W510, T410 or T510 is due to the implementations of Combo Audio/Mic Jack. So far, I have not heard any audio problems from X201 or W701/W701ds with a separate mic and audio jack (1 green and red, instead of 1 combo) Listed machines are using Conexant 20585 SmartAudio HD Sound Card.
    The workaround is to force install Conexant 20561 SmartAudio HD Driver through Device Manager
    http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-73721
    Problem Partially Resolved
    1. Using Audio Director - Classic mode enables you to use both internal speakers and external speakers/headphone simultaneously. (By right, this should be in Multi-Stream mode, due to this driver not programmed for W510). However, the volume of the internal speaker will be reduced by half if an external speakers/headphone is plugged.
    2. The sound quality is improved (tested with internal speakers).
    3. Solved Irregular Volume Problems.
    Drawback of using this driver
    1. Using Multi-Stream mode in this case would not enables you to use both internal speakers and external speakers/headphone simultaneously. However it would just make your internal speaker to be louder. External speaker/headphone would not work if Multi-Stream mode is selected.
    2. Custom EQ is not usable, if used, only the right channel of internal speaker, external speaker/headphone would work, and the sound quality will be like a spoilt radio.
    3. Only Voice (VoIP) EQ is optimized for external speaker/headphone. Using Off, Jazz, Dance or Concert EQ would make you feel that the vocal (singer's voice) is diffused, blurred like excessive 3D effects.
    4. Even if any preloaded EQ is selected, after system has been restarted, the selected EQ would still be saved, but the band (31Hz - 16KHz would be changed back to Off EQ) It is ok as it just affects the graphics, not the sound.
    I know that Forum Administrators, Lenovo Staff, Community Moderators, Gurus and Volunteered Moderators/Users would be surfing around and looking for new post. Please take a look and leave a post or PM to me, thank you very much.
    It is alright if Lenovo don't think that there is any problems regarding the sound in W510. However, I do believe most users/owners of W510 would appreciate if the sound system could be further improved through a better driver or new revision of hardware to something like a T400 standards or something. Some users would spent so much $ just to get all-in-a-box solution and would not want to invest further just for a external card to sacrifice portability and use more $. Finally, I still do believe that W510 audio problems can be resolved.
    Best Regards
    Peter

    Hi ckhordiasma
    Thanks for reviving ths old thread. How about trying Dolby drivers? It sounds great and could possibly resolve those issues without going through too much troubleshooting.
    The link is under my signature.
    Hope it helps!
    Happy 2012! 
    Peter
    W520 (4284-A99)
    Does someone’s post help you? Give them kudos as a reward, as they will do better to improve | Mark it as solved if the solution works for you, so it could be reference for others in the future 
    =====================================
    Sound Enthusiast and Enhancement (Post comments, share mixes, etc.)
    http://forums.lenovo.com/t5/General-Discussion/Dolby-Home-Theater-v4-for-most-Lenovo-Laptops/td-p/62...

  • Wried? CAN YOU PLEASE TAKE A LOOK AT THIS

    how do you display a error massage for the user
    this is what i have done but its not working
    item2.addActionListener(new ActionListener(){
    public void actionPerformed(ActionEvent e){
    try {
    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());// makes it looklike win
    }catch (Exception m) {     <======= i used m since e was already used
    JFrame f = new JFrame();
    f.setSize(50,50);
    JLabel j = new JLabel(
    "CANT DO THIS ON YOUR COMPUTER!!!!",JLabel.CENTER);
    j.setOpaque(true);
    j.setSize(200,400);
    add(j);
    AM I DOING ANYTHING WRONG
    i think you know what i wanne do if it catches an exception i wannt it to display an error massage
    saying you cant do this on your computer or soemthing
    thanks in advance
    AMIR

    (WARNING - My mods to your code are a quick quick hack, but I think it shows the point)
    import java.io.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Game extends JFrame{
      protected static String Key_CODE;
      public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        Game g = new Game();
      Game(){
        super("Game WINDOW");
        addWindowListener(new WindowAdapter(){
          public void windowClosing(WindowEvent e){
            System.exit(0);
        buildMenu();
        pack();
        setBackground(Color.white);
        setSize(300,200);
        setVisible(true);
      private void buildMenu(){
        JMenuBar mb = new JMenuBar();
        JMenu menu = new JMenu("File");
        JMenuItem item = new JMenuItem("Exit");
        JMenuItem item2 = new JMenuItem("make it look like windows [2]");
        JMenuItem item3 = new JMenuItem("make it look like somehthing else [1]");
        JMenuItem item4 = new JMenuItem("make it look like another thing [0]");
        item.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent e){
            System.exit(0);
        item2.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent e){
            try {
              // UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());// makes it look like windows
              UIManager.LookAndFeelInfo[] info = UIManager.getInstalledLookAndFeels();
              UIManager.setLookAndFeel(info[2].getClassName());
              SwingUtilities.updateComponentTreeUI(Game.this);
            } catch (Exception m) {
              JOptionPane.showMessageDialog(null, "Cant do this on your Computer (UI 2 not supported)", "Error", JOptionPane.ERROR_MESSAGE);
        item3.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent e){
            try {
              // UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());// makes it look like windows
              UIManager.LookAndFeelInfo[] info = UIManager.getInstalledLookAndFeels();
              UIManager.setLookAndFeel(info[1].getClassName());
              SwingUtilities.updateComponentTreeUI(Game.this);
            } catch (Exception m) {
              JOptionPane.showMessageDialog(null, "Cant do this on your Computer (UI 1 not supported)", "Error", JOptionPane.ERROR_MESSAGE);
            item4.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent e){
            try {
              // UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());// makes it look like windows
              UIManager.LookAndFeelInfo[] info = UIManager.getInstalledLookAndFeels();
              UIManager.setLookAndFeel(info[0].getClassName());
              SwingUtilities.updateComponentTreeUI(Game.this);
            } catch (Exception m) {
              JOptionPane.showMessageDialog(null, "Cant do this on your Computer (UI 0 not supported)", "Error", JOptionPane.ERROR_MESSAGE);
        menu.add(item4);
        menu.add(item3);
        menu.add(item2);
        menu.add(item);
        mb.add(menu);
        setJMenuBar(mb);

  • Please take a look at this file? Help me? :D

    I've posted it on MEGA, inside the .zip file I've posted the .fla and the .swf files...
    When I test the file, on the background (under all pieces), on the center, I've got this:
    I really want to take that 'message' out...
    How can I do that? =D
    The file is here: https://mega.co.nz/#!l5pEFYTI!IFkKX0Py2vQehVn7ct0fJCU32Oc26GBQLYgaSke0kdY

    Hi sonson,
    I will request Sangeeta to correspond with you using your email account.  Is your hotmail account with which you registered your Adobe ID still active?
    Sangeeta: The file is posted at
    https://mega.co.nz/#!l5pEFYTI!IFkKX0Py2vQehVn7ct0fJCU32Oc26GBQLYgaSke0 kdY
    Thanks,
    Preran

  • JNDI /Clusters (Rob can u please take a look at this ?)

    Hi ..
    I am trying to bind a custom object (which offcourse implements
    Serializable) in to the JNDI tree..
    The important thing to note here is that the 2 WLS servers are in a
    cluster and I am getting the Initial Context with the with the following
    (default) properties..
    h.put(WLContext.REPLICATE_BINDINGS, "true");
    h.put(WLContext.PIN_TO_PRIMARY_SERVER,"false");
    h.put(Context.PROVIDER_URL, t3://Server1,Server2:7010 );
    Now my custom object's values keep changing Dynamically and hence I am
    doing a unbind and binding as
    Lets say I do this on "Server2"
    MyObject zz = new MyObject( );
    zz.changeFustration_Level("Happy");
    ctx.bind("MyObject",zz);
    //As the program logic changes.... (after some interval....)
    ctx.unbind("MyObject");
    //Update MyObject .....
    MyObject oo = new MyObject( )
    oo.changeFustration_Level("Fustrated");
    ctx.bind("MyObject",oo);
    And I assumed (happily...) that the new Object would get replicated in
    the cluster ....
    (Also resolvedObject: weblogic.jndi.toolkit.ReplicatedWLContext is
    called one of the servers)
    But to my utter disgust the Object (in this case MyObject) is a stale
    copy on the other server.....("Server1")
    And to the best of my knowledge my code is doing everything as described
    in the Docs...
    Could anyone throw any insight in to this ??
    Awaiting reply from all the JNDI gurus...
    Thanxs,
    Naggi

    That thread has been noticed before. It all started with a bad suggestion that no one noticed and corrected. Then the post got slightly scrambled in the new forums. Finally, the original poster added some special root powers and a mess ensued.

  • Hello please take a look at this exception.

    im tring to translate this SQL syntax to LINQ syntax,
    im using VS 2008 SP1+ SQL 2000(i knew it's very old)
    im trying to translate this SQL:
    select list_no, prod_no, batch_no, prod_add from inv_sub where list_no in (select list_no from anothertable)
    i have select the list_no into a list<string> which is named thelistnos,so i try using the following LINQ sytanx
    var thequery = from d in db.inv_sub
                                       where thelistnos.Contains(d.list_no)
                                       select new { d.list_no, d.prod_no, d.batch_no, d.prod_add };
    however the exception occured when this linq is executing.
    it's very strange that if   list<string> thelistnos just had a few records, for example ,just have 4 records,the linq works fine.
    however i have over 4000 records in list<string> thelistnos, the exception occured
    any help would be apperciate.
    best regards
    ken

    hello,
    this instruction is not correct :
    try this one :
    var thequery = from d in db.inv_sub
                                       where thelistnos.Contains(d.list_no)
                                       select new { db.list_no, db.prod_no, db.batch_no, db.prod_add };

  • Please take a look at this screenshot from disk Utility - What does it Mean

    I've just got my MB Pro with 8Gb RAM, HR Monitor AntiGLare, 7200rpm500GB HDD, OS X 10.6.4. The list of apps installed.. All Installations went well and 100% successful.
    iLife09 (preInstalled)
    ALL OSX etc Updates done upon starting machine first time
    AppDelete (latest version)
    Final Cut Studio 3 (Full installation)
    LightRoom 3
    MS (Mac) Office 2008 (Word, Excel, PowerPoint & MS Project Gallery)
    PhotoShop CS 3 <--- HOWEVER, I had to remove this as the UPDATE feature kept crashing (unexpected Quit).. so I decided to REMOVE CS3 Altogether using AppDelete.
    However, Im still getting the odd Unexpected Quit, and the application closing. This happens on one particular filter in FCS3.. 'SugarFXHUD' & today I noticed it happened when I was in Apple QMASTER configuring it to use compressor for multiple cores (the digital rebellion procedure).
    I followed the Apple Instructions on doing a DISK Permission Repair and noticed the following.
    http://i283.photobucket.com/albums/kk293/jayZ67/Screenshot2010-08-20at215330.png
    You will see there are TWO lines with the word WARNING SUID ....
    Q. Can anyone make sense of this?
    Bare in mind my system is absolutely unused and only had the above apps successfully installed.

    As Sig mentioned perfectly normal, here is Apple's explanation:
    Disk Utility's Repair Disk Permissions messages that you can safely ignore
    Regards,
    Roger

  • Please take a look at this....

    all i have to do is to develope a GUI to b put in the intranet where user is allowed to select name of a file (from either a list box or a combo box) and then open notepad where user is supposed to input data and at the end of the data, the selected file name is to b pasted..and then save the txt file and send it to a perticular person thru email to process the data...
    now i did try a simple application where notepad is executed and the created text file will b sent to the concerned person...and it worked well..when it comes to combine this sending part and selecting part into an applet, i am having problems.. i donno how to go about it...help me plzzz
    thanx
    bharthi

    i didn't get u... is it not possible to use applet in the intranet???in fact the whole application is to load from a html file which is put in intranet..any suggestion how to go about it????
    thanx
    bharthi

  • Can someone please take a look at this Unix question?

    https://discussions.apple.com/thread/3600775?tstart=0

    That thread has been noticed before. It all started with a bad suggestion that no one noticed and corrected. Then the post got slightly scrambled in the new forums. Finally, the original poster added some special root powers and a mess ensued.

  • CSS - Please take a look

    Hey there,
    I am just drafting a web site and I ran into a CSS issue...
    Please take a look here:
    URL:
    http://anuragdesign.com/vitaminx/layouttest.php
    In FF the float of the content / sidebar works
    In IE7 beta it works as well
    BUT in IE6 it doesn't.
    Any idea why ?
    I can't seem to be able to locate it
    Thanks in advance,
    Anurag

    The IE6 box model is to standard. It's IE5x you have to worry
    about.
    > IE 6 adds together the size of the element, the margin
    and the padding.
    > That
    > is, the padding and margin make the element bigger, in
    essence. The
    > standard
    > says that the size of the padding and margin are part of
    the size of the
    > element.
    The two sentences are the same. But the standard says that
    padding and
    border are part of the element's size.
    > So I think the content area is flowing below the sidebar
    because the
    > combined
    > size is greater than the containing area...but only in
    IE6 because of the
    > box
    > model issue.
    On a page with a valid and complete doctype, you will not
    have a box model
    problem with IE6. Its standards mode gets the box model
    right.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "DLoe" <[email protected]> wrote in message
    news:eb0p0j$59t$[email protected]..
    > This could have something to do with the IE 6 box model,
    which isn't to
    > standard.
    >
    > IE 6 adds together the size of the element, the margin
    and the padding.
    > That
    > is, the padding and margin make the element bigger, in
    essence. The
    > standard
    > says that the size of the padding and margin are part of
    the size of the
    > element.
    >
    > So I think the content area is flowing below the sidebar
    because the
    > combined
    > size is greater than the containing area...but only in
    IE6 because of the
    > box
    > model issue.
    >
    >

  • Can you please take a look at my TM Buddy log and opine on what the problem is?

    Pondini,
    Can you please take a look at my TM Buddy log and opine on what the problem is?  I'm stuck in the "Preparing Backup" phase for what must be hours now.  My last successful backup was this morning at 7:16 am.  I did do a series of Software Update this morning, one of which, a security update I believe, required a restart.
    I'm confused as to what the issue is, and how to get everything back to "it just works".
    Many thanks in advance.
    Starting standard backup
    Backing up to: /Volumes/JDub's Drop Zone/Backups.backupdb
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotState path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Error: (5) getxattr for key:com.apple.backupd.SnapshotContainer path:/Volumes/JDub's Drop Zone/Backups.backupdb/Jason Wisniowski’s iMac/2013-05-30-002104
    Event store UUIDs don't match for volume: Area 420
    Event store UUIDs don't match for volume: Macintosh HD
    Error: (5) getxattr for key:com.apple.backupd.SnapshotSt

    Time Machine can't read some data it needs from your backups (each of those date-stamps is one of your backups). 
    That's usually a problem with the drive itself, but could be the directory on it. First be sure all plugs are snug and secure, then see if you can repair it, per #A5 in Time Machine - Troubleshooting. 
    If that doesn't help, post back with the results.  Also either tell us what kind of Mac you have, what version of OSX you're running, or post that to your Profile, so it's accessible.  
    This is unrelated to the original post here, so I'm going to ask the Hosts to split it off into a new thread.  Since you've posted in the Lion forum, I'll assume that's what you're running.  You should get a notice from them

  • Has Anyone NOT Tried LiveType Yet ? Take A Look At This.

    At the beginning of the year I made a 7 minute video demonstrating just a tiny percentage of the numerous effects available with LiveType.
    It was designed to show PC members of my video club what was available to FCE users.
    For any of you who have not yet tried LiveType, take a look at this video. It does get a bit L - O - N - G .... (or boring?) but it might whet your appetite.
    There is a short film at the end.
    Be warned, there is a tremendous loss of quality when viewed on the web but I hope it gives a flavour of the original:-
    http://www.youtube.com/watch?v=Vj8Tr0ngpfM
    Ian.

    I certainly don't want to squash anyone's accomplishments here, but I just wanted to give my two cents on what I feel is LiveType's very limited use. I have a problem with pre-fab software in general, simply because I usually have a very hard time fitting it to my needs. Granted, I have probably not spent as much time LiveType as I should to be making these criticisms, but every time I go through LT and make some titles, all I want to do is tweak them fit the visual style I want. For whatever reason, I do not find LT's interface very intuitive, and leave frustrated. I get the impression that LT isn't really design for hand crafting effects (I could be wrong?).
    I also find that the pre-fab effects in LT are really over the top. How many uses am I going to have for text that appears in a slot machine, or has lightning flying off of it in all different directions? Usually, I'm looking for something that's subtle, effective, and graphically pleasing. A lot of LT's effects just scream Public Access (or old school Video Toaster).
    In a pinch, it does provide a lot of options. But I think if you find yourself in the pro world, most studios are going to shy away from it because people are going to know its stock pre-fab LT from a mile away. I know sometimes I'll be watching an ad on TV and hear some of the stock Soundtrack loops, and I'll just laugh to myself.
    What I'm saying is, LT will only take you so far in adding fancy-schmancy effects. I know its easy, I know its free. But if you suddenly find yourself getting that itch for motion graphics, take the time to check out Motion (which is also pretty easy and straightforward) or After Effects (which honestly, has endless possbilities).
    *Sorry if that sounded a little over-zealous. After I posted I realized I was in the FCE forum. Still, if you find you really like this kind of stuff, check out the Pro software**

  • I fail to get this result ... Take a look at this media..

    Take a look at this media info
    General
    Complete name                            : C:\Users\.......\Downloads\Video\Nightcore --- YouTube.mp4
    Format                                   : MPEG-4
    Format profile                           : Base Media / Version 2
    Codec ID                                 : mp42
    File size                                : 31.1 MiB
    Duration                                 : 3mn 38s
    Overall bit rate mode                    : Variable
    Overall bit rate                         : 1 196 Kbps
    Encoded date                             : UTC 2014-10-19 01:36:36
    Tagged date                              : UTC 2014-10-19 01:36:36
    gsst                                     : 0
    gstd                                     : 218081
    gssd                                     : B4A7DD623MH1413972940055959
    gshh                                     : r3---sn-p5qlsu7l.googlevideo.com
    Video
    ID                                       : 1
    Format                                   : AVC
    Format/Info                              : Advanced Video Codec
    Format profile                           : [email protected]
    Format settings, CABAC                   : Yes
    Format settings, ReFrames                : 1 frame
    Format settings, GOP                     : M=1, N=60
    Codec ID                                 : avc1
    Codec ID/Info                            : Advanced Video Coding
    Duration                                 : 3mn 38s
    Bit rate                                 : 1 002 Kbps
    Maximum bit rate                         : 2 840 Kbps
    Width                                    : 1 280 pixels
    Height                                   : 720 pixels
    Display aspect ratio                     : 16:9
    Frame rate mode                          : Constant
    Frame rate                               : 30.000 fps
    Color space                              : YUV
    Chroma subsampling                       : 4:2:0
    Bit depth                                : 8 bits
    Scan type                                : Progressive
    Bits/(Pixel*Frame)                       : 0.036
    Stream size                              : 26.0 MiB (84%)
    Tagged date                              : UTC 2014-10-19 01:36:38
    Audio
    ID                                       : 2
    Format                                   : AAC
    Format/Info                              : Advanced Audio Codec
    Format profile                           : LC
    Codec ID                                 : 40
    Duration                                 : 3mn 38s
    Bit rate mode                            : Variable
    Bit rate                                 : 192 Kbps
    Maximum bit rate                         : 203 Kbps
    Channel(s)                               : 2 channels
    Channel positions                        : Front: L R
    Sampling rate                            : 44.1 KHz
    Compression mode                         : Lossy
    Stream size                              : 4.99 MiB (16%)
    Title                                    : IsoMedia File Produced by Google, 5-11-2011
    Encoded date                             : UTC 2014-10-19 01:36:37
    Tagged date                              : UTC 2014-10-19 01:36:38
    In adobe media encoder cc 2014 there is no GOP option. how can i get this result..???

    Take a look at this media info
    General
    Complete name                            : C:\Users\.......\Downloads\Video\Nightcore --- YouTube.mp4
    Format                                   : MPEG-4
    Format profile                           : Base Media / Version 2
    Codec ID                                 : mp42
    File size                                : 31.1 MiB
    Duration                                 : 3mn 38s
    Overall bit rate mode                    : Variable
    Overall bit rate                         : 1 196 Kbps
    Encoded date                             : UTC 2014-10-19 01:36:36
    Tagged date                              : UTC 2014-10-19 01:36:36
    gsst                                     : 0
    gstd                                     : 218081
    gssd                                     : B4A7DD623MH1413972940055959
    gshh                                     : r3---sn-p5qlsu7l.googlevideo.com
    Video
    ID                                       : 1
    Format                                   : AVC
    Format/Info                              : Advanced Video Codec
    Format profile                           : [email protected]
    Format settings, CABAC                   : Yes
    Format settings, ReFrames                : 1 frame
    Format settings, GOP                     : M=1, N=60
    Codec ID                                 : avc1
    Codec ID/Info                            : Advanced Video Coding
    Duration                                 : 3mn 38s
    Bit rate                                 : 1 002 Kbps
    Maximum bit rate                         : 2 840 Kbps
    Width                                    : 1 280 pixels
    Height                                   : 720 pixels
    Display aspect ratio                     : 16:9
    Frame rate mode                          : Constant
    Frame rate                               : 30.000 fps
    Color space                              : YUV
    Chroma subsampling                       : 4:2:0
    Bit depth                                : 8 bits
    Scan type                                : Progressive
    Bits/(Pixel*Frame)                       : 0.036
    Stream size                              : 26.0 MiB (84%)
    Tagged date                              : UTC 2014-10-19 01:36:38
    Audio
    ID                                       : 2
    Format                                   : AAC
    Format/Info                              : Advanced Audio Codec
    Format profile                           : LC
    Codec ID                                 : 40
    Duration                                 : 3mn 38s
    Bit rate mode                            : Variable
    Bit rate                                 : 192 Kbps
    Maximum bit rate                         : 203 Kbps
    Channel(s)                               : 2 channels
    Channel positions                        : Front: L R
    Sampling rate                            : 44.1 KHz
    Compression mode                         : Lossy
    Stream size                              : 4.99 MiB (16%)
    Title                                    : IsoMedia File Produced by Google, 5-11-2011
    Encoded date                             : UTC 2014-10-19 01:36:37
    Tagged date                              : UTC 2014-10-19 01:36:38
    In adobe media encoder cc 2014 there is no GOP option. how can i get this result..???

Maybe you are looking for