Advice for JPanel transparency idea

Hi!
I've spent all day reading about the CardLayout and JLayeredPane and am confused as to which route to take.
Here's what I'm planning to build:
- One frame containing three panels.
- Each panel holds an invididual image and and stretches to the extents of the frame, thus the panels sit on top of each other.
- I would like to be able to change the order of the panels
- Here's the killer: I'd like to change the transparancy of the top panel (either partially or completely) so that I can peer through to the panel below.
Any advice would be appreciated. Many thanks...

To summarise (thanks J_Rooze for advice):
- Setting the AlphaComposite value before calling super.paintComponent(g2) will change the transparency of the whole panel.
- Performance will drop in the order of ~40%, but using J_Rooze's suggestion to force the OpenGL rendering pipeline (above) completely remedies this (is there a similar hack for java3D?? :-).
- Using these panels with JLayeredPane worked completely for my spec (top post).
- I also tried them in CardLayout, however, whilst I could get the top panel to go transparent the underneath panel would not show through. This might not necessarily be a problem for other specs.
- Panels should be .setOpaque(false) to eliminate crazy phasing effects.
Here's my working code for reference:
import java.awt.*;
import javax.swing.JPanel;
public class DisplayPanel extends JPanel{
     private boolean antiAlias;
     private float alpha = 1.0f;
     public DisplayPanel(boolean setAntiAlias) {
          antiAlias = setAntiAlias;
          this.setOpaque(false);
     public void setAlpha(float a) {
          alpha = a;
          if (alpha > 1) alpha = 1.0f;
          if (alpha < 0) alpha = 0.0f;
          repaint();
     public float getAlpha() {
          return alpha;
     protected void paintComponent(Graphics g) {
          Graphics2D g2 = (Graphics2D)g;
          AlphaComposite ac = AlphaComposite.getInstance(AlphaComposite.SRC_OVER, getAlpha());
          g2.setComposite(ac);
          super.paintComponent(g2);
          // for speed
          g2.setRenderingHint(RenderingHints.KEY_COLOR_RENDERING, RenderingHints.VALUE_COLOR_RENDER_SPEED);
          g2.setRenderingHint(RenderingHints.KEY_RENDERING, RenderingHints.VALUE_RENDER_SPEED);
          if (antiAlias) g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
          //draw commands go here
}Edited by: .eD on May 7, 2008 4:46 AM

Similar Messages

  • Looking for some helpful advice for a website idea I have

    Hello,
    For the past year, my company has had a contract for a tech device manufacturer to maintain a project benchmarking the prices, specs, user features, etc. of their products against their major competitiors. It is quite an in-depth comparison and contains more than 100 products. It is up to date with new product releases and will continue to remain current on the newest products. Anyway, the contract is almost up and I am thinking that the project could be more lucrative if I created a website with all the information I have gathered over the past year. My problem is that I have never created a website for profit. I have created a personal website and my company's website using a combination of CS5 DW, FW, and Flash. I know some html, php, mySQL, and flash, and am fairly comfortable with the CS5 software in general.
    Like I mentioned, I am new to trying to make money off a website, but here are two potential ways I have though of to to do so:
    1. Just throw all the information on the websites and offer access to all users for free and hope to gain advertising revenue from the manufacturers who have their products on my site.
    or
    2. Offer a sample of basic info on all of the products, but require a subscription for full access (maybe $199/year). 
    My target market will consist of the manufacturers themselves, IT professionals, and resellers of these products.
    Im also wondering if I should make it Flash-based and very visually appealing or just in html.
    I guess i'm just looking for an opinion on which path to choose and any advice in making this effort successful.
    Thanks in advance!!
    -Dave

    I'd make sure to read the contract and any associated fine print really, really carefully before doing this. But back to your question - this is more of a marketing question and I'd suggest hiring a good marketer (or become one) to make the most of this opportunity.
    And how do you find a good marketer?
    I'd suggest using Seth Godin (http://sethgodin.typepad.com/) as your guide/model. If the person you want to hire knows and follows Seth's good marketing advice, you'll likely do very well. If they don't know who Seth Godin is and are obsessed with SEO rankings and email blasts, I'd be very worried (that's not to say SEO rankings and email blasts are "wrong" but that they shouldn't be the only options in your marketing approach).
    Good luck!

  • How to make a JPanel transparent? Not able to do it with setOpaque(false)

    Hi all,
    I am writing a code to play a video and then draw some lines on the video. For that first I am playing the video on a visual component and I am trying to overlap a JPanel for drawing the lines. I am able to overlap the JPanel but I am not able to make it transparent. So I am able to draw lines but not able to see the video. So, I want to make the JPanel transparent so that I can see the video also... I am posting my code below
    import javax.media.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.util.*;
    import java.lang.Math;
    import javax.media.control.FramePositioningControl;
    import javax.media.protocol.*;
    import javax.swing.*;
    class MPEGPlayer2 extends JFrame implements ActionListener,ControllerListener,ItemListener
         Player player;
         Component vc, cc;
         boolean first = true, loop = false;
         String currentDirectory;
         int mediatime;
         BufferedWriter out;
         FileWriter fos;
         String filename = "";
         Object waitSync = new Object();
         boolean stateTransitionOK = true;
         JButton bn = new JButton("DrawLine");
         MPEGPlayer2 (String title)
              super (title);
              addWindowListener(new WindowAdapter ()
                   public void windowClosing (WindowEvent e)
                            dispose ();
                            public void windowClosed (WindowEvent e)
                         if (player != null)
                         player.close ();
                         System.exit (0);
              Menu m = new Menu ("File");
              MenuItem mi = new MenuItem ("Open...");
              mi.addActionListener (this);
              m.add (mi);
              m.addSeparator ();
              CheckboxMenuItem cbmi = new CheckboxMenuItem ("Loop", false);
              cbmi.addItemListener (this);
              m.add (cbmi);
              m.addSeparator ();
              mi = new MenuItem ("Exit");
              mi.addActionListener (this);
              m.add (mi);
              MenuBar mb = new MenuBar ();
              mb.add (m);
              setMenuBar (mb);
              setSize (500, 500);
              setVisible (true);
         public void actionPerformed (ActionEvent ae)
                        FileDialog fd = new FileDialog (this, "Open File",FileDialog.LOAD);
                        fd.setDirectory (currentDirectory);
                        fd.show ();
                        if (fd.getFile () == null)
                        return;
                        currentDirectory = fd.getDirectory ();
                        try
                             player = Manager.createPlayer (new MediaLocator("file:" +fd.getDirectory () +fd.getFile ()));
                             filename = fd.getFile();
                        catch (Exception exe)
                             System.out.println(exe);
                        if (player == null)
                             System.out.println ("Trouble creating a player.");
                             return;
                        setTitle (fd.getFile ());
                        player.addControllerListener (this);
                        player.prefetch ();
         }// end of action performed
         public void controllerUpdate (ControllerEvent e)
              if (e instanceof EndOfMediaEvent)
                   if (loop)
                        player.setMediaTime (new Time (0));
                        player.start ();
                   return;
              if (e instanceof PrefetchCompleteEvent)
                   player.start ();
                   return;
              if (e instanceof RealizeCompleteEvent)
                   vc = player.getVisualComponent ();
                   if (vc != null)
                        add (vc);
                   cc = player.getControlPanelComponent ();
                   if (cc != null)
                        add (cc, BorderLayout.SOUTH);
                   add(new MyPanel());
                   pack ();
         public void itemStateChanged(ItemEvent ee)
         public static void main (String [] args)
              MPEGPlayer2 mp = new MPEGPlayer2 ("Media Player 2.0");
              System.out.println("111111");
    class MyPanel extends JPanel
         int i=0,j;
         public int xc[]= new int[100];
         public int yc[]= new int[100];
         int a,b,c,d;
         public MyPanel()
              setOpaque(false);
              setBorder(BorderFactory.createLineBorder(Color.black));
              JButton bn = new JButton("DrawLine");
              this.add(bn);
              bn.addActionListener(actionListener);
              setBackground(Color.CYAN);
              addMouseListener(new MouseAdapter()
                             public void mouseClicked(MouseEvent e)
                   saveCoordinates(e.getX(),e.getY());
         ActionListener actionListener = new ActionListener()
              public void actionPerformed(ActionEvent aae)
                        repaint();
         public void saveCoordinates(int x, int y)
                    System.out.println("x-coordinate="+x);
                    System.out.println("y-coordinate="+y);
                    xc=x;
              yc[i]=y;
              System.out.println("i="+i);
              i=i+1;
         public Dimension getPreferredSize()
    return new Dimension(500,500);
         public void paintComponent(Graphics g)
    super.paintComponent(g);
              Graphics2D g2D = (Graphics2D)g;
              //g2D.setComposite(AlphaComposite.getInstance(AlphaComposite.CLEAR, 0.0f));
              g2D.setColor(Color.GREEN);
              for (j=0;j<i;j=j+2)
                   g2D.drawLine(xc[j],yc[j],xc[j+1],yc[j+1]);

    camickr wrote:
    "How to Use Layered Panes"
    http://java.sun.com/docs/books/tutorial/uiswing/components/layeredpane.html
    Add your video component to one layer and your non-opaque panel to another layer.Did you try that with JMF? It does not work for me. As I said, the movie seems to draw itself always on top!

  • LabVIEW done right: Requesting advice for a large LabVIEW project

    Hello Everyone,
    I have been coding LabVIEW for about 2 years now, off and on as my company requires it, and although my coding abilities and neatness have improved greatly since I first started I still end up with large, messy looking programs.
    I have a great understanding of SubVIs and use them regularly and often. I am also familiar with the various code structures such as a producer/consumer or state machine. But I keep finding that too much of my main code is interdependent on common variables, indexes, and values that it seems impossible to simplify any of them into subVIs because I would need like 10+ inputs or a custom cluster for each one. This seems counter productive and time consuming.
    I have searched far and wide for good programming technique for larger labview programs and I have only been able to find the most basic advice such as "Use subVIs" or "Use a state machine" and all the examples I can find are laughably simple.
    I can reduce my program to 3 while loops. One captures Events and gives commands on a queue, another takes those queued items and performs actions, and the third performs data gathering, plotting, and saving once each second. This starts out good, but by the time I've incrementally added all the features my company requires, each loop is a huge interconnected mess of wires with no clear way to section them up into subVIs.
    A solution would be to make everything either a global variable or FG but as a native C programmer I was always taught to avoid globals. And if I went the FG route I would need somewhere around 100+ different VIs just to handle them all. 
    Is there something I'm missing? I want to know how you pass data between the various loops of your program. Do you use one big cluster? Globals? FGs? None of these options seem ideal to me but maybe I'm missing something obvious.
    If anyone has any advice for me, it would be well appreciated. Better yet, if anyone has, or could point me to, an example program exhibiting an ideal programming structure for a project similar to the one I mentioned above, I would love to take some time to look it over. Hopefully I'll be able to pick up some good tips and tricks for keeping my main VI to one screen size, and effectively passing all the required data to all the subVIs that require it.
    Thanks in advance,
    -Aaron

    AaronMcCollough wrote:
    I have a great understanding of SubVIs and use them regularly and often. I am also familiar with the various code structures such as a producer/consumer or state machine. But I keep finding that too much of my main code is interdependent on common variables, indexes, and values that it seems impossible to simplify any of them into subVIs because I would need like 10+ inputs or a custom cluster for each one. This seems counter productive and time consuming.
    I can reduce my program to 3 while loops. One captures Events and gives commands on a queue, another takes those queued items and performs actions, and the third performs data gathering, plotting, and saving once each second. This starts out good, but by the time I've incrementally added all the features my company requires, each loop is a huge interconnected mess of wires with no clear way to section them up into subVIs.
    Do you try to identify related information that can be used by a whole set of related subVI's?  For example, you might have several parameters related to a specific piece of hardware.  These can be grouped into a typedef cluster (or, even better, an object with all the related subVIs part of the object class).  You definitely don't want to be using custom cluster for each subVI, but well designed subVI's shouldn't have more than a few custom inputs once related information is grouped.  
    As for data in the loops, I usually just have one big cluster in a shift register.  This is never itself sent into a subVI, but parts of it (the typedef clusters or objects from above) are unbundled and sent into subVI's.  It's basically just serves as a cleaner way of holding all the parameters.  I'll attach an image of a "state" of the program I'm now working on.  There are only a few wires unbundled in each individual "state", even though the full cluster (the top shift register in the image) has 20-odd components (and some of them are subclusters/objects that themselves have many components, such as the "Selected Record" object in the image which itself is a 15 element cluster).
    BTW, I'm using the "JKI state machine toolkit" which you might want to look at to get some ideas.
    -- James
    Attachments:
    Code example.png ‏45 KB

  • Making a JPanel transparent

    In the application I am writing I want to allow for some popups on my interface. I am using a JLayeredPane, with two JPanels. The main JPanel, on the default layer, holds all the main components. A second JPanel, at the popup layer, will hold any components which should "pop up".
    The layered pane is using a border layout, with both JPanels in the Center.
    Unfortunately the bottom panel cannot be seen. It is covered by the top panel, even after I called setOpague(false) on the top panel.
    Am I taking the wrong approach? Or is it just not possible to make a JPanel transparent?

    It should work.I have fiddled around, but have been unable to get this to work. It seems obvious that I'm doing something wrong. :( Below is an example which mimicks my real code, and hopefully is simple enough.
    I appreciate any help you can provide.
    import java.awt.BorderLayout;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JLayeredPane;
    import javax.swing.JList;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    public class MyPanel extends JPanel
         public MyPanel()
              setLayout(new BorderLayout());
              add(createLayeredPane(), BorderLayout.CENTER);
         private JLayeredPane createLayeredPane()
              JPanel mainPanel = createMainPanel();
              JPanel popupPanel = createPopupPanel();
              JLayeredPane pane = new JLayeredPane();
              pane.setLayout(new BorderLayout());
              pane.add(mainPanel, BorderLayout.CENTER);
              pane.add(popupPanel, BorderLayout.CENTER);
              pane.setLayer(mainPanel, JLayeredPane.DEFAULT_LAYER.intValue());
              pane.setLayer(popupPanel, JLayeredPane.POPUP_LAYER.intValue());
              return pane;
         private JPanel createMainPanel()
              JList list = new JList(new Object[]{"One","Two","Three"});
              JButton button = new JButton("Do Nothing");
              JPanel panel = new JPanel();
              panel.setLayout(new BorderLayout());
              panel.add(new JScrollPane(list), BorderLayout.CENTER);
              panel.add(button, BorderLayout.SOUTH);
              return panel;
         private JPanel createPopupPanel()
              JLabel label = new JLabel("Hello world!");
              label.setOpaque(false);
              JPanel panel = new JPanel();
              panel.setOpaque(false);
              panel.add(label);
              return panel;
         public static void main(String[] args)
              MyPanel panel = new MyPanel();
              JFrame mainFrame = new JFrame("Testing");
              mainFrame.setContentPane(panel);
              mainFrame.pack();
              mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              mainFrame.show();
    }

  • Advice for creating a ghostly video filler

    Hi all,
    I have just been approached by some of my lecturers who would like me to create a ghostly video filler. Essentially, they are looking for something that is about 10 seconds long, which will smoothly loop, with a ghostly theme.
    I personally, am intending to try and create this within 3D space in motion, not got many ideas yet, but a ghostly green hue across the whole thing, some wispy smoke etc. then create several that I will be able to call on during the event, for instance one with text that I can edit quickly, re-render and push onto the projection if needed etc.
    So, given that I am a motion rookie, with some minimal experience, I was wondering if anyone would be able to provide some advice in how to go about creating something like this. I've got access to motion for a couple of days before I head home for the holidays, and then for a week or two when I get back in January.
    Thanks,
    James

    Well, the brief is something smoky and eerie! As usual, an extremely helpful brief . . .
    I was playing around earlier with images and blending modes, essentially making it so that the image was only visible while the smoke was over it, so that's something I'm going to use, somehow, I may look at using it for the text idea.
    Other than that, I might try and get some stock footage to work with in January, as we have a green screen studio on one of our campuses, try and get some of the acting bods to do something for me! Again, I would probably look into blending modes for that. But until I come up with a firm direction of where I want to go, I guess all I'm looking for is things people have tried that might work in this case.
    Thanks

  • Advice for music video

    Hi All
    I am in the early parts of pre-production for a music-video. What I want to achieve is high contrast images in B & W of the band in a white studio, and then fill in the white with different kinds of stuff (kaleidoscope etc.) - the Gnarls Barkley "crazy" video is a good example.
    I have done a few tests in FCP and AE in terms of keying out the white. The first problem I encounter is off course that AE's wonderful keylight effect cannot be used on Black or White colours ( I hadn't planned on shooting in front of a green/blue screen). Secondly, using AE's luma key I get the effect I want, but the key isn't that good. Then when I export I have to export the file as an animation which results in a space and rendering nightmare in FCP.
    So, have anyone out there done something similar? How did you do it?
    Is it best to shoot green/blue screen, or shoot high contrast footage, make into B & W and use the luma key?
    Use FCP or AE? If AE any other way than the Animation codec for preserving transparency?
    Can AE's keylight be used with B & W footage?
    Is there a kaleidoscope filter for FCP? I know motion has a good one.
    Cheers
    -j-

    Warning: You're going to get lots of contradictory answers because I (we) love to offer advice on projects where my (our) money and time are not at risk. That's part of the elitist attitude around here.
    Is it best to shoot green/blue screen, or shoot high contrast footage, make into B & W and use the luma key? <</div>
    I'd plan on shooting on a chromakey stage. If you shoot on white cyc, you are stuck with the white. If you shoot on a properly lit key stage, you can do anything. This depends on your ability to shoot on a suitable format and use a crew that knows how to light a key stage. You need a really good camera and good tape format. DV is out of the question.
    Use FCP or AE? If AE any other way than the Animation codec for preserving transparency?< </div>
    Why do you want to use something other than Animation? You can use a proprietary codec system that supports alpha but you did not mention access to specific cards.
    Can AE's keylight be used with B & W footage? <</div>
    Dunno, try the AE forum at adobe.com.
    Is there a kaleidoscope filter for FCP? I know motion has a good one.< </div>
    You're not going to be doing your effects in FCP.
    bogiesan

  • Need advice for deploy adf web fusion application created in Jdev11gTp4

    hello,
    need advice for deploy adf web fusion application created in Jdev11gTp4
    and it will be nice if you have helper sites
    thanks
    greenApple

    Is there something specific in TP4 that you want to use TP4 - as John suggests, it might be an idea to use the full production release (11g). As for resources for information you can check out
    [Jdev Home|http://otn.oracle.com/products/jdev] this page contains links to the developers guides and various how tos etc etc. The follownig page is also useful and is focused more to those who are less familiar with Java
    [JDev for Forms|http://otn.oracle.com/formsdesignerj2ee]
    Hope this helps and maybe if you can be more specific we can better guide you.
    Regards
    Grant

  • HT204053 Is it possible to have two (or more) different icloud mail accounts (not alias) under the same apple id? If not what is you best advice for all family members to have their own e-mail and still share the purchases under the same apple id. Thanks

    Is it possible to have two (or more) different icloud mail accounts (not alias) under the same apple id? If not what is you best advice for all family members to have their own e-mail and still share the purchases under the same apple id. Thanks

    mannyace wrote:
    Thanks for the response.
    So I basically won't run into any trouble? I
    There should be no issues. Its designed to work like that.  You don't change Apple IDs just because you get a new device.
    mannyace wrote:
    Thanks for the response.
    Is there any chance that the phones can fall out of sync?
    Unlikely. But nothing is impossible.   Though I don;t see how that would happen. As long as both are signed into the Same Apple ID / iCloud Account they will be N'Sync. (Bad Joke)
    mannyace wrote:
    Thanks for the response.
    If I get a message or buy an app or take a photo on the iPhone 5, how do I get those things onto the iPhone 6?
    If you buy an App, you have 2 ways to get it to the iPhone6: If Automatic Downloads is enabled in Settings->iTunes & App Store, it will automatically download to the iPhone 6 when you buy it on the 5 and vice versa if you buy it on the 6, it will download to the 5.
    Alternatively, you can simply go to the App Store App->Updates->Purchased and look for the App there and download it. Purchased Apps will not require payment again. i.e They'll be free to download to the iPhone 6 once purchased.
    SMS Messages will sync over using Continuity as long as they are on the same Wifi network. Otherwise, restoring the iPhone 5 backup to the iPhone 6 will transfer all messages received up until the backup was made onto the iPhone 6.
    Images, can be transferred either through Photo Stream
    My Photo Stream FAQ - Apple Support
    Or any Cloud service you want such as Dropbox, or One Drive.
    mannyace wrote:
    Also, something i forgot to ask initially: Should I update the iPhone 5 to iOS 8 first or does that not matter?
    If you want the Continuity features as explained above you need to update the iPhone 5 to iOS 8. Otherwise its not all that important.

  • Wanted: Your Skype for Windows Desktop ideas

    We have just launched a new Windows Desktop Client idea board to let you all share and exchange your ideas on how to improve and develop Skype for Windows desktop client.
    Before you start sharing your ideas, here are some guidelines to help you get started:
    Idea Submission Guidelines
    Make sure your ideas are for the right client.  This idea board is for Skype for Windows desktop client, not Skype for Windows 8.
    Search before posting.  Do a quick search and make sure you are not submitting a duplicate. If the idea already exists show your support by giving kudos to the original idea rather than watering down the potential impact across multiple submissions.
    Review the ideas of others.  Look at other ideas to see what your fellow community members are requesting and feel free to exchange on them in the comments section. While we take into account the numbers of kudos an idea receives, we also consider the amount and quality of member feedback when making our decisions.
    Add value.  Vote for those items that you like and agree with by giving the idea a kudos. It's a way to recognize someone's effort and to signal to us how important the idea is to you. We are using votes and comments as a barometer to find out more about what our contributor community thinks is important, so we can factor this into our prioritization process.
    Submit a new idea. Adding an idea is just like posting a message on a board. To create an idea, click on the “New Idea” button, located on the top left side of the idea board.
    Be sure to enter a clear title and description of your idea so others can decide how they would like to vote. Be as clear as possible, tell us what your idea is. Remember to include how it would benefit users and why you think we should consider it as well as scenarios that you think the idea would be used it. That will not only help us to better understand what you want, but we may even be able to solve your problem more quickly another way. You can also preview your idea and check your spelling before you post the idea.
    You will need to select a label for your idea, you can choose from one of the following labels:
    Voice
    Tell us how you would change the calling experience in Skype when making voice calls to contacts or phone numbers.
    Video
    Video is one of the core functionalities of Skype, tell us how you would make it better!
    Instant Messaging & Contacts
    How would you make the messaging and contacts experience better?  You can also include ideas around how you would improve the main user interface of Skype within this label.
    Sharing
    Today you can share photos, videos, files or your computer screen using Skype for Windows desktop. What would you change or add to the sharing experience to make it better?
    Tips to draft your idea:
    Start with a clear title
    Include scenarios and use cases for how the idea would be used
    Add appropriate label(s)
    List features and benefits
    Keep it short and to the point
    Avoid tech speak
    Do not be discouraged if your idea was not selected.  Sometimes what seems to be a simple idea may not be so simple to build. Some ideas take longer than others, and some ideas will not be possible within the scope of what we want to accomplish in the next year or so.
    Be respectful.  Comply with the Community Guidelines and Skype etiquette.
    Rights to Feedback: Skype may or may not use your comments, ideas, or suggestions. Skype reserves the right to use for any purpose including commercial purposes, comments, ideas, suggestions, code, products or services (“Content”) that are posted on this community without any obligation to compensate the individual or entity that provided the Content. By posting any Content in the community, you hereby relinquish any right you may have in such Content and to any future compensation for publication, use, distribution, license or sale of the same. By posting Content, you represent and warrant that you either own or control all of the rights to that Content, and such Content does not violate any third party rights or these Skype Terms of Service. You agree that all opinions expressed by users of this community are expressed in their individual capacities, and not as representatives of Skype.
    Recent Feedback: We have gone through some of the recent posts on the Skype for Windows desktop board and gathered some of the improvement ideas posted there.  However we need your help to prioritize these ideas against other ideas that you may have.
    Frequently Asked Questions
    What is the Idea Board all about?
    Idea Board is a new part of the Skype Community, where members can share their ideas about existing products and services. Anyone in the community can see and vote on the ideas you post.
    We encourage you to give kudos and comment on submitted ideas as we are more likely to take the top kudoed and most discussed ones into consideration.
    How do I navigate the Ideas Board? 
    Finding your way around the ideas board is a pretty straightforward. Here are some of the things you will see to help you get around:
    New Ideas – The most recent ideas.
    Hot Ideas – The most popular ideas right now.
    Top Ideas – The most kudoed ideas.
    The sidebar widgets
    In the sidebar you'll find more ways to sort the ideas board, see new and popular ideas and the top rated contributors to the idea board. It's also really easy to filter ideas by status, for instance if you only want to see ideas that are “Accepted”.
    How to check if an idea exists already?
    Use the search function filtering by the ideas board – or click here (direct link to search function)
    What do the votes/kudos mean?
    Just as you can give kudos in the community boards and blogs, you can vote for ideas you like on the Idea Board. Ideas with high vote totals are more likely to be recognized and accepted by the teams at Skype who develop our products and services. You can also leave comments on ideas, but remember to be kind!
    What do the different idea statuses mean?
    We strive to review submitted ideas on a biweekly/monthly cycle. Each idea will go through a life cycle that will be assigned statuses at each milestone. The statuses are explained here:
    New Idea - Sparkly new idea, submitted by you, and ready to be vetted by the community.
    Comments Requested - Items set as Comments Requested will be open to the community for feedback and votes.
    Under consideration - Idea has been forwarded to appropriate business team who is determining feasibility.
    More information needed - More information is needed before our Product Management team can take this forward, please review the comments left by the team.
    Duplicate - Ideas in this status have already been submitted in some form or another. We will link these items over to the other idea so you can review the status or track the progress there.
    Already exists - This is available in the product. 
    Future possibility - Idea is a good one but not something we can include in a near-term product or software release.
    Accepted - Idea has been accepted and has been taken forward for implementation, check back soon for updates.
    Not right now - We like the idea but just not for right now, we will revisit it in the future.
    Implemented - You asked for it, we did it!
    My idea has been accepted. How long will it take to be implemented?
    Sadly, we will not be able to provide dates for the implementation of any accepted ideas within the community due to the number of factors involved. Please be patient and let us make sure it is completely ready before we make it available.
    How will I know if an idea has been implemented?
    You can track the status of your ideas as your ideas are sent to the people here at Skype who can make them happen and you will see the status of your idea is updated. We will be telling you if the idea is something we are working on now or would like to do in the future, or if it’s something that is not feasible for us at this time. To ensure you don’t miss any updates select “Subscribe” from the “Idea Options” menu when viewing your idea.
    What ideas have been implemented so far?
    You can check the "Accepted and Implemented ideas" topic which we will post once the first idea got implemented.
    Can I edit or delete my ideas comments?
    No, you can't. Be sure to check your spelling and preview your comment before you post it; you can't edit a comment once it's posted.
    Who moderates/ manages the ideas board and in what frequency?
    The community team is monitoring the board on the daily basis and product managers will come in on a bi-weekly basis to update statuses of the ideas and post their comments.
    If Skype decides not to pursue my idea, will you tell me why?
    We do not always provide the reasons for our decisions regarding ideas submitted for review but will strive to provide an explanation where possible.
    If I am not comfortable submitting my idea over the Internet, is there another way I can do so?
    No. Unfortunately we are only collecting ideas using the idea board at this time.
    Follow the latest Skype Community News
    ↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

    Wait!! If you about to post a reply to this thread this post is for you!
    You guys who have posted obviously have not read the first sentence of the long OP, let alone the whole thing.
    This is the wrong place.
    Post them here which is formatted for handling requests:
    http://community.skype.com/t5/Windows-desktop-client-Ideas/idb-p/Windows_Ideas
    If you are asking questions about skype issues this thread is really the wrong place lol. Getting an answer to yoru question will require a little effort on your part.
    First go here:
    https://support.skype.com/en/
    Read through that page, if you want to narrow it down and search, use the search.
    Since the search targets all skype forums, include which OS you are on.
    However since you all are probably on windows, click this link and use search or browse topics.
    Do not post a new thread without using search. Look for forum topics marked as [Solved]. Doing otherwise spams the forum and is globally known as inappropriate and poor forum etiquette.
    http://community.skype.com/t5/Windows-desktop-client/bd-p/Windows
    Thank you

  • Multiple libraries, Pbook/Pmac, advice for management & updating please.

    Hi Everyone,
    I travel frequently, and am looking for suggestions to keep all my iPhoto libraries up to date. I currently have a g5, Powerbook, and Mini.
    I just upgraded to iPhoto 6 and I have several thousand photos on my Dual g5. I just came back with 1000 more from my diving trip. The problem is, they are on my Powerbook, and taking up alot of space on the relatively small hard drive. I managed to work through the rough upgrade from 5 to 6, and now I need some more help...
    1) What is your advice for managing multiple libraries of photos.
    2) What is the best way to transfer the iphoto pics (and movies) to my desktop, which of course has the larger storage capacity, after travelling...
    Thanks,

    Jason:
    There are several different approaches to what you want to do. Let me just throw out a couple that I'm familiar with.
    To get the new photos from your PB to your G5 and maintain any keywords, and other organization effort you put into them, you'll need the paid version of iPhoto Library Manager. It will allow you to merge libraries or copy between libraries and maintain the metadata, etc. That's the only way currently available to move photos from one library to another and keep the roll, keywords, comments, etc. with those photos. You can connect the two Macs with one in the Target Mode, probably your PB, and then run iPLM to move the photos to the G5 library.
    Now there is a way to have a library on your PB that reflects the one on your G5 but is only a fraction of the size. That's to have an alias based library on your PB that uses the Originals folder as its source of source files. (My 25,600 files, 27G, are represented by an iPhoto Library folder of only 1.75G). When the PB is not connected with the G5, say with a LAN, it will have limited capabilities which are in part: you'll only be able to view the thumbnail files, be able to add comments, create, delete or move albums around, add keywords (but with some hassle-but it can be done). You can't do anything that requires moving thumbnails around, work with books, slideshows or calendars. Once the two computers are networked together again the library will act as normal.
    Now while on the road you can have a "normal" library to import new full sized files, keyword them, add comments, etc. and then transfer to the G5 library. Once in the G5 library they will be represented in a roll(s) and corresponding folder in the Originals folder. You then fire up the "alias" library, and import those new folders in the G5 Originals folder.
    It may be a lot of work but it may be one way of doing it.
    I've not done any of the "sharing" with iPhoto so don't know if that's another possible candidate for transferring.
    P.S. FWIW I've created this workflow for converting from a conventional library to an alias based one.

  • Advice for real performanc​e of LV8.5 operate in the XP and Vista

    Hi all
    My company had purchased new computers for LabVIEW programming purpose.
    We may install the LV8.5 in these computers but OS are not decided yet. Also, we have the current PC is only XP licensed
    Therefore, can anyone give the advice for the real performance advantage of using :
    LV8.5 with Vista over LV8.5 with XP
    LV8.5 with Vista over LV7.1 with XP
    LV7.1 with Vista over LV7.1 with XP
    New computers detail:
    Intel(R) Pentium(R)Dual-Core processor E2160
    BCH-P111 -1.80GHz, 1MB L2 cache, 800MHz FSB
    2GB RAM
    Thanks
    Best Regards
    Steve So

    The biggest issue I have seen with 8.5 Vista vs. XP is that if you leave Vista in the standard theme, the fonts have changed.  I designed several front panels to have them be out of whack with XP.  So if you are going to be using code across platforms, you need to keep in mind they will look different unless you use the XP theme in Vista, or customize your fonts to make sure they remain the same between the systems.  The dialog font is a different size (13 on Vista vs. 11 on XP), and a different font (can't remember the difference).  That was the big one I noticed.
    8.5 over 7.1 is mostly going to be the learning curve to learn the new features.  Overall, I have appreciated the changes, but there are some things (mostly development related) that I have seen run a little slower in 8.5 than in 7.1, but have not noticed any runtime issues as of yet.  One big change between the versions is application building, which is more complex in 8+.  I do appreciate the new features, though, but NIs project still hasn't rubbed me the right way yet.
    NI doesn't support LV 7.1 with Vista.  I have used it and haven't seen any problems, but that doesn't mean one won't pop up.  If you're going to stay with 7.1, you better stay with XP.  8.5 is the first version NIs supports as Vista compatible.  You will also have to use a relatively new set of device drivers, so if you have old hardware you are trying to use in your new system, make sure it is cimpatible with the latest drivers.
    I have actually had more issues with other hardware drivers and software packages than I have with LabVIEW.  TestStand is not yet supported in Vista, and i found out the hard way, one of the ways it is incompatible and had to move back to XP for devlopment.

  • Creation of ACH pmt advice for EU C.Cd (PMW activated)

    Hi experts,
    I'm a little at loss with my 1st dealings with the payment medium workbench. I got a requirement to setup payment advice a EU company code that currently sends out ACH payments without advice.
    Currently In FBZP,
    1- The EU CCd is a paying company and the form is the same Z_REMITT_S used for the client's US company.
    2- The ACH payment method is defined for the country. The medium is the payment medium workbench and the format is Z_SEPA_CT.
         The US company uses the classic workbench and program RFFOUS_T for ACH.
    3- In Define Payment Method for Company code, I hit a snag because Under Form Data, there is only the "Drawer on the Form" segment; the entire "Forms" segment where you'd select your script is missing.
    Bottom line is How do I set up payment advice for ACH for a EU company paying EU vendors? (am I even asking the right question here?)

    maybe OP want to extract all numbers from his inbox using regular expressions?

  • Automatic creation of remittance advice for employee expense reimbursements

    Hello experts
    Is there a way to have remittance advices for employee expense reimbursements created automatically at the time of payment media run? In case of suppliers, in the supplier base you can heck "Advice Required" and then at the time of media run the remittance advice can be generated alongwith the payment. Is there a similar setting that can be done for employees?
    Thanks
    Gopal

    Hi
    Just to follow on from Ravi's reply:  most sites that I work at have the report RPRAPA00 scheduled to run on a periodic basis (define the job via transaction code SM36) to automatically create employee's vendor accounts.   A screen variant is usually saved for the program, and then the batch session is monitored on a regular basis to ensure that it has run successfully.
    Cheers
    Kylie

  • Can anyone help me with advice for a replacement hard drive

    Hi there,
    Can anyone help me with advice for a replacement hard drive and RAM upgrade for my Mac Book Pro 5,3
    Its 3 years old & running Snow Leopard 10.6.8
    I do a lot of audio & movie work so performance is important.
    The logic board was replaced last summer & I was advised to replace the hard drive then...oops
    Anyway it has limped on until now but is giving me cause for concern...
    I have found a couple of possibilities below...so if anyone does have a moment to take a look & help me out I would be most grateful
    http://www.amazon.co.uk/Western-Digital-Scorpio-7200rpm-Internal/dp/B004I9J5OG/r ef=sr_1_1?ie=UTF8&qid=1356787585&sr=8-1
    http://www.amazon.co.uk/Kingston-Technology-Apple-8GB-Kit/dp/B001PS9UKW/ref=pd_s im_computers_5
    Kind regards
    Nick

    Thanks guys that is so helpful :-)
    I will follow your advice Ogelthorpe & see how I get on with the job!!! Virgin territory for me so I may well shout for help once my MBP is in bits!! Is there a guide for duffers for this job anywhere??
    & yes in an ideal world I would be replacing my old MBP but I'm just not in a position to do that at the moment....let's hope things pick up in 2013
    All the very best
    Nick

Maybe you are looking for

  • How do I get the itunes stored files on my computer to store by album name not by artist?

    How can I get itunes to store my computer music files by album name not by artist? It's a pain retreving a stored album from my external drive.

  • Java.lang.ClassCastException in JSP page

    My JSP page: <%@page contentType="text/html"%> <HTML> <HEAD> <TITLE> JDBC Servlet/JSP Example </TITLE> </HEAD> <BODY> <%@ page import="myBeans.memoryBean" %> <%@ page import="java.util.Vector" %> <H1> JDBC Servlet/JSP Example </H1> <H2> <%= session.g

  • ISync NOKIA 5000d-2

    Starting this topic because it seems the issue of enabling iSync for the Nokia 5000d-2 has not been fully resolved for everyone (um... me, for example). The previous FIX posted for the Nokia 5000 is here: http://discussions.apple.com/message.jspa?mes

  • Multiple airport express clients dropping iTunes

    Hello, I'm new to the board and appreciate the resource and any feedback you guys can provide. My music is stored on the iMac and I'm trying to stream iTunes to two AX's and the music drops out often. They are both set up as clients. I have searched

  • Positioning a dialog box

    I have written an applet in swing and I want to display a dialog box - how do i make it so that it displays in the middle of the screen each time it is displayed? cheers David