Making graphic components clickable

Hi, new Java programmer here. I'd like to be able to draw rectangles into a JPanel and make them listen for mouseclicks. My only clue is that I need to descend them from a class that has an addActionListener method, like a button, but efforts so far haven't been successful.
Can anyone show me how to create a rectangle object that will react to mouse click events? Thanks very much in advance.

Working on JN_ 's advice I decided to have a go at it. Hope this helps:
import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
public class Test
     public static void main(String[] args) throws Exception
          new Test();
     Test()
          JFrame frame = new JFrame();
          frame.setContentPane(getPanel());
          frame.setSize(300,300);
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          frame.setVisible(true);
     private JPanel getPanel()
          MyPanel panel = new MyPanel();
          return panel;
class MyPanel extends JPanel
     Rectangle r = new Rectangle(10,10,100,100);
     Color col = Color.BLUE;
     MyPanel()
          // enable this JPanel to receive mouse events
          enableEvents(AWTEvent.MOUSE_EVENT_MASK);
     protected void processMouseEvent(MouseEvent e)
          // check if it is a mouse click
          if (e.getID() == MouseEvent.MOUSE_CLICKED)
               if (r.contains(e.getX(), e.getY()))
                    if (col.equals(Color.BLUE))
                         System.out.println("green");
                         col = Color.GREEN;
                    else
                         System.out.println("blue");
                         col = Color.BLUE;
               repaint(); // indirectly calls paintComponent()
     protected void paintComponent(Graphics g)
          g.setColor(col);
          g.fillRect(r.x, r.y, r.width, r.height);
}

