More help

ok everything worked But when i opened it sayed erroe product.dll was not found. Any help?

Hello For,
Please see the response in your original thread...
http://supportforums.blackberry.com/rim/board/message?board.id=8100&message.id=16412#M16412
Occam's Razor nearly always applies when troubleshooting technology issues!
If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
Join our BBM Channels
BSCF General Channel
PIN: C0001B7B4   Display/Scan Bar Code
Knowledge Base Updates
PIN: C0005A9AA   Display/Scan Bar Code

Similar Messages

  • Need more help with a GUI

    It's the ever popular Inventory program again! I'm creating a GUI to display the information contained within an array of objects which, in this case, represent compact discs. I've received some good help from other's posts on this project since it seems there's a few of us working on the same one but now, since each person working on this project has programmed theirs differently, I'm stuck. I'm not sure how to proceed with my ActionListeners for the buttons I've created.
    Here's my code:
    // GUICDInventory.java
    // uses CD class
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    public class GUICDInventory extends JFrame
         protected JPanel panel; //panel to hold buttons
         protected JPanel cdImage; // panel to hold image
         int displayElement = 0;
         public String display(int element)
                   return CD2[element].toString();
              }//end method
         public static void main( String args[] )
              new GUICDInventory();
         }// end main
         public GUICDInventory()
              CD completeCDInventory[] = new CD2[ 5 ]; // creates a new 5 element array
             // populates array with objects that implement CD
             completeCDInventory[ 0 ] = new CD2( "Sixpence None the Richer" , "D121401" , 12 , 11.99, 1990 );
             completeCDInventory[ 1 ] = new CD2( "Clear" , "D126413" , 10 , 10.99, 1998 );
             completeCDInventory[ 2 ] = new CD2( "NewsBoys: Love Liberty Disco" , "2438-51720-2" , 10 , 12.99, 1999 );
             completeCDInventory[ 3 ] = new CD2( "Skillet: Hey You, I Love Your Soul" , "D122966" , 9 , 9.99, 1998 );
             completeCDInventory[ 4 ] = new CD2( "Michael Sweet: Real" , "020831-1376-204" , 15 , 12.99, 1995 );
             //declares totalInventoryValue variable
                 double totalInventoryValue = CD.calculateTotalInventory( completeCDInventory );
              final JTextArea textArea = new JTextArea(display(displayElement));
              final JButton prevBtn = new JButton("Previous");
              final JButton nextBtn = new JButton("Next");
              final JButton lastBtn = new JButton("Last");
              final JButton firstBtn = new JButton("First");
              prevBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                        displayElement = (//what goe here? ) % //what goes here?
                        textArea.setText(display(displayElement));// <--is this right?
              nextBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                          displayElement = (//what goes here? ) % //what goes here?
                        textArea.setText(display(displayElement));// <--is this right?
              firstBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                        displayElement = 0;
                        textArea.setText(display(displayElement));// <--is this right?
              lastBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                        displayElement = //what goes here?;
                        textArea.setText(display(displayElement));// <--is this right?
              JPanel panel = new JPanel(new GridLayout(1,2));
              panel.add(firstBtn); panel.add(nextBtn); panel.add(prevBtn); panel.add(lastBtn);
              JPanel cdImage = new JPanel(new BorderLayout());
              cdImage.setPreferredSize(new Dimension(600,400));
              JFrame      cdFrame = new JFrame();
              cdFrame.getContentPane().add(new JScrollPane(textArea),BorderLayout.CENTER);
              cdFrame.getContentPane().add(panel,BorderLayout.SOUTH);
              cdFrame.getContentPane().add(new JLabel("",new ImageIcon("cd.gif"),JLabel.CENTER),BorderLayout.NORTH);
              cdFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              cdFrame.pack();
              cdFrame.setSize(500,200);
              cdFrame.setTitle("Compact Disc Inventory");
              cdFrame.setLocationRelativeTo(null);
              cdFrame.setVisible(true);
         }//end GUICDInventory constructor
    } // end class GUICDInventory
    // CD2.java
    // subclass of CD
    public class CD2 extends CD
         protected int copyrightDate; // CDs copyright date variable declaration
         private double price2;
         // constructor
         public CD2( String title, String prodNumber, double numStock, double price, int copyrightDate )
              // explicit call to superclass CD constructor
              super( title, prodNumber, numStock, price );
              this.copyrightDate = copyrightDate;
         }// end constructor
         public double getInventoryValue() // modified subclass method to add restocking fee
            price2 = price + price * 0.05;
            return numStock * price2;
        } //end getInventoryValue
        // Returns a formated String contains the information about any particular item of inventory
        public String displayInventory() // modified subclass display method
              return String.format("\n%-22s%s\n%-22s%d\n%-22s%s\n%-22s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n  \n" ,
                                       "CD Title:", title, "Copyright Date:", copyrightDate, "Product Number:", prodNumber , "Number in Stock:",
                                       numStock , "CD Price:" , "$" , price , "Restocking fee (5%):", "$", price*0.05, "Inventory Value:" , "$" ,
                                       getInventoryValue() );
         } // end method
    }//end class CD2
    // CD.java
    // Represents a compact disc object
    import java.util.Arrays;
    class CD implements Comparable
        protected String title; // CD title (name of product)
        protected String prodNumber; // CD product number
        protected double numStock; // CD stock number
        protected double price; // price of CD
        protected double inventoryValue; //number of units in stock times price of each unit
        // constructor initializes CD information
        public CD( String title, String prodNumber, double numStock, double price )
            this.title = title; // Artist: album name
            this.prodNumber = prodNumber; //product number
            this.numStock = numStock; // number of CDs in stock
            this.price = price; //price per CD
        } // end constructor
        public double getInventoryValue()
            return numStock * price;
        } //end getInventoryValue
        //Returns a formated String contains the information about any particular item of inventory
        public String displayInventory()
              //return the formated String containing the complete information about CD
            return String.format("\n%-22s%s\n%-22s%s\n%-22s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n  \n" ,
                                       "CD Title:", title, "Product Number:", prodNumber , "Number in Stock:",
                                       numStock , "CD Price:" , "$" , price , "Restocking fee (5%):", "$", price*0.05, "Inventory Value:" , "$" ,
                                       getInventoryValue() );
        } // end method
        //method to calculate the total inventory of the array of objects
        public static double calculateTotalInventory( CD completeCDInventory[] )
            double totalInventoryValue = 0;
            for ( int count = 0; count < completeCDInventory.length; count++ )
                 totalInventoryValue += completeCDInventory[count].getInventoryValue();
            } // end for
            return totalInventoryValue;
        } // end calculateTotalInventory
         // Method to return the String containing the Information about Inventory's Item
         //as appear in array (non-sorted)
        public static String displayTotalInventory( CD completeCDInventory[] )
              //string which is to be returned from the method containing the complete inventory's information
              String retInfo = "\nInventory of CDs (unsorted):\n";
              //loop to go through complete array
              for ( int count = 0; count < completeCDInventory.length; count++ )
                   retInfo = retInfo + "Item# " + (count + 1);          //add the item number in String
                   retInfo = retInfo + completeCDInventory[count].displayInventory();     //add the inventory detail in String
              }// end for
              return retInfo;          //return the String containing complete detail of Inventory
        }// end displayTotalInventory
         public int compareTo( Object obj ) //overlaod compareTo method
              CD tmp = ( CD )obj;
              if( this.title.compareTo( tmp.title ) < 0 )
                   return -1; //instance lt received
              else if( this.title.compareTo( tmp.title ) > 0 )
                   return 1; //instance gt received
              return 0; //instance == received
              }// end compareTo method
         //Method to return the String containing the Information about Inventory's Item
         // in sorted order (sorted by title)
         public static String sortedCDInventory( CD completeCDInventory[] )
              //string which is to be returned from the method containing the complete inventory's information
              String retInfo = "\nInventory of CDs (sorted by title):\n";
              Arrays.sort( completeCDInventory ); // sort array
              //loop to go through complete array
              for( int count = 0; count < completeCDInventory.length; count++ )
                   retInfo = retInfo + "Item# " + (count + 1);     //add the item number in String
                   retInfo = retInfo + completeCDInventory[count].displayInventory(); //add the inventory detail in String
              return retInfo;     //return the String containing complete detail of Inventory
         } // end method sortedCDInventory
    } // end class CD

    nextBtn.addActionListener(new ActionListener()
         public void actionPerformed(ActionEvent ae)
                   displayElement = (//what goes here? ) % //what goes here?
                   textArea.setText(display(displayElement));// <--is this right?
    });Above is your code for the "Next" button.
    You ask the question "What goes here"? Well what do you think goes there?
    If you are looking at item 1 and you press the "Next" button do you not want to look at item 2?
    So the obvious solution would be to add 1 to the previous item value. Does that not make sense? What problem do you have when you try that code?????
    Next you say "Is this right"? Well how are we supposed to know? You wrote the code. We don't know what the code is supposed to do. Again you try it. If it doesn't work then describe the problem you are having. I for one can't execute your code because I don't use JDK5. So looking at the code it looks reasonable, but I can't tell by looking at it what is wrong. Only you can add debug statements in the code to see whats happening.
    If you want help learn to as a proper question and doen't expect us to spoon feed the code to you. This is your assignment, not ours. We are under no obligation to debug and write the code for you. The sooner you learn that, the more help you will receive.

  • HT1349 Online Support Needs to be More Helpful

    How can i locate the serial number if I dont have the packaging in front of me and my phone wont turn on. No time run to the store right now. Can online support be more helpful?

    How to find the serial number of your Apple hardware product

  • I want to resigne an annual engagement ? how to do ? it doesnt work with " more help"! turn turn turn turn over and over

    i want to resigne an annual engagement ? how to do ? it doesnt work with " more help"! turn turn turn turn over and over

    This is an open forum, not Adobe support... You need Adobe support to cancel a subscription
    -start here https://forums.adobe.com/thread/1703848
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html
    --and two links which may provide more details, if the above links don't help you
    -http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    -http://helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html

  • More help with GREP needed

    I have been attempting to create some nested styles.
    So far, I am getting the hang of it.
    I have created a grep style that will make all text after the word "NOTE: " into italic. Also, I have grep style that makes all text that is "FIGURE +\d+\d" into bold text.
    The problem I have is that if the word "FIGURE " etc. is in the italicized note text, then it will not become bold.
    For example: "Operate the switch to begin the process (FIGURE 3-3). Make sure guards are closed (refer to FIGURE 3-1)."
    That works fine, and "FIGURE " is bold. However, when I change the sentence by adding "NOTE: Make sure guards... " it all becomes italic, and I loose the bold on "FIGURE 3-1"
    So, is there a way to augment my italic grep with some kind of inclusion... as if I were saying "if "FIGURE +\d+\d" make that is bold italic"
    sorry for the long-winded attempt to describe what I want to do.
    Thanks in advance for help.
    RPP

    RPP,
    The trouble is that in GREP style you can find text but not formatting, so you can't say something like "find FIGURE only when it's italic". In the Find/Change dialog you can, but in GREP styles you can't.
    You also can't say "look for FIGURE if it's preceded by NOTE: and any characters in between". Unfortunately, lookbehind can't cope with variable-length text. So if you always have "NOTE: Refer to FIGURE ...", then you can use lookbehind and you set-up would be this:
    apply italic to FIGURE [-\d]+
    apply bold to NOTE:.+
    apply bold-italic to (?<=NOTE: Refer to )FIGURE [-\d]+
    The first parenthetical is a lookbehind: in this case, FIGURE looks behind, meaning you find FIGURE only when it's preceded by "Note: Refer to", which is not matched itself. So bold italics would be applied only to FIGURE [-\d]+, and only when preceded by ...
    But you're not likely to have such fixed text. When you have just a few alternatives, you can list them as alternatives, so if you always have "Note: Refer to " or "NOTE: See " you could salvage your set-up, but with more than let's say three alternatives it gets messy.
    (?<=NOTE:.+? )FIGURE [-\d]+ , which you would hope would match any text from NOTE: to FIGURE, doesn't work as a lookbehind.
    Peter

  • HT202696 What happens if Apple Support expires for a product?  Does it mean there is no more help available and you are on your own just because you have an older Apple product?

    We have a family of Apple products at home, and with every new one, we learn a new aspect of the Apple Life.  After switching to iPhone 5S and struggling between some applications, I've decided it is time to upgrade rest of my older devices requesting an IOS Upgrade to 8.1.2 for weeks.
    My older iPhone 4 didn't have an upgrade, which was not advanced enough anymore to carry a new software, this I understand.  The upgraded iPod Touch and iPad Mini don't seem to have any problems with the recent changes so far.  However, the older iPad (2) we had is messed up, just like many other people's as mentioned on the pages of these discussion groups.  According to these user comments / complaints, it is obvious that upgrading to IOS 8.1.2 was not the right option to older version iPads just like it was not for iPhone 4; actually it shouldn't be an option in the first place.
    On my previous problems with iPhone 5S, I've come to realise the practicality & functionality of the Apple Support system when contacted directly, instead of going through many discussion pages of people with same or similar problems where everybody is asking but just a few is replying.  So, I wanted to give it a try to find a solution to my recent problems with iPad, but this time Apple Support pages replied with "Technical Support & Service Coverage are both Expired" message.
    First, I did not know that Apple supported its users personally, and I loved it.  Maybe this is because I didn't have previous problems with my old iPhone and iPad.  Especially the Apple Support - Chat option I preferred, where I got help step-by-step from Apple operators.  And then, I did not know that this service support was only for my devices until an expiration date, and this did not please me much.
    Can anyone enlighten me on how to receive any response from Apple about what to do with problems of an old Apple device?

    And as far as paying for phone support, here are a few tips:
    If you call your carrier first and then they route you to Apple, you usually don't have to pay for phone support.
    If you are talking to Apple and they ask you to pay a support fee, ask if you can get an exception this time.  That usually works once, but they keep track of the times you've been granted such an exception.
    If you still end up paying the support fee, that fee only applies if it's not a hardware related issue.  In other words, if it can be fixed by just talking over the phone and following Apple's instructions, then the fee applies.  But if your device is deemed to have a hardware failure that caused the issue, then the fee should not apply, and you can ask for it to be waived after the fact.
    This forum is free, and almost all of the technical support articles the Apple tech advisors use are available on this website.  Literally 99% of what they can do over the phone is just walking you through the publicly available support articles.  In other words, you're paying the fee to have them do your research for you.  It's like hiring a research consultant to go look stuff up in the public library so you don't have to.  You're capable of doing it; you'd just rather pay someone to do it for you.
    It's like Starbucks.  You know how to make coffee.  Everyone knows how to make coffee.  And Starbucks coffee isn't any better than what you could make at home for far less.  But you want the convenience.  So you're really paying a convenience fee.  Milk is more expensive at 7-Eleven than it is at the grocery store... because it's a convenience store.

  • More help needed on m2v problems!

    I have also been having problems when I try to import compressed (using Compressor) video files in SP 4. I have repaired file permissions and shortened the name of the file (as recommended in previous posts), but every time I try to import the file into SP, it closes the program and gives me an error report. When I try to open the file by itself, if opens Droplet. When I hit "submit," it freezes the program. Also, other compressed video files (that I have burned DVD's with in the recent past) don't work. They all do the same thing. It was all working fine last week (about two months after I upgraded Production Suite), and all of a sudden it's making me loose hair.
    Another thing I should mention: I have very little space left (1.89 GB) on my internal hard drive. This filled up very quickly, and I'm not quite sure how. When I started my computer yesterday, I had 5.5 GB. Before that, I had even more, though I'm hazy on the details. Anyway, I would GREATLY appreciate any help that's out there! Thanks!

    One thing (which may or may not help) is clearing off you hard drive, 1.89 Gigs on 80 Gigs will lead to the computer slowing down considerably, anything over 80% seems to be the number of more problems creeping up, and you should clear out as much as possible. With temp files, virtual memoory etc, it causes issues

  • Handling Projects & More--Help!!!

    I currently have quite a collection of folders on several large hard drives named like "20091215" or "F30_20091215" and others... I need to consolidate ALL of my images (all JPEGs) using Aperture.
    -Verification. I like to verify that my existing folders are being referenced by Aperture (AP). As I recall, I was often not able to verify these numbers... there was a discrepancy between the numbers in the folder in the Finder and the listing in AP. I think I had to switch to a list view to see the numbers... ouch.
    -Projects. With rare exception, the folders of images (typically named as YYYYMMDD) are not really part of any real project. The correspond with the day the card was saved to the computer and reformatted. Even my collection of European pics from 2008 probably have a few shots (around the house perhaps?) from before and after that are not from my trip. So, if I were to created a project Europe 2008... I would feel compelled to move the pics that are not Euro related out of those folders... which could get tedious. I want to work smart and let AP do the heavy lifting. I need your help getting over this Analysis To Paralysis issue I'm having with getting my library setup. I need a workflow. I was thinking that each folder (dragged in to the AP window) could become a project... I was thinking that I would move the images to another destination so that I can ensure that their being referenced by AP....
    Video. How do you handle video that's shot with your digital camera? I guess you have to manually deal with it... what's your workflow?
    Duplicate Detection. I think some people mentioned that they didn't see much value in this but It's important to me when trying to get organized. When in doubt I can import a misc. folder of valuable images to verify that they've been imported. Any idea how this works when you are copying the images to a new destination on import?
    Keeping your place... If I'm carefully dragging folders into AP, it seems that it would be easy to lose your place and forget what's been imported an what has not... do you have a any tips on avoiding this problem...? Perhaps color coding each folder that has been imported and verified?
    Date & Time... I just imported a total of about 1,500 images from two different cameras.... Within Aperture I noticed that one camera is off by 3:51:17. I will need to add this value to get the correct time within Aperture. However, I noticed that the Finder reports the same file with the time 6 hours earlier. I'm quite sure that I did not ask Aperture to alter the time upon import. Also, the cameras show the time in Aperture as CDT (Central Daylight Time)? Okay, why does the Finder differ? What to do now? Also, when I do make the correction to the images from one camera, can I modify all of them within Aperture including the master file too??? I SHOULD update the master with the proper date & time right??? I normally use a third party application to alter the date & time to the proper value... if I do will Aperture see the update? Do the images know the time zone for which the Date & Time applies? I get the feeling there is an issue here with the Time Zones.
    Cheers & Happy New Year!
    Robert

    Robert,
    I will try to sort through your questions one by one.
    Verification: yes I too wish that Aperture listed the number of photos being browsed, and not just in list view but in other view modes too. Anyway, the discrepancy might be explained if you realize that Aperture counts versions, not masters. Therefore if you have more than one version for any master image, those counts will not match up.
    Projects: well... the best I can say is that, you might want to give yourself a more clear definition of what a "project" is to you. For me, a project is not just how Aperture groups my photos. It's also how I shoot and work from beginning to end. So, a project is a group of import sessions from a certain event. I would, for example, import all my Europe photos into a Europe project, format my card, and then move on to shoot other things. Aperture allows you some flexibility. For example, I put all my past images in projects named after its year (2008, 2009, etc) and inside each of those, photos are grouped into "albums" by each event. But for this current year, I have a folder called "2010" in the Aperture Project Inspector tab, and in that 2010 folder I have one project for each event. At the end of 2010, I will make a "2010" project and move all of that year's images from their projects into their event-named albums within that 2010 project, and here comes year 2011. This lets me organize past photos into projects-by-year, while still letting me work on this year's photos grouped into projects-by-event. So, within the inspector tab you can have: folders> projects> albums and books. That's the hierarchy and you can use that structure to your liking.
    Video: use iMovie or Final Cut, Aperture is not meant to handle any video.
    Duplicate detection: such a function would be confusing to people who want to have several versions to work from a single master image. Duplicates can be avoided by managing and importing your images correctly, not moving or messing with the referenced files except through using Aperture, and giving names to images at the time of import in a way that prevents confusion.
    Keeping your place: yes, I did my old folders by color-coding the finished imports with a blue label. However, new images should be imported straight from camera or card, use Aperture to rename the imported masters and append IPTC/EXIF data, and then the memory cards should be formatted IN CAMERA after each import. This last step helps to avoid confusion and prevent early card corruption.
    DAte & Time: well, the questions here are overwhelming so I will answer the bigger ones. If you want to just edit Date&Time from images taken on, let's say, only D90 and not D40, then:
    1) click on search icon (not the search field) top right of the window, to bring up a floating search HUD.
    2) click the + icon top right in the search HUD, and select EXIF
    3A) one of the EXIF data is camera model, so you would select that and type in the model name as it appears in Aperture's EXIF field (Nikon D90, etc).
    3B)It is also possible to limit the search criteria by which import session, which date it was shot, etc etc.
    4) hit enter and you get all the images that fit your criteria.
    5)Select all the images you found, then go up to "Metadata" in the menu bar.
    6) drop down to "Adjust Date and Time..."
    and that's it.
    best,
    Jin

  • Chapters..and more help

    We are about to be done editing our mountain bike film...its premiering in las-vegas at the end of the month. What i need to know is how can we put in chapters for each rider? And how can we have it so when viewing the main movie, you can skip forward to the next rider section? Is this all done in dvdpro? Will I be able to get this all done tonight?
    What would be the best way to export from final cut pro hd? We filmed on a Panasonic dvx100a
    Thanks for the help guys.

    You can do this very easily, but you have some other things to consider as well.
    First off, from FCP export via Compressor and use a compression setting that will accommodate any fast action, pans, zooms or fades that you have created. generally, a higher bitrate will be required for these parts, but do not go above 7.4MBPS if you are writing out to a DVD-R. make sure that at the same time you encode the video that you also encode the audio to AC3. There is a bookload of information about these two settings alone... so it may not come out exactly right first time!
    Your chapter markers set up in the timeline in FCP (not in the clip... the green ones along the top of the timeline) can be included in the export and brought right in to DVDSP as your chapter markers for the disc. Be sure to set them as chapter markers when you create them (if not, go back to one, press 'm' when on it and click the 'add chapter' button in the marker dialogue).
    When you export, make sure you keep all markers!
    Importing the encoded video into DVDSP should include the markers (not everyone gets this right first time...) All you then need to do is add the footage to the track (the markers should show up above the time line), add the AC3 audio beneath it and then switch to the outline view window. You can now drag the icon for the track you have just set up into the menu editor window to the right. If you hold it there for a second until the dialogue box appears you can select the option to create chapter menu and connect to track. This should then ask you which template for your menu you would like to use, and build the entire set of menus necessary (most menus have about 6 or 8 buttons. If your track has more chapters, a series of menus will be automatically created for you).
    When you select a button in a menu then the playback will start at that chapter and continue on through the rest of the track.
    If you want to return to the menu after playing a single chapter then you'll need to add stories to your project and place a single chapter into each. You'll also need to edit the button targets for each menu button to point to the correct story container and also set the menu call and end jump for each story to go back to the correct menu and button each time.
    You can create a 'play all' button which will allow you to skip forwards and backwards along the track as well... just point it to the track itself.
    If you do the simple way and don't add stories then you can skip back and forth after selecting a chapter to play. If you add stories and play one of those then you shouldn't be able to skip back and forth between the stories (this is normal... but some players do let you).
    As you can see... a few decisions to make before building the final disc!

  • AppleWorks 6.2.9 still quits - request more help from Peggy and Barry

    Appleworks6 will not launch
    Thanks to Peggy and Barry I am further along in getting AppleWorks 6, release 6.2.9 to work. However, things are still not working.
    Peggy, I took your suggestion from my last post (Feb 18-19)about dragging the AppleWorks 6 application from the AppleWorks 6 folder to the Dock. Now when I click once on the AppleWorks 6 icon, the application just bounces once. The menu at the top of the desktop stays on the Finder menu.
    Let me give you some more information about the iMac setup, because I followed your suggestions about removing Recent Items files. This did not resolve the problem for getting the AppleWorks 6 application to start.
    I have the AppleWorks 6 folder as:
    Mac HD>applications>AppleWorks 6
    In the Appleworks 6 folder
    AppleWorks 6 application
    Late-Breaking News folder – 2 items
    AppleWorks Essentials folder – 9 items
    Clippings folder – 14 items
    Starting Points folder – 5 items
    AppleWorks 6 Installer log written with TextEdit– dated 12/11/04
    On Mac HD/Users/userfile/LibraryPreferences – no file for com.apple.AppleWorks.plist
    Under Mac HD>Documents>AppleWorks User Data folder
    There are three folders: AutoSave, Starting Points, Clippings
    AutoSave folder has zero items
    Starting Points folder – has three folders: Cache, Disabled Items, Recent Items
    Cache – three folders
    Folder 484B1CeC32D183Dba11d8c00b40954
    Header.cache dated Dec 21/2004
    Templates6-1cwk.gz 0GZIP file
    Folder 86B7AA87566C7DBA41B2D8825E0724
    Containing header.cache
    And newsletter6-1.cwk.gz
    Folder D1F3FFE1…
    Containing header.cache
    and extras6.cwk.gz
    Disabled Items folder – containing zero items
    Recent Items folder – containing zero items
    Clippings folder
    Cache folder -0 items
    Disabled Items folder – 0 items
    Also, on Mac HD>SystemFolder>Preferences>AppleWorks – AppleWorks 6 Button Bars and file called AppleWorks 6 Preferences and AppleWorks 6 Fonts
    Should I delete the Mac HD>Documents>AppleWorks User Data\Starting Points folder and the Mac HD>Documents>AppleWorks User Data\Clippings folder? Wouldn’t the AppleWorks 6 application then pick up the correct Starting Points and Clippings folders from Mac HD>applications>Appleworks 6 folder?
    Thanks,
    Bruce

    Does AppleWorks launch if you double-click the icon in the Finder? It may be an OS issue rather than an AppleWorks one. So, the first thing I suggest is repairing permissions using Disk Utility. Then, unless you leave your Mac on 24/7 & not asleep, run a utility to run the UNIX cron routines & clean caches. Try a search on MacUpdate or VersionTracker for maintenance utilities such as OnyX or Yasu.
    Also, make sure your hard drive isn't too full. It depends on how you use your computer, but for most normal users a minimum of 5 gigs free space at all times after installation is recommended. Power users may need more.
    If this still doesn't work, repairing your hard drive with Disk Utility may help. Start up your Mac from the first Panther (10.3.x) install disk. Then, instead of running the installer, go to the Installer menu & choose Disk Utility. Select your hard drive in the left-hand panel & click Repair Disk. When it is done, quit Disk Utility then quit Installer & restart your Mac.
    It certainly won't hurt to delete both of the AppleWorks User Data folders. One is for OS 9/Classic & the other, in your documents folder, is for OS X. Actually, there would be one in each user's documents folder if you have more than one user.

  • Need More Help!

    Hi
    Sorry to be such a pain but I always have problems with this.
    This isn't related to my other project.
    I'm saving video from Fraps at 1920 by 1200, in AVI format, the resolution of my monitor.
    I want to import it into PE10, crop it to a wide screen format and export it at  1600 by 900 frames size as an AVI file.
    The clip coming in is 1.0 PAR.
    In the options to export AVI files I can't find any options to export it at anything other then 720 by 480.
    It doesn't matter if I pick Standard NTSC Wide Screen NTSC or Microsoft AVI the only options are 720 by 480.
    It won't let me change the size in the advanced menu on any of the formats.
    I could export it at anything I want as a WMV file but I have to have an AVI file to import it into the program I want to use it in.
    Is there any way to do this?
    And last even when I do export it as an AVI file at 720 by 480, and the image is bigger then the preview window, what I get is a much smaller image that doesn't fill the frame.
    I thought I finally had the PAR thing figured out, it's 1.0 PAR going in, and 1.0 PAR going out but it still doesn't come out right.
    I just tried importing it at Full HD 30 and outputting it at Standard NTSC and I get a small frame in a bigger window.
    Any help welcome.
    Mike

    tep one: Visit http://www.giganews.com/line_info.html and post up the Traceroute the page shows, if you wish. Be aware that your non-bogan public IP Address will show up.  It might shown up as the final hop (bottom-most line of the trace)  might contain a hop with your IP address in it. Either remove that line or show only the first two octets. What I'm looking for is a line that mentions "ERX" in it's name towards the end. If for some reason the trace does not complete (two lines full of Stars), keep the trace route intact.
    For example this what I see
        news.giganews.com
        traceroute to 71.242.*.* (71.242.*.*), 30 hops max, 60 byte packets
        1 gw1-g-vlan201.dca.giganews.com (216.196.98.4) 13 ms 13 ms 13 ms
        2 ash-bb1-link.telia.net (213.248.70.241) 39 ms 7 ms 7 ms
        3 TenGigE0-2-0-0.GW1.IAD8.ALTER.NET (63.125.125.41) 4 ms 4 ms GigabitEthernet2-0-0.GW8.IAD8.ALTER.NET (63.65.76.189) 4 ms
        4 so-7-1-0-0.PHIL-CORE-RTR1.verizon-gni.net (130.81.20.137) 6 ms 6 ms 6 ms
        5 P3-0-0.PHIL-DSL-RTR11.verizon-gni.net (130.81.13.170) 6 ms 6 ms 6 ms
        6 static-71-242-*-*.phlapa.east.verizon.net (71.242.*.*) 32 ms 32 ms 33 ms
    Step two: Can you provide the Transceiver Statistics from your modem?
    #3 If you don't know how to get that info:
    a) What is the brand and model of your modem?
    b) If you have a RJ-45 WAN port router connected to it: What is the brand and model of the RJ-45 WAN port router?
    #4 If you have a RJ-45 WAN port router connected to the modem, even if you know how to get the Transceiver Statistics from the modem: What is the brand and model of the RJ-45 WAN port router?
    If you are the original poster (OP) and your issue is solved, please remember to click the "Solution?" button so that others can more easily find it. If anyone has been helpful to you, please show your appreciation by clicking the "Kudos" button.

  • Snow Leopard and Canon MX860 ... More help please!

    I've followed various threads concerning Snow Leopard and its incompatibility with the Canon MX860 printer/scanner. I have now downloaded the latest printer driver from Canon and the printer functions seem to work normally now on my wireless network.
    I have some connectivity with the scanner, but the only way I can get it to scan is by going through System Preferences - if I try going via the "Canon Solution Menu" I get the error message "Cannot communicate with the scanner". Also, on the MX860's display panel the only option shown is the USB connection - it doesn't offer any PCs so, I guess, it's not finding my wireless network, even though the printer part of the machine is.
    Does anyone have a solution to this problem? Thanks.

    Hi,
    I am running Mac OS X Leopard version 10.5.7 on a MacBook3,1 with a wireless network using an AirPort Extreme. I was able to print wirelessly to my new Canon Pixma MX860, but my Macbook was unable to communicate with the MX860 scanner. Interestingly, though, the MX860 scanner could communicate just fine the other way with my Macbook because I was able to manually scan from the MX860 console and have scans wirelessly sent as PDFs to my Macbook.
    Here's what I did to scan wirelessly to the MX860.
    I used Easy Install from the accompanying Canon Pixma MX860 Setup CD-Rom disk *version U1.4* (purchased the MX860 on March 22, 2010) and followed all of the setup instructions in the Getting Started for Mac manual. In my case, I have a wireless LAN network with one access point, the Airport Extreme, but I would follow the instructions that are appropriate for your setup.
    I went to the Canon MX860 driver page http://www.usa.canon.com/consumer/controller?act=ModelInfoAct&tabact=DownloadDet ailTabAct&fcategoryid=334&modelid=18121 and selected the MAC OS system files from the drop-down menu.
    I downloaded:
    _*MX860 series Scanner Driver Ver. 14.11.1*_ (Mac OS X 10.3/10.4/10.5/10.6)
    mx860sosxsd14111ea8-2.dmg
    (I didn't remember this file from the Easy Install, and I was unable to select this from the Navigator EX Scan menu, so I figured there was something wrong with it)
    _*MP Navigator EX Ver. 2.1.2*_ (Mac OS X 10.2/10.3/10.4/10.5/10.6)
    mpnexosx212ea8-2.dmg
    (The version that came with the CD-Rom was an older version, 2.1.0, I think)
    I installed both the Scanner Driver and the updated MP Navigator EX. The computer restarted after installing each program, so there were two restarts.
    I opened the Solution Menu from the dock, chose Scan/Import Photos or Documents from the menu, and the Solution Menu opened MP Navigator EX (now version 2.1.2). From the MP Navigator Ex menu, I chose Scan/Import Photos/Documents (Platen), selected the Document Type, and voila, perfect wireless platen scans. When I checked the "Use the Scanner Driver" box, the Scanner Driver brought up more detailed scanning options. I was also able to scan a stack of documents using the ADF.
    I know that this is a Snow Leopard thread, but I came across this thread when I did a search on exactly the same problem, so I wanted to post my solution in case it helps others. I think that the solution to your problem should be similar. If the two downloads specifically mentioned above do not help, perhaps try downloading and installing all of the other most up-to-date drivers/software on the Canon 860 page until something works.

  • How do you classify the app comments as more helpful, critical etc? i ve seen some pretty lame comments on top:/

    tell me plz

    1. yes i got it
    BUT i dont see any button or link
    to do THAT EITHER
    maybe you CANT DO IT FROM AN IPAD1?
    THIS IS WHAT I M ASKING!
    OR ELSE HOW CAN YOU SELECT WHETHER IT WAS HELPFUL!!
    2. of course not
    but i kind of felt like a moron
    because of the criticism regardless the
    fingerprint modd free app
    i know its too simple and silly
    and there are far too many complex and special apps
    but it kinda made me feel giggly for like 10 seconds
    and then i kinda felt offended as if i were guilty of something
    when i read these two comments in the greek store
    about how moronic the app is
    and why apple even allowed it to be
    maybe a psychotherapist is more competent to advise me correctly:P
    but still i would like to know the answer on the first part of my question!

  • My assist button does not access vaio care any more help

    need help assist button does not activate vaio care any more please help me

     
    Hi westlyeaton, 
    Welcome to Sony Community! 
    I believe you were referring to Vaio Care Rescue Mode, right? To access the recovery partition. Is the Assist button stuck from being pressed? 
    Try to Power Cycle the laptop - Remove the battery and all peripherals -> press and hold the power button for 5 seconds OR, if the battery is not removable, remove all peripherals-> look for a battery off button on the bottom of the laptop -> push the button for 5 seconds
    Try to press the Assist button while the unit is on. There are certain models where Vaio Care (Desktop) will open when pressing Assist while the computer is on. Then test while the unit is off. 
    Let us know if this will work. 
    Thanks,
    Vincent 
    If my post answers your question, please mark it as "Accept as Solution"
     

  • UiXML templates - more help please!

    I'm trying to implement the 'Object List - Search/Results and Select/Act functionality' template as defined by BLAF. The BLAF standard dictates that the first field in a <table > should be a 'name' field, rendered as a link, which should be used to initiate a 'View Object' dialogue. What I've done in my template is define the table and the first column in the template the tableData and navigation values are provided by a method DataProvider and have defined a <namedChild> called 'otherColumns' which the user of the template fills in as necessary. My first attempt at this worked as required because the particular ObjectType I used was very simple and only had a name field and a status (active/inactive). My next attempt has more than 2 columns, but when I define them in the user of the template I get this warning:
    Warning(156,30): BrowseBrands.uix: Parsing error, line 156, column 30: Replacing named child: otherColumns; you probably want to wrap these children inside of a flowLayout plus a contents element.
    I tried wrapping this up in a <flowLayout> but the columnHeaders of my 'otherColumns' are then lost and don't render correctly - I didn't think this would work! I can see why this might be a problem as I'm splitting up the definition of my <table>. Anyone give me a solution to help me achieve this? Do I have to define the whole table in the user of the template? I'd like to keep the <table> in the template if possible.
    Thanks
    Ian

    If you want more than one element, you have to use <contents>.
    So, I believe what you want in your template is something more like:
    <table>
    <contents>
    <!-- A hardcoded column -->
    <column>...</column>
    <!-- Another hardcoded column -->
    <column>...</column>
    <rootChild name="contents"/>
    </contents>
    </table>
    ... then
    <yourTemplate>
    <contents>
    <!-- An added column -->
    <column>...</column>
    </contents>
    </yourTemplate>

  • Configuration error 5 - mid 2011 imac 27" - i had some genius comment on this, "uninstall, clean, reinstall.  lets assume i dont know wtf "clean means.  please give more help than some bs remark. cheers

    Earlier today I asked for help with a configuration problem error 5 prompt i keep getting when trying to open after effects
    i got a lazy response saying "uninstall, clean, reinstall." Well,  lets assume i dont know wtf i need to "clean"...
    more info please or a way to actually speak to a person and not deal with problems this BS way...
    i uninstall and then reinstall Ae just to get the same prompt about configuration error 5.  What do i need to "clean" in order for this shite to work.
    all the best
    jh

    thank you so much for the help.  after an online chat with support it seems
    that my graphics card is not on the approved list.  When i go to see if
    getting a new mac pro would help, i dont see that they have any of the
    approved graphic cards available to put in the mac pro.  will their gpu
    cards work with after effects?
    jh
    On Sun, Jun 8, 2014 at 7:52 AM, Rick Gerard <[email protected]>

Maybe you are looking for