Semitransparent Panel & jComponent not visible

Problem:jButton is not visible & CockPitPanel should be semitransparent import java.awt.Color;
import java.awt.GraphicsEnvironment;
import java.awt.*;
import javax.swing.*;
import javax.swing.JFrame;
public class RBStrategy implements Runnable
     private JFrame frame;
     static boolean onlyScreen = true;
     static Screen screen;
     static AircraftCockPit aircraftCockPit;
     public RBStrategy(JFrame frame, Screen screen)
          this.frame = frame;
          this.screen = screen;
     public static void main(String[] args)
          JFrame frame = new JFrame();
          screen = new Screen();
          frame.setUndecorated(true);
          frame.getContentPane().add(screen);
          GraphicsEnvironment.getLocalGraphicsEnvironment().
               getDefaultScreenDevice().setFullScreenWindow(frame);
          screen.setLayout(null);
          aircraftCockPit = new AircraftCockPit(screen);
          new RBStrategy(frame, screen).run();
     public void run()
          do
               String output;
               try
                    Thread.sleep(1000);
               catch (InterruptedException ie)
                    ie.printStackTrace(System.err);
          while (true);
class Screen
     extends JPanel
     implements
          Runnable {
               boolean progressing = true;
               Thread t;
               Screen()     {
                    this.add(new JButton("ButtonScreen"));
                    this.setBackground(Color.BLACK);
                    this.start();
             public void stop()     {
                  progressing = false;
                  t.stop();
             public void start()     {
                  progressing = true;
                  t = new Thread(this);
                  t.start();
             protected void paintComponent(Graphics g)     {
                       super.paintComponent(g);
                       g.setColor(Color.red);
                       for(int i=0;i<this.getHeight();i=i+10)     {
                                 g.drawLine(0,i,this.getWidth(),i);
               public void run()     {
                    try     {
                         while(progressing)     {
                              this.repaint();
                              Thread.sleep(1);
                    }catch     (InterruptedException e)     {
                         System.out.println("Interrupted");
class AircraftCockPit
     extends JPanel
     implements  Runnable {
          boolean progressing=true;     
          Thread t;
          JButton jButton;
          Screen screen;
          AircraftCockPit(Screen s)     {
               screen = s;
               jButton=new JButton("ButtonCockPit");
               jButton.setBounds(30,30,40,40);
               this.setBackground(Color.GRAY);
               this.setBounds(s.getWidth()*3/4,s.getHeight()>>2,s.getWidth()>>2,s.getHeight()*9/20);
               s.add(this);
               this.start();
          public void stop()     {
               progressing = false;
               t.stop();
          public void start()     {
               progressing = true;
               t = new Thread(this);
               t.start();
          protected void paintComponent(Graphics g)     {
                    super.paintComponent(g);
          public void run()     {
               try     {
                    while(progressing)     {
                         this.repaint();
                         Thread.sleep(2);
               }catch     (InterruptedException e)     {
                    System.out.println("Interrupted");
}

As I suggested in your last posting, the size of the Screen panel is (0, 0). Since the size of the AircraftCockpit is based on the size of the Screen it is also (0, 0). So there is nothing to paint.
Did you add a few System.out.println(...) statements to verify this?

Similar Messages

  • Content OF  Panel Is Not Visible. Need Help

    Hi Guys,
    Can someone tell me why the contents of the "VisPanel" (JPanel) class is not showing up in the main window. I just don't understand why it is not visible after i add it to the main window.
    Here is the code. You can test it. Only the button shows up. The contents of "VisPanel" class is not visible.
    Replace the images in the "VisPanel" class with any image of your choice. I made them 130 X 130. I would have like to add the images in the post but i don't think it is possible to add images to post in this forum.
    public class TilesImage extends JFrame{
         private static final long serialVersionUID = 1L;
         public TilesImage(){
                this.setLayout(new GridLayout(2,1));
                this.setSize(600,600);
                this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                VisPanel vis = new VisPanel();
                JPanel pana = new JPanel();
                pana.add(vis);
                BufferedImage sub = vis.getImg().getSubimage(261, 260, 129, 129);
               JButton but = new JButton(new ImageIcon(sub));
               pana.add(but);
               this.add(pana);
               this.setContentPane(pana);
               this.setVisible(true);
               repaint();
           public static void main( String[] args ) {
                 new TilesImage();
                 //new VisPanel();
    class VisPanel extends JPanel{
          private static final int IMAGE_TYPE = BufferedImage.TYPE_INT_ARGB;
           private BufferedImage img;
          public VisPanel() {
                 // here you should create a compatible BufferedImage
                 //img = new BufferedImage( 450, 350, IMAGE_TYPE ); 
                 img = new BufferedImage( 525, 500, IMAGE_TYPE );
                     this.setSize(img.getWidth(), img.getHeight());    
                 final int NB_TILES = 4;
                 BufferedImage[] tiles = new BufferedImage[NB_TILES];
                 tiles[0] = createHorizontalRail( new Color( 255, 255, 255 ) );
                 tiles[1] = createVerticalRail( new Color( 255, 255, 255 ) );
                 tiles[2] = createCrossing( new Color( 255,   0, 255 ) );
                 final int[][] map = new int[][] {
                             {4, 4, 1},    
                               {4, 4, 1},
                               {0, 0, 2},
                               {4, 4, 4}, 
                 for (int i = 0; i < map[0].length; i++) {
                       BufferedImage tile = null;
                     for (int j = 0; j < map.length; j++) {
                          if(map[j] == 0){
                   tile = tiles[0];
                   for (int x = 0; x < tile.getWidth(); x++) {
              for (int y = 0; y < tile.getHeight(); y++) {
              img.setRGB( x + i * 130, y + j * 130, tile.getRGB(x,y) );
                   //img.setRGB( x + i * 45, y + j * 32, tile.getRGB(x,y) );
              } if(map[j][i] == 1){
                   tile = tiles[1];
                   for (int x = 0; x < tile.getWidth(); x++) {
              for (int y = 0; y < tile.getHeight(); y++) {
              img.setRGB( x + i * 130, y + j * 130, tile.getRGB(x,y) );
              if(map[j][i] == 2){
                   tile = tiles[2];
                   for (int x = 0; x < tile.getWidth(); x++) {
              for (int y = 0; y < tile.getHeight(); y++) {
              img.setRGB( x + i * 130, y + j * 130, tile.getRGB(x,y) );
         this.setVisible( true );
         private BufferedImage createHorizontalRail( final Color c ) {
         final Random r = new Random();
         BufferedImage img = null;
         try {
         img = ImageIO.read(new File("images/crossingsHorizontal.JPG"));
         } catch (IOException e) {
         return img;
         private BufferedImage createVerticalRail( final Color c ) {
         final Random r = new Random();
         BufferedImage img = null;
         try {
         img = ImageIO.read(new File("images/crossingsVertical2.JPG"));
         } catch (IOException e) {
         return img;
         private BufferedImage createCrossing( final Color c ) {
         final Random r = new Random();
         BufferedImage img = null;
         try {
         img = ImageIO.read(new File("images/railCrossing2.JPG"));
         } catch (IOException e) {
         return img;
         public void paintComponent(Graphics g) {
         g.drawImage(img, 0, 0, null);
              public BufferedImage getImg() {
                   return img;
              public void setImg(BufferedImage img) {
                   this.img = img;
    Thanks for your help.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    kap wrote:
    The "pana" panel must contain both the contents of the "VisPanel" panel and the button i created. So it is correct to set the contenPane to the "pana" panel. I tried to set the content pane to the "VisPanel" panel. It is visible but the button i added to the "pana" panel cannot be visible.
    I hope you understand what i mean here.He understands exactly what you mean and has pointed out your mistake and offered a decent solution. I suggest you take his advice and set the layout of pana not the JFrame.

  • Publising front panels of not visible subvis on the web

    High
    my main program has tab object with 10 pages. Within the main program there are several subvis whose front panels i want to publish on the web.
    The front panels of these subvis are not visible in the main program.  Front panels of some subvis are displayed correctly in browser (IE, Firefox) but some not.
    Fields of the object are empty or their fields are not refresh with new data (att. pict " array indicators").
    The problem is worse if not visible subvi contains chart object. In the browser window data are moved out of the chart window (att. pict. "chart within...").
    For monitoring front panels of the subvis i use MONITOR mode of the LabVIEW web server.
    Any idea, hints or simple example is welcome.
    Thanks and regards
    Trajan
    Attachments:
    chart within the browser2.jpg ‏16 KB
    three array indicators2.jpg ‏5 KB

    Duplicate post!
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Process is not visible in BPM Workspace in Application panel 2

    Hi dear developers,
    I had a problem about BPM process. I was trying to implement this tutorial -> http://st-curriculum.oracle.com/obe/fmw/obpm/11g/r1/firstProcess/firstprocess_obpm11g.htm#t3
    And all the steps had been done. But the deployment step, i couldn't see my process on the BPM Workspace. I searched the other opinions in the forum. It's completely same with this thread -> Process is not visible in BPM Workspace in Application panel
    Nevertheless, couldn't find anything helpful. Could you help me please?
    Thanks in advance.
    Erdo

    Hi Erdo
    I hope you already ran the demo community seed app to create all the test users and groups etc in the default authenticator. If not, please see this below post:
    Re: New to BPM: How to get the tasks in the Workspace
    1. First login into bpm/workspace with domain adminstrator username/password. Then on right side, click on Adminstration link and see if you could see all the roles related to hello world app and also the users that you added to those roles.
    One other very basic thing is, you should and must deploy the TaskForms project that has all the taskdetails UI pages. I hope you did this while deploying the workflow and checking the check boxes to deploy other ui projects also.
    If seeding and getting demo uses is confusing, you can always use your own users. From weblogic console, create some extra users like weblogic1, weblogic2, weblogic3 etc with some password. Then use these users to assign to the roles from hello world app. Then login with these users. This will also work.
    Thanks
    Ravi Jegga

  • WoW SB Tap Chat not working, not visible in Creative Audio Control Panel

    I just received one of the new Sound Blaster World of Warcraft Tap Chat foot pedals and so far... it's not been a joy to use
    The problem is that the device does not show up in the Audio Control panel (the creative panel) as a configurable device. I have the WoW wireless headset and it is on and active (otherwise the panel will not display). The Tap Chat is supposed to display on the list of options under Illumination, THX, Game Audio, Key Bindings and then the Tap Chat should be listed.
    I'm running the latest drivers for the WoW headset (1.01.0001). Windows 7 64-bit. The audio control panel lists as version 1.00.05 (in the panel about screen).
    During installation (reinstallation actually trying to fix the problem) the Tap Chat pedal is listed in the registration application, so I know it's installed correctly and IS visible to SOME creative apps (ie the registration app, not very helpful) but not the audio control panel.
    I think it's either 1) the panel is an older version and does not know about the pedal (even though I've updated to the latest) or something else is fishy.
    Help welcome!
    Thanks,

    I've already called your support group. They didn't even know that the product EXISTED. Nor did they have any idea what the problem is.
    It's pretty obvious the problem is due to the device not being detected on 64bit systems (yes, I can see the device on a 32 bit machine).
    So if anyone has Windows 7 64bit they are probably going to be sadly dissapointed with this device.
    Also configuration only works if you have the WoW headset plugged in... which is really odd considering you don't need the headset to use the device once configured (you can use it anywhere without drivers since it is essentially a keyboard with only one key).

  • Cross References Not Visible in Panel

    Hi all,
    I have been enjoying the Cross References functionality in Indesign CS6 to use dynamic text that changes....until recently.
    When i first started using them, the Cross References (CR) would be listed in the Hyperlinks/CR panel.
    I can create a destination, create a hyperlink to that destination, change what it shows (I am using Paragraph Number) and it works as it should.
    The problem i am having is that the CRs are not visible in the Cross Reference panel (the hyperlinks too for that matter)
    This means i cant modify my cross references.
    Does anyone know why they wouldnt show in the panel? Or is there any other way to see them?
    I need to fix this. I have tried resetting the preferences as i found in other posts, but that didnt help

    SOLVED!
    The problem appeared to be with my Workspace profile. I changed from my personalised profile to "Interactive for PDF" ( which has the Hyperlinks panel) and it worked. All the Hyperlinks and cross-references show.
    I personalised my workspace again with the panels i require and then saved a new workspace with the same name. All works fine after saving a new profile. I am going to take a backup of the workspace file so i can restore it easily if it happens again.

  • Panel not visible in ps

    today i created a panel in configurator and saved it successfully in plugins-panels. cs6 13.01.1 ,configurator downloaded today.
    despite it is not visible in ps-extensions.
    what did i wrong ?
    thank you for helping me
    best regards
    wolfgang

    thank you again, but all you tell me is what i did.
    as well to start as administrator and to export it in plug-ins\panels.
    no chance.
    could it be a matter of the file-size or the number of commands?
    thank you all, i found the mistake.
    i exported it to the 32-bit version of ps and i am using the 64bit.

  • XMP metadata from Flashbuilder why not visible in Adobe Bridge?

    Hi there,
    I'm currently wondering around XMP metadata and swf files.
    A: Flash CS5: works
    When I use the XMP panel in Flash CS5 and export a swf, open Adobe Bridge CS5 and select the file, the XMP data are correctly displayed.
    B: Flash Builder(Flex 4.1): don't work
    When I use Flashbuilder and add my metadata to the compilation, then compile, open Adobe Bridge CS5 and select the file, nothing is included in metadata.
    Procedure based on the following (same problem if metadata are directly set through compiler arguments):
    http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_14.html
    ../src/config/ProductMetaData.xml
    <flex-config>
    <metadata>
        <title>My title</title>
        <description>My description</description>
        <publisher>The publisher</publisher>
        <creator>The creator</creator>
        <language>EN</language>
    </metadata>
    </flex-config>
    compiler argument
    -load-config+=config/ProductMetaData.xml
    As far as understood, on the background the following is added to the swf at compile time:
    <rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'>
        <rdf:Description rdf:about='' xmlns:dc='http://purl.org/dc/elements/1.1'>
            <dc:format>application/x-shockwave-flash</dc:format>
            <dc:title>My title</dc:title>
            <dc:description>
                <rdf:Alt>
                    <rdf:li xml:lang='x-default'>My description</rdf:li>
                </rdf:Alt>
            </dc:description>
            <dc:publisher>The publisher</dc:publisher>
            <dc:creator>The creator</dc:creator>
            <dc:language>EN</dc:language>
        </rdf:Description>
    </rdf:RDF>
    I've checked that the medata is correctly added to the swf file using this small software polarswf:
    http://download.cnet.com/Polar-SWF-MetaData/3000-6676_4-10738623.html
    I do not know if it is safe to use it in a produciton context at least in trial mode it allows to check the metadata included in your swf.
    I wonder if this metadata coonot be read by Adobe Bridge because they are at a "lower level" than those put by flash CS5 XMP panel?
    Thank you in advance for your help.
    This is not a blocking situation, but I'm curious to understand what happend.
    Cedric Madelaine (aka maddec)

    I was following this post for a LONG time, since I noticed the same problem.
    This week I was getting in it into myself again and I noticed you use load-config. I used these compiler options :
    contributor name
    Sets metadata in the resulting SWF file. For more information, see Adding metadata to SWF files.
    creator name
    Sets metadata in the resulting SWF file. For more information, see Adding metadata to SWF files.
    date text
    Sets metadata in the resulting SWF file. For more information, see Adding metadata to SWF files.
    But that resulted in this XML string where the dc namespace was missing a / on the end of the URI
    That caused the metadata which was added in flashbuilder was only visible in bridge in the rawXML panel, and not the specific fields
    changing the URI in http://purl.org/dc/elements/1.1/ did the trick ( did this in bridge by exporting the rawXML, changed the / , and imported it )
    <rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'>
        <rdf:Description rdf:about='' xmlns:dc='http://purl.org/dc/elements/1.1'>
            <dc:format>application/x-shockwave-flash</dc:format>
        </rdf:Description>
    </rdf:RDF>
    Sadly there was no way I could add this / myself everytime.
    BUT then I discoverd this option :
    raw-metadata XML_string
    Defines the metadata for the resulting SWF file. The value of this option overrides any metadata.* compiler options (such as contributor,creator, date, and description).
    This is an advanced option.
    And you could give the exact RAW XML as you  described
    <rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'>
        <rdf:Description rdf:about='' xmlns:dc='http://purl.org/dc/elements/1.1/'>
            <dc:format>application/x-shockwave-flash</dc:format>
            <dc:title>My title</dc:title>
            <dc:description>
                <rdf:Alt>
                    <rdf:li xml:lang='x-default'>My description</rdf:li>
                </rdf:Alt>
            </dc:description>
            <dc:publisher>The publisher</dc:publisher>
            <dc:creator>The creator</dc:creator>
            <dc:language>EN</dc:language>
        </rdf:Description>
    </rdf:RDF>
    to the compiler. This could also be done in Flash with JSFL.
    In the end I wrote an ANT script which injects the exact XMLstring of metadata to Flash and Flex projects by using the raw-metadata parameter in FLEX and JSFL for flash.
    Hope this helps

  • I am getting complaints from links that Firefox is already running and needs to be closed when it is not visibly running. But, I do find it as a process that IS running. What gives?

    I click on a link in an E-mail. It complains that Firefox is already running and I must close it. Firefox is NOT visibly running. I check via Task Manager to verify. I find Firefox is running as a process. I kill the process and then can proceed. I did use Firefox earlier and closed it.

    Make sure that you do not start Firefox with the -no-remote switch or have set the environment variable MOZ_NO_REMOTE=1 (Control Panel > System > Advanced > Environment variables).
    If you need to have more than one profile open at the same time then start subsequent instances with the -no-remote command line switch.<br />
    You can send links from other programs to a Firefox instance that is started with -no-remote, you need to drag links in a Firefox window in such cases.
    See http://kb.mozillazine.org/Opening_a_new_instance_of_Firefox_with_another_profile

  • Key focus is not visible for all objects when tabbing

    I'm using LabView 5.1.
    The key focus is not visible for all objects when tabbing through a "disabled and grayed-out" object.
    For example, let's say I create a panel with 3 buttons. If I create a "disabled" attribute for button 2 and assign the value "2" (disabled and grayed-out) to it. When I will run this VI, the key navigation will go through button 1 and button 3 (skipping button 2 as expected) but the key focus on button 3 will not be visible.
    Is this a bug with LabView or am I doing something wrong ?

    Hi Ben,
    Don't worry, time is not an issue... I'm posting an example of a VI with the problem I described. I noticed that the problem occurs only with "dialog buttons".
    When you have time, let me know if you see the same behavior. If you do, I will report the problem to National Instrument.
    Thanks for your time !
    BigBen
    Attachments:
    3buttons.vi ‏22 KB

  • Cd rom is not visible

    hi, my cd rom is not visible and the pc does not recognise any cd i put in.
    i have tried device manager and it says cd rom drivers are installed and working.
    i have reinstalled windows 7 and it has made no difference.
     hope someone out there can help.
    i have a hp g72 laptop
      cheers bertie

    Hy Dear!!!
    I am not any HP rep, but I think I can help you, Try this
    Right Click on COMPUTER
    Device Manager> DISK MANAGEMENT
    Here is the Pictorial Help
    Open DISK MANAGEMENT
    - Right Click on CD ROM in RIGHT PANEL as shown,
    - Click Change Drive Letter and Paths
    - Now Click Add button and Assign the Drive Letter you want to and then Click OK as Shown
    I hope this will help you out.
    Regards
    WAQAR AHMED KAMBOH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.
    Regards
    WAQAR AHMED KAMBOH
    Please click on the KUDOS BUTTON on the left of this post as a sign of THANKS GIVING
    Please click on ACCEPT AS SOLUTION if your problem Solved.

  • Radiobuttons not visible in firefox using h:selectoneradio

    Hi ,
    We are facing certain issues regarding rendering radio buttons in firefox.
    It works fine in IE but doesnot work in Firefox
    Please find the below block of code.
    In the code shown below,there are two panels for displaying radio buttons.
    Last piece of code which displays commandlink is visible ,but the radiobuttons which needs to be shown on pageload is not visible.
    When we click on commandlink , the flag showMoreValues turns true and only on click of this link the radiobuttons in second part of the code is visible.
    Can you please help me out regarding this issue?
    <a4j:form id="subscriptionForm"
                                       ajaxSubmit="true">
                             <f:loadBundle basename="dk.tdc.resources.Messages" var="msgs" />
                                       <h:panelGrid columns="1">
                                            <h:panelGroup rendered="#{subscriptionCard.showValues}"
                                                 id="ValuesList">
                                                 <h:panelGrid columns="4"
                                                      columnClasses="address_col1,address_col1,address_col1,address_col1">                                                       
                                                           <c:forEach var="privateProducts" items="#{subscriptionCard.Values}">
                                                                <h:selectOneRadio id="#{privateProducts.description}"
                                                                     valueChangeListener="#{subscriptionCard.productChanged}"
                                                                     value="#{subscriptionCard.selectedProductCode}">                                                                 
                                                                     <a4j:support event="onclick"
                                                                          reRender="convertingForm,privateParamCard,businessParamCard,errorDetailsSubs,facilitiesCard,numberSelectCard,npPanel,paymentFormCard" />
                                                                          <f:selectItem itemLabel="#{privateProducts.label}"     itemValue="#{privateProducts.value}" />
                                                                </h:selectOneRadio>
                                                           </c:forEach>
                                                 </h:panelGrid>
                                            </h:panelGroup>
                                            <h:panelGroup rendered="#{subscriptionCard.showMoreValues}"
                                                 id="moreValues">
                                                 <h:panelGrid columns="4"
                                                      columnClasses="address_col1,address_col1,address_col1,address_col1">
                                                           <c:forEach var="privateAllProducts"
                                                                items="#{subscriptionCard.showMoreValues}">
                                                                <h:panelGroup>
                                                                     <h:selectOneRadio id="#{privateAllProducts.description}"
                                                                          valueChangeListener="#{subscriptionCard.productChanged}" value="#{subscriptionCard.selectedProductCode}">
                                                                          <a4j:support event="onclick"
                                                                               reRender="convertingForm,privateParamCard,businessParamCard,errorDetailsSubs,facilitiesCard,numberSelectCard,npPanel,paymentFormCard" />
                                                                          <f:selectItem itemLabel="#{privateAllProducts.label}"
                                                                               itemValue="#{privateAllProducts.value}" />
                                                                     </h:selectOneRadio>
                                                                </h:panelGroup>
                                                           </c:forEach>
                                                 </h:panelGrid>
                                            </h:panelGroup>
    <h:panelGroup style="float:right;"
                                                 rendered="#{subscriptionCard.showValues}">
                                                 <h:panelGroup style="float:right;"
                                                      rendered="#{subscriptionCard.ValuesLinkVisible}">
                                                      <a4j:commandLink id="index"
                                                           action="#{subscriptionCard.retrieveMoreValuess}"
                                                           reRender="moreValues"
                                                           value="#{msgs.subscriptioncard_link_more_Values}"></a4j:commandLink>
                                                 </h:panelGroup>
                                            </h:panelGroup>

    You should probably install Firebug into your Firefox browser. That might help isolate the problem. Also, there's been a recent update to Firefox. Have you installed it? If not, I'd recommend doing that next.
    If that doesn't solve it, try removing the components form the page, then adding them back one at a time. You might have a small syntax error on the page that's difficult to see when it's filled with code. Some browsers cope with syntax problems better than others, so what works fine in one browser might not work at all in another.

  • Trip Schema is not visible in FITVFELD_WEB

    Hi,
    When I made some changes in the Trip schema 01 for country Germany and saved, the trip schema is not visible in the left hand panel at all. But when I try to copy 99 to 01, it says '01' already exists. This means the trip schema 01 is available and not visible in transaction FITVFELD_WEB.
    Appreciate if anyone suggest to make this visible to make further changes.
    Regards,
    Kumar

    Narayana,
    It is displayed the trip schema 01 in the table T706S and V_T706S and transaction FITVFELD.
    But it is invisible in the trasaction FITVFELD_WEB.
    Thanks.
    Kumar

  • Train Stop Lables not Visible

    Hi All,
    I'm using Jdeveloper REL1 PS2 with ADFBC
    I'm having a problem getting my train stop labels to render. Besides the train stop label not being visible, everything else is working as advertised. I can navigate though the train stops, the data on my pages appears as expected.. etc.
    Here is what I've done so far:
    1. I created a bounded taskflow with page fragments and checked "create train" checkbox.
    2. In my task flow, I've assigned *<display-name>* values to each view activity participating in the train. See code below. According to the documentation I've read, this is what I need to set to label my train stops. However, when I run my task flow in a region, the the labels are not visible.
    I've read section 18.8 in the Fusion Developer's guide, I've followed examples in these two blogs:
    http://biemond.blogspot.com/2007/11/taskflow-train-in-jdeveloper-11g.html
    http://biemond.blogspot.com/2008/06/advanced-taskflow-train-features.html
    I've read previous posts regarding this issue like the this one:
    Re: Creating ADF Train
    Which states *"In Task flow click the View activity in structure window Right click Choose > insert inside > Display name and set the value to it."*
    I also went through the train taskflows and pages in the Fusion Order Demo app and I cannot see how my implementation of the taskflow or how I'm adding the af:train component to my .jsff pages is different from the examples that I've found.
    Any help would be appreciated. Thanks!
    <?xml version="1.0" encoding="windows-1252" ?>
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
      <task-flow-definition id="EditEventTrainFlow">
        <default-activity id="__34">EditEventDetail</default-activity>
        <transaction id="__15">
          <new-transaction/>
        </transaction>
        <data-control-scope id="__16">
          <isolated/>
        </data-control-scope>
        <view id="EditEventDetail">
          <display-name id="__10">Edit Event</display-name>
          <page>/oracle/ou/oep/ui/pages/fragments/EditEventDetail.jsff</page>
          <train-stop id="__9"/>
        </view>
        <view id="EditEventRoomAssignments">
          <display-name id="__38">Assign Rooms</display-name>
          <page>/oracle/ou/oep/ui/pages/fragments/EditEventRoomAssignments.jsff</page>
          <train-stop id="__11"/>
        </view>
        <task-flow-return id="Submit">
          <outcome id="__13">
            <name>done</name>
            <commit/>
          </outcome>
        </task-flow-return>
        <task-flow-return id="Cancel">
          <outcome id="__14">
            <name>cancel</name>
            <rollback/>
          </outcome>
        </task-flow-return>
        <view id="ConfirmEventChanges">
          <display-name id="__18">Confirm</display-name>
          <page>/oracle/ou/oep/ui/pages/fragments/ConfirmEventChanges.jsff</page>
          <train-stop id="__17"/>
        </view>
        <train/>
        <control-flow-rule id="__19">
          <from-activity-id id="__20">*</from-activity-id>
          <control-flow-case id="__21">
            <from-outcome id="__23">cancel</from-outcome>
            <to-activity-id id="__22">Cancel</to-activity-id>
          </control-flow-case>
        </control-flow-rule>
        <control-flow-rule id="__24">
          <from-activity-id id="__25">ConfirmEventChanges</from-activity-id>
          <control-flow-case id="__27">
            <from-outcome id="__35">submit</from-outcome>
            <to-activity-id id="__26">Submit</to-activity-id>
          </control-flow-case>
          <control-flow-case id="__29">
            <from-outcome id="__30">goToEditEventDetail</from-outcome>
            <to-activity-id id="__28">EditEventDetail</to-activity-id>
          </control-flow-case>
          <control-flow-case id="__32">
            <from-outcome id="__33">goToRoomAssignments</from-outcome>
            <to-activity-id id="__31">EditEventRoomAssignments</to-activity-id>
          </control-flow-case>
        </control-flow-rule>
        <use-page-fragments/>
      </task-flow-definition>
    </adfc-config>

    Hi,
    You need to first name the view activity to desired name first and then change the display name.You will find a good example in JDeveloper Help Topics under Cue Cards>Work with ADF Technologies>Implement a Multi-Step page Flow with ADF Train>Step 2
    For Ex:
    In the Application Navigator, select the ViewController project and open the Create Task Flow dialog. Enter train-flow.xml in the File Name field. Select both Create as Bounded Task Flow and Create with Page Fragments. Then select Create Train and click OK.
    From the Component Palette, ADF Task Flow page, Components panel, drag View and drop it on the blank canvas in the diagrammer. Rename the activity to start. Repeat the procedure to add three more view activities, using the following names: addresses, payment, review.
    Drag and drop Task Flow Return on the diagram. Accept the default name of taskFlowReturn1. In the Component Palette, click Control Flow Case. On the diagram, click the review icon, then click the taskFlowReturn1 icon. Rename the control flow case element to commit.
    In the Structure window, expand view - start . Right-click train-stop and choose Insert inside train-stop Display Name. In the Property Inspector, enter Start in the Display Name field. Repeat the procedure in step 6 to add train stop display names to the remaining view activities: view - addresses , view - payment, view - review . Use the following values, respectively: Addresses, Payment, Review. In the Application Navigator, select the ViewController project and open the Create Task Flow dialog again. Enter childtrain-flow.xml in the File Name field. Make sure Create as Bounded Task Flow and Create with Page Fragments are selected. Then select Create Train and click OK. From the Component Palette, drag View and drop it on the diagrammer. Rename the activity to billing. Repeat the procedure to add one more view activity, using the name shipping. Drag and drop Task Flow Return on the diagram. Change the name to childFlowReturn1. Draw a Control Flow Case from shipping to childFlowReturn1. Rename the case element to done. In the Structure window, expand view - billing. Right-click train-stop and choose Insert inside train-stop Display Name. In the Property Inspector, enter Billing in the Display Name field. Repeat the procedure in step 13 to add
    Hope this helps!
    Edited by: Swathi Patnam on Sep 9, 2010 2:16 PM

  • Edit pane not visible in portfolio

    Hi-
    I am new to Adobe 9.  When I am trying to create a new PDF Portfolio, the edit pane is not visible on the right hand side (so that I can set colors, headers, footers, etc.).
    I have searched through the documentation and can find no reference of how to make this pane visible.
    What am I missing?
    Thanks.

    I understand that - I am referring to the Adobe Portfolio in Acrobat - where you can create a single pdf with multiple pdfs, flash, audio, video, Excel spreadsheets, Word documents, etc.
    The documentation (and other training resources) clearly show an 'edit panel' on the right side of the Portfolio creation window when a new portfolio is initiated.  Mine does not show this pane and I can't figure out how to make it appear.
    See the attached screen shot of what I am pulling from the documentation.  The capture picture is what I am pulling from the documentation.  You will see on the right hand side of this screen it says 'Edit Portfolio'.  That is the pane I am missing, as you can see from the screen shot of my window, in Capture2.
    Thanks for any assistance.

Maybe you are looking for

  • Do anyone knows where can I download oracle forms 6.0?

    hi all, Do anyone knows where can I download oracle forms 6.0? This is quite urgent. Please help. amy

  • How to apply Template to added Page?

    I am building a multi-page InDesign document with scripting and each page has a different template.  Obviously, getting the first page set-up with the template is a snap as you just open the template, but when I add the next page using: app.activeDoc

  • 2 video cards?

    Stupid question: can I install second video card and leave in the old one? QS G4 877 , iBook G4 12   Mac OS X (10.4.8)   G4NVIDIA GeForce2 MX:

  • How do i get the lefthand sidebar to show everything after 11.1.5?

    restarted my computer last night. now the itunes sidebar is all weird. I figure this must be some sort of weird update. how do i get the sidebar to show everything again, instead of having to drill down strangly placed weird icons? like a 'library' s

  • Move over ical to a new computer

    hello.... i just purchased a laptop (running 10.6) for my wife, and the only thing i would like to migrate from our current desktop (running 10.5) is everything in ical... i am hoping this is as simple as copying a few files from the old computer, an