Rotate One Component

I have an image in which I want to rotate one component some arbitrary number of degrees along a horizontal axis without changing any other part of the image.  For example, if I have an image with a tobacco pipe in someone's mouth, the pipe stem is a horizontal axis.  The pipe bowl is normally vertical at the end of the stem.  I want to rotate the pipe along the stem some number of degrees so that the bowl would be at 45 degrees rather than 90 degrees relative to vertical, or so that the viewer might be looking into the bowl of the pipe.  Can that be done in CS6?  If so, how?
Thanks for all suggestions.

I'm not a very good artist.  I hope the above illustrates what I'm talking about.  The before is how we might normally see the pipe, the after is what you might see if you lay the pipe down on a table looking into the bowl.  I realize that there would not be much of the bowl visible in the after view based on what if visible in before and I'm fine with that.  Hope this helps.

Similar Messages

  • How can we acess the data of one component into othr component in webdynpo?

    How can we acess the data of one component into other component in webdynpro....
    I need an Field input from one webdynpro component(comp1)  which is away from the line of process to the other component(comp2) we need that data........I mean i need the field info of comp1 where we doesn't navigate through the Comp1 in the portal & directly access the  component comp2.........kindly share your ideas.....and possible ways .........
    any doughts do post.....
    thanks in advance!

    Hi,
    Please post your query in forum Web Dynpro ABAP Forum, under Application server.
    You have to define the source component as in the used component in the target one to do that.
    after that you will be able to get data from that component.
    Regards,
    Vaibhav

  • How can we acess the data of one component into othr compnent in webdynpro?

    How can we acess the data of one component into other component in webdynpro....
    I need an Field input from one webdynpro component(comp1) which is away from the line of process to the other component(comp2) we need that data........I mean i need the field info of comp1 where we doesn't navigate through the Comp1 in the portal & directly access the component comp2.........kindly share your ideas.....and possible ways .........
    any doughts do post.....
    thanks in advance!

    Hi Reddy,
    You can do it in multiple ways. One way would be to try transfer the parameters through URL & the other would be to work with the concept of interface nodes. Please try go through these 2 threads ( [Thread 1|Call view of another WDA Component and pass the value to it; & [Thread 2|navigation from one program to another; )where I have explained about working with Interface node in detail. You can refer to this [thread |receving parameters between two standard webdynpro applications;to see as to how you can do the same via parameters in URL.  Hope it would help resolve your problem.
    Regards,
    Uday

  • How do you allow one component at a time in the GUI to be selected?

    I have a tree and a combo box in my GUI. Does any one know of a method or way to allow the selection of one component at a time in the GUI only?
    For example, if i selected a node in the tree (it becomes highlighted), then made a choice from the combo box...I would like the node in the tree to be deselected.
    Thanks!!!

    Yeah add a focuslistener to everything and on focuslost clear the selection

  • How do you rotate one page at a time?

    When I choose Rotate View - Clockwise, it rotates the whole document. I want to rotate one page at a time.
    Thanks
    Ray
    Adobe Reader for Mac, 8.12

    Can't do that with Reader.

  • Reading the data from one component view into another component view

    Hi All,
    I have requirement to read the data from one component into another component while creating the service order. Here are the details.
    Main View for Service order: BT116H_SRVO in that we have two assignment blocks like Organizational data(BTORGSET) and amount allocation(BTAMNTALL).This two blocks are two different component which are associated with main component(BT116H_SRVO).
    I need to read the sales org data from component/View(BTORGSET/Orgsetdata) into Component/View(BTAMNTALL(HdrBillPlanDet) method DO_VALIDATE_INPUT.
    I searched in SDN but all the posts are related to the data exchange between two views in same component. But My scenario is different as explained above.
    Refer the attachments for the component link..
    Please let me know how we can achieve this one..
    Thanks,
    Sapsar.

    Finally I was able to fix my code...My Mistakes were need to read the parent node above three levels and need to use the relation entity name while reading the data..
    Below is the correction code
    IF iv_index IS NOT INITIAL.
         lr_iterator ?= collection_wrapper->get_iterator( ).
         lr_current ?= lr_iterator->get_by_index( iv_index ).
         lr_entity ?= lr_iterator->get_by_index( iv_index ).
       ELSE.
         lr_current = collection_wrapper->get_current( ).
       ENDIF.
    *loop back to root entity
             WHILE lr_entity->get_name( ) NE 'BTAdminH'.
               lr_entity = lr_entity->get_parent( ).
             ENDWHILE.
    *Get the related entity
             IF lr_entity IS BOUND.
               lr_collection ?= lr_entity->get_related_entities( iv_relation_name = 'BTHeaderOrgmanSet' ) .
               IF lr_collection IS BOUND.
                 lr_orgset_m = lr_collection->get_current( ).
    *            lr_orgset = lr_orgset_m->get_related_entity( iv_relation_name = 'BTOrgSet' ).
                 lr_orgset = lr_orgset_m->get_property_as_string( 'SALES_ORG' ).
               ENDIF.
             ENDIF.
    Thanks,
    Sapsar.

  • How To add One component to a TabbedPane

    Hi,
    I have a TabbedPane with four tabs in it
    the tabs are created dynamically it may be four or five
    i want to add only one component to it i.e JTable
    if i just add a component to the tabpan like below
    tabpane is an instance of JTabbedPane
    tableofvalues is an instance of JTable
    tabpane.add(tableofvalues); this code creates a
    default tab and add the component
    but i dont want the default tab i just want only the component
    can somebody please give me a solution for this
    give me the overiding function also

    i need to add one component which is common to all the tabs You can't. A component can only be added to a single container.
    However you might be able to share a model. For example:
    JTextField forTab1 = new JTextField("some data");
    JTextField forTab2 = new JTextField( forTab1.getDocument() );

  • Create a button in one component and use it in other component

    Hello, I have a problem(is not the first time but I don't have very clear that problem and I'm asking again). I'm creating a button in one component doing that
    Comp1:
    public var btn=Button;
    override public function main(args:IParams):void{
         var btn = new Button
        btn.label = ....
    And now I want to use this button in another component:
    Comp2:
    private var dia:Object; //It's my own object, it's a Dialog but with my properties,a dn the dialog need (button,string,boolean)
    private function onClick(event:Event):void{
                    dia = new Object(HERE I HAVE TO PASS THE BUTTON , "Tittle", false);
    I want know how can use the button that I have declared in the first component in my object. It's much more complicate but I have tried simplify my code.
    I hope that somebody can help me.
    Thanks!

    I'm sorry, probably I'm explainign wrong, I don't know if it's for my english or because I don't know how to say, but this is not the problem. I will put the code because I think that ou could understand better. Forget the buttons, the problem is the window parameter
    I'm very sorry because you're wasting time with me, but I hope that you can do the last try now with the code. If you don't understand something ask me before start thinking.
    MyModule
    <?xml version="1.0" encoding="utf-8"?>
    <AbstractVisualModuleExecutable
        xmlns:mx="http://www.adobe.com/2006/mxml">
        <mx:Script>
            <![CDATA[
                private var win:ITopComponent; //MY window
                private var dia:Dialog; //My Dialog
                override public function main(args:IParams):void{
                    win = initContext.environment.createTopComponent();
                    win.title = "Prueba Dialog"
                    win.contentPane = this;
                    win.visible = true;             
                private function onClick(event:Event):void{
                    dia = new Dialog(win, "Title", false); ((Here I use the window, because I have to say to the dialog who is her father. Win is the father or the dialog, the dialog will create when I do click in one button of my window(the father).
                    var btn2:Button = new Button();
                    btn2.label = "Cerrar";
                    btn2.addEventListener(MouseEvent.CLICK, function(event:Event):void{
                        dia.dispose();
                    dia.contentPane.addChild(btn2);
            ]]>
        </mx:Script>
        <mx:Button id="btn" click="onClick(event)" label="Dialog" />
    </AbstractVisualModuleExecutable>
    Now I want to divide this applicatión in one module and one component.
    MyNewModule (something like this):
    <mx:Script>
            <![CDATA[
                private var win:ITopComponent;
                private var dia:Dialog;
                //Here I create the window
                override public function main(args:IParams):void{
                    win = initContext.environment.createTopComponent();
                    win.title = "Prueba Dialog"
                    win.contentPane = this;
                    win.visible = true;               
    </Script>
    MyNewComponent (something like this):
    <Script>
              private var dia:Dialog;
             Here the instance of win I supose, but I don't know how. I have tried more than one thing
              private function onClick(event:Event):void{
                    dia = new Dialog(here the win, "Title", false); //here I want to use the win that I have created in MyNewModule, but I only get a null when I execute the module. I don't know how can I do, instance.top or something like this I suposse it.
                   //This part is not important
                    var btn:Button = new Button();
                    btn.label = "Cerrar";
                    btn.addEventListener(MouseEvent.CLICK, function(event:Event):void{
                        dia.dispose();
                    dia.contentPane.addChild(envio); //here I add the content of the dialog
                    //dia.contentPane.addChild(btn); //here I add only a button without content, but don't worry about that, like I said later this is not important. The import thing is how can I use win when I create the dialog.
                    dia.visible = true;
    </Script>
    <mx:Button id="toOpenDialod"  label="Open"  click="onClick(event)"/>
    THANKS!

  • Table cell with more than one component

    how can i make table cell with more than one component
    like below, cell in column 3 contains few button
    col0 | col1 | col2 |
    a | b |[btn1] [btn2] [btn3]|
    a | b |[btn1] [btn2] |
    and when i click on the any of the button a dialog box pop up saying something..

    Here's link to someone who did a lot with tables. Not sure about multiple buttons, but it should get you started.
    http://www2.gol.com/users/tame/swing/examples/SwingExamples.html

  • Copying methods from one component controller to other ?

    Hi,
    I have many methods in one component controller, which i wish to copy to another component controller through standard buttons. When i try to copy them, it says 'The method or methods are copied to the clipboard'. But, i was unable to copy them to another component's componentcontroller. It says as 'The clipboard' doesnot contain data. Can someone help me in providing solution in copying all the methods in one shot to other ?
    Thanks & Regards,
    Gaurav.

    Hi,
    I think You are trying it to paste after making new method in the other component directly with the help of Cntrl+V
    I am able to do same by using copy and paste buttons.
    First go to method tab and copy it then go in methods tab in which you want to paste click where we create for new method and click standard button for paste.
    By this way the name of the methods will be same. But if you want that you can rename it.
    I hope it helps.
    Regards,
    Rohit

  • Multiple component instances for one component usage

    Hi,all
    How can I create multiple component instances for one component usage.
    I'm using the following code for creating  a single component instance for specific component usage:
    if(c_Usage.hasActiveComponent())
          c_Usage.deleteComponent();
    if(wdContext.currentContextElement().getSelectedTab().equalsIgnoreCase("Registered"))
          c_Usage.createComponent("health.gov.registered.Registered";);
    I can't create one more component instance for
    IWDComponentUsage c_Usage
    cause I have to delete the component instance associated with this component usage.
    Any idea how can I do it anyway?
    Regards,
    Michael

    Hi,
    To create another instance of the same component you need to embed the same component under the Used Components more then once. For Example if you have Componet A to which you want to embed Component B then under "Used Components" of Component A add component B twice.

  • How to pass control from one component to other component

    Hi,
    I have a requirement to pass control from one component to other component.
    Here is my requirement.. l have two portal components, one is search component and other is result component. I have this search component as quick navigation iView where we can enter a value and results will display in results iView, it's a main iView.
    When search view gets the results, I will display the count in search view and result in results view. .i.e.. both the iviews are viewed at any time.
    Can any one advise me how to acheive this.
    Thanks,
    Chinna.

    Hi Sandeep,
    Thanks for the reply. I have gone through the EPCF API, and tried with doNavigate('iViewName').
    when I click on the button in search view (quikc navigation frame), instead of page getting refreshed in result iView, whole page is replaced by results iview. I want only search view and results view gets refreshed.
    can you please tell me which even should I use for this scenario...
    Thanks,
    Chinna

  • How do I rotate one clip in timeline and not the rest

    When I rotate one clip in the timeline 90 degrees it rotates all the clips 90 degrees.

    Bear5067
    If all the clips have the same color title bar, you are selecting all the clips at one time or none of the clips is selected. You need to select only the one that you want to rotate otherwise you will get what you are getting, that is, all the clips rotated instead of just the one. Is your mouse working so that clicking on a clip with it selects the clip?
    Based on how I interpreted what you wrote, we need to zero in on the clip selection. Please try again, and, if you have not already, expand the Timeline so that you can see its contents and clip distinctions. For expanding the Timeline content view, please refer to the -+ slider above the Timeline as shown in the right sector of the following screenshot
    The -+ slider has an icon on either side of it, one is named Zoom Out (- ) and the other on the right Zoom In (+ ).
    In the screenshot here, the two clips have the darker blue color indicating neither is selected at this point.
    Please review, and then we can decide what is going on with the clip selection process in your workflow.
    Thanks for the follow ups.
    ATR

  • Reg : Pass One Component's value to other component's value

    Hi all,
    I have the following code . Here I want to Pass :Pass One Component's value to other component's value
    <af:image binding="#{backingBeanScope.backing_OText.i1}"
    id="i1"
    source="#{(SkinBean.skinFamily == 'MSIE_D2I3')?'/images/d2i3Logo.gif':'/images/UDR_logo.jpg'}"
    shortDesc="Hello World"/>
    <af:spacer width="100" height="10"
    binding="#{backingBeanScope.backing_OText.s1}"
    id="s1"/>
    <af:outputText
    binding="#{backingBeanScope.backing_OText.ot1}"
    id="ot1"
    inlineStyle=" font-weight:normal; font-size:32pt; font-family:Georgia, 'Times New Roman', times, Serif;"
    value = *"Here I want to pass the value as 'Hello World' from The Image Component's ShortDesc"*
    Please give me the solution .
    Thanks inAdvance .

    since you already have the backing bean, you can try to set the value property to
    #{backingBeanScope.backing_OText.i1.shortDesc}regards,
    ~Krithika

  • DBA_REGISTRY.VERSION show only 3 digits after downgrade for one component

    Hello,
    One customer has downgrade their database from 10.2.0.5 to 10.1.0.5, and at the end checking the dba_registry they found that for one component, OLAP Analytic Workspace, the version is in a format of 3 digits only, instead of 5, like for other components:
    SQL> select comp_name,status,version from dba_registry;
    COMP_NAME STATUS VERSION
    Oracle Ultra Search VALID 10.1.0.5.0
    Oracle Enterprise Manager VALID 10.1.0.5.0
    Oracle XML Database VALID 10.1.0.5.0
    OLAP Catalog VALID 10.1.0.5.0
    Oracle Text VALID 10.1.0.5.0
    Spatial VALID 10.1.0.5.0
    Oracle interMedia VALID 10.1.0.5.0
    Oracle Expression Filter VALID 10.1.0.5.0
    Oracle Workspace Manager VALID 10.1.0.2.0
    Oracle Data Mining VALID 10.1.0.5.0
    Oracle Database Catalog Views VALID 10.1.0.5.0
    Oracle Database Packages and Types VALID 10.1.0.5.0
    JServer JAVA Virtual Machine VALID 10.1.0.5.0
    Oracle XDK VALID 10.1.0.5.0
    Oracle Database Java Packages VALID 10.1.0.5.0
    OLAP Analytic Workspace VALID 10.1.0
    Oracle OLAP API VALID 10.1.0.5.0
    Oracle Real Application Clusters VALID 10.1.0.5.0
    18 rows selected.
    Before upgrade, the component version was correctly identified as 10.1.0.5:
    APS OLAP Analytic Workspace 10.1.0.5.0 VALID
    The downgrade procedure was one from http://download.oracle.com/docs/cd/B19306_01/server.102/b14238/downgrade.htm#i1010243
    Is there any known issue for this 3 digit version?
    Regards,
    Mircea Teleptean

    Not sure if this would cause any problems for the applications (possibly only a wrong update in data dictionary for the version of OLAP in downgrade scripts).
    Have you faced any problems due to this?

Maybe you are looking for

  • Can not keep drawable signature option in reader on a form with a mailto: submit button added.

    I hope someone has run into this.  I have acrobat 11.0.10 to create fill-able forms and reader 11.0.10 to view and fill them.  Do to the nature of the forms a drawn signature is required and is available right up until I add a submit button with a ma

  • Recreate Default OID Integration Profiles

    Attempting to setup OID-AD synchronization. Configured import process using the GUI, but wanted to redo using AD "user" specifc to LDAP lookups/writes. So, deleted Configuration Set1 under "Integration Profile Configuration." Now, can't recreate with

  • SAP&_TRANSAKT

    hii    i want to display all the users with a particular t-code so i am executing suim but when i am clicking on the below mentioned path      user information system         --->user >user by complex selection criteria > by transaction authorization

  • WIll any version of Audition run on Windows XP x64?

    I still have ver 1.5, but I can upgrade. Thing is I just got a new PC built with Win XP x64. I assumed I'd be able to work everything out, but now I'm not sure. I must have Audition. Is anyone running AA on WinXPx64? Or am I sunk with this new machin

  • I have 2 Macs, do I need the family pack?

    An imac at home and a MBP for work... its just two (not 5) can I buy the single user version and install it on both machines? J