Creating editable images / diagrams

Just getting into Flex.... wondering how much layout control
there is when developing forms in Flex 2.
Client request: Create an editable architectural diagram that
allows users to input measurements by entering data directly into
diagram (as opposed to labeled diagram with list of corresponding
text inputs).
Can form input fields in Flex be layered on top of an
underlying image with that type of precision, or do flex forms have
similar layout limitations to traditional HTML form objects?
Is there another web technology that would work better for
this?
Thanks for any assistance you can provide!

Hi Pavan,
you need to make the process composite and then go to diagram and create process details.
For information - did you look here http://www.oracle.com/technetwork/developer-tools/datamodeler/overview/index.html
and here http://www.oracle.com/technetwork/developer-tools/datamodeler/learnmore/index.html
Philip

Similar Messages

  • How to create Edit Image in my form

    hi All,
    I have a form with header and detail, in my detail block i need to add Edit Image in my form. When i click on this i should be able to open one of my text column.
    can any one please help me how to create new images....

    Siva,
    There is a different Technology Stack associated with the Enterprise Business Suite (EBS). amitphynyl is correct with the description of how to create a button with the edit.ico assigned to it, but with the EBS, you will want to speak to your DBA to get a list of all the Icons that are available as you will have more icons with the EBS than are available with a standard install of Forms Builder 6i. I would also suggest you ask your DBA to give you a copy of all the Icons so you can add them to your Forms Builder installation so they will be available to you during design of your Form.
    I would also recommend that you review the Oracle Applications User Interface Standards for Forms-Based Products guide in the Oracle Applications Documentation web site to ensure your Custom Form conforms to Oracle guidelines.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • How to create a master catalog of edited images without exporting from client catalog (in DNG or JPEG).

    I create a LR catalog for each client which works great as I have many repeat clients and can easily access all of their images. However, I want to have a master studio catalog that includes the edited images from all of the
    jobs.  When I have imported these images into the master, the lightroom adjustments are lost. How can I import import the edited images showing LR adjustments?

    I can answer your question literally, exactly what you have asked.
    Or I could suggest something else, more elegant, which may address your real needs better.
    Let me do the first:
    Use the command "export as catalog" for the new delta of the current job of that repeat client. For the first job you do not need this, as the total catalog is just about the portion you want to have in your master catalog.
    Then open your master catalog and use the command "import from another catalog", select this exported portion, and you are done. But caveat: now the same image file is referenced by 2 catalogs, which may lead to,problems, e.g. If you move the image within Lightroom.
    Alternative suggestion: just work with 1 master catalog and use a collection set per each of your clients, one collection per job underneath. If appropriate, create more collections in that client's set, e.g. only for images he/she bought actually.
    So far I have not understood what an individual catalog per client gives you, what a collection (set) would not?
    Cornelia

  • How do i create an edit image on my report

    Sorry for another stupid question....
    I have a query which runs of a search....
    the query results... i want to add an edit image so it goes to another page where users can change the data
    can someone help me with this
    please
    nb: any good book i can buy on this application?

    sorry i meant to say i got the link to work but i cant pass the value on
    for example i have a person urn and and edit button this goes to another page (page 3) which is html and has the columns of the table but it does not choose the record i want
    how do i pass my variable across the page
    i cannot see that in your code

  • Simple way to use the Photo Gallery Module and flexslider to create an editable image slider?

    I want to offer an image slider that my clients can easily update themselves through the Admin. Ive researched it alot and I know it can be done using web apps but does my cliently seriously need to pay over $400 a year for the webcommerce option just to have an updatable image slider?? I find that unrealistic. Does anyone know how to set this up using the photo gallery module and "flexslider" so clients on the business marketing plan can have access to a simple and clean editable image slider?
    Any BC experts that can help would be greatly appreicated!
    Thankyou

    Not an expert, but I think what you're looking for is a slider that can get its list of photos from an XML file.  The Photo Gallery module can produce an XML file.

  • Which product is most suitable for me? I will be editing images and creating marketing materials for my business?

    I will need to be able to create corporate images and banners, also generate images for my website? which Photoshop product will allow me to do this? As i want to be sure I am purchasing the correct software for my needs? Thanks

    Either Photoshop or Photoshop Elements will do that.  Depending upon what type of images, you may want to look at Adobe IIlustrator as well.

  • How to create a pie diagram and display it in html code

    hii frds,
    happy 2 meet u all.
    I want to know how to create a pie diagram that should not be devleloped by using applet, and use it in the html code to display a pie diagram in browser.
    ex code:
    package temp;
    import java.awt.*;
    import java.awt.image.BufferedImage;
    import java.io.*;
    import javax.imageio.ImageIO;
    import javax.swing.JFrame;
    public class Dummy1 extends Panel {
    BufferedImage image;
         int a1,a2,l,t,w,h;
    public Dummy1()
              try
    a1=90;
              a2=210;
              l=10;
              t=10;
              w=200;
              h=200;
    } catch (Exception ie) { System.out.println("Error:"+ie.getMessage());  }
    public void paint(Graphics g) {
    // g.drawImage( image, 0, 0, null);
    g.setColor(Color.green);
              g.fillArc(l,t,w,h,0,a1);
    g.setColor(Color.red);
              g.fillArc(l,t,w,h,a1,(a2-a1));
         g.setColor(Color.blue);
              g.fillArc(l,t,w,h,a2,(360-a2));
              System.out.println("in paint");
              image=(Image)g.getGraphics();
    public JFrame getMyFrame()
    JFrame frame=null;
              try
    frame = new JFrame("Display image");
    Panel panel = new Dummy1();
    frame.getContentPane().add(panel);
    frame.setSize(500, 500);
    // frame.setVisible(true);
    // frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              }catch(Exception e) { e.printStackTrace(); }
              return frame;
    static public void main(String args[]) throws
    Exception {
    JFrame frame = new JFrame("Display image");
    Panel panel = new Dummy1();
    frame.getContentPane().add(panel);
    frame.setSize(500, 500);
    frame.setVisible(true);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    - > with out using <applet> in html can't we display the awt grahics in browser.
    plz clarify my doubts.
    thank you.
    regards
    moons..

    If you are using MSSQL SERVER then try creating a stored procedure like this
    create proc Name
    select * from Table
    by executing this in sql query analyzer will create a stored procedure that returns all the data from Table
    here is the syntax to create SP
    Syntax
    CREATE PROC [ EDURE ] procedure_name [ ; number ]
        [ { @parameter data_type }
            [ VARYING ] [ = default ] [ OUTPUT ]
        ] [ ,...n ]
    [ WITH
        { RECOMPILE | ENCRYPTION | RECOMPILE , ENCRYPTION } ]
    [ FOR REPLICATION ]
    AS sql_statement [ ...n ]
    Now Create new report and create new connection to your database and select stored procedure and add it to the report that shows all the columns and you can place the required fields in the report and refresh the report.
    Regards,
    Raghavendra
    Edited by: Raghavendra Gadhamsetty on Jun 11, 2009 1:45 AM

  • How can I export an edited image to a file?

    I can't seem to find a way in iPhoto 09 do this. Can I export an edited image to a file, keeping the edits intact, or do I have to use a 3rd party editing app when I edit from inside iPhoto 09?
    I would prefer to use iPhoto's editing tools so should I import previously cropped images into iPhoto? If yes, what file should I use? I was wondering if anyone does this on a regular basis and if there issues doing this.
    I like the editing tools in iPhoto very much. In other apps I have always cropped, resized, corrected levels and a bit of color. I am not a power user by any means and I am close to doing this all in iPhoto if I could only export the edited image to a file.
    The reason I want to do this is because the printing portion of my work flow is to upload files to my merchant who prints them and are ready for nearby pickup within an hour. This is all done at a very reasonable price and the color accuracy is very close.
    Any advice would be greatly appreciated.
    Regards,
    Jim

    You can edit from iPhoto by dragging to the desktop or exporting using the File -> Export command, setting the Kind to anything except original.
    But you probably don’t need to:
    There are many, many ways to access your files in iPhoto:
    *For Users of 10.5 Only*
    You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Apple-Click for selecting multiple pics.
    Uploaded with plasq's Skitch!
    You can access the Library from the New Message Window in Mail:
    Uploaded with plasq's Skitch!
    *For users of 10.4 and 10.5* ...
    Many internet sites such as Flickr and SmugMug have plug-ins for accessing the iPhoto Library. If the site you want to use doesn’t then some, one or any of these will also work:
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. However, if you're using Gmail you can use iPhoto2GMail
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    *If you want to access the files with iPhoto not running*:
    Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    Regards
    TD

  • How can I save multiple separate edited images from one original file?

    I shoot NEF raw images and am getting used to the way LR5 editing works without altering the file in any way. Now I wonder how I can create multiple edited images this way.

    Thank you, that was spot on. It will help a great deal right now as I am taking multiple crops from shots of the ocean looking for something striking.
    I doesn't seem to matter if I take a copy while editing or before I start editing, I can always reset the original and start again.
    Is it possible to rename the copy? I had a look around here and in LR Help but rename doesn't come together with virtual copy.

  • Unable to create large image file in iphoto

    I make a lot of panoramic images by stitching together overlapping images with hugin in TIFF format, then edit them in iphoto and use it to export them in jpeg format for greater versitality of use. So far I haven't had any trouble, even with large images as big as ~25,000x2000 pixels and ~90MB file size.
    However, I have come across a problem recently trying to export an edited version of a particularly large one - 38,062x1799 136MB file size. I can export an unedited version to jpeg without trouble, but when I tried to export an edited version it gave me an error saying it couldn't create the file. I looked around here for solutions and found the suggestion to check the file size in finder, it was zero. After experimenting I've found that the file size goes to zero as soon as any changes are made to the file, the edited image can still be viewed in iphoto, but does not display if you try to zoom in. I have tried making the TIFF file again with hugin to see if it is a problem with the file, but I also experience the same problem with the newly made file.
    I am working on a Macbook air (1.7 GHz Intel Core i5, 4 GB 1333 MHz DDR3 Memory, Intel HD Graphics 3000 384 MB, Version 10.7.5 OS X) in iphoto '11 version 9.2.2 (629.40). Any suggestions for getting round this issue?

    I thought of something that might help with working out what's going on.
    After I make any edits to the image, if I move on to the info tab the image initially goes a bit blurry as it often does with large images, but instead of coming up as a clear image after a few seconds like normal, I get the image I've attached here and the file size changes to zero. To be able to see the thumbnail of the edited image I need to come back out to the library again, but the file size is still zero. If I revert to original the file size is restored.

  • Lightroom 5 file edited in photoshop cc 2014 does not appear back next to original after save. Is anyone else having this issue? If so what is the fix.  The edited image appears back in lightroom in a new folder.

    Lightroom 5 file edited in photoshop cc 2014 does not appear back next to original after save. Is anyone else having this issue? If so what is the fix.  The edited image appears back in lightroom in a new folder.

    I'm performing a normal "Save", not "Save As". Work flow I'm using is as follows:  Select photo in Lightroom 5.7 >" Edit In" Photoshop CC 2014 > (after working on photo is PS) > Save > close PS. Photo returns to Lightroom 5.7 in a new folder rather than next to the original. Prior to purchasing the monthly plan and upgrading to PS CC 2014, I performed this same work flow using Lightroom 5.6 and Photoshop CS6 without any issues.
    Just for fun... I attempted to move the edited file back into the original folder. I received a prompt that said the file already existed in the original folder, however I can't see it except the new folder that LR created. I tried several different sort orders, etc without any success.
    *** Follow up: Was unable to resolve the issue using Photoshop CC 2014. Uninstalled PS CC 2014 and went back to using Photoshop CS6. Return trips from LR 5.7 to Photoshop is now performing as it should: returning edited photo back to the original folder in LR 5 and placing next to the original image.
    Should anyone have a suggestion on getting Photoshop CC 2014 to do the same, I would love to be educated.
    Thanks for the help, dj_paige.

  • How do I create an image like this?

    Completely new to PS. How would I create an image like this with text? https://www.facebook.com/photo.php?fbid=10151570901245020&set=pb.50687255019.-2207520000.1 366989903.&type=3&theater
    A link to a tutorial would be helpful.
    Thanks!

    Hi there,
    Are you referring to the text, the color effect, or both?
    Adding type is very easy - just grab the Type Tool from the tool bar. The article linked above provides some great tips for editing type in Photoshop.
    As is the case with many "how to's" for Photoshop, there are several ways to acheive the colorized effect like the one applied to image you linked to. One method is to use Adjustment Layers, which I have outlined below.
    1. With your image layer active (it will be highlighted in blue in your Layers panel, as shown below), create a selection of the area you'd like to colorize. I'm using the Polygonal Lasso Tool to create a diagonal selection - to do so, I held down the Shift key on my keyboard as a created my diagonal lines. This might take a bit of practice, but you'll get the hang of it quickly.
    2. Then, in your Adjustments panel (if you don't see it, go to Window > Adjustments), click on the Curves adjustment layer, as highlighted below. Now you can play around with the curves to get the effect you'd like. (Here's a quick guide on using the Curve tool)
    3. To select the other areas of your image, command (Mac) / control (PC) click on the adjustment layer thumbnail (highlighted below). Then, go to Select > Inverse.
    4. Now we want to deselect part of our selection. Grab the Quick Selection Tool from the toolbar and set it to Subract from selection. Then, simply drag the selection brush over the area you want to deselect. In my case, I only want to have the upper-left corner of my image selected.
    5. After you have your selection, click on the image layer and add a Curves adjustment layer like before.
    6. Repeat steps 3-5 for the other corner of your image and you should end up with something like this:
    The nice thing about using adjustment layers is that you can always change them - just double click on the Adjustment layer thumbnail (highlighted in step 3).
    Alternatively, you can select areas of your image and fill the selections with flat colors on separate layers. You can then go in a change the Blend Mode and Opacity for each layer.
    Feel free to reply with any questions!
    Kendall

  • Create an image of a Bootcamp partition

    I just purchases an iMac, and I have installed Windows 7 as a Bootcamp partition on it. In addition, I have installed a bunch of Windows software that I want on it. What I'd like to do now is create an "image" of this BootCamp partition that I could use, should I need to, in the future to restore from.
    Can this be done? If so, how?
    NOTE: In the PC world, I used Acronis to create images of my laptop.

    Sasha,
    Was WINCLONE able to image the entire HDD - including OSX and bootcamp? Or is it just used to copy the Bootcamp partition and you are expected to recreate/reinstall OSX on the new HDD?
    I'd like to swap in an SSD and put everything back as it was (OSX + Windows 7 via Bootcamp.)
    Edit
    It looks like this blog post may have answered my question:
    http://theappleblog.com/2010/01/12/how-to-image-os-x-and-boot-camp-to-a-new-mac/

  • Photoshop edited image not appearing back in Aperture!!

    I'm a Lightroom user but thought I'd try out Aperture 3 for a new project to see if I prefer it.
    I scanned in an old family photo album and imported them into Aperture. Some of the photos got torn as I removed them from the pages (they were glued!!) so I thought I'd repair them in Photoshop and also try to remove the paper texture that also got 'scanned' for some of the photos.
    When I choose the option "Edit with Adobe Photoshop CS4", I can see a TIFF copy is created and it appears alongside the original image in the viewer. I can also see the physical file in Finder.
    However, after I finish editing the image in Photoshop, and save and close it, switch back to Aperture, the TIFF image just disappears from the viewer.
    I checked to see if a stack is created, but there isn't one. The physical file still exists in Finder though.
    I tried manually importing the edited TIFF image back into the project, but it still doesn't appear!!!
    The Aperture library file has increased though, so it seems like something has happened but I just can't seem to access my Photoshop edited image in Aperture.
    I have tried this a few times, with different photos, but get the same results.
    The other option I tried was regenerating thumbnails for the project but still nothing happens.
    Anyone have any suggestions, what's going on??

    How did you fix this? I'm having a similar problem!

  • Bulk Edit Image Properties

    I'm creating a site with numerous slideshows (sometimes with 50 pictures or more) and it's looking like the only way to enter the image properties is to click on each thumbnail image to bring it up at the top and then right click on it and go to image properties.
    Please someone tell me there's a better, more efficient way to do this!
    Thanks

    mykellysue, I think you may have misunderstood the original post and Sachin's reply. The original post was about setting the properties of an image (referring to alternate text and/or tooltip text). Those properties are normally set by right clicking on an image, selecting "Edit Image Properties" and entering the values. In this case the customer had many images. In that case you can select multiple images in the Assets panel and set their properties all at once.
    As far as how to use a Composition widget, a composition widget is made up of a set of related containers. A trigger container (which you click on or mouse over) and a target container (which appears in response to interaction with the trigger.
    For the most part you can put anything you want in the trigger container or the target container and you can add or remove pairs of containers to/from most Composition widgets.
    Some of the Composition widgets in the Widget Library panel contain sample content. Ultimately these are just samples. You can select and delete the sample content and drag in whatever is needed for your design.
    There are tutorials and videos available at muse.adobe.com.

Maybe you are looking for

  • Has any one ever met this kind of ABAP-mapping problem ??

    Dear all, our scenario is:      (remote)MQ(ssl connection)->(local)MQ-(jms)>XI---(proxy)>ECC I met a very strange question during mapping which we use  abap mapping inside xi. the message come out from the abap mapping step.after the abap-mapping, th

  • APPLE vs. FCP audio filters

    I have a basic question. I'm trying to do some documentation on the various audio filters built into FCP, and you've got the "APPLE" folder and the "Final Cut Pro" folder. I'm not asking for an explanation of each filter, as theres lots of documentat

  • Acrobat Pro 10

    My client has upgraded to Acrobat pro 10.  I am using Acrobat pro 9.  My client can't read the pdf with embedded and outlined fonts from both indesign and logo done in illustrator.  Client sends me back these pdfs and nothing shows up but one word -

  • Help! my iPad does not go on

    Anyone, my iPad 3 (iOS 7), out of the blue, DOES NOT go on. I tried just about everything but open the unit up. Please, need help on this. Thank You

  • Derby database problem

    Hi to all, i am using bundled database with derby . red X appears on the Travel ,VIR,JumpStartCycles icon and an error appears when i try to expand it,but the database server is running. i am getting error like this: Connection status: succeeded vali