Very slow scrolling in some (Apple) applications

In some applications, like iTunes and iMovie, the scrolling is very slow. The import function in iMovie in particular, opens a typical OS X "Open file" window, except that it's unbearably slow. Even scrolling one file down triggers the spinning beach ball. This problem probably occurs in several other apps, except I don't use them much. There doesn't seem to be a convincing reason why the performance would drop so dramatically doing such a simple task.
This problem has existed since Leopard. Is it fixable?

You might want to look at either booting from your install dvd (insert, restart and hold 'C' down) and running disk repair from Utilities. Alternatively, and I always suggest any Mac user should have at least one, a 3rd party disk utility like DiskWarrior (there are others) is extremely useful.

Similar Messages

  • Very slow scrolling window thumbnails clips

    Very slow scrolling windows with thumbnail clips. The more files in the event, the worse it gets. It is very frustrating. Is in others it is the same? I have MacOookPro i7 early 2011, thunderbolt drives RAID0, 16GB memory, FCPX 10.0.7. After the hardware is decent.
    Give some feedback, thank you.
    P.S. I might add that this disadvantage are found from version 10.0.0.

    You might want to look at either booting from your install dvd (insert, restart and hold 'C' down) and running disk repair from Utilities. Alternatively, and I always suggest any Mac user should have at least one, a 3rd party disk utility like DiskWarrior (there are others) is extremely useful.

  • Aperture2 - very slow scrolling on macpro

    hi guys
    I have a 1st gen dual dualcore 2.66ghz macpro with 16gb ram and my aperture library is around 900gb or so and is on a 2 x 1tb Raid1 mirror. I have twin 30" screens with the 1900XT.
    I have bought aperture ver2.
    Never really had a prob with aperture version 1 but aperture 2 whilst being very fast on my laptop (a 2.4ghz 17" with 4gb ram) is very sluggish on my macpro. The odd thing is that it's not really slow in terms of adjusting images or exporting jpegs, but it is painfully slow scrolling through thumbnails.
    I typically have it setup so that I have thumbnails on one monitor and the full screen view on the 2nd monitor. When I browse through a typical wedding shoot of approx 1500-2000 images the thumbnails view is agonizingly slow - it little crawls along and looks like it kind of pauses/jerks as it scrolls the pictures up/down. If I switch off the thumbnails and just use a "list" whilst looking at the image on my 2nd monitor it is superfast. it's just the browsing of thumbnails that crawls.
    This is regardless of the filetype, whether it be from 5D's or 1Ds mk3's. There is nothing in the aperture activity window i.e. it's not generating thumbnails or previews or anything in background.
    I have a spare drive that I might do a fresh install of os x + aperture on just as a test but i doubt that'll help.
    The macpro in general does not run slow i.e. CS3, safari, iweb etc. are all as fast as ever. Lightroom version 2 was extremely fast but I can't stand the interface - think I'm too used to aperture.
    I'd upgrade to a 8 core macpro but the problem is my 16gb ram won't work on the new ones supposedly - and in the reverse direction apparently I can't upgrade the vid card I have now to something quicker.
    The things I am thinking of initially to try and fix it are ;
    - reinstall of 10.5 & aperture (that will be a pain)
    - change the raid1 setup to a raid0 setup for more speed
    - Swap the boot drive for a WD 10k rpm drive. doubt this will help though
    - buy a new mac. Would rather not as I just bought 2 x 1ds mk3's and don't want to keep throwing money away But if I need to I will.
    any ideas please?
    thanks heaps
    Gav

    Hi, Dave
    David Barrett3 wrote:
    Understand about the graphics card recommendation. Shame Apple doesn't emphasise 512mb on their system requirements page.
    You're not correct on this. They have the minimum and recommended system requirements
    http://www.apple.com/aperture/specs/
    It's very frustrating having a powerful system (albeit "crippled" by a characteristically "feeble" Apple stock graphics card), shelling out for Aperture only to find that a system that runs just about everything else well won't run Apple's (sic) flagship photo app well.
    It's not just about the processor. As the Apple site states it's a combination of processor, ram, graphics card, hard drive. And, I would add speed of hard drives and cables used.
    That said we hold Aperture classes through out the nation on stock systems (sometimes on minimum default systems what you would buy from the Apple store) with large files from Hasselblad, Canon, Nikon...and Aperture rips through them. Many MBP only have 256mb graphic cards and they still run Aperture fast especially Aperture2.
    So what we are attempting to do is help you find what the bottleneck is. It's not the application it has to be something else.
    Maintenance: regular Diskwarrior, permissions repairs, maintenance scripts, reboots and chanting(!)
    But have you placed osx in safe mode yet? safe mode is quite different than repairing permissions, disk warrior etc.
    Photos on boot drive but tried them on another internal drive as well. No difference. Drives are new WD or Maxtor.
    I
    Thanks for the smilies.
    always
    victor
    D

  • Fetching data is very slow in workspace for planning application

    Hello Everyone,
    I am working in the web environment of a planning application and recently I have seen some issue's like Fetching data is very slow through webform's and the system will locking automatically and which kick me off from workspace when I refresh.So could you suggest me like what would be the reason's for this issue's.
    Thanks in advance

    Hi,
    Sounds like your form is very large or there are maybe a lot of dynamic calcs on the retrieval. How many rows and columns have you on the form ? Have you dense or sparse dimensions as rows or columns?
    Brian

  • Very slow GUI in web browser application

    Hello,
    I am trying to write a web browser application and I have a problem with the GUI. When the page is being loaded and set on the JEditorPane the GUI becomes very slow (actually it freezes). I don't know if this happens because of my swing implementation or because I am not using threads properly.
    I use the SwingWorker class. I created a worker thread which loads the web page and then sets it to the JEditorPane.
    Could you give me some ideas please? Below are some parts of my code.
    Thank you
    public class BrowserFrame extends javax.swing.JFrame {
        /** Creates new form BrowserFrame */
        public BrowserFrame() {
            initComponents();
            loadUrlsFromHistoryFile();
        private class RetrievePageTask extends SwingWorker<Void, URL> {
            private String address = null;
            RetrievePageTask(String address) {
                this.address = address;
                pageLoadProgressBar.setIndeterminate(true);
            protected Void doInBackground() {
                URL url = null;
                try {
                    url = new URL(address);
                    publish(url);
                catch(MalformedURLException exc) {
                    System.out.println(exc);
                catch(IOException exc) {
                    System.out.println(exc);
                return null;
            protected void process(List<URL> url) {
                try {
                    pageEditorPane.setPage(url.get(url.size() - 1));
                catch(IOException exc) {
                    System.out.println(exc);
                String url_str = url.get(url.size() - 1).toString();
                addressComboBox.setSelectedItem(url_str);
                addUrlToAddressComboBox(url_str);
        private void addressComboBoxItemStateChanged(java.awt.event.ItemEvent evt) {                                                
            // Get the affected item
            Object item = evt.getItem();
            if(evt.getStateChange() == java.awt.event.ItemEvent.SELECTED) {
                // Item was just selected
                if(item.toString().equalsIgnoreCase(""))
                    return;
                RetrievePageTask retrievePageTask = new RetrievePageTask(item.toString());
                retrievePageTask.execute();
            else if(evt.getStateChange() == java.awt.event.ItemEvent.DESELECTED) {
                // Item is no longer selected
                System.out.println("\nItem: " + item + " is no longer selected");           
        private void addressComboBoxActionPerformed(java.awt.event.ActionEvent evt) {                                               
            if ("comboBoxEdited".equals(evt.getActionCommand())) {
                // User has typed in a string; only possible with an editable combobox
                goButtonActionPerformed(evt);
            else if ("comboBoxChanged".equals(evt.getActionCommand())) {
                // User has selected an item; it may be the same item
                System.out.println("\nSpot TWO");
        private void goButtonActionPerformed(java.awt.event.ActionEvent evt) {
             RetrievePageTask retrievePageTask = new RetrievePageTask(address);
             retrievePageTask.execute();
        private void pageEditorPaneHyperlinkUpdate(javax.swing.event.HyperlinkEvent evt) {                                              
            if(evt.getEventType() == javax.swing.event.HyperlinkEvent.EventType.ACTIVATED) {
                 RetrievePageTask retrievePageTask = new RetrievePageTask(evt.getURL().toString());
                retrievePageTask.execute();
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    BrowserFrame surfRider = new BrowserFrame();
                    surfRider.setVisible(true);
    }

    Now it is all.
    package webbrowser;
    import java.net.*;
    import java.io.*;
    import java.util.*;
    import javax.swing.*;
    public class BrowserFrame extends javax.swing.JFrame {
        /** Creates new form BrowserFrame */
        public BrowserFrame() {
            initComponents();
            loadUrlsFromHistoryFile();
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        // <editor-fold defaultstate="collapsed" desc=" Generated Code ">                         
        private void initComponents() {
            addressLabel = new javax.swing.JLabel();
            goButton = new javax.swing.JButton();
            jScrollPane1 = new javax.swing.JScrollPane();
            pageEditorPane = new javax.swing.JEditorPane();
            jButton1 = new javax.swing.JButton();
            jButton2 = new javax.swing.JButton();
            jButton3 = new javax.swing.JButton();
            homeButton = new javax.swing.JButton();
            refreshButton = new javax.swing.JButton();
            addressComboBox = new javax.swing.JComboBox();
            jLabel1 = new javax.swing.JLabel();
            statusLabel = new javax.swing.JLabel();
            pageLoadProgressBar = new javax.swing.JProgressBar();
            menuBar = new javax.swing.JMenuBar();
            fileMenu = new javax.swing.JMenu();
            openFileMenuItem = new javax.swing.JMenuItem();
            exitMenuItem = new javax.swing.JMenuItem();
            viewMenu = new javax.swing.JMenu();
            historyMenuItem = new javax.swing.JMenuItem();
            pageSourceMenuItem = new javax.swing.JMenuItem();
            toolsMenu = new javax.swing.JMenu();
            preferencesMenuItem = new javax.swing.JMenuItem();
            helpMenu = new javax.swing.JMenu();
            aboutMenuItem = new javax.swing.JMenuItem();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            setTitle("Surf Rider");
            setName("browserFrame");
            addWindowListener(new java.awt.event.WindowAdapter() {
                public void windowClosing(java.awt.event.WindowEvent evt) {
                    formWindowClosing(evt);
            addressLabel.setHorizontalAlignment(javax.swing.SwingConstants.RIGHT);
            addressLabel.setText("Address:");
            goButton.setText("GO");
            goButton.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    goButtonActionPerformed(evt);
            pageEditorPane.setEditable(false);
            pageEditorPane.setContentType("text/html");
            pageEditorPane.addHyperlinkListener(new javax.swing.event.HyperlinkListener() {
                public void hyperlinkUpdate(javax.swing.event.HyperlinkEvent evt) {
                    pageEditorPaneHyperlinkUpdate(evt);
            jScrollPane1.setViewportView(pageEditorPane);
            jButton1.setText("Back");
            jButton1.setEnabled(false);
            jButton2.setText("Forth");
            jButton2.setEnabled(false);
            jButton3.setText("Stop");
            jButton3.setEnabled(false);
            homeButton.setText("Home");
            homeButton.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    homeButtonActionPerformed(evt);
            refreshButton.setText("Refresh");
            refreshButton.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    refreshButtonActionPerformed(evt);
            addressComboBox.setEditable(true);
            addressComboBox.addItemListener(new java.awt.event.ItemListener() {
                public void itemStateChanged(java.awt.event.ItemEvent evt) {
                    addressComboBoxItemStateChanged(evt);
            addressComboBox.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    addressComboBoxActionPerformed(evt);
            jLabel1.setText("Browser status: ");
            statusLabel.setText("Current status");
            pageLoadProgressBar.setBorder(javax.swing.BorderFactory.createEtchedBorder());
            fileMenu.setText("File");
            fileMenu.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    fileMenuActionPerformed(evt);
            openFileMenuItem.setLabel("Open File...");
            openFileMenuItem.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    openFileMenuItemActionPerformed(evt);
            fileMenu.add(openFileMenuItem);
            exitMenuItem.setLabel("Exit");
            fileMenu.add(exitMenuItem);
            menuBar.add(fileMenu);
            viewMenu.setText("View");
            viewMenu.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    viewMenuActionPerformed(evt);
            historyMenuItem.setLabel("History");
            viewMenu.add(historyMenuItem);
            pageSourceMenuItem.setLabel("Page Source");
            viewMenu.add(pageSourceMenuItem);
            menuBar.add(viewMenu);
            toolsMenu.setText("Tools");
            preferencesMenuItem.setLabel("Preferences");
            toolsMenu.add(preferencesMenuItem);
            menuBar.add(toolsMenu);
            helpMenu.setText("Help");
            aboutMenuItem.setLabel("About");
            helpMenu.add(aboutMenuItem);
            menuBar.add(helpMenu);
            setJMenuBar(menuBar);
            org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(org.jdesktop.layout.GroupLayout.TRAILING, layout.createSequentialGroup()
                    .add(jButton1)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(jButton2)
                    .add(6, 6, 6)
                    .add(refreshButton)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(jButton3)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(homeButton)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(addressLabel, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 56, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(addressComboBox, 0, 568, Short.MAX_VALUE)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(goButton))
                .add(jScrollPane1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 1008, Short.MAX_VALUE)
                .add(layout.createSequentialGroup()
                    .addContainerGap()
                    .add(jLabel1)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(statusLabel, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 339, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED, 470, Short.MAX_VALUE)
                    .add(pageLoadProgressBar, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
            layout.setVerticalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(layout.createSequentialGroup()
                    .addContainerGap()
                    .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
                        .add(goButton)
                        .add(jButton1)
                        .add(jButton2)
                        .add(homeButton)
                        .add(jButton3)
                        .add(refreshButton)
                        .add(addressLabel)
                        .add(addressComboBox, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(jScrollPane1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 601, Short.MAX_VALUE)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.TRAILING)
                        .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
                            .add(jLabel1)
                            .add(statusLabel, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 15, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
                        .add(pageLoadProgressBar, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)))
            java.awt.Dimension screenSize = java.awt.Toolkit.getDefaultToolkit().getScreenSize();
            setBounds((screenSize.width-1016)/2, (screenSize.height-724)/2, 1016, 724);
        }// </editor-fold>                       
        private class RetrievePageTask extends SwingWorker<Void, URL> {
            private String address = null;
            RetrievePageTask(String address) {
                this.address = address;
                pageLoadProgressBar.setIndeterminate(true);
            public String getAddress() {
                return address;
            public void setAddress(String newAddress) {
                address = newAddress;
            protected Void doInBackground() {
                URL url = null;
                try {
                    url = new URL(address);
                    publish(url);
                catch(MalformedURLException exc) {
                    System.out.println(exc);
                catch(IOException exc) {
                    System.out.println(exc);
                return null;
            protected void process(List<URL> url) {
                try {
                    System.out.println("\nBefore setting the editorPane");
                    pageEditorPane.setPage(url.get(url.size() - 1));
                catch(IOException exc) {
                    System.out.println(exc);
                String url_str = url.get(url.size() - 1).toString();
                url_str = url_str.toLowerCase(); // URL string is turned in lower case
                addressComboBox.setSelectedItem(url_str);
                addUrlToAddressComboBox(url_str);
                pageLoadProgressBar.setIndeterminate(false);
        private void openFileMenuItemActionPerformed(java.awt.event.ActionEvent evt) {                                                
    // TODO add your handling code here:
        private void viewMenuActionPerformed(java.awt.event.ActionEvent evt) {                                        
    // TODO add your handling code here:
        private void fileMenuActionPerformed(java.awt.event.ActionEvent evt) {                                        
    // TODO add your handling code here:
        private void refreshButtonActionPerformed(java.awt.event.ActionEvent evt) {                                             
        // Action performed when homeButton's Action Listener listens to an event. This
        // event is passed here as a parameter (evt). The selected item of the addressComboBox is
        // set to be the homePage. The browser goes to the home page.
        private void homeButtonActionPerformed(java.awt.event.ActionEvent evt) {                                          
            addressComboBox.setSelectedItem(homePage);
        // This method loads the URL history from the history.txt file into the vector and into the
        // addressComboBox.
        private void loadUrlsFromHistoryFile() {
            BufferedReader inputStream = null;
            addressComboBox.setSelectedItem(homePage);
            try {
                inputStream = new BufferedReader(new FileReader("history.txt"));
                String tmp;
                while((tmp = inputStream.readLine()) != null) {
                    // Adding url to history_mem vector
                    historyMem.add(tmp);
                    // Adding url to addressComboBox
                    addressComboBox.addItem(tmp);
            catch(IOException exc) {
                System.out.println(exc);
        private void addressComboBoxItemStateChanged(java.awt.event.ItemEvent evt) {                                                
            // Get the affected item
            Object item = evt.getItem();
            if(evt.getStateChange() == java.awt.event.ItemEvent.SELECTED) {
                // Item was just selected
                System.out.println("\nItem: " + item + " was just selected");
                if(item.toString().equalsIgnoreCase(""))
                    return;
                RetrievePageTask retrievePageTask = new RetrievePageTask(item.toString());
                retrievePageTask.execute();
            else if(evt.getStateChange() == java.awt.event.ItemEvent.DESELECTED) {
                // Item is no longer selected
                System.out.println("\nItem: " + item + " is no longer selected");           
        // Action performed when an event occurs in the addressComboBox (eg Pressing enter
        // after typing the address).
        private void addressComboBoxActionPerformed(java.awt.event.ActionEvent evt) {                                               
            if ("comboBoxEdited".equals(evt.getActionCommand())) {
                // User has typed in a string; only possible with an editable combobox
                goButtonActionPerformed(evt);
            else if ("comboBoxChanged".equals(evt.getActionCommand())) {
                // User has selected an item; it may be the same item
        // Action performed when goButton's Action Listener listens to an event. This
        // event is passed here as a parameter (evt). When a valid URL is inserted, the
        // pageEditorPane is set to that URL.
        private void goButtonActionPerformed(java.awt.event.ActionEvent evt) {                                        
            // 6 spaces added to the address. This is done for control reasons. Below we
            // use substring which causes exception when those spaces do not exist.
            String address = addressComboBox.getSelectedItem() + "      ";
            if(addressComboBox.getSelectedItem() == null || address.equalsIgnoreCase("      ") || address.equalsIgnoreCase("http://      ")) {
                JOptionPane.showMessageDialog(null, "No address specified.", "No address", javax.swing.JOptionPane.ERROR_MESSAGE);
            else {
                if(!address.substring(0, 7).equalsIgnoreCase("http://"))
                    address = "http://" + address;
                    RetrievePageTask retrievePageTask = new RetrievePageTask(address);
                    retrievePageTask.execute();
        // Action performed when closing the form window
        private void formWindowClosing(java.awt.event.WindowEvent evt) {                                  
            try {
                addUrlsToHistoryFile(historyMem);
            catch(IOException exc) {
                System.out.println(exc);
        /* This method is used to handle the case in which the user clicks on a hyperlink.
         In this case the pageEditorPane must present the contents of the URL that was
         clicked. This URL is retrieved from the evt object (which is a parameter to this
         method) with the method getURL().
        private void pageEditorPaneHyperlinkUpdate(javax.swing.event.HyperlinkEvent evt) {                                              
            if(evt.getEventType() == javax.swing.event.HyperlinkEvent.EventType.ACTIVATED) {
                 RetrievePageTask retrievePageTask = new RetrievePageTask(evt.getURL().toString());
                retrievePageTask.execute();
        // This method adds the visited URLs to the addressComboBox's item list. It takes as a
        // parameter the URL which is going to be added. If the URL is already in the list, then
        // it is not added again.
        private void addUrlToAddressComboBox(String url_str) {
            // number of items in the combo box's list
            int itemCount = addressComboBox.getItemCount();
            for(int i = 0; i < itemCount; i++) {
                if(url_str.equalsIgnoreCase((String)addressComboBox.getItemAt(i)))
                    return;
            addressComboBox.addItem(url_str);
            historyMem.add(url_str);
        // This method adds the visited URLs to the history file. It takes as a parameter the URL
        // which is going to be added.
        private void addUrlsToHistoryFile(Vector url_history) throws IOException {
            PrintWriter outputStream = null;
            try {
                outputStream = new PrintWriter(new FileWriter("history.txt"));
                for(int i = 0; i < url_history.size(); i++)
                    outputStream.println((String)url_history.get(i));
            finally {
                if(outputStream != null) {
                    outputStream.close();
         * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    BrowserFrame surfRider = new BrowserFrame();
                    surfRider.setVisible(true);
        // Variables declaration - do not modify                    
        private javax.swing.JMenuItem aboutMenuItem;
        private javax.swing.JComboBox addressComboBox;
        private javax.swing.JLabel addressLabel;
        private javax.swing.JMenuItem exitMenuItem;
        private javax.swing.JMenu fileMenu;
        private javax.swing.JButton goButton;
        private javax.swing.JMenu helpMenu;
        private javax.swing.JMenuItem historyMenuItem;
        private javax.swing.JButton homeButton;
        private javax.swing.JButton jButton1;
        private javax.swing.JButton jButton2;
        private javax.swing.JButton jButton3;
        private javax.swing.JLabel jLabel1;
        private javax.swing.JScrollPane jScrollPane1;
        private javax.swing.JMenuBar menuBar;
        private javax.swing.JMenuItem openFileMenuItem;
        private javax.swing.JEditorPane pageEditorPane;
        private javax.swing.JProgressBar pageLoadProgressBar;
        private javax.swing.JMenuItem pageSourceMenuItem;
        private javax.swing.JMenuItem preferencesMenuItem;
        private javax.swing.JButton refreshButton;
        private javax.swing.JLabel statusLabel;
        private javax.swing.JMenu toolsMenu;
        private javax.swing.JMenu viewMenu;
        // End of variables declaration                  
        // Variables decleration - able to modify
        private Vector<String> historyMem = new Vector<String>();
        private String homePage = "http://www.kaissa.gr";
        // End of variables decleration
        // PUBLIC METHODS
        // Get and Set methods for the private variables declared above
        public Vector getHistoryMem() {
            return historyMem;
        public void setHistoryMem(Vector<String> newHM) {
            historyMem = newHM;
        public String getHomePage() {
            return homePage;
        public void setHomePage(String newHP) {
            homePage = newHP;
    }

  • Very slow scroll and mouse sweep in Elements 9 Organizer

    My organizer has suddenly started to scroll very very slowly when looking through multiple thumbnails. Even if I move the mouse across the thumbnails, it takes seconds to register the mouse has passed over.
    Once you do set a scroll in motion, you can't stop it. You just have to wait till its done its slow thing!! I've switced off auto media stuff (Auto face recognition etc) Updated thumbnails, repaired the catalogue (Even though it didn't need it)
    Only around 3500 images, not large.  At the request of the Help Team I re-downloaded the programme. Still Slow scrolling. Why is it doing this???
    Have apple Mac Snow Leopard

    My organizer has suddenly started to scroll very very slowly when looking through multiple thumbnails. Even if I move the mouse across the thumbnails, it takes seconds to register the mouse has passed over.
    Once you do set a scroll in motion, you can't stop it. You just have to wait till its done its slow thing!! I've switced off auto media stuff (Auto face recognition etc) Updated thumbnails, repaired the catalogue (Even though it didn't need it)
    Only around 3500 images, not large.  At the request of the Help Team I re-downloaded the programme. Still Slow scrolling. Why is it doing this???
    Have apple Mac Snow Leopard

  • I'm missing some Apple applications on iPod touch.

    Twice now I've had stuff disappear from my 1st generation iPod Touch. The first time it was all the music - about 17GB worth, which was restored. Now I've had at least three critical apps disappear, namely Safari, iTunes, and the App Store, which has effectively stopped some other applications from working. Neither time was the iPod attached to anything.
    I updated to 3.1.3 after this most recent loss hoping they might re-appear, but no such luck. I didn't think the default applications could be deleted, intentionally or by accident. Any way to bring back the three missing Apple applications without restoring the whole thing again? I'm on the road now and about 8,200 miles away from my iMac backup, but I do have a MacBook.

    Check Settings > General > Restrictions. If restrictions are enabled for those apps, they are disabled and their icons are hidden.

  • Office 2010, PPT 2010 Specifically VERY slow scroll, loading, minimal pictures if at all, etc..

    Ok, so i've heard people putting this topic out a few times, but i'm putting my own out, to help condense the issue for everyone, as people have still talked about this issue in topics that are 2years old... fail microsoft..
    Topic I originally worked with: http://www.overclock.net/t/1256467/ms-office-2010-ppt-stupid-slow
    System Specs:
    i7, 920 @ 3.74ghz. 30 celcius idle, 50-55 celcius when maxed, on air.
    Ati 5770 1gb gddr5 (original), Bought new... 6870 ati, 1gb gddr5...
    Had 6gb ddr3, now 12gb ddr3.
    Windows 7 ulti 64bit, installed on Sata 3 (6.0) 1tb 64mb cache hdd. (WD)
    16gb SDHC Class 10 = Readyboost,
    4gb Page file (on separate 1tb hdd, also sata III (6.0) 64mb cache, (WD)
    When loading ppt, it's extremely slow loading any text, backgrounds, non backgrounds, etc. I load the tile view, it takes several mins. I switch to editor view, and bam, reloads the tiles and the main page...
    When I type, it fills in slowly, or not at all, then stutter loads it...
    This is a fresh install of office 2010 pro plus, fresh install of win7 ulti 64bit, sp1.
    I use ppt weekly, for a church, I used office 2007, and it was instant, pure bliss, no hassle, worked like a charm, everything was in realtime, or faster... (if tweaked)...
    I use ppt now, 2010, and it changed my work times to make their ppt from 30-45mins, to 3-4hrs...
    I'd like to regain some of that time, to truly use office 2010.
    I made a video of it, via my galaxy nexus, http://www.facebook.com/v/10151739996880217  , and it shows task manager & ppt side by side.
    I've tried printer default change, tried going no background, tried disabling AERO. Have tried the registry del of
    -HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Word "data" deletion...
    I'm fed up with this.
    I do not want to deal with this issue much longer. I'm moderately skilled @ regedit, I can navigate, make sense of it for the most part. I am willing to manually tweak it, in order to "force" fix this issue.
    I'd like to toss 6gb's of ram directly into ms office, just to make it work... load it all once (slow) then make it sing the rest of the way...
    I need to use backgrounds, jpg's, etc. I need to use different fonts, it's apart of the process.. If i'm limited to NOTEPAD configurations for ppt... then microsoft can... (enter choice phrase of negativity here)....
    Please, if anyone has a registry hack, adjustment, etc... i'm more then willing to try...
    Please...anyone...
    I've gone and manually recreated the ppt myself, and no change...
    Please help...
    - RmLeLoup

    Quote from the other's solution:
    I'll get to the solution in a minute. Here's what I did to solve the problem.
    Per Steve Rindsberg, I took all JPG files out of powerpoint. It
    was still very slow. I deleted the master slide header and
    now it runs fine, but looks kind of boring, especially since
    this is a photography training class file. It kind of needs photos.
    So I took the header.jpg (only 38kb in size), brought it into photoshop and
    saved it as a png. Dragged that into PPT and it works fine. Now I played with
    the options on saving the jpg file in photoshop. Turns out that if I turn off
    the option to "embed ICC Profiles" from within photoshop, the jpg file works
    fine in PPT. This option is turned on by default when saving files in
    Photoshop (I have photoshop cs2).
    Now I re-saved all the jpg photos and dropped them back into powerpoint, and
    powerpoint still retains its speed. PROBLEM SOLVED.
    Thanks to Lucy, John, Steve, Echo for all your suggestions.
    Feel free to put this solution on your websites, and someone, Please pass this on to microsoft as a bug. There should be no reason that ICC profiles ruins powerpoint
    performance.
    Thanks to ALL!
    Steve Hong
    Minneapolis, MN
    For my case, I need to redo all my background pics in my template!
    All the best,
    Edi

  • Firefox 9.0.1 is very slow to load some pages

    I upgraded from FF6 to F9.0.1 and what a mistake.
    Most sites, like www.bbc.co.uk, are very slow to load.
    The upgrade to 9.0.1 is the only change I have made and would now like to go back to my previous version 6.0 but i am unable to locate the files to do this with to download
    Can someone either make the older version of FF available or help me to get 9.0.1 up to speed.

    9 is like Windows Me.
    Epic Fail.
    Adding nbrs to version is not a solution.
    Better to go back to 3.6 and make that better rather than get in the version race with Chrome and IE.

  • OS X 10.8.3 leads to VERY slow home sharing for Apple TV

    Everything was fine, but as soon as I upgraded to OS X 10.8.3 Home Sharing on my Apple TV became unusably slow.
    Internet is fine (I have a very speedy 40Mbps connection) on both my Mac Pro and my Apple TV (for example movie trailers streamed over the internet work fine). The issue is the Home Sharing connection between my Mac Pro and my Apple TV.
    Some Tech Specs:
    Mac Pro (Mid 2010)
    24GB Ram
    OS X 10.8.3 (12D78)
    Connected via Ethernet
    Apple TV 3rd Generation (three weeks old!)
    OS "up to date"
    Connected via Ethernet
    Virgin Media Super Hub
    Cable Modem
    Connected to Mac Pro and Apple TV via Ethernet
    Problem: viewing movies streaming from the Mac Pro, which until I updated to 10.8.3 worked flawlessly, now stream SO slowly, that the Apple TV is now useless for this purpose.
    - Tried using Wi-Fi on the Apple TV. Same issue.
    - Tried turning off Firewall on router. Same issue.
    - Tried using Pro gigabit switch between Apple TV and Mac Pro to see if Cable Modem was at fault. Same issue.
    - Restarted the Apple TV countless times, resetting the network settings on the Mac Pro, renewing the DHCP leases on Mac Pro and  Apple TV. Same issue.
    Curiously, I tried using Nullriver's MediaLink UPnP server to try and stream content from my Mac Pro to my PS3 so I could try and watch content that way. However, the content seemed to suffer from the same extremely slow download... Clearly something has changed with the network settings and it's made my Apple TV a useless lump of black plastic as I bought it for the sole purpose of streaming content from my Mac Pro to the TV downstairs.
    Anyone else have this problem? Any comments or solutions would be welcome.
    J

    I just updated to 10.8.3 today, and my computer and Apple TV won't even recognize each other now.  I have absolutely no advice, but wanted to throw this in so you (and Apple) know you're not the only one. 

  • Very slow scrolling with CS5

    I don't know if other people also have this problem, but I noticed an issue which makes Photoshop CS5 completely useless for me: It is scrolling incredibly slow. With CS4 I am able to scroll much faster and with different speeds. In CS5 it seems like the speed is limited. No matter how much I scroll with my mouse, Photoshop keeps scrolling at the same speed.
    It seems like it is not only me: The only website concerning this problem I was able to find is:
    http://macperformanceguide.com/OptimizingPhotoshopCS5-Issues.html
    Unacceptable scrolling speed with center button
    I use the scroll wheel in the center of the Apple mouse constantly. In CS5, this functionality is now broken, because CS5 scrolls only a small amount, very different from CS4. There is no apparent work-around.
    Reader Joe N agrees:
    I saw your posting about CS5 issues, and I want to add another STRONG vote for the Photoshop mouse wheel scrolling speed issue. I use a Magic Mouse, and the scrolling speed is so poor in PS CS5 that it is totally blocking my creative flow. I have scoured the web for a solution and have not found anything yet...
    I also use a Magic Mouse and a MacBook Pro with Snow Leopard. Is there any hope of a fix or a workaround?

    Thanks so much for replying, Chris. I've just started using CS5 and only used CS4 for a couple of weeks. There are so many variables. and I don't think it's just Photoshop. I'm wondering if the same problems happen in windows 7 (I switched to the Mac the last time I bought a computer.) Probably it's just that everything gets more complicated along with the improvements. : -(
    Thanks again,
    Peggy

  • Very slow scrolling

    iTunes scrolls very slowly. When I'm looking for a songs to put on my iPhone I like to scroll through the library picking out random songs but it takes forever! The songs only scroll about 3 songs/second and it takes all my CPU power to do that. They scroll even slower when a song is playing! How do I speed it up? It seems to be just a simple list, WMP scrolls faster AND displays album artwork.

    Itunes for windows is programmed so poorly. As much as i love the apple ipod and iphone, I absolutely HATE Apple for purposely gimping the windows version of itunes and quicktime.
    iTunes is for all purposes absolutely broken on Windows (all versions).
    You can not tell me that Apple has not purposely crippled the performance of itunes on windows vista and xp. It is as slow as a windows 3.1 app back in the old 286 days. I know cause i was there.
    There is no reason for itunes to perform so slowly on a Quadcore Intel (QX6700) with 8GBs of ram and a Geforce 8800GTX!
    Lets face it, iTunes, if programmed by talented coders, who were not instructed by Apple to cripple the performance... could easily get iTunes running smooth on a P2 300mhz in winNT4.
    Modern hardware smokes that stuff. I've used iTunes on a mac. It performs fine. So whats the deal apple?
    Are you crippling the PC version and ripping off PC costumers like myself who shell out $500 for an iphone, and $300 for an ipod?
    If your goal is to convert PC users to Mac users, shouldnt you lead by example with a well coded iTunes and quicktime for windows? I'll remain a PC user until you get itunes performing well in windows and coded in 64-bit, and as fluid as the mac version, because until then i cant trust your company completely. Not even considering how much i like many other fine apple products.
    Get your butts into gear. NO version 7.5 should ever run like a .0001 pre alpha with buggy scrolling code. Come on guys... tripple buffer the scrolling, get that puppy running smooth, and turn off that "screwover_pc_users_with_hidden_performance_limitflag" variable in the code.
    *disclaimer: I dont know for a fact that they purposely cripple the Pc version, but i cant for the life of me understand why it would perform so poorly, this late in the game. Its version 7.5 guys!!! come on. I'm dieing here. I'm rooting for ya....
    Just disappointed.
    Its time guys... get it working. I really have no idea what you're doing in that office, but i know it has nothing to do with code optimization. Your dev team cant be this bad... can it?
    sigh.
    Message was edited by: DwindleFlip

  • Very Slow Scrolling with Images

    I'm running Framemaker 11 on a Windows 7, 64-bit machine with an i7 processor at 2+ ghz and 8.0 MB RAM.
    My Frame files, with imported/referenced images, are scrolling extremely slowly. When I say slow, I mean as the page scrolls into view it freezes for 10 - 20 seconds before "catching up" and displaying the page.
    I have a "background" image on my master pages that contains simple graphics for the top header and some borders to delineate areas of the page. Those backgrounds are imported. Thjese imported files are about 1.1 MB.
    My remaining images are imported by reference on the various body pages. They are .ai files and are 2.5 - 5 (ish) MB in size.
    I've been searching for an answer. My deadline is going to pass my by while I wait for pages to load. Please help!

    > ... I have read that JPGs aren't the way to go in FM ...
    We convert them to EPS as well. EPS does raster. It does, however, always come in at "100%" in FM, and you cannot learn the dpi from FM. You can choose CYMK or RGB, depending on your color management needs.
    > any advice on a better file type for screenshots and photos?
    Screenshots are a different matter. Because they tend to contain long repeats of single pixel colors, we use TIF for that, as they compress well with any of the repeat-count compressions. You could also use EPS, but the FM preview is apt to be illegible.
    A challenge with screen shots is avoiding having them re-sampled during render to PDF. I would recommend importing them at native res (typically 72 or 90 dpi), and keeping that below the threshold for whatever resampling is done in PDF print, Distill or Acrobat Optimize. If you need to scale screenshots, use integer multiples or fractions, and "nearest neighbor".
    > ... although my graphics designer is throwing an absolute fit because the images look horrible when viewing them in FM.
    You can improve EPS (and PDF import) preview by using the scaling trick (up to 500%) or so. Rescale the source image up (elect rescale stroke and effects) before saving to EPS. Rescale down after import to FM. The final file size won't change materially for vector art, and won't be much different for contone raster if your rendering workflow is set to resample down to what they were to begin with. The preview will be 4x sharper, but still indexed color.
    Naturally. there is a small performance penalty for using the scaling trick. Also, the previews are metadata that will survive into, and inflate the size of the PDF, unless redacted downstream (Examine Document in Acrobat Pro; later versions of PDF printing and Distill may have an option for that too).
    Another preview performance killer is rotation. Anything other than importing at 0 degrees can send FM off into la-la land.
    Bad network fs performance can bog you down too.

  • VERY slow email due to Apple adding ridiculous amounts of html to my email signatures behind the scenes

    I've been having trouble with my computers recently because they are running REALLY slowly and I just couldn't figure it out. I went in the Apple store and they said a hard drive re-boot might be the answer and needless to say I've been putting that off.
    Then I got an email from my web guy to say that my email sig was slowing his computer down(!!) and I needed to change the email signature.
    Now, I have my email signature set up so that it includes the relevant info that I want included so I don't want to delete them BUT I do want them to not be slowing things down.
    I asked him what he meant and here is the code that just one of my email signatures is generating and all I've done is set it up to look nice in the mac mail preferences panel.
    Any ideas on how I can solve this and make it still look nice but not have crazy slowing code would be much welcomed!
    Thank you :)
    Sophie
    For reference here’s a chunk of the code...
    <div apple-content-edited=3D"true">
    <div style=3D"color: rgb(0, 0, 0); letter-spacing: normal; orphans: =
    auto; text-align: start; text-indent: 0px; text-transform: none; =
    white-space: normal; widows: auto; word-spacing: 0px; =
    -webkit-text-stroke-width: 0px; word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div =
    style=3D"color: rgb(0, 0, 0); letter-spacing: normal; orphans: auto; =
    text-align: start; text-indent: 0px; text-transform: none; white-space: =
    normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =
    word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><div style=3D"color: rgb(0, 0, 0); letter-spacing: =
    normal; orphans: auto; text-align: start; text-indent: 0px; =
    text-transform: none; white-space: normal; widows: auto; word-spacing: =
    0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div =
    style=3D"color: rgb(0, 0, 0); letter-spacing: normal; orphans: auto; =
    text-align: start; text-indent: 0px; text-transform: none; white-space: =
    normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =
    word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><div style=3D"color: rgb(0, 0, 0); font-family: =
    Arial; font-style: normal; font-variant: normal; font-weight: normal; =
    letter-spacing: normal; line-height: normal; orphans: 2; text-align: =
    -webkit-auto; text-indent: 0px; text-transform: none; white-space: =
    normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; =
    word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><div style=3D"color: rgb(0, 0, 0); font-family: =
    Arial; font-style: normal; font-variant: normal; font-weight: normal; =
    letter-spacing: normal; line-height: normal; orphans: 2; text-align: =
    -webkit-auto; text-indent: 0px; text-transform: none; white-space: =
    normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; =
    word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><div style=3D"color: rgb(0, 0, 0); font-family: =
    Arial; font-style: normal; font-variant: normal; font-weight: normal; =
    letter-spacing: normal; line-height: normal; orphans: 2; text-align: =
    -webkit-auto; text-indent: 0px; text-transform: none; white-space: =
    normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; =
    word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><div style=3D"font-family: Arial; font-style: =
    normal; font-variant: normal; font-weight: normal; letter-spacing: =
    normal; line-height: normal; orphans: 2; text-align: -webkit-auto; =
    text-indent: 0px; text-transform: none; white-space: normal; widows: 2; =
    word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><div style=3D"font-family: Arial; font-style: =
    normal; font-variant: normal; font-weight: normal; letter-spacing: =
    normal; line-height: normal; orphans: 2; text-align: -webkit-auto; =
    text-indent: 0px; text-transform: none; white-space: normal; widows: 2; =
    word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><div style=3D"font-family: Arial; font-style: =
    normal; font-variant: normal; font-weight: normal; letter-spacing: =
    normal; line-height: normal; orphans: 2; text-align: -webkit-auto; =
    text-indent: 0px; text-transform: none; white-space: normal; widows: 2; =
    word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" style=3D"color: =
    rgb(0, 0, 0); font-family: Arial; font-style: normal; font-variant: =
    normal; font-weight: normal; letter-spacing: normal; line-height: =
    normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; =
    text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; =
    -webkit-text-stroke-width: 0px; border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"font-size: 12px;"><font =
    class=3D"Apple-style-span" color=3D"#000A8D" size=3D"3"><span =
    class=3D"Apple-style-span" style=3D"font-size: 11px;"><br =
    class=3D"Apple-interchange-newline">Best regards</span></font></div><div =
    style=3D"font-size: 12px;"><font class="3D""Apple-style-span" =
    color=3D"#000A8D" size=3D"4"><br =
    class=3D"khtml-block-placeholder"></font></div><div style=3D"font-size: =
    12px;"><font class="3D""Apple-style-span" color=3D"#000A8D" =
    size=3D"4">Sophie Jewry</font></div><div><font =
    class=3D"Apple-style-span"><br class="3D""Apple-interchange-newline"><span =
    class=3D"Apple-style-span" style=3D"font-size: 12px;"><font =
    class=3D"Apple-style-span" color=3D"#1265AD" size=3D"5" =
    style=3D"font-size: 25px;">media</font><font class="3D""Apple-style-span" =
    color=3D"#000A8D" size=3D"5" style=3D"font-size: =
    25px;">8</font></span><br><div><font class="3D""Apple-style-span"><font =
    class=3D"Apple-style-span"><div style=3D"font-size: 12px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div><font =
    color=3D"#0e7abb">Tel: 01362 853 424</font></div><div><font =
    color=3D"#0e7abb">Email: <a =
    href=3D"mailto:[email protected]">[email protected]</a></font></=
    div><div><font color=3D"#0e7abb">Gunfield House, 20 Allwood Avenue, =
    Scarning, Dereham, Norfolk NR19 2TF</font></div><div><font =
    color=3D"#0e7abb">www.<span style=3D"text-align: -webkit-auto;"><a =
    href=3D"http://sophiejewry.com">sophiejewry.com</a></span></font></div><di=
    v><br></div><div><font color=3D"#d83893"><b><i>*Winner of the Future 50 =
    Young Social Entrepreneur of the Year Award =
    2013*</i></b></font></div><div><font class="3D""Apple-style-span" =
    color=3D"#555555"><br></font></div></span></div></span></div></span></div>=
    </span></div></span></div></span></span></div></span></div></span></div></=
    span></div></span></div></span></div></span></div></span></div></span></di=
    v></span></div></span></div></span></div></span></div></span></span></span=
    ></span></div></span></div></span><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><font =
    class=3D"Apple-style-span" color=3D"#555555"><div><font =
    style=3D"text-align: -webkit-auto;"><b><a =
    href=3D"http://www.linkedin.com/in/sophiejewry">www.linkedin.com/in/sophie=
    jewry</a></b></font> - Connect on LinkedIn</div><div><span =
    style=3D"text-align: -webkit-auto;"><b><a =
    href=3D"https://plus.google.com/+SophieJewry">https://plus.google.com/+Sop=
    hieJewry</a></b></span> - Connect on Google+</div><div><b><a =
    href=3D"http://www.twitter.com/SophieJewry">www.twitter.com/SophieJewry</a=
    ></b> - Follow me on Twitter</div><div><font style=3D"text-align: =
    -webkit-auto;"><b><a =
    href=3D"http://www.facebook.com/TheBrandKitchen">www.facebook.com/TheBrand=
    Kitchen</a></b></font><font class="3D""Apple-style-span" =
    style=3D"text-align: -webkit-auto;"> - Branding and business =
    tips</font></div><div>Other things to =
    explore...</div></font></span></span></span></span></span></div></span></d=
    iv></span></div></span></div></span></div></span></div></span></div></span=
    ></span></div></span></div></span></div></span></div></span></div></span><=
    /div></span></div></span></div></span></div></span></div></span></div></sp=
    an></span></span></div></span></span></span></span></span></span></div></s=
    pan></div></span></div></span></div></span></div></span></div></span></div=
    ></span></div></span></div></span></div><font color=3D"#555555"><b><a =
    href=3D"http://www.organic-skincare.co.uk">www.organic-skincare.co.uk</a><=
    /b> - Fantastic quality organic products for body, skin and healthy =
    living inside and out</font></div><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"><b><a =
    href=3D"http://www.theholisticdirectory.co.uk">www.theholisticdirectory.co=
    .uk</a></b> - Connecting, supporting and promoting holistic =
    professionals</font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: =
    0px;"></span></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"></span></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: =
    0px;"></span></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div><b><a =
    href=3D"http://www.mynorfolkguide.co.u">www.mynorfolkguide.co.u</a></b><b>=
    k</b> - Online Norfolk directory, list your business for =
    FREE</div><div><b><a =
    href=3D"http://www.ladiesnetwork.co.uk">www.ladiesnetwork.co.uk</a></b>&nb=
    sp;- Womens' networking =
    group</div></span></span></span></span></span></font></div></div></div></d=
    iv></div></div></div></div></div></div></div></div></div></div></div></div=
    ></div></div></div></div></div></div></div></div></div></div></div></div><=
    /div><span class="3D""Apple-style-span" style=3D"border-collapse: =
    separate; border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: =
    0px;"><br></span></div></span></div></span></div></span></div></span></div=
    ></span></span></div></span></div></span></div></span></div></span></div><=
    /span></div></span></div></span></div></span></div></span></div></span></d=
    iv></span></div></span></div></span></span></span></span><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><b><i><span =
    class=3D"Apple-style-span" style=3D"font-size: 11px;">Important note =
    about proofs, print and payment:</span> </i></b></span><span =
    style=3D"text-align: -webkit-auto; font-style: italic; font-size: =
    11px;">Artwork is charged at =A340 per hour, unless otherwise confirmed =
    in writing.</span><span style=3D"text-align: -webkit-auto; font-style: =
    italic; font-size: 11px;"> </span><font style=3D"text-align: =
    -webkit-auto; font-style: italic; font-size: 11px;">If proofing artwork =
    please check carefully all spellings and content as amendments cannot be =
    made once files have been supplied to the printers. </font><span =
    class=3D"Apple-style-span" style=3D"font-style: italic; font-size: =
    11px;">It is the responsibility of the customer to check proofs for =
    accuracy including contact details. </span><span =
    class=3D"Apple-style-span" style=3D"text-align: -webkit-auto; =
    font-style: italic; font-size: 11px;">All invoices should be paid by =
    return or in any case within 7 days of receipt. </span><span =
    class=3D"Apple-style-span" style=3D"text-align: -webkit-auto; =
    font-style: italic; font-size: 11px;">No material/adverts designed by =
    media8 can reproduced in any other publication without the written =
    permission of the owners or its agents. </span><span =
    class=3D"Apple-style-span" style=3D"text-align: -webkit-auto; =
    font-style: italic; font-size: 11px;">The colour may differ slightly in =
    print due to a difference in screen colour and resolution (Finished =
    print is always inCMYK). </span><span style=3D"text-align: =
    -webkit-auto; font-style: italic; font-size: 11px;">Our Couriers will =
    not(and hence we cannot) take responsibility for items which have been =
    accepted as being in good condition on delivery. Hence please check your =
    delivery carefully BEFORE signing your delivery note. Our courier will =
    NOT ACCEPT responsibility for damaged print if the delivery note has =
    been signed without comment. It is much better to check your goods =
    before signing but if you are unable to check on delivery please write =
    GOODS DAMAGED on the delivery note before signing everytime.</span><span =
    style=3D"text-align: -webkit-auto; font-style: italic; font-size: =
    11px;"> </span><i><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space; display: inline !important;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"display: =
    inline !important;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; =
    display: inline =
    !important;"><br></div></div></span></div></span></span></div><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: =
    0px;"><div><div><div><div><div><div><div><div><div><div><div><div><div><di=
    v><div><div><div style=3D"font-size: 22px;"><span =
    class=3D"Apple-style-span" style=3D"font-size: 12px;"><font =
    class=3D"Apple-style-span" size=3D"3"><span class="3D""Apple-style-span" =
    style=3D"font-size: 11px;">This e-mail (including any attachments) is =
    confidential. If you are not the intended recipient you are prohibited =
    from acting upon, </span></font><font class="3D""Apple-style-span" =
    size=3D"3"><span class="3D""Apple-style-span" style=3D"font-size: =
    11px;">printing, copying or distributing it. If you have received this =
    e-mail in error, please notify the sender immediately by telephone =
    or </span></font><font class="3D""Apple-style-span" size=3D"3"><span =
    class=3D"Apple-style-span" style=3D"font-size: 11px;">by e-mail and =
    delete this e-mail from your system. It is possible for data conveyed by =
    e-mail to be deliberately or accidentally </span></font><font =
    class=3D"Apple-style-span" size=3D"3"><span class="3D""Apple-style-span" =
    style=3D"font-size: 11px;">intercepted or corrupted. We are unable to =
    accept any responsibility for any breaches of confidentiality which may =
    arise through the use </span></font><font class="3D""Apple-style-span" =
    size=3D"3"><span class="3D""Apple-style-span" style=3D"font-size: =
    11px;">of this medium. Whilst we make every effort to ensure that this =
    e-mail is free from viruses, this cannot be guaranteed. We =
    recommend that you scan all e-mails for viruses with appropriate =
    and frequently updated virus checking =
    software.</span></font></span></div></div></div></div></div></div></div></=
    div></div></div></div></div></div></div></div></div></div></span></div></s=
    pan></div></span></div></span></div></span></div></span></span></div></spa=
    n></div></span></div></span></div></span></div></span></div></span></div><=
    /span></div></span></div></span></div></span></div></span></div></span></d=
    iv></span></span></span></div></span></div></span></div></span></div></spa=
    n></div></span></span></div></span></div></span></div></span></div></span>=
    </div></span></div></span></div></span></div></span></div></span></div></s=
    pan></div></span></div></span></div></span></span></span></i></div></span>=
    </div></span></div></div></font></font></div></font></div></span></div></s=
    pan></div></span></div></span></div></span></div></span></span></div></spa=
    n></div></span></div></span></div></span></div></span></div></span></div><=
    /span></div></span></div></span></div></span></div></span></div></span></d=
    iv></span></span></span></span></div></span></div></span></div></div></div=
    ></div></div></div></div></div></div></div>
    </div>

    Make your signature text only, see if that makes a difference.

  • After Effects very slow - would love some help

    Ok,
    Here is my system :
    Vista 64 Ult.
    Q6600
    P5Q-E
    8 gig of RAM
    Geforce GSO 9600
    I am working with a project that is 1500 X 1050 (approx) - it contains some camera moves and some page peel effects on pictures - and it is running unbearably slow...
    I have enabled Disk caching to a separate SATA drive - also I notice that when I am running CS3 - is saying it only recognizes 4 gigs of RAM.
    I have also enable Multiprocess for frames.  Now, I am not even close to a regular user of After Effects, so this might come as obvious, but what can I do here?  Is there a set of steps to help me speed this up?  I did take a look at
    http://help.adobe.com/en_US/AfterEffects/9.0/WSF13D6BED-C53B-408a-B2D6-C8B4205D4FB7a.html
    for improving performance and I did try to touch on most of the points I could understand like making my virtual drive space to 2X the amount of RAM.
    Now, I am trying to precompose most of my elements, but I don't know if that is overkill.  Really, I just want to ensure that with my new system, it was worth the money and upgrade.

    Thanks for all the effort and time.  I think I might be getting somewhere with your help.
    "You are right. Plus if your render crashes you won't have to re-render the already rendered frames. PNG is lossless quality where JPEG is lossy quality. Depending on the compression setting, the computation from the calculated jpg frame can be lower than the computation time for PNG. You can try on a 30 sec portion to see what is faster."
    I haven't tried JPG yet but I will.  I want to have something that I can output to DVD with decent quality. Right now .mov looks good, but will try the JPGS.
    Another thing to take into account is the writing speed of the file on your HDD. If you are rendering on the same disk where the sources are, or on  a USB external drive, it will take more time than rendering on an internal sata/e-stata drive or a raid array. In image sequence, this is more important as AE have to write/close a file for each frame, and depending on your configuration (windows,mac, antivirus, timemachine...) it can make a huge difference.
    I have a separate SATA drive for disk caching.  I did that right away.  I was wondering about the memory caching though in the preferences panel - I am not sure if I should just leave the defaults for that :
    MAX MEMORY USAGE
    MAX DISK CACHE SIZE
    "If on PC try to disconnect it from the web and turn of your antivirus."
    My rendering computer is not connected to the internet, so I don't have an anti-virus running on it.  It only get programs from my internet computer that have been thoroughly checked first.
    You will save time. Turn off disk indexing too.
    How do I do this on a PC?
    Could you please explain what you mean by "negate its impact fully by using the corresponding layer style instead of the effect. They it's slightly faster"?
    Instead of using the drop shadow effect, right clic on your layer in the time line menu and select "Layer style > Drop shadow". It will have the same behavior/options than the Photoshop counterpart. It's better and faster than the drop shadow effect.
    I will try this.  Thanks
    A good way to know what step takes more time than the other (and a good way to figure out what part of the process you have to optimise) is twirling down, in the render queue the "current render" line. It will tell you for every frame, what the rendering is actually doing. The longer the step, the longer it's name will stay on screen.
    That is a great tip.
    Can you tell me if the comp size makes a difference when I am rendering out 720X540?  The main challenge for me is that I have about another 10 minutes to add to the project.  I don't want this to take me 2 hours to render out 15 minutes!
    Well it probably will. 2 hours of rendering for 15minutes is not that bad. You're doing motion graphics, not editing. Also, if your pictures are jpeg, it add computational time, because the render have to decompress it in memory in order to work with it. If you have disk space, you'd rather like to convert all your jpeg to uncompressed tiff files, so the render engine will just have to load it in memory in order to press it.
    That is another great idea.  I didn't know that TIFF were better.
    I am going to OC my Q6600 slight, to see if there is any effect.  Another issue I am running into is that AE says my Graphics card is not an OPENGL card.  But the package says it is!
    Have you downloaded the latest drivers for your card yet ? If not try to do so, restart your PC and check again into AE."
    Yes, I have the newest drivers (it is a new card and I had to go to the NVIDIA site just to get them.  The problem is that I have posted on the NVIDIA board days ago about this issue and no one has given me an answer yet concerning this.  I just checked again with AE - it says. "NO COMPATIBLE OPENGL CARD FOUND"
    It is an Nvidia 9600 GSO 768Mg video card.

Maybe you are looking for