Making filter setting changes propagate throughout my project?

I'm using FCPro 4.5. Say I want to apply a particular color correction setting to a bunch of clips in my project's timeline. What I've done is I've saved off an instance of the 3-way filter with the settings I like into my favorites folder, and I've dragged it onto all of the clips that I want to use that setting.
But now suppose that I want to change this "favorite" setting. Ideally, I'd like to change it once and have that change propagate to all the places where the filter is used. You might think you'd be able to alter the setting on the filter saved off in the Favorites folder, but the change doesn't seem to propagate out of there to all of the instances where it's used. Since that doesn't work, that means I have to go to all of clips where I applied my filter before, delete the 3-way filter, then apply my new, "reset" filter. This is obviously a lot of work.
Is there a better, easier way to do this?
Thanks very much.
G5 Dual 2.5 GHz   Mac OS X (10.4.6)  

Depending on how spread out all of these clips are it COULD be easy to fix. Assuming they are somewhat clumped together, Make whatever adjustments you want to make to your first clip. Then select that clip, Control Click and choose Copy.
Then select all of your other clips by clicking and dragging or however you like to do it. Then Control click on any of the selected clips and choose Remove Attributes. Select filters and hit OK. This is going to remove any and every filter you have on those clips.
The select all of those clips if they aren't still selected and Control Click again on any of them. This time choose Paste Attributes and select Filters. Hit OK and that will paste your filter onto all of the clips at once.
This won't help if you have other filters on those clips besides the one you are trying to add, and it could be pretty tedious if the clips are spread throughout your sequ.
Good Luck!

