Draw a symbol and add text in UIImageView.

I want to Draw a symbol and add text in UIImageView. when move it should move together. When it would get opened next time, it should be editable. pls needful for me

Hi,
You can check out a similar thread where the poster has opted to use imageicons instead of shapes. That thread is here.
http://forums.java.net/jive/thread.jspa?threadID=15074&tstart=0.
As for creating different color shapes for different cells of the jtable, it is definitely possible once you have a custom renderer for your jtable. Just read up on how to create custom table cell renderer.
cheers,
vidyut
http://www.bonanzasoft.com

Similar Messages

  • Purchased Acrobat XI Pro - was able to edit text and add text and now does not allow me to do anything -

    was able to edit text and add text and now does not allow me to do anything - Except purchase the software again.Can't find an answer to this anywhere.

    Use Adobe Acrobat, not Adobe Reader.

  • I ask the third time: How can I enlarge the menue symbols and the text of the menue in Photoshop CS6 vers.13 so that I can read them??? My laptop has Win 8.1 and a screen resolution of 3840x2160

    I ask the third time:
    How can I enlarge the menue symbols and the text of the menue in Photoshop CS6 vers.13 so that I can read them??? My laptop has Win 8.1 and a screen resolution of 3840x2160.
    It is unbelievable that such an expensive software does not provide a proper lay out wit a high screen resolution!
    It is also unbelivable that it is not possible to get a qualified employee of ADOBE on the phone in Germany.
    hope of feed back: e-mail: [email protected]

    Chris Cox answered your question here:
    I have PS cs6 extended and a new laptop with screen resolution of 3840x2160. Now all control elements and menues are so small that I can not reed them. How can I make them readable without reducing the resolution of the schreen?

  • Where I can maintain Text symbols and Selection texts?

    Hi there,
    I need to maintain Text symbols and Selection texts of a program manually, but I can't find  the tabs of Text symbols and Selection texts. My SAP is ECC6.0. Please help me with that...
    Thanks a lot,
    Bing

    HELLO FRIEND
        ALL THOSE REPLIES ARE A KIND OF HARD CODING....THOSE WILL WORK IN THAT CLIENT ALONE...IF YOU TRANSPORT THAT REPORT TO ANOTHER CLIENT THERE AGAIN YOU NEED TO MAINTAIN THE TEXT ELEMENTS AGAIN BY GOING TO THE MENU.....
    BEST YOU CAN USE
    INITIALIZATION EVENT
    INTILIZE ALL THOSE TEXT ELEMENTS USING COMMENT SYNTAZ AND YOU CAN GIVE WHAT EVER THE TEXT ELEMENTS YOU WANT....
    THIS IS THE BEST WAY OF PRACTICING AND THIS IS FOLLOWED IN REAL TIME TOO...
    TRY THIS PLEASE.

  • Translating text symbols and selection texts in abap report

    Hi All,
    I have devolped a report and in that translation of selction texts and text symbols is required.
    Problem: In abap text elements  in the report i have gone for goto->translation->and then i have tried to translate by giving the target language as DE and changed all the texts but when i am tring to save it is showing a message that 'STILL 54 OF 54 TEXTS TO BE PROCESSED'.
    Alternative solution :I have tried even using se63 and selected <rept> selection texts.
    but still its showing the same error  ('STILL 54 OF 54 TEXTS TO BE PROCESSED'.)
    from se63.
    kindly give me solution for this issue.
    Thank you,
    bhavani.

    Hi Bhavani.
    Check the [SAP Document for translation|http://help.sap.com/saphelp_sm32/helpdata/EN/41/71601b3ab0f34a8e00aa01338c68f3/content.htm]

  • How to copy Report(including text symbols and Selection text) in Local file

    Hi,
    I have developed a Report in my testing system (Company dummy system) which contains lot selection text and Text symbols.
    Is there any program that will copy that prohram along with all selection text and text symbold and save it on the floder and form the same program or different program i can upload program??
    for example SAP has standard program <b>RSTXSCRP</b> from which i can export and import SAP Script to and from local file or system.
    Please let me know at the earliest.
    Regards,
    Prasanna

    HI,
    For scripts only that option is avaible in SAP.
    For reports u can copy that report to another name otherwise release the request no and transport to one system to another system.
    Final option is u have to save to one local file (green color icon) after that in which system, u want to upload the report  means u have to create new report and upload it including selection-text itself.
    Thanks,
    Shankar

  • Fix the new version ( drawing ..pics) and add an ...

    First really like the new version of skype
    with two WP that had messenger installed the drawing and pics potions were greyed out
    After a lot of pain and agravation it was messenger that needed to be uninstalled on both phones.
    Guys you need to just let people add a alias ie skype name for a MS accounts as finding people is a pain.  Or have a option to send a invite to a email address which links uniquely to you account.
    searching for people and getting 50 hits for their name and with incomplete profiles make it impossible to identify the real person......
    You need to make finding and connecting with people easier. nothing is obvious make it so
    end rant but you need to take this seriously.

    It was listed as messenger in apps list with Lightening bolt icon
    I removed it from mine 1520 and and brothers 920 and now it works.
    once messenger disappears in user linked accounts then they un-grey.

  • Applescript: Find a phrase and add text below it

    Hello, I am somewhat new to Applescript. I am trying to create a script that will contain dialogs to gather a few pieces of info then use that info to add 1) an item to a text file list and 2) add the input to a script file. Here's what I have:
    This is the part of the script that creates a list of choices in a dialog (I'm using an Applescript application):
    set Parts to paragraphs of (read POSIX file (theFolder & "Contents/Resources/list.txt"))
    repeat with nextLine in Parts
              if length of nextLine is greater than 0 then
                        copy nextLine to the end of listOfParts
              end if
    end repeat
    set chosen to (choose from list listOfParts with title "Add A Part" with prompt "Select part" without multiple selections allowed) as text
    Once it's chosen, I set variables based on the choice:
    if chosen is "Limit Thermostat" then
              set theItemNumber to "29329.1000"
              set itemDescription to "Limit thermostat "
              set theWarehouse to "parts"
              set theLocation to "a8d1a"
    end if
    Then there's a short script below this section which adds the selected part to my accounting application.
    This works perfectly. Now, let's say I have a new part to add to my list and need to create the section above in my script. How can I add the text to the script file below the last section of "if chosen..." but before the rest of the script using an Applescript?

    Hello, I am somewhat new to Applescript. I am trying to create a script that will contain dialogs to gather a few pieces of info then use that info to add 1) an item to a text file list and 2) add the input to a script file. Here's what I have:
    This is the part of the script that creates a list of choices in a dialog (I'm using an Applescript application):
    set Parts to paragraphs of (read POSIX file (theFolder & "Contents/Resources/list.txt"))
    repeat with nextLine in Parts
              if length of nextLine is greater than 0 then
                        copy nextLine to the end of listOfParts
              end if
    end repeat
    set chosen to (choose from list listOfParts with title "Add A Part" with prompt "Select part" without multiple selections allowed) as text
    Once it's chosen, I set variables based on the choice:
    if chosen is "Limit Thermostat" then
              set theItemNumber to "29329.1000"
              set itemDescription to "Limit thermostat "
              set theWarehouse to "parts"
              set theLocation to "a8d1a"
    end if
    Then there's a short script below this section which adds the selected part to my accounting application.
    This works perfectly. Now, let's say I have a new part to add to my list and need to create the section above in my script. How can I add the text to the script file below the last section of "if chosen..." but before the rest of the script using an Applescript?

  • Draw a shape and add it to cells in a JTabel. Help Please

    Hi all
    I have written some code that draws a shape using Graphics2D.
    What I am after being able to do is create this shape then place it in a cell of a JTable.
    One Other thing is I need to create different color shapes for each row in the table.
    is this posable ??
    Any help would be appreciated
    Craig
    import java.awt.*;
    import javax.swing.*;
    public class RectangleDemo2D extends JFrame {
      private Color color1 = new Color(255, 3, 3);// Color
      private Color color1a = new Color(255, 3, 3, 155); // Color with Alpha
      private Color color2 = new Color(255, 255, 255, 155); //Color White
      int x = 150;
      int y = 150;
      int w = 12;
      int h = 12;
      int arc = 6;
      GradientPaint gradient = new GradientPaint(5, 0, color1, 5, 90, color2, false);
      final static BasicStroke stroke = new BasicStroke(1.0f);
      public void paint( Graphics   g) {
        Graphics2D g2 = (Graphics2D) g;
        g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
        g2.setPaint(gradient);
        g2.fillRoundRect(x, y, w, h, arc, arc);
        g2.setPaint(color1a);
        g2.setStroke(stroke);
        g2.drawRoundRect(x, y, w, h, arc, arc);
        //ImageIcon ico = new ImageIcon("check.png"); // This adds a check image
       // g2.drawImage(ico.getImage(), x, y - 3, this);
      public static void main(String s[]) {
        RectangleDemo2D demo = new RectangleDemo2D();
        demo.setBackground(Color.white);
        demo.pack();
        demo.setSize(new Dimension(300, 300));
        demo.show();
    }

    Hi,
    You can check out a similar thread where the poster has opted to use imageicons instead of shapes. That thread is here.
    http://forums.java.net/jive/thread.jspa?threadID=15074&tstart=0.
    As for creating different color shapes for different cells of the jtable, it is definitely possible once you have a custom renderer for your jtable. Just read up on how to create custom table cell renderer.
    cheers,
    vidyut
    http://www.bonanzasoft.com

  • How Do I Remove and Add Text To a .aep Movie Template?

    Hi,
    I have a .aep file that contains a video template. The template is made to be edited with Adobe After Effects. I am very new to the software and have no idea how to proceed. I have imported the .aep file  to After Effects and it shows up there just fine. the movie template consists of four or five different screens where the text is to be changed to text of my choice.  I need to change the text in each individual screen. How do I do it without changing the existing text effects?
    Can some one point me in the right direction?
    Thank you for any help you can give me I am confused as well as desperate! Help...

    Todd thank you also I will read the information that you sugested.
    Tontyp

  • Can you draw a shape and add it to an application?

    Hi,
    I am totally new to Flex and Flash, action script and all
    (started Wednesday). I am not sure what I'm doing wrong here, if
    anyone could help me Id really appreciate it.
    var max:Shape=new Shape();
    max.graphics.beginFill(0x000000);
    max.graphics.lineStyle(1, 0x000000);
    max.graphics.drawRect(0, 0, 100, 10);
    max.graphics.endFill();
    stats.addChild(max);
    Now stats is a canvas which is a child of my application
    object. The application object is the root of it all.
    I also tried using the "Rectangle" class but that did not
    work either.
    Thanks to anyone who can point me in the right direction
    :)

    Thanks, ill try that next time i need to use a shape.
    Yesterday i decided to stretch a 1x1 image to make it a rectangle
    :p Worked like a charm.

  • How do I edit and add text to a file on my android

    Oil need to fill a form that was sent to me . I also want to be able to make a pdf first

    Hi timsdream:
    I don't think this is a Firefox question. I don't think you can edit PDFs in Android from a browser if that is what you are asking or are you asking about text editing on Android?
    Anyhow if it is a Firefox question please let us know the usual troubleshooting stuff:
    * what version of Firefox
    * what version of Android
    * what you did, what you expected, what happened
    * any other details that might help!
    ...Roland

  • Photoshop open multiple image and add different texts

    Hi All,
    Hope you are all doing great. I just started doing photoshop scripting due to the requirement which I will mention in detail below.
    My scripting is knowledge is very basic so I was hoping you guys could be able to help me out with this.
    The requirment is that I have 100's of images which needs to be opened in photoshop and add text based on the image name then save the image as JPEG at 70 quality. For example:
    I have images named as below in my desktop folder,
    Image1.jpg
    Image2.jpg
    Image3.jpg
    Image4.jpg
    Image5.jpg
    Image6.jpg
    Image7.jpg
    Image8.jpg
    Image9.jpg
    Image10.jpg
    For the script, I think the easiest way is that if I define what image name are:
    image[1] = Image1.jpg
    image[2] = Image2.jpg
    image[3] = Image3.jpg
    image[4] = Image4.jpg
    image[5] = Image5.jpg
    image[6] = Image6.jpg
    image[7] = Image7.jpg
    image[8] = Image8.jpg
    image[9] = Image9.jpg
    image[10] = Image10.jpg
    and for text I have done this:
    text [1] = Image1
    text [2] = Image2
    text [3] = Image3
    text [4] = Image4
    text [5] = Image5
    text [6] = Image6
    text [7] = Image7
    text [8] = Image8
    text [9] = Image9
    text [10] = Image10
    So everytime when I run the script image1 will be added to the photoshop and the text name Image1 will be added (For this I think defining layer name would be better so I will gave "Imagetext").
    Then the image will be saved on a specific location on my desktop.
    I have all this plan on what I want to do but I don't know how to write the script using photoshop API and my limited javascript coding.
    So if you guys could help me out with this, that would be awesome. Hope to hear on this soon.
    Kind Regards,
    Zoogle

    Hi Ghoulfool,
    Thank you very much for taking your time in looking into my question.
    Also thanks for the script you've provided. Your script works perfectly close to my requirements but there are few minor addon that I would like to request please.
    My apologies for not being very clear
    First of all to answer your questions:
    Image size varies but mostly between 1200-1000 pixels.
    Good question regarding text size, I would like to control the size of the text based on how long the character length is.
    Position varies so I would like to adjust it manually or if I could definie within the script that would be superb.
    The images open in new window rather that staying in the currently opend psd, I have other layers which I need to keep it as static and use the script to add the image between these layers.
    I wouldn't mind if all these 100's of images stay in current psd as layers.
    I was hoping if possible I would have more control over what text I would like to put on the image.
    Below is the example , I am sure the code below is wrong but with my limited scripting that's all I could come up with
    This is the code that would be controlling what text/text size appear on images based on the i value:
    var publicPath = 'C:/Users/Username/Desktop/imagesavetest';
    var outputPath = publicPath;
    var imagetext = new Array();
    imagetext[0] = "imagetext0";
    imagetext[1] = "Apple";
    imagetext[2] = "imagetext2";
    imagetext[3] = "Pineapple";
    imagetext[4] = "Orange";
    imagetext[5] = "imagetext5";
    imagetext[6] = "imagetext6";
    imagetext[7] = "Berries";
    for (var i in imagetext) {
      textLength = imagetext[i].length;
      saveMyFile = imagetext;
      theText.contents = imagetext[i].toUpperCase();
      switch (true) {
        case textLength <= 9:
          theText.font = "Arial";
          theText.size = 38;
          theText.contents = imagetext[i].toUpperCase();
          break;
        case textLength > 9 && textLength <= 12:
          theText.font = "Arial";
          theText.size = 28;
          theText.contents = imagetext[i].toUpperCase();
          break;
      saveAsJPEG(outputPath,  saveMyFile);
      counter++;
    And to open files from the user defined location:
    var inFolder = new Folder("C:/Input")
    var image = new Array();
    image[0] = "image0.jpg";
    image[1] = "image1.jpg";
    image[2] = "image2.jpg";
    image[3] = "image3.jpg";
    image[4] = "image4.jpg";
    image[5] = "image5.jpg";
    image[6] = "image6.jpg";
    image[7] = "image7.jpg";
    for (var j in image) {
    if j=0 look for i=0 and add i value as text
    To simplify i'll open psd with layers, add image between existing layers and add text based on the text name which we defined in script.
    Sorry for long post, but hope I have not made this simple process confusing.
    Please do let me know if you have any questions. Hope you hear from you soon and Thanks for your time.
    Kind Regards,
    Zoogle.

  • Difference between 'add text' tools and adding Layers

    I am trying to add text to a .pdf form that has no preset text boxes. I see I can either add text via the tools menu with the 'add text' tool or the fill and sign menu with the 'add text' tool as well. They both seem to behave differently and I have a difficult time selecting, moving or editing text that is close to existing elements with both tools. What is the intended difference between these tools? Also, it would be nice to add a layer to just add my text to without interfering with the existing elements, but I see no way to actually add a layer in Acrobat Pro XI. I know I can do this in Illustrator, but I was looking for a simpler solution that works in Acrobat.
    Thanks!
    Colin

    Hey Kolinized,
    Difference between "add text" tool via the 'tools' pane and "add text" tool via 'fill and sign' pane :-
    * Tools>Content Editing>Add Text :- Selecting this option, we can customize the text as well the rectangular box it will create.We can place the box anywhere on the page.
    * Fill & Sign>Fill & Sign Tools>Add Text :- This option is slightly easier ,however, customizes text only(Typewriter tool in Acrobat X).This tool is preferred to fill up various kinds
    of forms .
    Thanks
    Sukrit Dhingra

  • What is the best way to add text to an image

    I used the draw ap div to add text to an image.  will that cause any problems?  If so, what is the best way to add text to an image?  Thanks!

    APDivs will kill your design unless you fully understand the css behind the scenes and plan accordingly. They really are completely unnecessary in the vast majority of situations.
    An easy way to add "web text over an image" would be to use the background-image attribute in css for a standard <div> tag, then just add the text within that same <div>.
    Something like this in the css (if you are using a 300x300 pixel image)...
    #yourdiv {
         background-image:url(yourpic.jpg);
         width:300px;
         height:300px;
    And then this in the html...
    <div id="yourdiv">Your text here</div>
    You would then position the <div> using css margins, floats and padding. Using position:absolute (APDivs) is typically something that will blow your design to pieces if the viewer changes their browser settings.

Maybe you are looking for