Extending HContainer

I've subclassed HContainer in order to provide a container with a background fill. If I add text components, it works well. But when I add a HStaticIcon component, doesn't show the component.
I can see the HStaticIcon component is added and the space for him is left, but it's not painted.
The code is like this:
For the container:
public class ColorPanel extends HContainer {
          public void paint(Graphics g) {          
          g.setColor(getBackground());
          g.fillRect(this.getBounds().x, this.getBounds().y, this.getSize().width, this.getSize().height);
          super.paint(g);          
}When I use it at Xlet, with more code about more components and Containers, and LayoutManagers managing it:
        ColorPanel info = new ColorPanel(0, 0, 420, 200);         
         info.setLayout(new FlowLayout(FlowLayout.LEFT, 0, 0));
         info.setBackground(Color.blue);
         Image cab1 = scene.getToolkit().getImage("img/rojo.gif");
         HStaticIcon ico1 = new HStaticIcon(cab1, 0, 0, 16, 16);
         ico1.setBordersEnabled(false);
        info.add(ico1);If I put on the HStaticIcon:
ico1.setBackgroundMode(HVisible.BACKGROUND_FILL);I can see the rectangle of the image coloured, so I suppose the image is here, but doesn't render.
Any help will be appreciated.
Greetings,
Eva.

Now the image it's rendering ok.
The image it's smaller than the container, so I expected to see the background color I configured to the container, but what I see is a white background.
Any ideas?
Greetings,
Eva.

Similar Messages

  • HTextButton: Different behaviour in HScene and HContainer.