Similar Messages

  • ListView appearing behind other graphical components in VBox

    I have created a ListView implementation of a ChoiceBox since I have a very long list of items and I don't like the fact that the entire list is displayed when opening the ChoiceBox. I have attached this ListView to a button so that when a user clicks on the button the ListView opens just like a ChoiceBox. My issue, however, is that when the ListView is diplayed it appears behind the other graphical components in my VBox container! I have tried to call "toFront()" on my ListView component however the VBox repositions my ListView component to the bottom of the VBox (which makes sense since toFront merely moves the node to the end of the VBox node list). Obviously this is not the behaviour I want and I don't want to have to convert my VBox to a StackPane (or just a Pane) and layout the components myself since the VBox lays out the components perfectly. It would be nice if there were a "z order" parameter but that doesn't appear to be the case and I have already looked into the "depth" parameter.
    Are there any other ways to bring my ListView to the front without the VBox repositioning this component? How does the ChoiceBox component itself accomplish this? I have also tried to embed the ListView in a PopupControl but the unfortunate side effect of this is that the Popup always appears in front of EVERY window on my screen which is a tad annoying.
    BTW, I think JavaFX is the next best thing to sliced bread! I have written a very large application and this is the only issue that I have run into since it went GA. JavaFX has far exceeded my expectations and the JavaFX team (and Oracle in general) and other developers who have contributed to this project should all be commended for the outstanding work they have done on this!!!

    fermat wrote:
    I have created a ListView implementation of a ChoiceBox since I have a very long list of items and I don't like the fact that the entire list is displayed when opening the ChoiceBox. I have attached this ListView to a button so that when a user clicks on the button the ListView opens just like a ChoiceBox. My issue, however, is that when the ListView is diplayed it appears behind the other graphical components in my VBox container! I have tried to call "toFront()" on my ListView component however the VBox repositions my ListView component to the bottom of the VBox (which makes sense since toFront merely moves the node to the end of the VBox node list). Obviously this is not the behaviour I want and I don't want to have to convert my VBox to a StackPane (or just a Pane) and layout the components myself since the VBox lays out the components perfectly. It would be nice if there were a "z order" parameter but that doesn't appear to be the case and I have already looked into the "depth" parameter.
    Are there any other ways to bring my ListView to the front without the VBox repositioning this component? How does the ChoiceBox component itself accomplish this? I have also tried to embed the ListView in a PopupControl but the unfortunate side effect of this is that the Popup always appears in front of EVERY window on my screen which is a tad annoying.Ya, the PopupControl is the way to go with this. The reason why is that if you use "lightweight" rendering of the drop down (er... popup?) and it extends beyond the end of the window, you will have your list appear clipped. So you have to use a real heavyweight window (the PopupControl) to make sure that if it extends beyond the edge of the window, it displays correctly.
    I believe the UI controls team is planning on adding a proper ComboBox (which, FWIW, we always planned to add) sometime between now and 3.0, but I'm not sure when. The ChoiceBox actually uses a ContextMenu, while ComboBox would use PopupControl, but some of the little details are the same. Here is a code snippet that might be useful from the ChoiceBox skin.
            // When popup is hidden by autohide - the ChoiceBox Showing property needs
            // to be updated. So we listen to when autohide happens. Calling hide()
            // there after causes Showing to be set to false
            popup.setOnAutoHide(new EventHandler<Event>() {
                @Override public void handle(Event event) {
                    ((ChoiceBox)getSkinnable()).hide();
            // fix RT-14469 : When tab shifts ChoiceBox focus to another control,
            // its popup should hide.
            getSkinnable().focusedProperty().addListener(new ChangeListener<Boolean>() {
                @Override public void changed(ObservableValue<? extends Boolean> observable, Boolean oldValue, Boolean newValue) {
                    if (!newValue) {
                        ((ChoiceBox)getSkinnable()).hide();
            // TODO remove this id once bug RT-7542 is fixed.
            popup.setId("choice-box-popup-menu");
    BTW, I think JavaFX is the next best thing to sliced bread! I have written a very large application and this is the only issue that I have run into since it went GA. JavaFX has far exceeded my expectations and the JavaFX team (and Oracle in general) and other developers who have contributed to this project should all be commended for the outstanding work they have done on this!!!Dude, thanks for that, you just made my day :-)

  • Access to graphical components in AddOn Forms with Indirect Access Licence

    Hi,
    we have been developing an add on whose forms contain SAP Business One graphical components such as Calendar, Choose from list, calculator..
    Our users who have indirect access licence havent' access to the graphical components Calendar and Calculator whereas they have access to choose from list.
    SAP communicated in the fact that Indirect Access Licence doesn't allow user to have access to SAP Business One forms but nothing is mentioned about the graphical components used in Add On forms.
    Moreover the difference of behaviour between Calendar and choose from list is not logic.
    Do you know if SAP intends to fix this problem and allow users with Indirect Access Licence to have access to graphical components in Add On forms ?
    Thank you in advance for your returns

    Thank you for your reply.
    I'm afraid I do not undersand.
    Do we have to develop again the graphical components Calendar and Calculator whereas they are available in the SDK ?
    If yes, how do you do to develop these components ?
    Thank you in advance.

  • Making jars double-clickable please help

    i'm having trouble making a jar file double-clickable.... and i'm not entirely sure that i'm making the jar file correctly in the first place.
    the program is called clock.java, and i can compile and run it from netbeans. the three classes, ClockView, Timestamp, and clock, are in a directory together, and clock has the main.
    in order to make it double-clickable, i'm supposed to have a manifest file called Manifest.mf with a line of code:
    Main-Class: clock
    which i put in a text file in the same directory as clock, ClockView, and Timestamp. i name it "Manifest.mf".
    from command prompt, in the same directory, i've tried typing the jar command several different ways.
    jar cvf Manifest.mf clock.jar *.class
    -this one makes a Manifest.mf file, but no jar. Manifest.mf is full of computer lang stuff.
    jar cvf clock.jar *.class
    -this makes a clock.jar, but obviously no manifest file.
    these are my questions:
    do i need to put in the manifest file when i make the jar? was my command line correct for this if so? is my manifest file correct if so?
    if i am supposed to add it later, how do i?
    is there some reason i wouldn't be able to make jar files from this directory?
    when it does make the jar file, if i double-click it, i get:
    Failed to load Main-Class manifest attribute from C:\Documents and Settings\paul\Desktop\java\clock\src\clock\clock.jar
    i'm kind of new at this, and i've been trying to figure this out for a while. thanks for the help.

    The same problem happened to me .. First every time a tried to run the jar file from the command prompt it echoed lots of error. not finding pertaining to manifest file.
    Later i fixed it. And I tell you the easy way how to run the jar file from the command prompt.
    When you build the ur project in NetBeans IDE. During running it tells how to run the jar file from the command prompt. But before running your project you need to right - click to your project and choose the properties and choose run and define you main class(you also click browse to automatically find the main class ).
    And after that u can build. During building your project in the ouput window running you project on the command prompt is told so you can copy it and paste it in a file with .bat extension and double click to run it/

  • Help required in knowing about graphic components in java

    Hi I am in urgent requirement of finding out some graphing components for java.I want these components to work with Jsp. I am new to this and have no idea as to where to search for them. can any one help me in trying to find something.Is there anything like chart fx?

    Please check online help:
    http://developers.sun.com/prodtech/javatools/jscreator/reference/docs/help/2update1/vcs-nb/vcs_cvs.html
    and
    Source Code Control Features in the Sun Java Studio Creator 2 IDE
    http://developers.sun.com/prodtech/javatools/jscreator/reference/fi/2/source-code-control.html

  • Making http links clickable, when pulling in content from an external feed.

    Hi,
    I'm pulling in external content from an RSS feed and binding it to Flex controls (TextArea, DataGrid, etc.).  When the content contains a http link, I'd like for that link to be clickable.  What is the best way to do this?  I would think this would be the default behavior, but that doesn't appear to be the case.
    Thx,
    Ian

    Hi,
    The TextArea and DataGrid just use default  TextField instances which are plain text.
    You would  need to set htmlText on the text area and create a custom item renderer  for the data grid that accepts html text, then parse your text and  create anchors.
    Don't really see an easy way out of the  box.
    Mike

  • Making a link clickable

    Here's a complicated problem.
    I work for an educational institution, and after a user enters their credentials there may or may not be a link to display. Look below for what currently displays:
    P01111111
    Welcome, <name>
    ADMISSION REQUIREMENTS
    Requirement     Received Date     Comments     Required
    Application Fee - $30               
    College Transcript     2/6/2007     College Name     Y
    Ref. Letter Dean of Students     11/29/2006          Y
    FINANCIAL AID REQUIREMENTS
    Requirement     Status     Link for Further Information
    District Financial Aid Application     Received and Satisfied     
    Free Application for Federal Student Aid (FAFSA) results     Missing Document     www.fafsa.ed.gov
    You see the URL for fafsa? I want that to be a clickable link. The following code involves HTML, ASP, and SQL. There is a loop involved. Basically, you'll see that I copied and pasted what is currently there and got rid of fields which I don't think pertain to the URL.
    This might take someone who is generous or has a lot of time on their hands. Help is appreciated.
    <p style="padding: 25px 0 0 15px;"><strong>FINANCIAL AID REQUIREMENTS</strong></p>
    <p>
    <div id="notification">
    <table cellpadding="10" id="SQLContainer">
    <tr>
    <th><strong>Requirement</strong></th>
    <th><strong>Status</strong></th>
    <th><strong>Link for Further Information</strong></th>
    </tr>
    <%
    '-----------Bottom (FINANCIAL AID REQUIREMENTS)
    set conn=Server.CreateObject("ADODB.Connection")
    conn.Open "HappyServer3;User Id=SpecialUser; Password=Password1186;Data Source=HappyServer3;"
    set rs = Server.CreateObject("ADODB.recordset")
    rs.Open "SELECT DISTINCT bbqreq_long_desc, bbq_desc, bbq_url FROM happy.bbqreq, happy.bbqreq, mars.jupiter, happy.bbqtrst WHERE bbqreq_treq_code = bbqreq_code AND bbqreq_aidy_code = '0111' AND bbqtrst_code = bbqreq_trst_code AND bbqreq_pidl = jupiter_pidl AND jupiter_id = '" & request.form("PNumber") & "' AND jupiter_change_ind is null;", conn
    do until rs.EOF%>
    <tr>
    <%for each x in rs.Fields%>
    <td><%Response.Write(x.value)%></td>
    <%next
    rs.MoveNext%>
    </tr>
         <%loop
    rs.close
    conn.close
    %>
    <%
    '-----------Bottom (FINANCIAL AID REQUIREMENTS)
    set conn=Server.CreateObject("ADODB.Connection")
    conn.Open "HappyServer3;User Id=SpecialUser; Password=Password1186;Data Source=HappyServer3;"
    set rs = Server.CreateObject("ADODB.recordset")
    rs.Open "SELECT DISTINCT bbqreq_long_desc, bbqtrst_desc, bbqreq_url FROM happy.bbqreq;", conn
    do until rs.EOF%>
    <tr>
    <%for each x in rs.Fields%>
    <td><% a href="Response.Write(x.value)"%></td>
    <%next
    rs.MoveNext%>
    </tr>
    <%loop
    rs.close
    conn.close
    %>
    </table>
    </div>

    First, this is an Oracle forum, not an ASP forum.
    Second, please format your code... it's near impossible to read.
    Third, I truly hope those are not the real user id and password and you've changed them.
    Fourth, you may want:
    <tr><&#37; for each x in rs.Fields &#37;> <td><a href=&quot;&lt;&#37; Response.Write(x.value) &#37;&gt;&quot;></td> <&#37; next rs.MoveNext &#37;> </tr>
    instead.

  • I need help making a layer clickable

    I am trying to make the layer "click to call" clickable but cant do it.   Please help.   Thanks!

      You can only isolate it using the slice tool in CS6. It’s not possible in Elements however you could save the entire design as a jpeg or png file and use it as a clickable link. See this earlier thread of mine for details:
    http://forums.adobe.com/message/4687469

  • Making graphics

    Hi!
    I`m very beginner and I would like to know how can I make models?For example a cube,which I can move in the program?Where can I read about this.I don`t understand the official articles.I use j2sdk1.4.2_08 .Thanks for all help.

    There is an on-line tutorial:
    http://java.sun.com/docs/books/tutorial/2d/index.html
    This book is an introduction to the 2D API:
    Java 2D Graphics, by Jonathan Knudsen, published by O'Reilly.

  • Importing XML file to InDesign : making a bloc clickable using an url field from the XML

    Greetings, here is what I want to do, I want to know if it is possible and possibly how.
    The idea is to make one big InDesign document in which I would import multiple xml flies such as the code sample given below
    Then apply some InDesign styles to display certain fields in a certain way.
    The document is eventually rendered into a PDF file that will be clickable.
    The trick is I want every block to be clickable and target the URL given in the XML <url> </url>
    Can you help me ?
    XML sample :
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?><Root><bloc-texte><num-conf>1270</num-conf><url>http://www.cndp.fr/crdp-nancy-metz/index.php?id=3905</url>
    <liste-logos>Nathan  CDDP57  DSDEN </liste-logos>
<aff-type>Salon</aff-type>
<aff-titre>Salon des ressources éducatives de Moselle</aff-titre>
<aff-ss-titre>conférence de Françoise Picot: production d'écrits C2,C3</aff-ss-titre>
<aff-intervenant>Françoise Picot</aff-intervenant>
<aff-qual-intervenant>IEN auteur Nathan</aff-qual-intervenant>
<aff-intervenant></aff-intervenant>
<aff-qual-intervenant></aff-qual-intervenant>
<aff-intervenant></aff-intervenant>
<aff-qual-intervenant></aff-qual-intervenant>
<aff-ville>Montigny lès Metz</aff-ville>
<aff-lieu>ESPE de Lorraine</aff-lieu>
<aff-salle>des fêtes et Gymnase</aff-salle>
<aff-date>mercredi 26 février 2014</aff-date>
<aff-heure-debut>14&#8201;h</aff-heure-debut> – <aff-heure-fin>17&#8201;h</aff-heure-fin>
<aff-url>http://www.cndp.fr/crdp-nancy-metz/index.php?id=3905</aff-url>
<chem-type>Salon</chem-type>
<chem-titre>Salon des ressources éducatives de Moselle</chem-titre>
        <chem-ss-titre>conférence de Françoise Picot: production d'écrits C2,C3</chem-ss-titre>
<chem-intervenant>Françoise Picot</chem-intervenant>
<chem-qual-intervenant>IEN auteur Nathan</chem-qual-intervenant>
<chem-intervenant></chem-intervenant>
<chem-qual-intervenant></chem-qual-intervenant>
<chem-intervenant></chem-intervenant>
<chem-qual-intervenant></chem-qual-intervenant>
<chem-ville>Montigny lès Metz</chem-ville>
<chem-lieu>ESPE de Lorraine</chem-lieu>
<chem-salle>des fêtes et Gymnase</chem-salle>
<chem-date>mercredi 26 février 2014</chem-date>
<chem-heure-debut>14&#8201;h</chem-heure-debut> – <chem-heure-fin>17&#8201;h</chem-heure-fin>
<chem-url>http://www.cndp.fr/crdp-nancy-metz/index.php?id=3905</chem-url>
<web-titre>Salon des ressources éducatives de Moselle</web-titre>
<web-ss-titre>conférence de Françoise Picot: production d'écrits C2,C3</web-ss-titre>
<web-intervenant>Françoise Picot</web-intervenant>
<web-qual-intervenant>IEN auteur Nathan</web-qual-intervenant>
<web-intervenant></web-intervenant>
<web-qual-intervenant></web-qual-intervenant>
<web-intervenant></web-intervenant>
<web-qual-intervenant></web-qual-intervenant>
<web-url>http://www.cndp.fr/crdp-nancy-metz/index.php?id=3905</web-url>
<web-puissance> </web-puissance>
<web-qual-puissance></web-qual-puissance>
<web-puissance> </web-puissance>
<web-qual-puissance></web-qual-puissance>
<web-puissance> </web-puissance>
<web-qual-puissance></web-qual-puissance>
<web-titre-verso>Salon des ressources éducatives de Moselle</web-titre-verso>
<web-ss-titre-verso>conférence de Françoise Picot: production d'écrits C2,C3</web-ss-titre-verso>
<web-date>mercredi 26 février 2014</web-date>
<web-heure-debut>14&#8201;h</web-heure-debut> – <web-heure-fin>17&#8201;h</web-heure-fin>
<web-ville>Montigny lès Metz</web-ville>
<web-lieu>ESPE de Lorraine</web-lieu>
<web-salle>des fêtes et Gymnase</web-salle>
<carton-titre>Salon des ressources éducatives de Moselle</carton-titre>
<carton-ss-titre>conférence de Françoise Picot: production d'écrits C2,C3</carton-ss-titre>
<carton-intervenant>Françoise Picot</carton-intervenant>
<carton-qual-intervenant>IEN auteur Nathan</carton-qual-intervenant>
<carton-intervenant></carton-intervenant>
<carton-qual-intervenant></carton-qual-intervenant>
<carton-intervenant></carton-intervenant>
<carton-qual-intervenant></carton-qual-intervenant>
Inscription en ligne sur <carton-url>http://www.cndp.fr/crdp-nancy-metz/index.php?id=3905</carton-url>
<carton-puissance> </carton-puissance>
<carton-qual-puissance></carton-qual-puissance>
<carton-puissance> </carton-puissance>
<carton-qual-puissance></carton-qual-puissance>
<carton-puissance> </carton-puissance>
<carton-qual-puissance></carton-qual-puissance>
<carton-titre-verso>Salon des ressources éducatives de Moselle</carton-titre-verso>
<carton-ss-titre-verso>conférence de Françoise Picot: production d'écrits C2,C3</carton-ss-titre-verso>
<carton-date>mercredi 26 février 2014</carton-date>
<carton-heure-debut>14&#8201;h</carton-heure-debut> – <carton-heure-fin>17&#8201;h</carton-heure-fin>
<carton-ville>Montigny lès Metz</carton-ville>
<carton-lieu>ESPE de Lorraine</carton-lieu>
<carton-salle>des fêtes et Gymnase</carton-salle>
</bloc-texte></Root>

    If you select the text you want to be clickable then go to Window>Interactive>Hyperlink you can then add a hyperlink to that entire block of text.
    Is that what you want?

  • Making background image clickable link

    I have several div tags with background images in them.  I want to make the background images clickable links.  what is the easiest way to do this?

    Yes, the background image can be made clickable.
    Here is the link to get the info to one method: http://ran.ge/2009/11/11/css-trick-turning-a-background-image-into-a-clickable-link/
    Basically it is written like this:
    ==CSS==
    #bkgrdimage {
        background-image:url ('image.png');
        display:block;
        height:??px;       (image height)
        width:??px;        (image width)
        text-indent:-9999px;  
    ==HTML==
    <a href="http://????" title="Title of Link" id="bkgrdimage">Basic Text For this Link</a>
    The text indent places the "basic text for this link" outside the browser screen.

  • How to access graphic components from classes?

    Hi,
    I am creating a Flex application. In my Main.mxml, I add
    different UI elements, such as panels. I also have a few
    actionscript files. Everything is in the same folder. So my
    question is : how can I access a panel created in Main.mxml from an
    actionscript class ? By accessing the panel, I mean things like
    change its properties, etc. Is it possible to access those in a
    'Flash-like' way, using something like _root.myPanel, or is it only
    possible through passing parameters?

    Well...it pains me to see someone obviously new to programming struggle here...so I'll take this one on:
    Here is the BAD way to do it...but it is basically what you are looking for...to learn GOOD ways to do this, please invest in some programming books and learn about encapsulation, MVC, and other programming/architectural styles...anyways...here is the BAD, but easy way:
    In your SGui class, right after the constructor you have to "declare" your object reference as a class member, so edit your file to make it say:
    public class SGui {
         public JButton addStickButton;Then, edit the line in SGui that says:
    final JButton addStickButton = new JButton();so that it just says:
    addStickButton = new JButton();Then, in your Soft class, you can access it just the way you wanted to in your comment:
    gui.addStickButton.setEnabled(false);Other Java programmers reading this thread will probably shoot me for showing you how to do it this way, because it violates principles of encapsulation...but go ahead and use it so you can move forward...but study a little more online or in books to get the hang of it :)
    Message was edited by:
    beauanderson
    Message was edited by:
    beauanderson

  • Help making a label clickable

    HI,
    I am currently triying to set up a JLabel so that it can link me to go to another page in the GUI. Could anyone possibly help please
    many thanks

    JLabel label = new JLabel();
              label.addMouseListener(new MouseListener() {
                   public void mouseClicked(MouseEvent e) {
                        // TODO Auto-generated method stub
                   public void mouseEntered(MouseEvent e) {
                        // TODO Auto-generated method stub
                   public void mouseExited(MouseEvent e) {
                        // TODO Auto-generated method stub
                   public void mousePressed(MouseEvent e) {
                        // TODO Auto-generated method stub
                   public void mouseReleased(MouseEvent e) {
                        // TODO Auto-generated method stub
              });you probably want the mouseReleased method to do the business

  • Making dynamic emails clickable

    I tried mailto: in the link area, that creates a blank mail.
    I tried dragging the dynamic email fropm the recordset. That is not
    allowed. How do I get the results page email to be automatically
    open and populate an email?
    Jim Kemble

    If you are using PHP/MySQL put this, modified for your DB, in
    the link property of your cell in the repeating table region:
    mailto:<?php echo $row_rsUsers['email']; ?>
    So your table cell would then contain something like this:
    {rsUsers.email}
    And the link property for that cell would be the first line
    of code above. Instant dynamic e-mail clicky.
    Glenn

  • Lack of useful components for application developer :-(

    I want to share some remarks about our rewrite old Windows application to new AIR/flex application.
    If any Adobe staff will reading this it will be great :-)
    For colorfull web application with exotic buttons is Flex undoubtedly great choice.
    But there is many developers (and firms like us) who looking for something little different.
    We got bunch of Windows application written in Delphi. And we want (must) to move to another technology.
    AIR is superior in language, runtime, simple move-to-web, blazeDS, tools and ecosystem growth is promising.
    The only bad thing about Flex/AIR is UI. Yes, you hear right. UI is our biggest show-killer. And I am afraid that even with spark it will not be better.
    We wrote application not coloring-book.
    So we want only basic but state-of-the-art UI-standard componnets.
    ToolBar, CoolBar, Button with three states, Button with icon and auto-disabled-grayed-icon, etc..
    1) I found on the web three technique how to add icon on the spark button. Two of them include skinning. Absolutly confusing!
    2) No useful CoolBar. How long it takes make CoolBar like in Adobe Acrobat Reader or MS Word in my application? This is matters for me!
    I dont want two or three full-time developers extra for making basic components for us.
    In this point Silverlight got 100% lead. No doubt.
    http://www.componentone.com/SuperProducts/StudioSilverlight/
    http://demos.devexpress.com/AgMenuDemos/
    We still evaluate both technologies. We like Flex because is more JAVA friendly that SilverLight, but lack of usefull components will be final dead-end.
    Am so sorry.
    Know Adobe staff about this issues?
    Want Adobe application-developers or only web-developers?
    Planning Adobe making application components in the future or is satisfied with current state?

    One thing is what is technology is better for me. More jobs in the future.
    Another thing is what is better path for migrating a lot Delphi application.
    Is realy so hard to make simple, nice and usefull toolbar in Flex? I cant find anything. So maybe I must try myself :-(
    What you mean with "Microsoft can no longer execute on new technologies well"?
    My main question in previous post should be "what about lack of useful components".
    And I expected one of this answers:
    Adobe is happy with current state. Main Adobe bussines is colorful web-application.
    Adobe know there should be rich components, but now has no time. In the near future Adobe deal with it.
    I am dummy person and making great "toolbar" is easy as a piece of cake.

Maybe you are looking for

  • OS 10.4.4 + Photoshop Elements 2.0 + Epson Perfection 3200 Photo Scanner

    i have an epson perfection 3200 photo scanner which had worked fine importing into photoshop elements 2.0 when i had an imac g3, but i cannot get it to work on my new machine, a powerbook g4 using 10.4.4. epson said it should work (i downloaded the m

  • Variant modification in SECATT - productive systems

    Dear all, While the execution of some tests with SECATT,  it was needed to change the file name of the external variants path. As the quality client is closed for modifications, the change is not possible unless we open the client (table T000), even

  • OBIEE 11.1.1.6 to 11.1.1.7 Out-of-place upgrade only

    Currently we have OBIEE 11.1.1.6 instance on Linux machine and want to upgrade this to OBIEE 11.1.1.7. We have installed 11.1.1.7 on different Linux machine, we want to upgrade OBIEE 11.1.1.6 to OBIEE 11.1.1.7 using out-of-place only i.e. RPD and Cat

  • Function module for srm document flow

    Hi Friends,               If there is any function module which give me the complete document flow for the document.

  • Why is there no more update of software for the first gen ipad ?

    why have they stoped anymore updates... common...why do we have to stay with old updates..the new apps being updated demand ios 6..and anyways there are not many useful apps for ipad1..why do we suffer..:(..plz plz plz...update it...\