Similar Messages

  • Making a small change to an old project - How do I know what versions of Drivers and RIO etc was used for the last good build?

    If I want to make a small change to a legacy project of years ago, I want to limit my risk by using the exact same versions of LabVIEW, NI-RIO etc.  So I check out the project from the repo, but I don't know how to check what versions were used when the last know good build was made.  I don't want to introduce issues by mass-recompiling to the latest version.
    What is best practice in this case?  I could, before every repo commit, take a screenshot of MAX's software tree and save this in the project folder.
    Any ideas?  
    Solved!
    Go to Solution.

    The report is a great idea!  I store both a max technical report and a project.NCE (HW config export) with each of my projects for this exact reason.  Those files have sure come in handy!
    Also- its a good idea to make an image of the target as accepted and archive it somewhere.  ESPECIALLY for PXI based systems from NI.  (When the customer comes back for a "duplicate" just send the image with the PO and the system arrives fully configured)
    Jeff

  • Why Does Video Stretch When Changing Filter Setting During Encoding?

    Hi,
    I've exported my video as h.264 720x480. I've burned it to a dvd. Looks pretty good but the brightness is too much. I re-exported as h.264 except this time I lowered the brightness slightly with the filter setting. (don't want to really touch project settings). Brightness is fine now, but the video stretched vertically for some reason. I played the two .mov files on my mac and the stretching definitely occurred during export.
    Any ideas what's happening here and what the solution is? I find this bizarre.
    Thanks!
    Steve

    Most YouTube content requires Flash ..  You're using Safari to view YouTube?
    If so ...
    Open System Preferences > Flash Player then select the Advanced tab.
    Click Delete All under Browsing Data and Settings
    Not empty the Safari cache.
    From your Safari menu bar click Safari > Preferences then select the Advanced tab.
    Select:  Show Develop menu in menu bar
    Now click Develop from the menu bar. From the drop down menu click Empty Caches.
    Quit and relaunch Safari then try a video.

  • Setting up number range for projects in cProjects

    Hi,
    I am new to cProjects & my apologies if my question may sound very naive. My client wants an alpha-numeric number range to be set up for numbering of projects. Is this possible & if yes how? Which is the object for setting the number range? (I believe the transaction in "SNRO")
    Thanking you for taking a note of my querry.
    Regards
    Deepak

    Sample Code Method SET_DEFAULTS_UPON_CREATION
    Method IF_EX_DPR_ATTRIBUTES~SET_DEFAULTS_UPON_CREATION
    */ This method is called when creating a new project element (i.e. project definition,
    */ phase, task, etc) and can be used to fill in default values for standard as well
    */ as customer defined data fields.
    */ This implementation is provided to assign customer specific numbers to project
    */ elements.
    */ It's interesting to note that when this method is called, the external ID of the
    */ object has already been determined and assigned by the default numbering services
    */ class CL_DPR_NUMBERING_SERVICES. It is also interesting to note that if a user
    */ specified an ID for the object through the user interface, changing the identifier
    */ in this method will have no effect -- meaning the user specified ID will still be
    */ assigned to the object.
    */ Only the example for Project Definition is provided.  For other project elements,
    */ insert similar code between the Beginning and End comments below.  In addition,
    */ the filter for this BADI implementation must be updated to include any other
    */ project element for which custom number assignment is desired.
      DATA:
        lr_parent              TYPE REF TO if_dpr_common,
        lr_project             TYPE REF TO cl_dpr_project,
        lr_approval            TYPE REF TO cl_dpr_approval,
        lr_individual_approval TYPE REF TO cl_dpr_individual_approval,
        lr_phase               TYPE REF TO cl_dpr_phase,
        lr_task                TYPE REF TO cl_dpr_task,
        lr_checklist           TYPE REF TO cl_dpr_checklist,
        lr_checklist_item      TYPE REF TO cl_dpr_checklist_item,
        LV_NUMBER              TYPE DPR_TV_EXTID,
        LV_NUMTEXT             TYPE CGPL_EXTID,
        LV_INTERVAL            TYPE NRIV.
      FIELD-SYMBOLS:
        <ls_project_attrs>             TYPE dpr_ts_project_int,
        <ls_phase_attrs>               TYPE dpr_ts_phase_int,
        <ls_task_attrs>                TYPE dpr_ts_task_int,
        <ls_checklist_attrs>           TYPE dpr_ts_checklist_int,
        <ls_checklist_item_attrs>      TYPE dpr_ts_checklist_item_int,
        <ls_approval_attrs>            TYPE dpr_ts_approval_int,
        <ls_individual_approval_attrs> TYPE dpr_ts_individual_approval_int.
    */  Determine which project element (object category) is being processed
      CASE flt_val.
        WHEN cl_dpr_co=>sc_ot_project.
          ASSIGN cs_attributes TO <ls_project_attrs>.
          lr_project ?= ir_common.
    */ Beginning of custom project number assignment.
    */    In this example, the default system numbering is manipulated to
    */    produce the Project Number...
    */    Get info regarding the number range for operative projects...
          CALL FUNCTION 'NUMBER_GET_INFO'
            EXPORTING
              NR_RANGE_NR              = 'DO'
              OBJECT                   = 'DPR_EXTID'
    *         SUBOBJECT                = ' '
    *         TOYEAR                   = '0000'
            IMPORTING
              INTERVAL                 = LV_INTERVAL
            EXCEPTIONS
              INTERVAL_NOT_FOUND       = 1
              OBJECT_NOT_FOUND         = 2
              OTHERS                   = 3.
          IF NOT SY-SUBRC IS INITIAL.
            RAISE EXCEPTION TYPE CX_DPR_FATAL_ERROR
              EXPORTING
                TEXTID = CX_DPR_FATAL_ERROR=>SC_INVALID_PARAMETERS.
          ENDIF.
    */    Strip off the year that has been appended to the object number
    */    by the default numbering services...
          write <ls_project_attrs>-project_id(20) to lv_number.
    */    Get the incremental number of the project from the number range...
          lv_number = lv_number - LV_INTERVAL-FROMNUMBER.
    */    Format the number according to customer specific requirements:
    */    In this example the number is PROJ-<inc num> where <inc num>
    */    is the incremental number of the project (i.e. for the 33rd project
    */    created, the <inc num> is 33).
          WRITE lv_number to lv_numtext no-zero.
          condense lv_numtext.
          CONCATENATE 'PROJ' lv_numtext INTO lv_numtext SEPARATED BY '-'.
          TRY.
              CALL METHOD LR_PROJECT->SET_PROJECT_ID
                EXPORTING
                  IV_PROJECT_ID              = lv_numtext.
          CATCH CX_DPR_OBJECT_UPDATE_ERROR .
              RETURN.
          ENDTRY.
    */ End of custom project number assignment.
        WHEN cl_dpr_co=>sc_ot_phase.
          ASSIGN cs_attributes TO <ls_phase_attrs>.
          lr_phase ?= ir_common.
    */ Beginning of custom phase number assignment.
    */ End of custom phase number assignment.
        WHEN cl_dpr_co=>sc_ot_approval.
          ASSIGN cs_attributes TO <ls_approval_attrs>.
          lr_approval ?= ir_common.
    */ Beginning of custom approval number assignment.
    */ End of custom approval number assignment.
        WHEN cl_dpr_co=>sc_ot_individual_approval.
          ASSIGN cs_attributes TO <ls_individual_approval_attrs>.
          lr_individual_approval ?= ir_common.
    */ Beginning of custom individual approval number assignment.
    */ End of custom individual approval number assignment.
        WHEN cl_dpr_co=>sc_ot_checklist.
          ASSIGN cs_attributes TO <ls_checklist_attrs>.
          lr_checklist ?= ir_common.
    */ Beginning of custom checklist number assignment.
    */ End of custom checklist number assignment.
        WHEN cl_dpr_co=>sc_ot_checklist_item.
          ASSIGN cs_attributes TO <ls_checklist_item_attrs>.
          lr_checklist_item ?= ir_common.
    */ Beginning of custom checklist item number assignment.
    */ End of custom checklist item number assignment.
        WHEN cl_dpr_co=>sc_ot_task.
          ASSIGN cs_attributes TO <ls_task_attrs>.
          lr_task ?= ir_common.
    */ Beginning of custom task number assignment.
    */ End of custom task number assignment.
      ENDCASE.
    ENDMETHOD.

  • How to change the default new project folder in Premiere Elements 13?

    I keep all my projects on a different drive than the default My Documents folder. How can I change the default setting so that Premiere Elements does not try to create new projects in the My Documents\Pemiere Elements\13.0 folder? In fact, I do not want that folder to be used for anything (including layouts and styles).

    steveb
    Short version....
    Referring to the 13.0 Folder in the Adobe Folder in documents, you wrote
    In fact, I do not want that folder to be used for anything (including layouts and styles). 
    I do not believe that is possible.
    For my best case scenario
    Set the Scratch disks, not to Same As Project, but set for Custom with the set being the save location that you set for the project file.
    Set the project save in, my preference, File Menu/Save As.
    You are going to end up automatically with a 13.0 Folder in the Libraries/Documents/Adobe/Premiere Elements/13.0 Folder every time you open a Premiere Elements project. No matter how many times you try to delete the 13.0 Folder. And that 13.0 Folder will contain a Layout Folder and, if you applied a Style in the project, a Styles Folder.
    Longer Version....
    There is no problem directing your project file to the save location of choice. You can do that two way
    1. After you open the project to the Expert workspace, go to File Menu/Save As to change the name of the project as well as the location for the save in order to avoid the defaults.
    2. You can also do that through File Menu/New/Project.
    That 13.0 Folder also gains its contents from the settings of the scratch discs in Edit Menu/Preferences/Scratch Disc - some examples preview files, disc encoding files, conformed audio files... Some Files/Folders are placed there automatically. So what to do to keep the Documents area clear of Premiere Elements files, project or otherwise after you have move all that you thought you could to a non Adobe default location? See above best case scenario.
    Miscellaneous
    1. If you set the save location of the project in either of the 2 ways, that setting will not hold from project to project. It will hold for that particular project.
    3. If you set the Scratch disks in Edit Menu/Preferences/Scratch Disks, those settings seem to hold from project to project as well as for in the particular project.
    Stevenb, please review and consider and verify. I have gone through several scenarios on what you would prefer. But, I do not see a way to make that happen with the programming that exists.
    ATR

  • How to keep filename in textfield when filter is changed in a filechooser

    Hi, guys,
    I met a problem to keep filename in textfield when filter is changed in a filechooser
    for example, a JFileChooser has two filters
    *.jpg
    *.png
    Before I open JFileChooser, I used setSelectedFile(File) to set "aaa.jpg" as default name in textfield.
    when I change the filter to "*.png, ", I want to change the text in textfield to "aaa.png", Actually, I used setSelectedFile(File), If there is an existed file named "aaa.png", this file will be selected on fileView, but the name will not be shown on the textfield. Anybody has ideas?
    Thanks in advanced.

    I really thank you for your answer, but it seems you misunderstand what I said because of my poor english..
    what I said is:
    after you open the filechooser, the filechooser has a combobox to choose file filter and a field to show filename.
    what I want is:
    when you open the filechooser, initial name in field is "test. jpg"
    change filter, "test.jpg" will be change to "test.gif" in the field.
    I don't want to close the filechooser.
    That's why I used a listener to listen JFileChooser.FILE_FILTER_CHANGED_PROPERTY event.
    and I modified your codes
    import java.awt.BorderLayout;
    import java.awt.GridLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.beans.PropertyChangeEvent;
    import java.beans.PropertyChangeListener;
    import java.io.File;
    import javax.swing.JButton;
    import javax.swing.JFileChooser;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.filechooser.FileFilter;
    class Testing extends JFrame {
         String defaultFile = "";
         JFileChooser fc = new JFileChooser(".");
         ExtensionFileFilter eff;
         public Testing() {
              setLocation(200, 300);
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              JButton btnShow = new JButton("Show Chooser");
              JPanel p = new JPanel(new GridLayout(1, 2));
              p.add(btnShow);
              getContentPane().add(p, BorderLayout.SOUTH);
              pack();
              fc.addPropertyChangeListener(new Listener(fc));
              fc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
              fc.setAcceptAllFileFilterUsed(false);
              fc.setFileFilter(new ExtensionFileFilter(".gif"));
              fc.addChoosableFileFilter(new ExtensionFileFilter(".jpg"));
              defaultFile = defaultFile.equals("") ? "Test.jpg" : "Test.gif";
              fc.setSelectedFile(new java.io.File(defaultFile));
              btnShow.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent ae) {
                        fc.showOpenDialog(Testing.this);
         public static void main(String[] args) {
              new Testing().setVisible(true);
    class ExtensionFileFilter extends FileFilter {
         String fileTypes = "";
         java.util.List extensions = new java.util.ArrayList();
         public ExtensionFileFilter() {
         public ExtensionFileFilter(String ft) {
              fileTypes = ft;
         public String getDescription() {
              return fileTypes;
         public boolean accept(File f) {
              if(f.isDirectory()) return true;
              if (f.getName().endsWith(fileTypes)) {
                   return true;
              return false;
    class Listener implements PropertyChangeListener {
        JFileChooser fChooser = null;
        Listener(JFileChooser fChooser) {
            this.fChooser = fChooser;
        public void propertyChange(PropertyChangeEvent evt) {
            if (evt.getPropertyName().equals(JFileChooser.FILE_FILTER_CHANGED_PROPERTY)) {
                 FileFilter fileFilter = (FileFilter) evt.getNewValue();
                if (fileFilter != null) {
                    String fileName = null;
                    if (fileFilter.getDescription().equals(".jpg")) {
                        fileName = "Test.jpg";
                    } else if (fileFilter.getDescription().equals(".gif")){
                         fileName = "Test.gif";
                    String newFileName = "C:\\" + fileName;
                    fChooser.setSelectedFile(new File(newFileName));
    }Thanks again.
    Message was edited by:
    JadeSword

  • What setting changes are to be made??

    I am adding some .c files to my MAC application(cocoa), I am getting a lot of errors while compiling those files.
    What setting changes are to be made before adding C files to MAC OS project???
    If so can anyone point out that...??
    1.     I am getting errors with the #include statements in my files...
    2.     expected '=', ',', ';', 'asm' or '__attribute__' before 'asn_DEF_Payload'
    How can I get around these list of errors??
    Thanks in advance.

    Sun Java Enterprise System Support Forum and the Directory Server's "Release Notes" &#91;See docs.sun.com&#93; is a good place to find this information. Also upgrade to the latest DS5.2 Patch 4.
    One probable cause could be that either the BindDN or the SearchBase used by your application no longer exists in the upgraded server's setup. Please check the access log on the Directory server to pinpoint the culprit. The corresponding entry will have "err=32".
    Examples:
    SRCH base="dc=abc,dc=example,dc=com" ....
    RESULT err=32 tag=101 nentries=0 etime=0
    &#91;Note: Tag 101 means the search base does not exist&#93;
    BIND dn="cn=user,dc=abc,dc=example,dc=com" ....
    RESULT err=32 tag=97 nentries=0 etime=0
    &#91;Note: Tag 97 means BindDN does not exist&#93;
    Based on your requirements, you will either have to add the missing entry or upgrade your applications' configuration to use an alternative entry.
    For more on Access Log contents see
    http://docs.sun.com/source/817-7616/fileref.html#wp20452

  • [svn:fx-trunk] 11193: fix packaged build file for textlayout to accommodate the recent changes made to that project

    Revision: 11193
    Author:   [email protected]
    Date:     2009-10-27 13:08:28 -0700 (Tue, 27 Oct 2009)
    Log Message:
    fix packaged build file for textlayout to accommodate the recent changes made to that project
    QE notes: no
    Doc notes:
    Bugs: sdk-23302
    Reviewer:
    Tests run: checkintests
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/sdk-23302
    Modified Paths:
        flex/sdk/trunk/frameworks/build_framework.xml

    There are two main annoying problems with Flash Builder and swc's:
    1.  Flash Builder doesn't reflect changes made to swc files
    Solution : First of all - keep your swc files inside your project folder, you can also disable global swc cache: change as3api.cpp code,refresh swc in flashBuilder bug!
    2. Flash Builder breakes content inside swc files (and also popular problem "TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::MovieClip@1f21adc1 to...")
    Solution : locate the project .actionScriptProperties file and set useFlashSDK=”false” :  Flash Builder 4.7 – useFlashSDK | In Flagrante Delicto!
    In this case you can also download latest Apache Flex SDK to target new Flash player versions: http://flex.apache.org/
    Hope this helps!
    P.

  • Does Adobe plan to submit changes to the WebKit project?

    Yes. Our goal is to become an active member of the WebKit community and submit fixes and changes to the WebKit project for consideration. Currently our changes are made available on the WebKit section of the Adobe Open Source website.

    Pretty sure that's just wishful thinking. Microsoft doesn't even trust Microsoft, so to speak. Ever turn User Account Controls to the highest setting and then run Windows Update? Windows tries to warn about updates from their own site, through their own updater (IE), which is the ONLY way to access or run the updates.
    Until Microsoft can ELIMINATE the possibility of bieng spoofed, and until we one day live in a virus free world, trust will always be an issue. Be it Adobe, or Roxio, or Mozilla, or....

  • CO27 user filter setting

    hi all.
    After we upgrade sap from 4.6 to 6.0. co27 user filter has many change. when execute co27 into picking screen in 4.6. user may set "user filter " and save it.
    but sap 6.0 hasn't "user filter" set and save function.
    it is only use "SE38" to change program " RCNBF0IM"
    to set user filter .
    please give any advise.
    thanks!
    james

    The previous experiments were performed with Oracle 10i. I just saw that in Oracle 11.1.0.7 there is this new feature: "USER_FILTER is now sensitive to FORMAT and CHARSET columns for better indexing performance.".
    This seems to be exactly what I was looking for.
    Regards
    Stephan

  • Updating filter setting in Hottinger HBM software CATMAN from inside LABVIEW

    I know how to update CATMAN by itself. Does anybody have an idea how to change filter setting on the fly from inside Labview without having to stop my application and opening CATMAN doing the update then starting Labview back up. 

    Hi Hobart,
    Could you please describe a bit more as to how you are accessing the instrument or if you're using any drivers from the Instrument Driver Network?
    Aashish M
    Applications Engineer
    National Instruments
    http://www.ni.com/support/

  • Battery , time , signal strength bar is not getting displayed in home screen , these will be displayed only when i click on any app. Can u let me know the setting change ?

    Battery , time , signal strength bar is not getting displayed in home screen , these will be displayed only when i click on any app. Can u let me know the setting change ?

    Did you check the Zoom setting?
    Have you tried a reset (reboot)? Hold HOME and SLEEP until an Apple logo appears.
    If it isn't Zoom and a reboot doesn't help try Settings/General/Reset - Reset all settings

  • How do I Find/Set/Change a Bluetooth passkey on a T61 laptop with the Lenovo US/Eng Vista OS image?

    I purchased a T61 two years ago. It came with the Lenovo Vista Ultimate OS, US/English.  The T61 has Bluetooth, which I never used until now.
    I try to pair a cell phone and a PDA (both Palm devices) with the T61, and the devices ask for the T61's Bluetooth Passkey. I don't know what the passkey value is, nor do I see anywhere to set, change or enter it.
    This is how I know the the Bluetooth device driver is working on the T61: 1- The BT icon shows in the taskbar, the BT controt panels open, and even in Control Panel > Hardware and Sound > Bluetooth Devices, the phone name shows up. And strangely enough, at the bottom of the control panel, when the phone is listed (is discoverable), it shows "Paired: Yes", "Authenticated: No", attached image shows these values.
    I'm stumped. Where do I lookup, set or change the T61's Bluetooth passkey?

    Unfortunately that is not working. I've tried 0000, 000000, 00000000, 1234, and 123456 as the keys.  No popups, no response whatsoever on the T61. 
    The devices seem to wait some timeout period and then a message "cannot connect to T61...". I don't have the exact message here in front of me, but can get it if need be.

  • Missing Functionality -where do I set a budget for a Project?

    Budgeting for Projects is non - existent
    Budget for Profit and Loss for a particular project , How is it done ?
    Does not work , No facility to put in Budget for a project ?
    The report I am trying to run is:
    REPORTS>FINANCIAL>BUDGET REPORTS>Profit and Loss Statement Budget Report.Then go to Expanded and choose a PROJECT, say MailOrder.
    The result is that it will show the MailOrder project for the ACTUAL but it will show the whole company Turnover against the BUDGET column.
    This is because there is no place to set a budget for MailOrder Project in the first place. So the question is where do I set a budget for a Project?
    1 Budget setup screen - this has no facility to setup a budget for a PROJECT
    2.Budget Profit and Loss - this has the facility to run a PROJECT budget but the figures for the Budget cannot be right because they were not setup in the first place.
    PS MailOrder project is just an example.
    Version: SAP BUSINESS ONE 2007 A Patch Level 41
    Description of requirements: As above
    (Valid as of: (Date that this legal requirement is applicable) N/A
    Business needs: Customer cannot set the budget for a project and this effects their accounting.
    Examples: (Please describe a typical example, how the functionality should work.)
    Current Workaround: None.
    Proposed solution: Create a Project and then be able to set a Budget for it
    Edited by: Darpal Thiarha on May 14, 2008 10:34 AM

    Hi Darpal/Kerstin
    Please ignore my previous replies because I have now worked out why this idea will not work:
    Kerstins' idea is based on setting up new Nominal Codes for every Project and for Every Nominal Code in the Profit and Loss structure. Apart from the fact that this will create a messy Nominal Structure with hundreds of Nominal Codes, the main issue here is the way the Cost Of Goods Sold is structured. The logic of our Nominal Structure for Sales and Cost of Goods is based on Item/Item Groups and the Nature of these Items. In our case we sell Skin Care products under 3 Brands. Say Brand A, B and C
    So Brand A is summarised into one item Group and the ITEM GROUP is coded to Sales Nominal 20000 and the Cost of this group is coded to Nominal 30000. In Kertins suggestion, I would need to raise a Nominal Code 20001 for say Project Mail Order and 30001 for the Cost of Goods for Mail Order but this the Mail Order project is selling ALL our brands (A,B,C) - so you can see the problem here. You cannot use Nominal Codes for two different purposes and make it work. So the problem here is that my BRAND A summary will contain a Nominal with a Project Mail Order, that has SALES of Brand A,B,C. The Net effect will be that we will not be able to summarise anything in SALES and Cost of SALES in a logical way (Neither by Brand or By Project) and the Nominal Structure will be a mess.
    My conclusion is that SAP b1 Sales and Cost of Goods section demands certain logic when building the Nominal Codes, and this is based on the NATURE OF THE STOCK ITEM and trying to superimpose the PROJECT issue into this, will never work. In my view, the PROJECT issue needs to be sorted without involving New Nominal codes and the starting point would be in sorting out the SALES and COST of SALES and the project Budget for this.
    Please let me know if you need further illustration of the problem.

  • I woke up this morning and my Bookmarks is working different.  Has a setting changed, or did Apple change it for me and how do I get it back?????????

    I woke up this morning and my bookmarks are functioning different, and the tool bar has changed.  Instead of opening the bookmarks in a page on Safari, I get a menu on the side of the page.  Then I have to go click on the bookmark icon again to get rid of the menu.  Has a setting changed or did Apple change it for me and how do I get it BAAAAAAACK????????????

    The first G4 models were basically a repackaged/upgraded G3 & came in 350 & 400MHz models. This design was called PCI version. The next G4 models were AGPs. This link http://www.everymac.com/systems/apple/powermac_g4/index-powermac-g4.html has the specs/pictures of all the G4 models.
    Power Mac G4: How to Differentiate Between Models
    http://docs.info.apple.com/article.html?artnum=58418
    Power Mac G4: How to Differentiate Between Models (Part 2)
    http://docs.info.apple.com/article.html?artnum=42739
    Using these links, you should be able to determine which model you have.
    Removing the battery causes all settings in the internal memory to be reset, just like resetting the PMU/CUDA. See Mac PRAM, NVRAM, CUDA/PMU & Battery Tutorial
     Cheers, Tom

Maybe you are looking for

  • Can't open iDVD with OS 10.5.6

    When I click on iDVD it says "you cannot use this version of the application iDVD with this version of Mac OS10". I have run software update.

  • Stop rolling the the paper out in dot matrix priner once the print is done

    Hi, I have used the below code to print a document and the printer used is dot matrix But,it rolls out the page once the print is done. I want to control the printer so that it stops rolling out the page once the print is done. Or set the print based

  • Viewing in landscape mode

    I am running FaceTime on a MacPro. Viewing seems to be locked in portrait mode. When I go to Video/Use Landscape (Command+R), it is grayed out. Do I have to be connected to someone for this to be active? I notice the Enter Full Screen option is graye

  • Macbook display malfunction

    Hello Late last week while merely surfing the web, I noticed some flickers on my macbook display. I had never seen those before. I've read about flickers on discussions here. Then over the weekend, I would start the computer only to have the display

  • Disable content and reports in DBI dashboards

    Hi, I have a requirement to disable some of the contents in DBI for HR. For example, I do not want to show the "Turnover by Top 10 countries" at all. It should not appear in any links as well. How do I achive this ? If I go to Daily Business Intellig