    Hi,
    i'm trying to use the HTextButton object in a HContainer. But when i'm calling the requestFocus() method of the HTextButton object nothing happens. When i try the same code from the HContainer directly in the HScene everything works fine. I though the HContainer object is used for grouping graphical elements together for easier handling, but i get the strange feeling something is going wrong...
    Can someone help me with this?
    Here is the code i tryed:
    import java.awt.Rectangle;
    import org.havi.ui.HContainer;
    import org.havi.ui.HTextButton;
    public class Quiz extends HContainer {
        HTextButton button1, button2;
        public Quiz(Rectangle screenSize) {
         this.setBounds(screenSize);
         this.setVisible(true);
         button1 = new HTextButton("XXXXXXXXXXXXXXXX", 400, 100, 100, 100);
         button2 = new HTextButton("XXXXXXXXXXXXXXXX", 400, 300, 100, 100);
         button1.setFocusTraversal(button2, button2, button2, button2);
         button2.setFocusTraversal(button1, button1, button1, button1);
         this.add(button1);
         this.add(button2);
         button1.requestFocus();
        }In the Xlet class i'm doing:
    import java.awt.Rectangle;
    import javax.tv.xlet.Xlet;
    import javax.tv.xlet.XletContext;
    import javax.tv.xlet.XletStateChangeException;
    import org.dvb.dsmcc.InvalidPathNameException;
    import org.havi.ui.HScene;
    import org.havi.ui.HSceneFactory;
    import org.havi.ui.HSceneTemplate;
    import org.havi.ui.HTextButton;
    public class XletMain implements Xlet {
        private XletContext xletContext;
        private HScene theScene;
        static EPGBackground background = null;
        static Quiz quiz;
        public void initXlet(XletContext xletContext) throws XletStateChangeException {
         System.out.println("[XletMain] Initializing Xlet.");
         this.xletContext = xletContext;
         // Get the HScene.
         HSceneFactory factory = HSceneFactory.getInstance();
         HSceneTemplate hSceneTemplate = new HSceneTemplate();
         if ((theScene = factory.getBestScene(hSceneTemplate)) != null) {
             System.out.println("[Xletmain] HScene created (" + theScene.getBounds().width + "x" +
                          theScene.getBounds().height + ").");
             theScene.setLayout(null);
             background = new EPGBackground(theScene.getBounds());
         } else {
             xletContext.notifyDestroyed();
         quiz = new Quiz(theScene.getBounds());         
        public void startXlet() throws XletStateChangeException {
         System.out.println("[XletMain] Starting Xlet.");
          THIS WORKED FINE:
         HTextButton button1 = new HTextButton("XXXXXXXXXXXXXXXX", 400, 100, 100, 100);
         HTextButton button2 = new HTextButton("XXXXXXXXXXXXXXXX", 400, 300, 100, 100);
         button1.setFocusTraversal(button2, button2, button2, button2);
         button2.setFocusTraversal(button1, button1, button1, button1);
         theScene.add(button1);
         theScene.add(button2);
         button1.requestFocus();
         theScene.add(quiz);
         theScene.setVisible(true);
        public void pauseXlet() {
         System.out.println("[XletMain] Pause Xlet.");
         theScene.setVisible(false);
        public void destroyXlet(boolean unconditional) throws XletStateChangeException {
         System.out.println("[XletMain] Destroying Xlet.");
         xletContext.notifyDestroyed();

    if you have lone a component, not added to any container and not visible
    on the screen and you call requestFocus(), it sure won't get the focus.
    It will get the focus if it is inserted into a top-level container, or
    is one of the leaf of an awt tree that has a top-level container
    root, if ya' kno' w'at I meen.....
    so just try:
    public class Quiz extends HContainer { 
      HTextButton button1, button2;   
    public Quiz(Rectangle screenSize) {
         this.setBounds(screenSize);
         this.setVisible(true);
         button1 = new HTextButton("XXXXXXXXXXXXXXXX", 400, 100, 100,100);
         button2 = new HTextButton("XXXXXXXXXXXXXXXX", 400, 300, 100, 100);
         button1.setFocusTraversal(button2, button2, button2, button2);
    button2.setFocusTraversal(button1, button1, button1, button1);
         this.add(button1);     
        this.add(button2);     
    public void requestFocus(){
       button1.requestFocus();  
    } then in your Xlet do :
    theScene.add(quiz);     
    quiz.requestFocus();
    theScene.setVisible(true);hope this help...
    it is a realy simple problem... call to requestFocus() will have impact on a component that is part of the component tree.

  • How to make a Selection Circular Bar Menu  with HAVi?

    hi! I'm Suse...I'm trying to make a menu selection circular, with:
    A static center focus --> F
    Horizontal Bar Menu --> H (Categories)
    Vertical Bar Menu --> V (Sub Categories)
    ......*V* Graphic
    ......*V*
    ......*V*
    HH  F HHHH
    ......*V*
    ......*V*
    When pressing Right Arrow... the F focus change to next(right) Item(*H*) and pressing Left Arrow change to the back(left) item(*H*)... where de F (focus) is static... if it pressing UP or Down Arrow is the same mechanism...in the Vertical Bar (*V*)....like the up Gaphic...
    I started to make with HAVi but I don't know which objects and methods I could use...
    I just use a Vector, HContainer, HListElement and HListGroup....
    If somebody wanna share some notes or tips ... thank you!
    import java.awt.Color;
    import java.awt.Font;
    import java.awt.Rectangle;
    import java.awt.event.ActionEvent;
    import java.awt.event.FocusEvent;
    import java.util.Vector;
    import org.havi.ui.HContainer;
    import org.havi.ui.HListElement;
    import org.havi.ui.HListGroup;
    import org.havi.ui.HScene;
    import org.havi.ui.HSceneFactory;
    import org.havi.ui.HSceneTemplate;
    import org.havi.ui.event.HActionListener;
    import org.havi.ui.event.HFocusListener;
    import org.havi.ui.event.HItemEvent;
    import org.havi.ui.event.HItemListener;
    public class HListGroupMenu extends HContainer implements HActionListener, HItemListener, HFocusListener{
         private static final long serialVersionUID = 1L;
         private static final Rectangle     SCREEN_BOUNDS = new Rectangle(0, 0, 640, 480);
         private static final Rectangle     LIST_GROUP_BOUNDS = new Rectangle(50, 105, 150, 169);
         private static final Color           LIST_GROUP_FOREGROUND = new Color(240, 240, 240); // for text and frame
         private static final Color           LIST_GROUP_BACKGROUND = new Color(78, 90, 20); // for text and frame     
         private static final Font           LIST_GROUP_FONT = new Font("tiresias", Font.BOLD, 14);
         private HScene                          m_scene; 
         private HListGroup                    m_listGroup;
         // list of text string to hold the result of ListGroup selection     
         private Vector     m_textList = new Vector();
         private static final String          LIST_GROUP_ITEMS[][] = {
              {"One", "Two","Three", "Four",     "Five",     "Six", "Seven "}
          * called from Xlet.HListGroupMenu() ..........Instance
    *     public HListGroupMenu()*
    *          m_scene = HSceneFactory.getInstance().getBestScene(new HSceneTemplate());*
    *          m_scene.add(this);            *
    *          setBounds(SCREEN_BOUNDS);     *
    *//           Create List group*
    *          m_listGroup = new HListGroup();*
    *          m_listGroup.setBounds(LIST_GROUP_BOUNDS);*
    *          m_listGroup.setForeground(LIST_GROUP_FOREGROUND);*
    *          m_listGroup.setBackground(LIST_GROUP_BACKGROUND);*
    *          m_listGroup.setFont(LIST_GROUP_FONT);*
    *          m_listGroup.addItemListener(this);*
    *          m_listGroup.addHFocusListener(this);*
    *          m_listGroup.getHorizontalAlignment();*
    *          m_listGroup.setName("List Group");*
    *          // Add items to the List group*
    *          for (int i=0; i<LIST_GROUP_ITEMS.length; ++i){*
    *               for (int j=0; j<LIST_GROUP_ITEMS.length; ++j){*
    *               m_listGroup.addItem(new HListElement(LIST_GROUP_ITEMS[i][j]), j);*
    *          add( m_listGroup );*
         * called from Xlet.startXlet() ..... Instance
    *     public void start()*
    *          m_scene.show();*
    *          m_listGroup.requestFocus();*
         * called from Xlet.pauseXlet() ...Instance
    *     public void pause()*
    *          m_scene.setVisible(false);*
         * called from Xlet.destroyXlet() ..........Instance
         public void destroy()
              m_listGroup.removeItemListener(this);
              m_listGroup.removeHFocusListener(this);
              m_scene.setVisible(false);
              m_scene.removeAll();
              HSceneFactory.getInstance().dispose(m_scene);
              m_scene = null;
         public void actionPerformed(ActionEvent e) {
              // TODO Auto-generated method stub
         public void selectionChanged(HItemEvent event) {
              // TODO Auto-generated method stub
              HListElement item = (HListElement) event.getItem();     
              if (item != null)
                   if (event.getID() == HItemEvent.ITEM_SELECTED )
                        // an item was selected          & add it to the list
                        m_textList.addElement(new String(item.getLabel()));
                   else if (event.getID() == HItemEvent.ITEM_CLEARED)
                        // an item was un-selected & remove it from the list
                        m_textList.removeElement(item.getLabel());     
         public void currentItemChanged(HItemEvent e) {
         public void focusGained(FocusEvent e) {
         public void focusLost(FocusEvent e) {
    }Edited by: sesu on Jan 20, 2009 4:13 PM
    Edited by: sesu on Jan 20, 2009 4:15 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    I'm not sure if I understand you. You want to make a menu that shows some movement? I think you mean static center focus is the place where the focused button will stay, and those who are focused move towards that point.
    If is that, it can get a little more complicated that it seems. You want it more graphically or just a HListGroup that changes its options by pressing right and left buttons is enough?

  • How to make a menu for MHP

    Hi, im trying to make a menu for mhp app, and i dont know what its the best 'tactic' for this.
    My idea is to make own class like this:
    class Menu extends HContainer
         private Font fuente;
         private Color colorLetra, colorFondoTexto, colorFondo;
         private HTextButton[] boton;
         int x, y, ancho, largo;
         // numVisible es el n�mero de valores que queremos se puedan ver en el men� al mismo tiempo
         // x, y es para que nos indique el punto inicial donde queremos que aparezca el men�
         // ancho para saber el ancho del menu
         // largo para saber el largo que debe tener - debe relacionarse con el n�mero de elementos a mostrar en pantalla
         public Menu(String[][] matriz, int x, int y, int ancho, int largo, int tamFuente)
              this.setBounds(x,y,ancho, largo);
              this.setVisible(true);
              colorLetra = Color.white;
              colorFondoTexto = Color.green;
              System.out.println("longitud de la matriz:"+ matriz.length);
              fuente = new Font("Tiresias", 1, tamFuente);
              int esp = 0;
              boton = new HTextButton[matriz.length];
              System.out.println("A ver si veo el elemento de la matriz: "+ matriz[5][1]);
              for (int i = 0; (i < matriz.length) ; i++){
                   System.out.println("for " +i);
                   // A ARREGLAR
                   boton[i] = new HTextButton(matriz[1], 0, esp, 314, 20, fuente, colorLetra, colorFondo, new HDefaultTextLayoutManager());
                   esp = esp + 20;
                   if ((i != 0) & (i != matriz.length-1)){
                        boton[i].setFocusTraversal(boton[i-1], boton[i+1], boton[i], boton[i]);
                   else if (i == 0)
                        boton[i].setFocusTraversal(boton[i], boton[i+1], boton[i], boton[i]);
                   else boton[i].setFocusTraversal(boton[i-1], boton[i], boton[i], boton[i]);
                   this.add(boton[i]);
         } // fin constructor
    its a good idea? or there are better. Its first time i try make gui menu, and i dont know how to make it. I dont find information at internet, and ther isnt in book 'Interactive TV standards'. If you know some place with good tutorial (or book), please tell me!
    Thanks all
    Sorry my english

    This is all way beyond me, but couldn't you just make an HTML page that linked to the video files on your server and use a browser?
    MtD

  • How do i open a web page with VeriSign Class 3 Extended Validation SSL SGC SS CA certfificate i can't open web pages with this, how do i open a web page with VeriSign Class 3 Extended Validation SSL SGC CA certfificate i can't open web pages with this

    how do i open a web page with VeriSign Class 3 Extended Validation SSL SGC SS CA ?

    Hi
    I am not suprised no one answered your questions, there are simply to many of them. Can I suggest you read the faq on 'how to get help quickly at - http://forums.adobe.com/thread/470404.
    Especially the section Don't which says -
    DON'T
    Don't post a series of questions in  a single post. Splitting them into separate threads increases your  chances of a quick answer.
    PZ
    www.pziecina.com

  • SSO and Extended notifications

    Hi Friends,
      We are using extended notifications to send work item as attachment(SAP GUI shortcut) to outlook and it is working fine. But the shortcut attachments are not working in case the user has an "SSO" enabled for him, it is asking for a logon password . We are using SNC product for SSO. Please let me know if it is possible to have SSO for SAP shortcuts so that the user can open the work item attachment without entering the password
    Regards
    sapient

    Hello Sapient,
    If you want to be able to logon directly via the shortcut without entering user/password then you need to use SSO. It seems there is some issue with the user SSO. Do all users have this issue or just some?
    I would also check the users SAPGUI release and patch level. Can you compare it to a user who does not have this issue. mAybe apply the latest SAPGUI patch and test again.
    Maybe note 1257108 can point you in the right direction.
    Regards,
    Eddie

  • Airport Express extends 5 Ghz and 2.4 Ghz or just one at a time?

    I recently switched my dual band Time Capsule to use different names for the 5 Ghz and 2.4 Ghz networks.
    Will the Airport Express extend both or just one at a time, if so, which one will it extend?
    I have two Airport Express modules, bought a long time apart, is there any difference in functionality and how do I tell them apart if this is the case?
    All are running the most recent firmware version.

    Welcome to the discussion area, Mike!
    Will the Airport Express extend both or just one at a time, if so, which one will it extend?
    The AirPort Express is a single band device, so it can extend either the 2.4 GHz or 5 GHz band, +but not both at the same time+. Since you have different names for the 5 GHz and 2.4 GHz bands, the Express will extend the 2.4 GHz band by default. Using AirPort Utility, the setup application for the AirPorts, it is possible to configure the AirPort Express to extend either band.
    If you are perhaps thinking of extending the 5 GHz band, this can be a bit tricky because 5 GHZ signals do not travel effectively over distance or penetrate obstructions as well as 2.4 GHz signals. You almost have to have a line-of-sight relationship between the Time Capsule and the AirPort Express to be able to extend the 5 GHz band.
    I have two Airport Express modules, bought a long time apart, is there any difference in functionality and how do I tell them apart if this is the case?
    Look on the side of the AirPort Express for the model number in the small print. You'll need Model No A 1264 to be able to "extend". If you have the older Model No A 1084, that version will not be able to "extend" a wireless network, but you could use it to "join" the wireless network and stream AirTunes to the device.
    All are running the most recent firmware version.
    That would be 7.5.2. If you have the older version of the AirPort Express, the latest firmware version for that device would be 6.3.
    Message was edited by: Bob Timmons

  • Error Message on a Extended Fiori application

    I'm currently trying to Extend and modify a SAP Fiori application
    The SAP Standard application is installed and working successfully in our system at the moment.
    When i'm trying to launch our extended Z Application i get the following error message
    Failed to resolve navigation target: #SAP_HCM_LVExtension-View - Error (500, Internal Server Error) in OData response for GET "/sap/opu/odata/UI2/INTEROP/ResolveLink?linkId='SAP_HCM_LVExtension-View'&shellType='FLP'&formFactor='desktop'": HTTP request failed
    Details: Launchpad ZHCM_APP / TRANSACTIONAL / SAP_HCM_LVExtension does not exist.
    In LPD cust we have the link text of SAP_HCM_LVExtension
    An Application Alias of SAP_HCM_LVExtension
    Any help would be appreciated !
    Cheers
    James

    Having the same issue, did you have any luck solving this? 

  • AirPort Extreme extends my network and has worked well for three months. Now it can no longer extend the network and flashes Amber. I have restored to factory settings moved it closer to time capsule and rebooted the system without luck

    i have a blinking Amber on my extreme now and it cannot extend the network.  It was working fine and nothing has changed. I have restored to factory settings moved it to another room and rebooted the system without luck. Any suggestions

    What OS are you running?
    Please give me a screenshot of the current AE setup..
    I strongly recommend if you have issues.. take control of all the variables. Apple routers have too much auto..
    Here is a list that I use for setups when using Yosemite.. but it relates to any OS.
    You will need to factory reset again to get going.
    Factory reset universal
    Power off the AE.. ie pull the power cord or power off at the wall.. wait 10sec.. hold in the reset button.. be gentle.. power on again still holding in reset.. and keep holding it in for another 10sec. You may need some help as it is hard to both hold in reset and apply power. It will show success by rapidly blinking the front led. Release the reset.. and wait a couple of min for the AE to reset and come back with factory settings. If the front LED doesn’t blink rapidly you missed it and simply try again. The reset is fairly fragile in these.. press it so you feel it just click and no more.. I have seen people bend the lever or even break it. I use a toothpick as tool.
    Then redo the setup from the computer with Yosemite or whatever you are using.
    1. Use very short names.. NOT APPLE RECOMMENDED names. No spaces and pure alphanumerics.
    eg AEgen5 for basestation.
    Use AE24ghz and AE5ghz for wireless on each band, with fixed channels as this also seems to help stop the nonsense.
    2. Use all passwords that also comply but can be a bit longer. ie 8-20 characters mixed case and numbers.. no non-alphanumerics.
    3. Ensure the AE always takes the same IP address.. this is not a problem for router but if the AE is bridged you can have trouble.. Try using the static IP method or control it via the main router dhcp reservations.
    4. Check your share name on the computer/s is not changing.. make sure it also complies with the above.. short no spaces and pure alphanumeric..
    5. Make sure IPv6 is set to link-local only in the computer. For example wireless open the network preferences, wireless and advanced / TCP/IP.. and fix the IPv6. to link-local only.
    6. Set up the extend to the Express using 2.4ghz and then see how good or bad the connection is.. this is better in the old v5 utility but if you hover your mouse over where it shows connection an extra chunk of info comes up.
    I have specifically used 5ghz to make the extend.. because by testing it works better.. but do not be fooled.. this good connection is poor.. the RSSI.. which is difference signal .. at -79dbm is down the bottom of the stable.. and it drops out on a daily basis.. you want to see that signal around -60dbm at min.
    There is a lot more jiggery pokery you can try but the above is a good start.. if you find it still unreliable.. don't be surprised.

  • I can no longer use 3D commands in Photoshop CS6 Extended

    I have Photoshop CS6 Extended (Ver 13.0.1x64). My desktop is Windows 7 64 Home premium; and Video card is: AMD Radeon HD 5570. The drivers and operating system is updated.
    I have been using simple 3D functions like "New 3D extrusion from..." from time to time without any problems until recently. For unknown reasons now when I try to invoke any 3D command, I get the following message: " Could not complete the "New 3D extrusion from selected layer command because of a program error." This ,message gets repeated for any 3D command.
    I checked out 3D functionality in Photoshop CS6 32 bit; and Photoshop CS5.5 Extended. Same problem. However, I can access and use all 3D functions in Illustrator CS6. Clearly, therefore, the video card is not the problem. It looks like one of the recent software updates from Adobe must have caused this problem.
    Reproduced below  are details of my system:
    Please help!
    Priyaranjan Desai
    Adobe Photoshop Version: 13.0.1 (13.0.1.3 20131024.r.34 2013/10/24:21:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:7, Stepping:10 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1
    Physical processor count: 4
    Processor speed: 2660 MHz
    Built-in memory: 8191 MB
    Free memory: 2569 MB
    Memory available to Photoshop: 7234 MB
    Memory used by Photoshop: 69 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Normal
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: AMD Radeon HD 5570
    Display: 2
    Display Bounds:=  top: 0, left: 2560, bottom: 1200, right: 4480
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1440, right: 2560
    Video Card Number: 1
    Video Card: AMD Radeon HD 5570
    OpenCL Version:
    Driver Version: 14.100.0.0
    Driver Date: 20140417000000.000000-000
    Video Card Driver: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Video Mode: 2560 x 1440 x 4294967296 colors
    Video Card Caption: AMD Radeon HD 5570
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 16384
    Serial number: 92278705978377249761
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\Piyush\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 686.9G, 231.5G free
      L:\, 2.73T, 2.18T free
      S:\, 2.73T, 904.6G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112 
       ACE.dll   ACE 2012/06/05-15:16:32   66.507768   66.507768
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0 
       AdobeOwl.dll   Adobe Owl 2012/06/26-12:17:19   4.0.95   66.510504
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654 
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0 
       AGM.dll   AGM 2012/06/05-15:16:32   66.507768   66.507768
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56 
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/06/05-15:16:32   66.507768   66.507768
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/06/05-15:16:32   66.507768   66.507768
       BIBUtils.dll   BIBUtils 2012/06/05-15:16:32   66.507768   66.507768
       boost_date_time.dll   DVA Product   6.0.0 
       boost_signals.dll   DVA Product   6.0.0 
       boost_system.dll   DVA Product   6.0.0 
       boost_threads.dll   DVA Product   6.0.0 
       cg.dll   NVIDIA Cg Runtime   3.0.00007 
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007 
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/06/05-15:16:32   66.507768   66.507768
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0 
       dvacore.dll   DVA Product   6.0.0 
       dvamarshal.dll   DVA Product   6.0.0 
       dvamediatypes.dll   DVA Product   6.0.0 
       dvaplayer.dll   DVA Product   6.0.0 
       dvatransport.dll   DVA Product   6.0.0 
       dvaunittesting.dll   DVA Product   6.0.0 
       dynamiclink.dll   DVA Product   6.0.0 
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615 
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615 
       icudt42.dll   International Components for Unicode   4, 2, 0, 0 
       icuin42.dll   International Components for Unicode   4, 2, 0, 0 
       icuuc42.dll   International Components for Unicode   4, 2, 0, 0 
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A) 
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0 
       LogSession.dll   LogSession   2.1.2.1640 
       mediacoreif.dll   DVA Product   6.0.0 
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195 
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1 
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1 
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195 
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1 
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1 
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195 
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1 
       ONCore7.dll   ONCore   7.0.0.0 
       ONCore8.dll   ONCore   7.0.0.0 
       ONCoreFoundation7.dll   ONCoreFoundation7   7, 0, 0, 0 
       ONCoreFoundation8.dll   ONCoreFoundation7   7, 0, 0, 0 
       ONDocument7.dll   ONDocument   7.0.0.0 
       ONDocument8.dll   ONDocument   7.0.0.0 
       onOneToolbox2.dll   onOne Toolbox2 Dynamic Link Library   2.2.0 
       OnOneWidgets.dll    OnOneWidgets dll   2.5 
       ONProxySupport7.dll   ONProxySupport   1.0.0.0 
       ONProxySupport8.dll   ONProxySupport   1.0.0.0 
       pdfsettings.dll   Adobe PDFSettings   1.04 
       Photoshop.dll   Adobe Photoshop CS6   CS6 
       Plugin.dll   Adobe Photoshop CS6   CS6 
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383 
       PSArt.dll   Adobe Photoshop CS6   CS6 
       PSViews.dll   Adobe Photoshop CS6   CS6 
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406 
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406 
       TfFontMgr.dll   FontMgr   9.3.0.113 
       TfKernel.dll   Kernel   9.3.0.113 
       TFKGEOM.dll   Kernel Geom   9.3.0.113 
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113 
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113 
    Required plug-ins:
       3D Studio 13.0.1 (13.0.1.3 x001)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0.1 (13.0.1.3 x001)
       Bas Relief 13.0
       BMP 13.0
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0.1 (13.0.1.3 x001)
       Clouds 13.0.1 (13.0.1.3 x001)
       Collada 13.0.1 (13.0.1.3 x001)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0.1 (13.0.1.3 x001)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.0.1 (13.0.1.3 x001)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0.1 (13.0.1.3 x001)
       Embed Watermark 4.0
       Entropy 13.0.1 (13.0.1.3 x001)
       Extrude 13.0
       FastCore Routines 13.0.1 (13.0.1.3 x001)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.0.1 (13.0.1.3 x001)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.0.1 (13.0.1.3 x001)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       Histogram 2.1.3
       HistogramCurves 2.1.3
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.0.1 (13.0.1.3 x001)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0.1 (13.0.1.3 x001)
       Maximum 13.0.1 (13.0.1.3 x001)
       Mean 13.0.1 (13.0.1.3 x001)
       Measurement Core 13.0.1 (13.0.1.3 x001)
       Median 13.0.1 (13.0.1.3 x001)
       Mezzotint 13.0
       Minimum 13.0.1 (13.0.1.3 x001)
       MMXCore Routines 13.0.1 (13.0.1.3 x001)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0.1 (13.0.1.3 x001)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0.1 (13.0.1.3 x001)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0.1 (13.0.1.3 x001)
       Photocopy 13.0
       PhotoKit 1, 2, 11, 0
       PhotoKit Capture Sharpener 1, 2, 11, 0
       PhotoKit Capture Sharpener Expert 1, 2, 11, 0
       PhotoKit Color 2 2.1.3
       PhotoKit Creative Sharpener 1, 2, 11, 0
       PhotoKit Output Sharpener 1, 2, 11, 0
       PhotoKit Preview Helper 2.1.3
       Photoshop 3D Engine 13.0.1 (13.0.1.3 x001)
       Picture Package Filter 13.0.1 (13.0.1.3 x001)
       Pinch 13.0
       Pixar 13.0.1 (13.0.1.3 x001)
       PixelGenius Toolbox 2.1.3
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0.1 (13.0.1.3 x001)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0.1 (13.0.1.3 x001)
       Range 13.0.1 (13.0.1.3 x001)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0.1
       Shear 13.0
       Skewness 13.0.1 (13.0.1.3 x001)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0.1 (13.0.1.3 x001)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.0.1 (13.0.1.3 x001)
       Sumi-e 13.0
       Summation 13.0.1 (13.0.1.3 x001)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Topaz Star Effects 10.0
       Torn Edges 13.0
       Twirl 13.0
       U3D 13.0.1 (13.0.1.3 x001)
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.0.1 (13.0.1.3 x001)
       Variations 13.0.1 (13.0.1.3 x001)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.0.1 (13.0.1.3 x001)
       WIA Support 13.0.1 (13.0.1.3 x001)
       Wind 13.0
       Wireless Bitmap 13.0.1 (13.0.1.3 x001)
       ZigZag 13.0
    Optional and third party plug-ins:
       Alias PIX 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Alien Skin Autolayer 3 3.0.0 20463 2013-05-30 12:54
       Alien Skin Blow Up 3 3.0.0
       Alien Skin Exposure 5 Autolayer 5.0.0
       Alien Skin Exposure 6 Autolayer 6.0.0
       Alien Skin Eye Candy 7 Autolayer 7.0.0
       Alien Skin Snap Art 4 Autolayer 4.0.0
       Animal Fur 6.1.1
       BackgroundFilter NO VERSION
       Backlight 6.1.1
       Bevel 6.1.1
       Blow Up 3.0.0
       Bokeh 2.0.1
       Brick Wall 6.1.1
       Brushed Metal 6.1.1
       Camera Raw 8.6
       Camera Raw Filter 8.6
       Chrome 6.1.1
       Color Efex Pro 4 4,05
       Color Efex Pro 4 4,05
       Corona 6.1.1
       Dfine 2.0 NO VERSION
       Diamond Plate 6.1.1
       Drip 6.1.1
       DxO FilmPack 3 NO VERSION
       ElectricImage 13.0
       Exposure 5 5.0.0
       Exposure 6 6.0.0
       Extrude 6.1.1
       Eye Candy 7 7.0.0
       FineStructuresFilter NO VERSION
       Fire 6.1.1
       Fisheye-Hemi 1 (Circle) [x64] v1.2.5 1.2.5.0
       Fisheye-Hemi 1 (Circle) [x64] v1.2.5 1.2.5.0
       Fisheye-Hemi 2 (Full Frame) [x64] v1.2.5 1.2.5.0
       Fisheye-Hemi 2 (Full Frame) [x64] v1.2.5 1.2.5.0
       Fisheye-Hemi 3 (Cropped) [x64] v1.2.5 1.2.5.0
       Fisheye-Hemi 3 (Cropped) [x64] v1.2.5 1.2.5.0
       Glass 6.1.1
       Gradient Glow 6.1.1
       HDR Efex Pro 2 2,03
       HotPixelsFilter NO VERSION
       HSB/HSL 13.0
       Icicles 6.1.1
       Imagenomic Plug-in Console 1, 2, 0, 0
       Lighting Effects Classic 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Marble 6.1.1
       Merge to HDR Efex Pro 2 2,03
       Motion Trail 6.1.1
       Nik Selective Tool 2.1.4.20903
       Noiseware 2.3.0.9
       Perfect Batch 8 8.5.1
       Perfect BW 8 8.5.1
       Perfect BW 8 Filter 8.5.1
       Perfect BW 8 Smart Filter 8.5.1
       Perfect Effects 4 4.0
       Perfect Effects 4 Filter 4.0
       Perfect Effects 4 Smart Filter 4.0
       Perfect Effects 8 8.5.1
       Perfect Effects 8 Filter 8.5.1
       Perfect Effects 8 Smart Filter 8.5.1
       Perfect Enhance 8 8.5.1
       Perfect Enhance 8 Filter 8.5.1
       Perfect Enhance 8 Smart Filter 8.5.1
       Perfect Mask 8 8.5.1
       Perfect Mask 8 Filter 8.5.1
       Perfect Mask 8 Smart Filter 8.5.1
       Perfect Portrait 8 8.5.1
       Perfect Portrait 8 Filter 8.5.1
       Perfect Portrait 8 Smart Filter 8.5.1
       Perfect Resize 8 8.5.1
       Perfect Resize 8 Engine Automation 8.5.1
       Perfect Resize 8 Engine Filter 8.5.1
       Perfect Resize 8 Filter 8.5.1
       Perspective Shadow 6.1.1
       PhotoFrame 4.6 Free 4.6.5
       PhotoFrame 4.6 Free Batch 4.6.5
       PhotoFrame 4.6 Free Hidden 4.6.5
       Plug-in on new layer 2, 0, 4, 0
       Portrait Professional 1, 4, 1, 0
       Portrait+ 1.5.1.149
       Portraiture 2.3.0.8
       RealGrain 1.1.0.3
       Reptile Skin 6.1.1
       Ripples 6.1.1
       Rust 6.1.1
       SGI RGB 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       ShadowsFilter NO VERSION
       Sharpener Pro 3.0: (1) RAW Presharpener 3.0.10.20903
       Sharpener Pro 3.0: (2) Output Sharpener 3.0.10.20903
       Silver Efex Pro 2 2,006
       Silver Efex Pro 2 2,006
       SkinFilter NO VERSION
       SkyFilter NO VERSION
       Smoke 6.1.1
       Snap Art 4 4.0.0
       Snow Drift 6.1.1
       SoftImage 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Squint 6.1.1
       Stone Wall 6.1.1
       StrongNoiseFilter NO VERSION
       Super Star 6.1.1
       Swirl 6.1.1
       Texture Noise 6.1.1
       Topaz Adjust 4 10.0
       Topaz Adjust 5 10.0
       Topaz BW Effects 10.0
       Topaz Clarity 10.0
       Topaz Clean 3 10.0
       Topaz DeJpeg 4 10.0
       Topaz DeNoise 5 10.0
       Topaz Detail 2 10.0
       Topaz Detail 3 10.0
       Topaz InFocus 10.0
       Topaz Lens Effects 10.0
       Topaz photoFXlab 10.0
       Topaz ReMask 3 10.0
       Topaz Simplify 3 10.0
       Topaz Simplify 4 10.0
       TopazRemaskAutomate NO VERSION
       Viveza 2 2.0.9.20903
       Water Drops 6.1.1
       Wavefront RLA 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Weave 6.1.1
       Wood 6.1.1
    Plug-ins that failed to load: NONE
    Flash:
       Paper Texture
       onOne
       Gallery Wrapper
       Mini Bridge
       GuideGuide
       Kuler
    Installed TWAIN devices: NONE

    To use "dictation" as it is called, there are two requirements:
    1.  Siri must be turned on (Settings > General > Siri)
    2.  You must be connected to the internet.

  • Printing problem with Photoshop CS 6 extended and HP printer

    Hi all, long time browser, first time poster.
    This is a weird issue, it should be noted from the first that I only have weird computer issues. I work at a technical High School where we have the whole Adobe CS6 Extended suite installed. We are running it under a fully patched version of Windows 7 and all the CS6 updates have been applied on 25 machines that all have the same issue. The problem is that when the students go to print to our HP Color Laser jet CP6015DN, the job can been seen loading into the queue, it races up to about 45MB, then sort of strolls to load the rest of the document, usually about 59 to 75 MB's in size. Then I watch the message go to processing, the front panel of the printer says processing, then the print job disappears from the printer queue and the printer and there is no print out. I printed out the usage job log and it shows none of the failed attempts to print and I check the event log page which does not show the errors either.
    Looks like a bad printer driver, right? So I download the new HP Universal printer driver, I normally do not do the Universal driver route as so many of my older printers have problems with it, but the CP6015DN seems to have trouble accessing the extended tray 5 with the specific drivers, but I have the same printing issue with the new Universal driver and the PS driver. So I wander through the HP manual and it suggests using profiles to print to the printer and move the color handling from Printer Manages Colors to Photoshop manages colors and I track down the ICC profiles for the printer on the HP site as the link in the book is dead, so try the CP6015srgb_d50.icc, CP6015_cmyk_d50.icc and CP6015.icc, I try all of these profiles with the newest PS printer driver and the same error, goes to the printer and into the bit bucket. Still no printout or error message.
    Strange thing is that if I do a test print, it prints fine, if I open a tif file in Photoshop, it prints fine, now the teacher says if they print to the Xeorx 7760 in the next room, it also prints out fine. It should be noted that we had so many issues with configuring the Xerox and adjusting controls it was the reason we purchased a HP proofing printer in the first place. But the next door lab is all Apple, which doesn't seem to have this issue. So I open the test document and save it as a PDF file instead the native Photoshop format, and it prints fine, which from what I've been reading on the internet may be the preferred way of printing proofs, I don't know, I've never really used Photoshop, but the teacher says this isn't an acceptable fix and the students should be expected to manage a number of revisions saved to PDF format, me I just go up a number at the end of the file name for every correction when editing documents.
    Any suggestions you have would be appreciated.
    Windows 7 X64
    Photoshop version 13.0.1 x64
    HP Color Laserjet CP6015 DN model number Q3932A
    Dell Optiplex 980 i5-650,  3.2Ghz, 8 GB RAM.

    Yes, Photoshop is up to date at Version 13.0.6.  I have even gone so far as to uninstall CS 6 and put CS 5 back on and still the same thing.  This is really frustrating, the people at Canon try to be helpful but wind up saying it's an Adobe problem and of course you can't talk to real people anymore about CS 6.  My research on the Internet has turned up nothing so I'm stuck.

  • Issue in creation of data from extended segment in background mode

    Dear all,
    I am facing an issue in creation of data in receiving system using IDOC for an xtended matmas segment(Extended for classification view in user exit).The issue is that the idoc is received successfully in r3eceiving system but not created successfuly in data base .(Though it is shown green/successful).When i execute this from we19 the data is created successfuly in data base.I will be thankful if you can guide me resolve issue.
    Thanks.

    Hello,
    you can use CALL TRANSFORMATION id, which will create a exact "print" of the ABAP data into the XML.
    If you need to change the structure of XML, you can alter your ABAP structure to match the requirements.
    Of course you can create your own XSLT but that is not that easy to describe and nobody will do that for you around here. If you would like to start with XSLT, you´d better start the search.
    Regards Otto

  • Issue:Creation of Extended iDOC data entries in receiving system.

    Hi all,
    I have extended standard IDOC MATMAS05 for classification view.I am receiving the data successfully on recewing side.And i  have done coading in user exit to store data in database  table inside
    IDOC_INPUT_MATMAS01- function module.
    When i execute the BD10 from sending sytem and view the idoc at receiving end from WE05 i can see the idoc but when i try to see the material i cant see the classification(extended) view in mm03.Rest of the views are created .When i execute the idoc from WE19 ,Classification(extended) view gets created.
    Please guide me so that the CLASSIFICATION view get automatically created in receiving system without using WE19.
    Thanks.

    Yes i used this function module-
    CALL FUNCTION 'BAPI_OBJCL_CREATE'
                  EXPORTING
                    objectkeynew            = objectkeynew1
                    objecttablenew          = 'MARA'
                    classnumnew             = wa_classnumnew1
                    classtypenew            = z1sklart-klart              "classtypenew1
                    status                  = '1'
      STANDARDCLASS           =
      CHANGENUMBER            =
                    keydate                 = sy-datum
      NO_DEFAULT_VALUES       = ' '
    IMPORTING
      CLASSIF_STATUS          =
                  TABLES
      ALLOCVALUESNUM          =
                    allocvalueschar         = allocvalueschar2[]
      ALLOCVALUESCURR         =
                    return                  = return1
    *WAIT UP TO 1 SECONDS.
                CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
                 EXPORTING
                   wait          = 'X'
    IMPORTING
      RETURN        =
    Please explain me how to maintain the Views Status at MARA general info segment level.

  • External Drive Format - Mac Extended vs Fat32

    Hi
    There seems to be a general consensus that if you are saving iMovie projects to an external hard disk, the format must be Mac Extended (Journaled).
    There is an Apple support article from July 2003 saying that this is the case.
    However I have experimented, testing an imovie 6 project saved on both a Mac Extended partition and a Fat32 partition on my external drive.
    Both appear to run perfectly.
    Does anyone know whether the article / idea that iMovie needs Mac Extended format is out of date? Has subsequent releases of iMovie fixed the issue with using Fat32?
    Any experiences/thoughts anyone? I'd ideally prefer to keep my external as all Fat32 seeing as I want to swap files with my PC.....

    Why not partition the drive, one partition Mac OS Extended, one partition Fat32, as suggested in another thread?
    BTW, I wouldn't rely on your experience storing an iMovie project on a Fat32 drive to prove much of anything. If Apple says not to use it, I wouldn't use it. There's no way any one of us can test all the conditions that can and will arrise.
    One such condition, if memory serves, is that large clips — longer than 20 minutes — do not import correctly with Fat32. Something about a 4GB limit, if I recall. Users have reported other problems too. A search for "Fat32" in the iMovie forums should reveal several.
    Karl

  • Capture Problem (av-1) - Mac OS Extended formatted drives

    I've got a bit of a stumper. I've been trying to capture some video. (I'm backing up all my Hi8 tapes to DVD.) I have no size limit enabled. The time limit is set to 30 minutes. When I finish, FCP stop the capture and creates the capture files. I have one 4.1GB file (Untitled) with the movie and sound and another 780MB file (Untitled-av-1) which is not playable. The movie file plays with quick time and is able to be edited with FCP. But, the other file does nothing. If I delete the second file, the first movie becomes unplayable and uneditable in FCP.
    I searched this issue. I do not have Norton AV or any virus protection software. All my drives are formatted MacOS extended.
    I don't know why else this extra file is there? Anybody know? I've captured files before and this did not happen. Strangely it's happening now.

    Well, you did mention...
    so I don't understand why it's (apparently) running into a problem peculiar to FAT32-formatted drives
    I kind of had to assume at that point the source drive was the one you formatted as Mac OS Extended two years ago, and the target drive was FAT32. If not, then I'm not sure why you mentioned FAT32 at all.
    In that same thinking, error code 0 is directly related to FAT formatted drives.

Maybe you are looking for

  • Account Posting

    Hi all Could you please tell me which Account and Transaction Key when posting: Example: Goods Receipt for Purchase Order Dr    Inventory Account                (BSX)     Cr    GR/IR clearing Account    (WRX) Could you please fill: Goods Issue for Se

  • External Hard Drives Suddenly being removed:

    I have two different external hard drives that I use for storing video (1 Seagate and 1 Western Digital). Over the last few days I have had them powered up one at a time. After about 10 minutes, I receive an alert that says that a "device wasn't prop

  • I can't sync music to my iphone. It just says "We're sorry, we are unable to continue with your activation at this time."

    I can't sync music to my iphone. It just says "We're sorry, we are unable to continue with your activation at this time."

  • Difficulties installing oracle xe under Ubuntu (7.10)

    I laid out the difficulties I was having in the Installation forum, and a responder said I would have better luck getting a response in this forum. Here's what I did: 1) added this to /etc/apt/sources.list: deb http://oss.oracle.com/debian unstable m

  • Avoid EBS Vision Database data on Full Load in OBIEE

    I've run Full Load after stressful installation and integration OBIEE 11g v.11.1.1.5 and OBI Applications. The data loaded more or less OK, some parameters settings and application tuning need to be completed and it is not the issue. The problem is t