Creating a title..Please help

Hello everyone,
Could someone please tell me which program I can use to create the title "Steve Jobs -Apple's CEO" that is in Apple Special Event? I like the way it appeared and I am about to create something like that soon.
Thank you very much for your instructions in advance
Best regards,
James

I believe that you are referring to a "lower third?"
Is that what you wish to do?
If it is, and you don't know how to do that, it might be prudent to get a basic book on motion graphics and get some background on how these things are done.
Motion, LiveType, After Effects, FCP, and dozens of other programs can create lower thirds

Similar Messages

  • I need to create Buttons dynamically Please Help

    I am currently developing a card game. I represent my cards as buttons. But as the player draws more cards from the deck I have to generate buttons dynamically at run-time. I could use arrays of buttons and store new buttons inside that arrays of buttons. But the only problem is I need ActionListener for each of my buttons. How do you create ActionListener for each different dynamically created buttons? Please Help.

    Here is my code. I just do not understand how to create those functions dynamically that functions different each time.
    Here is my code please take a look.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class run108{
    JButton setbutton;
    JButton ButtonUp;
    JButton ButtonDeal;     
    JButton slot1;
    JButton slot2;
    JButton slot3;
    JButton slot4;
    JButton slot5;
    JButton slot6;
    JButton slot7;
    cards[] card = new cards[55];
    public static void main(String[] argv)
         run108 startgui = new run108();
         startgui.createframe();     
    void createframe()
         //Standard of way of creating Frame
         JFrame frame = new JFrame("108");
         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         frame.setLocation(300,200);// Tells the startup position;
         //Adding Panels to the framework
         JPanel panelA = new JPanel();
         panelA.setBackground(Color.white);
         panelA.setLayout(new BoxLayout(panelA,BoxLayout.Y_AXIS));
         JPanel panelB = new JPanel();
         JPanel panelC = new JPanel();
         //Adding buttons with card images
         JLabel label1 = new JLabel("       Set of Cards");
         panelA.add(label1);
         ImageIcon pic1 = new ImageIcon("cards/backd.png");
         setbutton = new JButton(pic1);          
        panelA.add(setbutton);
        ImageIcon picdeal = new ImageIcon("cards/deal.png");
         ButtonDeal = new JButton(picdeal);
         panelA.add(BorderLayout.CENTER, ButtonDeal);
        ButtonDeal.addActionListener(new DealListener());
         JLabel label2 = new JLabel("       Your Target");
         panelA.add(label2);
         ButtonUp = new JButton(pic1);          
        panelA.add(BorderLayout.CENTER, ButtonUp);
        frame.add(BorderLayout.WEST,panelA);
        // Adds 7 initial card slots.
         ImageIcon pic2 = new ImageIcon("cards/backc.png");
         slot1 = new JButton(pic2);
        panelB.add(slot1);          
        slot1.addActionListener(new Slot1Listener());
        slot2 = new JButton(pic2);
        panelB.add(slot2);
        slot2.addActionListener(new Slot2Listener());
         slot3 = new JButton(pic2);
        panelB.add(slot3);
        slot3.addActionListener(new Slot3Listener());
         slot4 = new JButton(pic2);
        panelB.add(slot4);
        slot4.addActionListener(new Slot4Listener());
         slot5 = new JButton(pic2);
        panelB.add(slot5);
        slot5.addActionListener(new Slot5Listener());
         slot6 = new JButton(pic2);
        panelB.add(slot6);
        slot6.addActionListener(new Slot6Listener());
         slot7 = new JButton(pic2);
        panelB.add(slot7);
        slot7.addActionListener(new Slot7Listener());
        frame.add(BorderLayout.CENTER,panelB);
        // This has to be added @ the end to show the components
        //that were added after on. If it is placed before the components
        //the components shall not appear since they sit on the frame
         frame.setSize(600,500);
         frame.setVisible(true);
    class DealListener implements ActionListener
         public void actionPerformed(ActionEvent event){}
    class Slot1Listener implements ActionListener
         public void actionPerformed(ActionEvent event){}
    class Slot2Listener implements ActionListener
         public void actionPerformed(ActionEvent event){}
    class Slot3Listener implements ActionListener
         public void actionPerformed(ActionEvent event){}
    class Slot4Listener implements ActionListener
         public void actionPerformed(ActionEvent event){}
    class Slot5Listener implements ActionListener
         public void actionPerformed(ActionEvent event){}
    class Slot6Listener implements ActionListener
         public void actionPerformed(ActionEvent event){}
    class Slot7Listener implements ActionListener
         public void actionPerformed(ActionEvent event){}
    }

  • Error while Creating sequence. Please help

    I'm using below script to create sequence but getting error
    Error report:
    SQL Error: ORA-01722: invalid number
    01722. 00000 - "invalid number"
    CREATE SEQUENCE BL_BTN_MASTER_SEQ
    MINVALUE 1
    MAXVALUE 999999999999999999
    INCREMENT BY 1
    START WITH (SELECT MAX(BULLETIN_MASTER_ID)+1
    FROM BL_BTN_MASTER)
    NOCACHE;
    FYI..Data type of bulletin_master_id column is NUMBER(22,0)
    PLease help.
    Edited by: user11228834 on May 29, 2013 10:22 AM
    Edited by: user11228834 on May 29, 2013 10:23 AM
    Edited by: user11228834 on May 29, 2013 10:25 AM

    Oracle doesn't like the "(select max(bulletin_master_id)+1 from bl_btn_master)' statement embedded in the CREATE SEQUENCE statement because if you look at the syntax it is expecting an acual number. You could use execute immediate to create the sequence this way:
    {code}
    declare
    v_seq number;
    v_statement varchar2(200);
    begin
    select max(bulletin_master_id)+1
    into v_seq
    from bl_btn_master;
    v_statement := 'CREATE SEQUENCE BL_BTN_MASTER_SEQ ' ||
    'MINVALUE 1 ' ||
    'MAXVALUE 999999999999999999 ' ||
    'INCREMENT BY 1 ' ||
    'START WITH ' || v_seq ||
    'NOCACHE';
    execute immediate(v_statement);
    end;
    {code}

  • Problem in creating DB Link - Please help

    Hi ,
    I created a DB Link with name "CTM_DBLINK".
    i want to create DB Link with different name but using same server and connection also same.
    When i am trying this its shows error :
    "ORA-00933:SQL Command not properly ended."
    My Query :
    create public database link "CTM_BANK"
    connect to ABC
    identified by <pwd>
    using 'database';
    i am getting error on line 3 : identified by <pwd>
    Please help , its urgent.
    Surender

    Try enclosing the password in quotes.
    Same problem occurs if you try to create a user using the password you have given.
    SQL> create user abc identified by abc!;
    create user abc identified by abc!
    ERROR at line 1:
    ORA-00922: missing or invalid option
    SQL> create user abc identified by "abc!" ;
    User created.
    To create the database link, try this:
    SQL> CREATE PUBLIC DATABASE LINK "CTM_BANK" CONNECT TO "ABC"
    2 IDENTIFIED BY "abc!"
    3 USING 'database' ;
    Database link created.
    Hope that helps!
    Regards.
    RK

  • How to create an array - Please help

    Hello. I have been trying to build a dynamic menu. According to different user role, they would have different access options to use the form. Now, I need to create a dynamic menu to display the menu options according to their user role. Somebody told me I can use an array, but I am not sure how to achieve this, and how to display the menu to user. Please help me. Thank you.

    Hi
    Arrays in Form are implemented through Record Groups. However you can enable and disable a menu item throught database roles.
    For more infor please refer Oracle Documentation.
    HTH
    Arvind Balaraman
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by scsyim:
    Hello. I have been trying to build a dynamic menu. According to different user role, they would have different access options to use the form. Now, I need to create a dynamic menu to display the menu options according to their user role. Somebody told me I can use an array, but I am not sure how to achieve this, and how to display the menu to user. Please help me. Thank you.<HR></BLOCKQUOTE>
    null

  • Internal software error cpp, line 214 - creating subtitles failed / please help

    Hello,
    it a pretty toutgh expierience trying to create my first dvd with Adobe,
    I have to hand it over this Friday, in some 12 hours,
    and there is another issue I have to cope with:
    1. I have the project ready, I check for errors and there are no.
    2. My project has 2 two timelines (movie and soundtrack) and subtitles in 7 languages. All already transcoded.
    3. I press build DVD.ISO and here comes the wonderful Adobe greeting: Internal software error. File Spec: cpp, line 214. I clik ok and the other window appears happilly informing me that creating subtitles failed. And creating of thesee subtitles was the only reason I started using Adobe Premiere Pro and Encore
    Could you please help me, I am going slightly crazy with it. How can I resolve this issue. I tried to look at the forum, but did not find the solution. Neither @ google.
    Best regards,
    Michal

    Thanks a lot Stan !
    I did two timelines, since I wanted to give the possibility to listen to the music track, without watching the movie. No idea if this could be done in one timeline (I am just starting my Adobe adventure .
    Coming to the point, I fixed it. Here is how:
    1. While building DVD the message was: Internal software error. File Spec: cpp, line 214. and creating subtitles failed.
    2. I tried to make really big spaces between subtitles, as well as change the fonts, the kerings, etc. - to no avail.
    3. I deleted all the subtitle text (marking it with the mouse and pressing delete), but leaving all the subtitle tracks, since I did not want to link them all again to the subtitle menu buttons.
    4. For each subtitle track I imported the subtitle text once again.
    And it worked! So simple if one already knows how to do it.
    Thanks for help anyway, you and others at this forum helped me a lot during the whole project (missing Encore library, baddriver.txt to mention the most critical issues).
    Best regards,
    Michal

  • I rename a song title, click it & doesnt save the title PLEASE HELP!!!

    So I rename a song title since it is not labeled correctly, and then it changed the title, and moves to the alphabetically correct spot, but then if i double click it after it is changed, it automatically changes the song title back to the original one, and then moves the file automatically to the old spot that it was before i changed the title. Does that make sense? Please help! I am finding it very hard when i rename a song, and it doesnt work!
    I am working with about 5000 mp3s and its a headache...
    thanks!

    View my earlier thread on id3 tag changes not sticking. I think I found the solution:
    ...These files would not allow the tag version to be changed from v2.4. However, if you ctrl-click->convert id3 tags and select id3 tags version as "none", it will default to v1.1. From there the tag info can be edited and the changes will stick. If you need to you can re-convert the tag version (eg.v2.3) and the edits will still be maintained.
    PowerBook G4 1.67GHz   Mac OS X (10.4.7)   iTunes 6.0.5

  • Can't Create New File, PLEASE HELP!!!!

    Hello,
    I've been trying to read the previous forums on this topic and none of the advice has worked for me. I am running Photoshop 7.0 on Windows XP. It has been running fine for several years until this week.
    I ran the Spyder 2 Suite to calibrate my laptop and LCD monitor and now the problem has arisen. One of the software's requests was to disable Adobe Gamma so I deleter my Adobe Gamma Loader.exe file from the start up folder.
    As I went to create a new file in Photoshop, nothing would happen. The whole drop down menu for File was grayed out and I would have to Ctrl+Alt+Delete to get out of Photoshop. I then uninstalled and reinstalled Photoshop, as well as uninstalled the Spyder software and still can't create a new file.
    I checked and my Adobe Gamma Loader is back in the startup folder.
    I also tried deleting my printer and took down my firewall like other posts have listed but those also did not work.
    Please help!!!! I need to get back to some work asap!
    Thanks,
    Ryan

    try resetting your preferences per the faq:
    http://www.adobeforums.com/webx/.ef4a07f/1
    also make sure you're running ps 7.01 there were tons of bug fixes in that update over vers 7.0.

  • Trying to create complicated script, please help!

    I work at a cell phone store where business is less than excellent. We have this nifty tool where i enter a customers phone number and zip code in and it tells me if the are eligible for a discount. So my boss wants me to type in a phone number, beginning with the prefix 208640, and 208641, and beginning at the end of 0000 and ending at 9999, and calling all customers who are shown as eligible, if a phone number and zip code combination does not match, the site will rout me back to the entry page, and if a phone number/zip match it will take me to a new page showing me the results... this sounds like a job for a computer, and I am not willing to put that much time and effort into a useless, remedial task for $9.00 an hour as store manager... Please help!

    Automator might be the wrong tool. For scripting queries, post to the AppleScript forum under OS X Technologies.

  • A dynamic table based on run-time created view object -- please help!

    Hello!
    I'm trying to create a dynamic table based on an run-time created view object. All go ok, but table binding component take the first view/iterator state and don't reflect changes they have. Please, take a look:
    1. At run-time the view is being replaced by new red-only one based on query in application module:
    getQueryView().remove();
    createViewObjectFromQueryStmt("QueryView", statement);
    2. Page definition file contains an iterator (using iterator or methodIterator - doesn't matter) binding and table, which binds to the iterator, like:
    <methodIterator id="distributeQuery1Iter" Binds="distributeQuery1.result"
    DataControl="QueryServiceDataControl" RangeSize="10"/>
    <table id="distributeQuery11" IterBinding="distributeQuery1Iter"/>
    3. The page code uses <af:table>. But, if I use table binding (it's right) like this:
    <af:table var="row" value="#{bindings.distributeQuery11.collectionModel}">
    <af:forEach items="#{bindings.distributeQuery11.attributeDefs}" var="def">
    the table will never changed (i.e. still show the first view instance).
    When I tried to use iterator binding directly (it's bad and cannot provide all needed features unlike CollectionModel from table binding) I saw that table works!
    (Code is somehing like:
    <af:table var="row" value="#{bindings.myIterator.allRowsInRange}">
    <af:forEach items="#{bindings.myIterator.attributeDefs}" var="def">
    Why the table binding do not reflect changes in iterator? Or should I use different approach?
    Thanks in advance!
    Ilya.

    I got it to work! I used a hybrid approach comprised of some of your code and some of Steve Muench's AcceessAppModuleInBackingBean example.
    In the setBindings method, I execute an app module method that redefines the query, then I used your code to delete and recreate bindings and iterator:
    public void setBindingContainer(DCBindingContainer bc) {
    this.bindingContainer = bc;
    rebuildVO();
    The rebuildVO() method looks like the code you provided in your example:
    private void rebuildVO() {
    DCDataControl dc;
    DispatchAppModule dApp;
    DCBindingContainer bc;
    DCIteratorBinding it;
    OperationBinding operationBinding;
    ViewObject vo;
    DCControlBinding cb;
    try {
    bc = getBindingContainer();
    dc = bc.findDataControl(DATACONTROL);
    dApp = (DispatchAppModule)dc.getDataProvider();
    // Execute App Module Method to rebuild VO based upon new SQL Statement.
    dApp.setDispatchViewSQL();
    vo = dApp.findViewObject(DYNAMIC_VIEW_NAME);
    it = bc.findIteratorBinding(DYNAMIC_VO_ITER_NAME);
    it.bindRowSetIterator(vo, true);
    // logger.info("Remove value binding...");
    cb = bc.findCtrlBinding(DYNAMIC_VIEW_NAME);
    cb.getDCIteratorBinding().removeValueBinding(cb);
    bc.removeControlBinding(cb);
    // logger.info("Creating new value binding...");
    FacesCtrlRangeBinding dynamicRangeBinding =
    new FacesCtrlRangeBinding(null,
    bc.findIteratorBinding(DYNAMIC_VO_ITER_NAME), null);
    // logger.info("Add control binding...");
    bc.addControlBinding(DYNAMIC_VIEW_NAME, dynamicRangeBinding);
    } catch (Exception e) {
    e.printStackTrace();
    And my App Module method that redefines the view object looks like this:
    public void setDispatchViewSQL() {
    String SQL =
    "begin ? := PK_BUsiNESS.F_GETDISPATCHVIEWSQL();end;";
    CallableStatement st = null;
    String ViewSQL = null;
    try {
    st = getDBTransaction().createCallableStatement(SQL,
    DBTransaction.DEFAULT);
    * Register the first bind parameter as our return value of type LONGVARCHAR
    st.registerOutParameter(1, OracleTypes.LONGVARCHAR);
    st.execute();
    ViewSQL = ((OracleCallableStatement) st).getString(1);
    findViewObject(DYNAMIC_VO_NAME).remove();
    ViewObject vo = createViewObjectFromQueryStmt(DYNAMIC_VO_NAME, ViewSQL);
    vo.executeQuery();
    } catch (SQLException s) {
    throw new JboException(s);
    } finally {
    try {
    st.close();
    } catch (SQLException s) {
    s.printStackTrace();
    When I run it I get my desired results. One thing I don't quite understand is why when the page is first rendered it shows the last set of records rather than the first. Now I have to figure out how to put navigation URLS in each of the table cells.
    Thanks for your help; I would not have gotten this far without it,
    Jeff

  • SqlType in creating MutableStruct? Please HELP

    Here is the snippets:
    import oracle.jpub.runtime.MutableStruct;
    public class cisObject implements CustomDatum, CustomDatumFactory
    static final String SQLNAME = "OBJ_TYPE_CITY";
    public static final int SQLTYPECODE = OracleTypes.STRUCT;
    static int[] _sqlType =
    12, 12, 12, 2, 91
    static CustomDatumFactory[] _factory = new CustomDatumFactory[5];
    MutableStruct _struct;
    static final cisObject _cisObjectFactory = new cisObject();
    public static CustomDatumFactory getFactory()
    return _cisObjectFactory;
    /* constructor */
    public cisObject()
    struct = new MutableStruct(new Object[5], sqlType, _factory);
    As you can see that MutableStruct need sqlType as its parameter and sqlType is an array of integer. Does anybody know what is that _sqlType correspond to? I khow from the sample code that 12 = String, 4 = Integer.
    How about if I want to add user-defined collection (oracle.sql.ARRAY), what sqlType should I used? Is there any list of _sqlType?
    MutableStruct is a part of:
    import oracle.jpub.runtime.MutableStruct;
    but I could not find it anywhere.
    Any help would be appreciated.
    Best regards,
    Rob
    null

    See the 'Forms' sample file in the Authorware\ShowMe
    directory for a
    possible approach on doing this...
    Erik
    nitekid wrote:
    > hi..is there anyone here know how to create a multiple
    text entry while
    > desigining a quiz? i have created a quiz that require
    user to type in 5 answers
    > but seems like the text entry method didnt allow me to
    put in multiple text
    > entry. only one text entry can be seen on my screen. can
    someone tell me why is
    > that please...Thank you very much..
    >
    >
    Erik Lord<br>
    http://www.capemedia.net<br>
    Adobe Community Expert - Authorware<br>
    http://www.macromedia.com/support/forums/team_macromedia/<br>
    <HR>
    http://www.awaretips.net -
    samples, tips, products, faqs, and links!<br>
    <b>Search the A'ware newsgroup
    archives</b><br>
    http://groups.google.com/groups?q=macromedia.authorware

  • Can't create a signature, please help

    When I try to create a signature, either from the 'sign document' icon or from the 'security settings' drop menu I manage to get to the point where the program asks for a password and when I write a password it says that the password doesn't match. But I am creating a new signature, this is very frustrating, help please.
    Klesita

    I haven't found any forum rules and http://www.oracle.com/html/terms.html
    http://www.oracle.com/technology/forums/faq.html
    I can't find how
    can I create a signature!
    Automatic signature into a post
    Gints Plivna
    http://www.gplivna.eu

  • Creating TV Title Sequence Help

    I have created many successful tv shows using Final Cut Express, and I am embarking on the 10th season of my successful reality show.
    I am introducing a new Title Sequence for the 60 opening and I need help!
    I would like to know which effects and software you would suggest to best construct an opening.
    I don't know if anyone has seen shows like 'Survivor' & 'Big Brother', but most of the shows in that genre take action clips and seem to change their appearance, and overlap them.
    It's hard to describe, but if anyone can offer some advice that would amazing!

    Most of the TV show opens can be done in FCE. If I remember rightly, there's nothing in the Survivor open that can't be reproduced pretty closely in FCE. The logo is obviously made in a graphics application, mostly likely Illustrator and/or Photoshop. The CSI show opens can all be done in FCE. Most of the 24 open can be done in FCE. The graphical element for the numbers would need something like After Effects or Motion, though you could probably do most of it in LiveType, or something that looks similar. The more graphical the open the more likely it needs a specialist compositing application.

  • How to to programmatically create diagnostic profile : Please , Help!

    Hi,
    I already opened a question about that , but since I got a wrong answer ( I think , or i did something wrong ..) , and , since it is very
    important for me :
    May I have a full example showing how to create diagnostic profile programmatically ?
    I tried many ways to do that , but nothing works !
    Among the things i did was ( for example ) , something like this :
    DiagnosticProfileBean bean=new DiagnosticProfileBean();
    // setting the bean ..
    bean.setLatency(latency);
                   bean.setThroughput(throughput);
                   String profileName="EyalProfile";
                   //DataAggregation d;
                   bean.setProfileName(profileName);
                   bean.setApplicationId("com.oracle.training.jms@defaultserver");
                   //bean.setApplicationId("Application");
                   bean.setState(true);
                   bean.setStageObjectName(this.stageObjectIn);
                   bean.setServerId("defaultserver");
    .... and so on ..
         try {
              dataServiceName =ObjectName.getInstance("com.bea.wlevs:Name=DataServiceFactory,Type=DataServiceFactory,Application=com.oracle.cep.training.jms");
              //     DataServiceFactoryMBeanImpl dsfmb=     (DataServiceFactoryMBeanImpl) MBeanServerInvocationHandler.newProxyInstance(connection,dataServiceName, "com.bea.wlevs:Name=DataServiceFactory,Type=DataServiceFactory,Application=com.oracle.cep.training.jms", ObjectName.class, false);
              } catch (Exception e) {
         throw new RuntimeException(e);
         DataServiceFactoryMBean dataServiceFactory=null;
         DiagnosticProfileBean bean=new DiagnosticProfileBean();
         try {
              dataServiceFactory=(DataServiceFactoryMBean) MBeanServerInvocationHandler.newProxyInstance(connection, dataServiceName, DataServiceFactoryMBean.class, false);
                   // dataServiceFactory=(DataServiceFactoryMBean) MBeanServerInvocationHandler.newProxyInstance(connection, dataServiceName, DataServiceFactoryMBean.class, false);
    it all works fine untul now , but when the program runs this :
              dataServiceFactory.createDiagnosticProfileMBean(bean, bean.getServerId());
    I got the "InstanceNotFoundException " ..
    It seems that the problem related to the connection object , but I'm not sure about it.
    The connection was created in 2 different ways , neither of them worked.
    1. ..
    connector = JMXConnectorFactory.newJMXConnector(serviceUrl, env);
                             connector.connect(env);
                             connection = connector.getMBeanServerConnection();
    2.
    MBeanServer connection =ManagementFactory.getPlatformMBeanServer();
    Does anyone have a clue about it??
    Example ( that works ..) will be appriciated !
    If someone has anothar way that works, it is OK to.just something to create a profile ..
    Again, it very important for me, i'm stuck because of that .
    Thanks.

    Hi
    my project includes many files, but a attached thre relevant parts here :
    // connect to server ( like in the examples )
    env.put(JMXConnectorFactory.DEFAULT_CLASS_LOADER, com.bea.core.jmx.remote.provider.msarmi.ServerProvider.class.getClassLoader());
                             env.put(JMXConnectorFactory.PROTOCOL_PROVIDER_CLASS_LOADER, com.bea.core.jmx.remote.provider.msarmi.ServerProvider.class.getClassLoader());
                             JMXServiceURL serviceUrl = new JMXServiceURL("MSARMI", "localhost", port, "/jndi/jmxconnector");
                             env.put(JMXConnectorFactory.PROTOCOL_PROVIDER_PACKAGES,     "com.bea.core.jmx.remote.provider");
                             System.setProperty("mx4j.remote.resolver.pkgs", "com.bea.core.jmx.remote.resolver");
                             connector = JMXConnectorFactory.newJMXConnector(serviceUrl, env);
                             connector.connect(env);
                             connection = connector.getMBeanServerConnection();
    and then :getting MonitorRuntimeMBean object..
    monitorMBean = (MonitorRuntimeMBean)MBeanServerInvocationHandler.newProxyInstance(connection, monitorName, MonitorRuntimeMBean.class, false);
    and then :
    ObjectName thruputObject = monitorMBean.monitorAvgThroughput(stageObjectIn, (new Long(averageThroughputInterval)).longValue(), (new Long(averageThroughputInterval)).longValue());
                   ProbeRuntimeMBean probeAvgThroughput = (ProbeRuntimeMBean)MBeanServerInvocationHandler.newProxyInstance(connection, thruputObject, ProbeRuntimeMBean.class, false);
                   listener = new AverageThroughputJMXNotificationListener(stageName,connection );
    When i done i use:
    probeAvgThroughput .terminate();
    ofcource , i just cut the relevant parts , but I'm sure that what I'm doing is right.
    My question is not about the latency but about AvgThroughput which shows wrong numbers each time i reconnect to thr server .
    The numbers get smaller each time i reconnect ( I described it in my previuos post ).
    My questions are very simple :
    *1. How to add a profile via api ? ( DiagnosticProfile )*
    *2.How to get DataAggregationMBean ?*
    *3. How to get DataServiceFactoryMBean 'and then use it to add profile?*
    PLEASE , I JUST WANT A GOOD EXAMPLE OF DOING THOSE THINGS !!!
    If there is no answer to those, just tell me , because it's been to much time trying to figure it out.
    Having my code , and asking why do I need this , does not contribute to my quetions ..
    I'm sure you ( the oracle company team ) wants to help , but the mosy helpfull help is via GOOD  examples.
    Thanks.

  • TS3212 hi my iphone was updated to IOS6 and now it wont play my music it just scroles through all the titles please help

    my iphone was updated with IOS6 and now it wont play any of my music it just svroles through every song and wont stop i turned it off using the twin keys start and turn off but still no help please can some one halp me this apple softwear is crap

    Hi alicia243,
    Thanks for visiting Apple Support Communities.
    If your iPhone wont power on, I recommend going through these steps first:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Will not turn on, will not turn on unless connected to power, or unexpected power off
    Verify that the Sleep/Wake button functions. If it does not function, inspect it for signs of damage. If the button is damaged or is not functioning when pressed, seek service.
    Check if a Liquid Contact Indicator (LCI) is activated or there are signs of corrosion. Learn about LCIs and corrosion.
    Connect the iPhone to the iPhone's USB power adapter and let it charge for at least ten minutes.
    After at least 30 minutes, if:
    The home screen appears: The iPhone should be working. Update to the latest version of iOS if necessary. Continue charging it until it is completely charged and you see this battery icon in the upper-right corner of the screen . Then unplug the phone from power. If it immediately turns off, seek service.
    The low-battery image appears, even after the phone has charged for at least 20 minutes: See "iPhone displays the low-battery image and is unresponsive" symptom in this article.
    Something other than the Home screen or Low Battery image appears, continue with this article for further troubleshooting steps.
    If the iPhone did not turn on, reset it while connected to the iPhone USB power adapter.
    If the display turns on, go to step 4.
    If the display remains black, go to next step.
    Connect the iPhone to a computer and open iTunes. If iTunes recognizes the iPhone and indicates that it is in recovery mode, attempt to restore the iPhone. If the iPhone doesn't appear in iTunes or if you have difficulties in restoring the iPhone, see this article for further assistance.
    If restoring the iPhone resolved the issue, go to step 4. If restoring the iPhone did not solve the issue, seek service.
    Best,
    Jeremy

  • I want to create an applet, Please Help...

    HI all,
    I want to create an applet which should be able to display text and images...
    To display text in an applet I am using ...
    import java.awt.*;
    import java.applet.*;
    public class SimpleApplet extends Applet
        public void paint(Graphics g)
            g.drawString("A Simple Applet", 20, 20);
    }Now If I want to create few operators in a different class, and i want to use it from the SimpleApplet class what should be doing.

    HI all,
    I am creating an Gui: The code is here:
    import javax.swing.*;
    import java.awt.*;
    public class Tab extends JFrame
        JPanel p,p1,p2,p3,p4,p5;
        Frame f1,f2,f3;
        JTabbedPane tpane;
        public Tab()
            p = new JPanel();
            p1 = new JPanel();
            p2 = new JPanel();
            p3 = new JPanel();
            p4 = new JPanel();
            p5 = new JPanel();
            tpane = new JTabbedPane();
            p.setLayout(new GridLayout(1,1));
            tpane.addTab("File",p1);
            tpane.addTab("Edit",p2);
            tpane.addTab("Document",p3);
            tpane.addTab("View",p4);
            tpane.addTab("Help",p5);
            p.add(tpane);
            getContentPane().add(p);
            setVisible(true);
        public static void main(String[] args)
            // TODO Auto-generated method stub
            Tab t = new Tab();
    }I want to diaplay some text in the main area left. What should I do.
    How to add the Text.

Maybe you are looking for

  • Can I use Magic Jack for BOTH phone calls and Fax. Is Magic jack PLUS BETTER.

    I am using the Magic Jack for regular phone calls. Now, I want to use it for Faxing in and out - on Windows - on a wireless connection to my Officejet 8600 Pro Plus. I see a lot of problems in the forum. Is it easier to buy and use the new Magi Jack

  • Set location in Reminders by tap

    Reminders.app allows to notify on location (arriving or leaving). But when location sets it cannot be selected by tap on the map. Only by writing address via search field. Is there app restriction or my iPhone fault?

  • Upgrade to OS 10.4 with SW coming from new Mac Mini (Intel duo core)

    Is it possible to upgrade my G4 PowerBook to the latest OS 10.4 and iLife06 with the SW provided and installed on new Mac Mini's with the Intel duo core? That would make purchasing a new Mac Mini a sweeter deal.

  • Error in SAP B1 Webservices

    DI Server - Connection problem   Posted: Mar 21, 2006 3:05 PM                           Reply Hi Gurus !! i have some problem with a web application which use a web service on DI Server. I use the DI Server sample application . The connection on DI-S

  • Connect to internet - error updating to 4.2

    Hey there! For some reason itunes/my iphone 4 won't update my software to 4.2.1 or 4.2 (not sure which is the latest update) It gives the following message. Despite the fact i AM connect. is there any possible way to by pass this? or fix this?