Is it possible to create a button??

hi
is it possible to create a button in the midlet (j2me) ????
thanks

Please see this thread http://forum.java.sun.com/thread.jspa?threadID=635335&tstart=30

Similar Messages

  • Is it possible to create custom buttons in CRM Ondemand?

    Hi,
    Is it possible to create custom buttons in CRM Ondemand in any detail page like the inbuilt buttons like 'New', 'Delete' etc? If possible then how?
    Thanks
    Arpita

    You can add a button using custom javascript. but this could potentially have performance issues. please test the performance and functionality if you implement a lot javascript
    see this link : http://helponmyproject.com/TTOCOD/
    Regards,
    Royston

  • Is it possible to create a button which goes back to the previous page?

    I would like to create a button which sits within a interactive pdf page that on click will return me to my previously visited page.
    As the page will be able to be accessed via numerous other pages the traditional built in Execute menu action is not suitable.
    The page which will be displayed (on click of a button) is a series of mattress sizes which i want to be accessable by each bed product in our collection. Once the user has looked at the mattress size guide i want them to be able to return to the bed product that they were looking at originally, without having to then scroll and search.
    Is this possible with some javascript trickery?
    i found this script:
    history.go(-1);
    But allas acrobat was not fond of it.
    PLEASE HELP!
    Thanks in advance.

    PDFs are not HTML documents. HTML has no concept of a physical page and PDF only knows a page canvas.
    You can access the page number property of the doc object and you can set the page number of the page number of the doc object. The page number in Acrobat JavaScript is zero base, the first page is 0.
    To get the page number one uses the following code:
    this.pageNum;
    To set the page number one uses:
    this.pageNum = 0; // goto first page
    To goto the next page:
    this.pageNum = this.pageNum++ // increment the page number and goto that page
    To goto the last page:
    this.pageNum = this.numPages--; // decrement the total number of pages
    To goto the previous page:
    this.pageNum = this.pageNum--; // decrement the page number

  • Edit button in uitableview (possible to create custom buttons)

    Hi
    Instead of Edit button in the UiTableView, we can create a custom buttons. Basically once we clicked the edit button it shows the option (delete button) to delete the corresponding row.
    Like that is it possible to create a custom button? Clicked on custom button, instead of delete button can we show other buttons (ok/cancel), rather than delete we can do any other action?
    Thanks
    mindus

    You can add a button using custom javascript. but this could potentially have performance issues. please test the performance and functionality if you implement a lot javascript
    see this link : http://helponmyproject.com/TTOCOD/
    Regards,
    Royston

  • Is it possible to create custom buttons for quizzes in Adobe Presenter?

    My company is not happy with the quiz buttons in Adobe Presenter and I was wondering if it is possibe to create custom buttons for quizzes and use them as defaults. Like you can do in Captivate.  I'm using Adobe Presenter 8 in Windows 7. 

    Hi,
    Do you want to change the appearance and position of buttons ?
    or
    Do you want to change the action when the button is pressed ?
    Thanks,
    Alpi Agarwal

  • Is it possible to create a button animation on 'highlight'?

    I've created my menu in Photoshop and I would like to have my polaroid buttons move slightly/wiggle when 'highlighted', not necessarily selected. Is there a way to create these animations in After Effects and integrate them into Encore?
    If not, is there a way to have the video buttons not begin playing until highlighted?
    Any help would be grately appreciated! Thank you very much!
    Erin

    Not directly, but you can try the following.  You can use autoactivate to go to a different menu that has the "selected" picture in motion.  You have six pictures, so you have the original (all still menu), then 6 more, each with a different motion background in which the picture moves.  All buttons are able to be clicked in every menu.
    This works in a DVD, but not on a computer, unless the user uses a remote type function.  (Mouse over won't autoactivate.)

  • Is it possible to create UIActionSheet buttons dynamically?

    In this case, I'm trying to do the following:
    NSMutableArray *btnAry = [[NSMutableArray alloc] init];
    [btnAry addObject:@"button1"];
    [btnAry addObject:@"button2"];
    [btnAry addObject:@"button3"];
    UIActionSheet *emailAction = [[UIActionSheet alloc] initWithTitle:title delegate:(id)self cancelButtonTitle:cancel destructiveButtonTitle:nil otherButtonTitles:btnAry];
    The error I get here is: 'NSInvalidArgumentException', reason: '* -[NSCFArray length]: unrecognized selector sent to instance 0x459dd10'
    I'm trying to basically create the action sheet based on the values in the array, which is dynamically set at runtime. I have tried using addButtonWithTitle, but the problem with this solution, is that I cannot specify the index of the cancel button without writing some hokie code...
    It seems the easiest way would be to be able to somehow setup the UIActionSheet on init with the values for the buttons.
    any thoughts on how to achieve this would be much appreciated....

    In this case, I'm trying to do the following:
    NSMutableArray *btnAry = [[NSMutableArray alloc] init];
    [btnAry addObject:@"button1"];
    [btnAry addObject:@"button2"];
    [btnAry addObject:@"button3"];
    UIActionSheet *emailAction = [[UIActionSheet alloc] initWithTitle:title delegate:(id)self cancelButtonTitle:cancel destructiveButtonTitle:nil otherButtonTitles:btnAry];
    The error I get here is: 'NSInvalidArgumentException', reason: '* -[NSCFArray length]: unrecognized selector sent to instance 0x459dd10'
    I'm trying to basically create the action sheet based on the values in the array, which is dynamically set at runtime. I have tried using addButtonWithTitle, but the problem with this solution, is that I cannot specify the index of the cancel button without writing some hokie code...
    It seems the easiest way would be to be able to somehow setup the UIActionSheet on init with the values for the buttons.
    any thoughts on how to achieve this would be much appreciated....

  • Is it possible to create a button to take a screengrab on ipad?

    and what would the code be to do this?
    thanks!

    Not directly, but you can try the following.  You can use autoactivate to go to a different menu that has the "selected" picture in motion.  You have six pictures, so you have the original (all still menu), then 6 more, each with a different motion background in which the picture moves.  All buttons are able to be clicked in every menu.
    This works in a DVD, but not on a computer, unless the user uses a remote type function.  (Mouse over won't autoactivate.)

  • Can you create a button that adds specific text to a form field?

    Hi,
    I was wondering if it was possible to create a button in a PDF that, when clicked, adds specific text to a form field?
    I am trying to make a product catalogue where you click on a product button to add the product name or code to a form field.
    Each product in the catalogue will have a button and the more you click the more is added to the form field(s).
    Then when you have finished adding products to the form field(s) I want to be able to save and email the entire PDF as an order form.
    Any thoughts would be appreciated!
    Cheers,
    Jim

    Yes, it's possible. The most simple version of such a script will be something like this (used as the button's MouseUp event):
    var v = this.getField("Products");
    if (f.value!="")
         f.value += ", ";
    f.value += "Product1";

  • How to create a button to open directory

    Dear all,
    is it possible to create a button can open directory
    like My Documents
    i test this in CMD command prompte it's work but in
    in forms they are not work
    "explorer.exe" & @MyDocumentsDir
    or
    cmd /c "explorer.exe" & @MyDocumentsDir
    in forms :
    i create a button with trigger When-button-pressed
    in trigger :
    host('"explorer.exe" & @MyDocumentsDir');
    host ('cmd /c "explorer.exe" & @MyDocumentsDir'); ----> i think this should work
    but it's not work
    can you help please
    thanks
    regard

    hi Ammad
    sorry Ammad, but in the first step i get this errors
    Compilation errors on WEBUTIL_DB_LOCAL:
    PL/SQL ERROR 201 at line 9, column 12
    identifier 'WEBUTIL_DB.OPENBLOB' must be declared
    PL/SQL ERROR 0 at line 9, column 5
    Statement ignored
    PL/SQL ERROR 201 at line 18, column 12
    identifier 'WEBUTIL_DB.CLOSEBLOB' must be declared
    PL/SQL ERROR 0 at line 18, column 5
    Statement ignored
    PL/SQL ERROR 201 at line 24, column 5
    identifier 'WEBUTIL_DB.WRITEDATA' must be declared
    PL/SQL ERROR 0 at line 24, column 5
    Statement ignored
    PL/SQL ERROR 201 at line 29, column 12
    identifier 'WEBUTIL_DB.READDATA' must be declared
    PL/SQL ERROR 0 at line 29, column 5
    Statement ignored
    PL/SQL ERROR 201 at line 35, column 12
    identifier 'WEBUTIL_DB.GETLASTERROR' must be declared
    PL/SQL ERROR 0 at line 35, column 5
    Statement ignored
    PL/SQL ERROR 201 at line 40, column 12
    identifier 'WEBUTIL_DB.GETSOURCELENGTH' must be declared
    PL/SQL ERROR 0 at line 40, column 5
    Statement ignored
    PL/SQL ERROR 201 at line 45, column 12
    identifier 'WEBUTIL_DB.GETSOURCECHUNKS' must be declared
    PL/SQL ERROR 0 at line 45, column 5
    Statement ignored
    Failed to generate library.more help plz
    thanks

  • Create a button similar like "Copy To" button in A/P Invoice in Customised

    I have created a customised form using SDK and want to create a "Copy To" present in A/P Invoice Form for copying data from one customised form to another customised form .Is it possible to create that button using SDK .

    Amit Sharma
    This question should be asked in category SAP Business One SDK session

  • Is it possible to create a Print Button?

    Is it possible to place a print button on an iWeb page so folks when viewing it online can print the entire contents of the page. The page(s)are quite long so one must scroll down to view it in its entirety, but when attenpting to print from the browser, only the first part of the long page will print. Maybe I answered my own question ... does this mean that iWeb pages should not be set longer that normal letter size?
    Thanks
    John

    You can also copy and paste the text into TextEdit and print that to a PDF. Then, create a button that says "print" and hyperlink that to the PDF. That way, anyone wanting a printout would have a nicely formatted document and you can include contact information in the document as well.
    Most sites I go to just have "print" go to a plain "black text on white background" version of the same text that the user then uses command-p (control-p on PC's) to actually initiate the print, so that'd work as well.

  • Is it possible to create a single texbox? and how to delete a button on a form? please asap, badly n

    Is it possible to create a single texbox? and how to delete a button on a form? please asap, badly needed it right now. thx -regards gustavo

    Hello Gustavo,
    You can create a single textbox using the textbox option here (This is for you to enter text - not for the visitor): http://jingsite.businesscatalyst.com/jing/2013-09-30_2212.png
    If you want to create a textbox for the visitors to enter text, then you need to enter a form, and you can delete the "message" field from the "simple contact" form, but not the name and the email fields (those are mandatory and can't be deleted).
    You may want to check external forms in case you want to have the form rather customized, to check if you can have forms with single textbox. An example would be "Jotform".
    Hope this helps.
    Cheers
    Parikshit

  • Is it possible to create a standard form that can be emailed to anyone and once filled out by the receiver, have a button that the receiver clicks and the form is encrypted and attached an email back to the sender and a preset admin password would open it

    Is it possible to create a standard form that can be emailed to anyone and once filled out by the receiver, have a button that the receiver clicks and the form is encrypted and attached to an email back to the sender and a preset admin password would open it?

    Hello Graphicsguy123,
    You would need to first create the form ( or Widget in EchoSign) first to generate a url which you can paste it in the email being sent to customers. You would need to make sure you have a Document Cloud Enterprise Premium account in order to create a Widget. If you don't have the account, you can use the trial version to test it. Here is the link:
    Global Trial Registration | eSign services from Adobe
    -Rijul

  • Is it possible to create round shape button in java

    i have following questions, if possible plz. help me.
    1) is it possible to create round shape i.e circular shapes button using java program.
    2) is it possible to access the floppy and format it using java program. (if it is not possible to format it then plz. tell me how to access the floppy using java program).
    if possible plz. send me code of that programs on following address..
    [email protected]
    waiting for reply.
    prasad.
    (faculty of ssi)

    i have following questions, if possible plz. help me.
    1) is it possible to create round shape i.e circular
    shapes button using java program.
    Yes - GUI Components paint themselves through the invocation of their paint(Graphics) method. Create a subclass of JButton and override the method to paint a circle.
    public void paint(Graphics g) {
      //work out where you want to put the circle, x_pos, y_pos etc
      g.drawArc(x_pos, y_pos, width, height, 0, 360);
    }or some such. Note that since Java 1.2, the object that gets passed in to this method is actually a Graphics2D Object (subclass of Graphics). This provides extra methods.

Maybe you are looking for

  • Utility to send text file over GPIB, one line at a time?

    We are developing instrumentation that receives data and commmands over GPIB as plain text, and returns them as well. I'd like to create GPIB "batch" files and send them over the bus, one line at a time, so I can debug the instruments' behavior. I'd

  • Can't get external speakers to work (not wireless)

    I have the same speakers I had with my former Mac, they are not wireless, they plug in and they are turned on and working perfectly.  But my computer keeps using the internal speaker.  How do I get it to "see" the externail speakers?  I checked all t

  • Ive just updated to maverick, woes Apple ID issues

    Why can't  I sign into App Store or ITunes store? Ive reset my password and still no luck. I also get a weird -50 error in iTunes when it opens Will not let me update to Adobe 11 either. NOT HAPPY!

  • Delete of Devspaces

    Hello, I want to delete some of my devspaces, the last time i asked this to SAP Support i got the answer that this  is not possible because of the funktion of the storage mechanism. Will this work in future Releases? In theory it should be no problem

  • Create a default layout

    Hi!! As well as in  r/3's alv you can : *select layout *modify layout *save layout *manage layout It's possible to do the same in webdynpro's alv?? I would like to save layout and to create a default layout and I only can save a layout. Thanks in adv