Create a dinamic new grafic (rectangle) object

hi guys, first thanks all for your help,
i want to create a simple application in javafx that when i clic a button i create a new rectangle in Scene,
, naturally i want set
the dimension, but this is not a problem, my problem i don't know creating the dinamic object
i read this example
http://download.oracle.com/docs/cd/E17802_01/javafx/javafx/1.3/docs/api/javafx.scene/javafx.scene.CustomNode.html
i use the second pattern but don't work :(
can you help me?
best regads
package javafxapplication3;
import javafx.scene.*;
import javafx.scene.paint.*;
import javafx.scene.shape.*;
public class figura1 extends CustomNode{
override function create():Node {
        return Group {
            content:  {
                Rectangle {
                    x: 30
                    y: 30
                    width: 100
                    height: 10
                    fill:Color.RED
package javafxapplication3;
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.text.Text;
import javafx.scene.text.Font;
import javafx.scene.control.Button;
import javafx.scene.Group;
import javafx.scene.shape.Circle;
import javafx.scene.paint.Color;
var g1 = Group {
    content: [
        Button {
              translateX: 15
                    translateY: 10
                   text: "Create Rectangle "
                      action: function() {
                       figura1{}; // i call class figura1
var stage =Stage {
    title: "Application title"
    scene: Scene {
        width: 250
        height:280
        content: [
g1,
   ]// end content
      }// end scene
}Edited by: 851168 on 20-mag-2011 6.24
Edited by: 851168 on 23-mag-2011 5.57

Moderator advice: Please read the announcements at the top of the forum listing and the forums FAQ linked from every page. They are there for a purpose.
Then edit your post and format the code correctly.
db

Similar Messages

  • Creating multiple rectangle objects

    Hi all
    Just having a bit of trouble with a drawing applet i'm creating. At the moment i want the user to be able to click on the screen and the mouse presses and releases define the size of the rectangle. This isn't a problem its just that now i want them to be albe to add more shapes by clicking a new Shape button. at the min my code seems to get stuck in the while loop in the paint method i think, and then it says that the applet is disposed?
    Any ideas where i could be going wrong?
    Cheeers for any pointers
    Heres the code
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    import java.util.*;
    public class drawingApplet extends Applet
                           implements ActionListener, MouseListener
         private Button newShape = new Button("New");
         private Button button2D = new Button("2D");
         //arraylist for objects
         ArrayList shapesArray = new ArrayList();
              boolean drawObject = true; //Drawing Mode
         boolean moveObject = false;
              private Color color = Color.black;
         int x1,y1,x2,y2,x3,y3,x4,y4 = 0;
         int startX,startY,width,height = 0;
         Rectangle myRectangle = new Rectangle(startX,startY,width,height);
              public void init()
              Panel pEast = new Panel();
              pEast.setLayout(new GridLayout(7,1));
              pEast.add(newShape);
              pEast.add(button2D);
              setBackground(Color.gray);
              newShape.addActionListener(this);
              button2D.addActionListener(this);
              addMouseListener(this);
        public void paint(Graphics g)
              Graphics2D g2 = (Graphics2D)g;
              g2.setColor(color);
              //create Rectangle Object
              myRectangle = new Rectangle(50,50,50,50);
              shapesArray.add(myRectangle);
              Iterator it = shapesArray.iterator();
              while(it.hasNext())
                   //DRAW Object
                   if(drawObject == true){
                        g2.draw(myRectangle);
              }//--> End of While loop
         }     //--> End of Paint()
         //--> Start of actionPeformed()
        public void actionPerformed(ActionEvent a)
            if (a.getSource()== button2D){
                   drawObject = true;
                   moveObject = false;
              }else if(a.getSource()== newShape){
                   //add rectangle to arraylist
                   shapesArray.add(myRectangle);
            repaint();}
        }//--> End of actionPerformed()
        //--> Start of section dealing with Mouse Events
        public void mouseClicked(MouseEvent e)
        public void mouseEntered(MouseEvent e)
        public void mouseExited(MouseEvent e)
        public void mousePressed(MouseEvent e)
              x1 = e.getX();
              y1 = e.getY();
              if(myRectangle.contains(x1,y1)){
                   drawObject = false;
                   moveObject = true;
              }else{ //draw the object
                   drawObject = true;}
         }//--> End of mousePressed()
         public void mouseReleased(MouseEvent e)
              //get the positions of where the mouse was released
              x2 = e.getX();
              y2 = e.getY();
              if(drawObject == true){
                   if (x1 != x2 && y1 != y2){
                   //maths to work out where to draw the object
                   if(x1 < x2 && y1 < y2){//1
                        startX = x1;
                        startY = y1;
                        height = y2 - y1;
                        width = x2 - x1;}
                   else if (x1 > x2 && y1 > y2){//2
                        startX = x2;
                        startY = y2;
                        height = y1 - y2;
                        width = x1 - x2;}
                   else if (x1 > x2 && y1 < y2){//3
                        startX = x2;
                        startY = y1;
                        height = y2 - y1;
                        width = x1 - x2;
                   else if (x1 < x2 && y1 > y2){//4
                        startX = x1;
                        startY = y2;
                        height = y1 - y2;
                        width = x2 - x1;}
              }else if(moveObject == true){
                   if (x1 != x2 && y1 != y2){
                        startX = x2;
                        startY = y2;
                        width = myRectangle.width;
                        height = myRectangle.height;
              repaint();
         }//--> End of mouseReleased()
    }Also if anybody has some examples i could look at i would be very grateful. Cheers!!

    /*  <applet code="AddingRectangles" width="400" height="300"></applet>
    *  use: >appletviewer AddingRectangles.java
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    public class AddingRectangles extends Applet implements ActionListener, MouseListener
        private Button newShape = new Button("New");
        private Button button2D = new Button("2D");
        //arraylist for objects
        ArrayList shapesArray = new ArrayList();
        boolean drawObject = true; //Drawing Mode
        boolean moveObject = false;
        private Color color = Color.black;
        int x1,y1,x2,y2,x3,y3,x4,y4 = 0;
        int startX,startY,width,height = 0;
        Rectangle selectedRectangle;
        public void init()
            Panel pEast = new Panel();
            pEast.setLayout(new GridLayout(7,1));
            pEast.add(newShape);
            pEast.add(button2D);
    //        setBackground(Color.gray);
            newShape.addActionListener(this);
            button2D.addActionListener(this);
            addMouseListener(this);
        public void paint(Graphics g)
            Graphics2D g2 = (Graphics2D)g;
            g2.setColor(color);
            //create Rectangle Object
    //        myRectangle = new Rectangle(50,50,50,50);
    //        shapesArray.add(myRectangle);
            Iterator it = shapesArray.iterator();
            while(it.hasNext())
                g2.draw((Rectangle)it.next());
        } //--> End of Paint()
        //--> Start of actionPeformed()
        public void actionPerformed(ActionEvent a)
            if (a.getSource()== button2D){
                drawObject = true;
                moveObject = false;
            }else if(a.getSource()== newShape){
                //add rectangle to arraylist
    //            shapesArray.add(myRectangle);
            repaint();
        }//--> End of actionPerformed()
        //--> Start of section dealing with Mouse Events
        public void mouseClicked(MouseEvent e){}
        public void mouseEntered(MouseEvent e){}
        public void mouseExited(MouseEvent e){}
        public void mousePressed(MouseEvent e)
            x1 = e.getX();
            y1 = e.getY();
            selectedRectangle = null;
            Iterator it = shapesArray.iterator();
            Rectangle r;
            while(it.hasNext())
                r = (Rectangle)it.next();
                if(r.contains(x1,y1)){
                    drawObject = false;
                    moveObject = true;
                    selectedRectangle = r;
                    break;
            // no rectangle selected
            if(selectedRectangle == null)
                selectedRectangle = new Rectangle(x1, y1, 0, 0);
                drawObject = true;
        }//--> End of mousePressed()
        public void mouseReleased(MouseEvent e)
            //get the positions of where the mouse was released
            x2 = e.getX();
            y2 = e.getY();
            if(drawObject == true){
                if (x1 != x2 && y1 != y2){
                    //maths to work out where to draw the object
                    if(x1 < x2 && y1 < y2){//1
                        startX = x1;
                        startY = y1;
                        height = y2 - y1;
                        width = x2 - x1;
                    else if (x1 > x2 && y1 > y2){//2
                        startX = x2;
                        startY = y2;
                        height = y1 - y2;
                        width = x1 - x2;
                    else if (x1 > x2 && y1 < y2){//3
                        startX = x2;
                        startY = y1;
                        height = y2 - y1;
                        width = x1 - x2;
                else if (x1 < x2 && y1 > y2){//4
                    startX = x1;
                    startY = y2;
                    height = y1 - y2;
                    width = x2 - x1;
                if(Math.abs(x2 - x1) > 0 && Math.abs(y2 - y1) > 0)
                    shapesArray.add(new Rectangle(x1, y1, width, height));
            }else if(moveObject == true){
                if (x1 != x2 && y1 != y2){
                    startX = x2;
                    startY = y2;
                    width = selectedRectangle.width;
                    height = selectedRectangle.height;
            repaint();
        }//--> End of mouseReleased()
        public static void main(String[] args)
            Applet applet = new AddingRectangles();
            Frame f = new Frame("Adding Rectangle");
            f.addWindowListener(new WindowAdapter()
                public void windowClosing(WindowEvent e)
                    System.exit(0);
            f.add(applet);
            f.setSize(400,300);
            f.setLocation(200,200);
            applet.init();
            applet.start();
            f.setVisible(true);
    }

  • How & where to use Java script to create new button in object detail page

    Hi All,
    I want to create "New/Add button" in object detail page. If i am not wrong i need to use java script for that but could you please let me know how & where to use Java script to create new button in object detail page in CRMOD.
    Thanks in advance.
    Regards,
    Manish

    Any related object on the detail page should have an "Add" or "New" or both buttons by default - This is vanilla functionality and will do the required action.
    If you want to modify this behaviour and do something tricky you will potentially have to go for javascript. You should add the javascript on a custom web tab on that Object.
    Admin --> Application Customization --> Contact -->Contact Web Applet
    Now, add your javascript in the code area, after you select the type = HTML for this web applet, expose this web applet on the Contact detail layout and your javascript will be invoked whenever this page is loaded.
    Check this online document to see how javascript can be embedded in CRM on Demand http://helponmyproject.com/TTOCOD/
    Cheers!
    Royston

  • With PS 7  create new  Place two objects on the new file  then you may cut copy and paste Cs2  create new  place two object on the new file Cut is not available how does one cut and paste in new file

    With PS 7
    create new
    Place two objects on the new file
    then you may cut copy and paste
    Cs2
    create new
    place two object on the new file
    Cut is not available how does one cut and paste in new file

    If your using File>Place then photoshop cs2 creates what's known as Smart Objects, which photoshop 7 didn't have.
    In photoshop cs2 you can rasterize the smart objects and that should make the Cut function available.
    Select both placed layers, right click on the area to the right of the tumbnail and select Rasterize Layers.
    If in photoshop cs2 you to Help>Photoshop Help and look under Layers>Smart Objects, that should give you a good overview of what smart objects are.

  • Create new Siebel Application Object Manager

    Hi, guys!
    Tell, please, to me explicitly how to create the new Call Center Object Manger. Mainly me interests as to create for this AOM a new virtual directory on Sun ONE webserver. Please explain me this question very explicitly.

    Hi Umair ,
    Thaks for your reply!I wanted to inform you also that I don't have installed PDK on my PC - I only have the Sneak Preview.
    -I wondered if creating Portal Application Object/Projects has to do something with PDK or it is part on WebDynpro way to develop Portals?
    -My goal is to be able to develop Portal without using WebDynpro methodology- instead I want to be able to use and learn the other methodology - which seems to me is called  PDK -if I am correct?
    -If I am not wrong I will need to install PDK6.0 to use the second methodology ?
    -Is Enterprise Portal Perspective on NWDS used in this case or it is used in both cases when developing Portals ?
    -I is not much clear which tools as a developer are needed in both cases ?
    If one can clarify this basic concept it will be very useful.
    I clearly want to distinguish  between both way of developing portals.
    I can post more specific questions if the above sounds too common..Thanks in advance!
    Regards, Bob

  • Move a Rectangle object

    Hi guys
    I'm just trying to create an applet that draws a shape such as a rectangle that will allow the user to click on the rectangle, then move the mouse and the shape will be re-drawn at the point where the mouse is released.
    Any ideas where i can start, pointers greatly appreciated.

    Here is the program you posted (with my corrections) which works
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    public class Test extends Applet
                                implements MouseListener
        private Color color = Color.black;
            int x1, y1, x2, y2 = 0;
    int width, height = 0;
      int startX, startY = 0;
    boolean drawObject = false;
         boolean moveObject = false;
         Rectangle myRectangle = new Rectangle(startX,startY,width,height);
        public void init()
            setBackground(Color.gray);
            addMouseListener(this);
            int i = 5;
        public void paint(Graphics g)
              //recover Graphics2D
                Graphics2D g2 = (Graphics2D)g;
              g2.setColor(color);
                 if(drawObject){
                     //create Rectangle Object
                            myRectangle = new Rectangle(startX,startY,width,height);
                          g2.draw(myRectangle);}
              else if (moveObject){
                       g2.drawString("MOVE", 100,100); //just testing here
                         myRectangle.setLocation(x2,y2);}
        //--> Start of section dealing with Mouse Events
        public void mouseClicked(MouseEvent e)
        public void mouseEntered(MouseEvent e)
        public void mouseExited(MouseEvent e)
        public void mousePressed(MouseEvent e)
               x1 = e.getX();
              y1 = e.getY();
              //Check to see if mouse is pressed in the current rectangle.
                if(myRectangle.contains(x1,y1))
                           //move the object instead of moving it
                      drawObject = false;
                         moveObject = true;
                   else
                           //draw the object, don't move
                       drawObject = true;
                          moveObject = false;
        public void mouseReleased(MouseEvent e)
                   //get the positions of where the mouse was released
                 x2 = e.getX();
              y2 = e.getY();
              if (x1 != x2 && y1 != y2){
              //maths to work out where to draw the object
                if(x1 < x2 && y1 < y2){//1
                          startX = x1;
                        startY = y1;
                        height = y2 - y1;
                           width = x2 - x1;}
                   else if (x1 > x2 && y1 > y2){//2
                            startX = x2;
                        startY = y2;
                        height = y1 - y2;
                           width = x1 - x2;}
                   else if (x1 > x2 && y1 < y2){//3
                            startX = x2;
                        startY = y1;
                        height = y2 - y1;
                           width = x1 - x2;
                   else if (x1 < x2 && y1 > y2){//4
                            startX = x1;
                        startY = y2;
                        height = y1 - y2;
                           width = x2 - x1;}
                   } repaint();
    }I.e. User can draw a rectangle; clicking inside it causes string MOVE to appear at point 100,100. If you want to redraw rectangle at point where mouse has been clicked, try to think about it a bit and post your code if it wont work. Do not ask to write it for you.

  • How to pop up "Drag New signature rectangle" window from plug-in?

    Hi, everybody
           I am trying to create a menu that contains menuitem "sign". when the  user click on menu->"sign" a  window  pop-up
           asking for "Drag New signature rectangle" from the user.This window is same as poped up by default by digSig.
           Problem is Which API should be used to pop this window.
           Any kind of help will be welcomed.
                                                                                                                        Thanks and Regard

    Thanks soooooooooooooooooooooooooooooooooooooooo much!!!!!!!!!!!!!!!!!!!!!!!!! This is EXACTLY what I want to do!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! wuwuwuwuwuuwuwuw....................want to cry~~~~~~~~~~~~~~~~~thanks thanks~~~~~~~~~~~~~~~~~~~~~``

  • Is there a way to create a transport to mass-delete objects from another system?

    I am facing a unique issue where I have to generate a transport that will successfully import into an external SAP system and delete over 1,000 objects (reports, data elements, UI elements, transactions, function groups, the whole lot...). All of these objects can be easily looked up because they are in the same namespace.
    Essentially, I need to remove all objects with a given namespace via transport.
    Is there any way to do this other than manually deleting all of the objects in the source system and adding them tediously to a single workbench request? This would take hours if not days to do manually, especially due to dependency issues.
    Thanks for any and all constructive feedback!

    Hi,
    I did a quick test: created a new package (development class) with one table, one function group using the table in global data definitions containing one function module referring to the table in interface, and one program that's calling the function module and using table in data definitions. Released the transport to Q.
    Then, in the second our dev system, I created the same package and TADIRs for the three objects manually (SM30); released transport to Q of that system. Then I manually created transport containing all the three objects, the export log looked like this:
    TADIRs in second dev system were gone after export.
    Then I added transport to the first development system and imported
    - the objects were gone (including their TADIRs) leaving the empty package.
    In retrospect, I should have deleted the empty package in second system so it's cleaned up by the same transport.
    If you do have access to "clean" system, doing via ABAP the steps I did manually should not be too much of a challenge.
    I may have simply gotten lucky and if this works with all objects, for all kinds of dependencies, remains to be seen... though I was until now under impression that import itself doesn't check any dependencies at all... What kind of messages were you getting?
    cheers
    Janis

  • How can I set a value in a field before create when a New button is clicked

    Hi,
    I am using
    JDeveloper 10.1.3.1.0.3984 and
    JHeadstart 10.1.3.1 release 10.1.3.1.26
    I have one group and there is a detail group under that group.
    From main group to detail group there are 3 field relating those groups.
    field1
    field2
    fieldSEQ (auto-generated by database trigger)
    These 3 fields are PK.
    In the detail group, there is a New button. So, when the New button is clicked, it tries to create the record with those 3 fields value as those are coming from main group. As a result it's giving the duplicate error as that record already exists in the table.
    But I don't want to create the record with that SEQ as that will be created in the trigger.
    How can I set the SEQ temporarily any no. (-1) before create when the New button is clicked?
    Can anybody help?
    Thanks
    Syed Jabbar
    University of Windsor
    Windsor, ON, Canada

    Hello Syad,
    What I would suggest is setting the sequence number at the creation of the entity object (so in the create() method) by using the database sequence. This way it will always be unique.
    So something like:
    protected void create(AttributeList AttributeList) {
    super.create(AttributeList);
    SequenceImpl sequence =
    new SequenceImpl("KCP_SEQ", getDBTransaction());
    setFieldSeq( sequence.getSequenceNumber());
    If this still does not solve it: please go to the ADF Forum since this problem is an ADF problem, not a JHeadstart problem.
    Regards,
    Evert-Jan de Bruin
    JHeadstart Team.

  • Creation of New Custom Development Object in Solar02

    Hi,
    We are trying to create an object type of Form for a new custom development object in solar02 under tab Development,and for this I get an error that the object doesn’t exist in development environment. 
    Based on my analysis, it looks like Solution Manager only allows to link pre-existing development objects but not creating new objects.  Is that right?  If  not please advice how can we add new custom objects through solution manager.
    Thanks & Regards,
    Sandeep Alapati

    hi,
    solar01/02 is the tools for documenation, it is not for creating objects. 
    basically it should allow you to enter any developement objects names, irerespective of whether they are created in the back end system or not.
    please provide the screenshots.
    Thanks
    Jansi

  • Issue with Generate Create Script in new ODT 11.1.0.6.10 beta

    I've tried this on several tables in my database. I choose Generate Script to ... a file, for a given table it gives me the error message "An error occurred while writing to fil: \nValue was either too large or too smal for an Int32."
    (It doesn't matter if I'm in a Oracle database project or some other project.)
    Trying to Generate Script To Project... when I'm in a Oracle Database Project, Visual Studio (2005) crashes. It appears to be some overflow exception according to crashinfo:
    EventType : clr20r3 P1 : devenv.exe P2 : 8.0.50727.762 P3 : 45716759
    P4 : mscorlib P5 : 2.0.0.0 P6 : 461eee3d P7 : 407b P8 : a3
    P9 : system.overflowexception
    (With ODT 11.1.0.5.10 beta it worked fine dispite the issue discussed in thread: Re: Issue with Generate Create Script in new ODT 11.1.0.5.10 beta
    /Tomas

    Tried to debug this error and got these exception details. Hope it helps!
    /Tomas
    System.OverflowException was unhandled
    Message="Value was either too large or too small for an Int32."
    Source="mscorlib"
    StackTrace:
    Server stack trace:
    at System.Decimal.ToInt32(Decimal d)
    at System.Decimal.op_Explicit(Decimal value)
    at Oracle.Management.Omo.TableSpaceQuotaDetails.FillTableSpaceQuota(OracleDataReader reader)
    at Oracle.Management.Omo.User.FillTableSpaceQuotas(OracleDataReader reader)
    at Oracle.Management.Omo.Connection.GetUserCollection(Boolean refresh)
    at Oracle.Management.Omo.Connection.GetUsers(Boolean refresh)
    at Oracle.Management.Omo.TableSQLGenerator.GetCreateSQLs(OmoObject obj, ArrayList& typeAndNames, Boolean checkRequired, Boolean appendSchemaName)
    at Oracle.Management.Omo.TableViewBase.GetCreateSQLs(Boolean appendSchemaName)
    at Oracle.VsDevTools.OracleUILDBProjectServices.GenerateCreateScript(OracleUILConnCtx connCtx, String[] objectNames, String objectOwner, OracleUILObjectType objectType)
    at Oracle.VsDevTools.OracleUILDBProjectServices.GenerateCreateScriptAsyncMethod(IntPtr ppvObj, OracleUILConnCtx connCtx, String[] objectNames, String objectOwner, OracleUILObjectType objectType, ICollection& scriptText)
    at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Int32 methodPtr, Boolean fExecuteInContext, Object[]& outArgs)
    at System.Runtime.Remoting.Messaging.StackBuilderSink.PrivateProcessMessage(RuntimeMethodHandle md, Object[] args, Object server, Int32 methodPtr, Boolean fExecuteInContext, Object[]& outArgs)
    at System.Runtime.Remoting.Messaging.StackBuilderSink.AsyncProcessMessage(IMessage msg, IMessageSink replySink)
    Exception rethrown at [0]:
    at System.Runtime.Remoting.Proxies.RealProxy.EndInvokeHelper(Message reqMsg, Boolean bProxyCase)
    at System.Runtime.Remoting.Proxies.RemotingProxy.Invoke(Object NotUsed, MessageData& msgData)
    at Oracle.VsDevTools.OracleUILDBProjectServices.GenerateScriptAsyncMethodDelegate.EndInvoke(ICollection& scriptText, IAsyncResult result)
    at Oracle.VsDevTools.OracleUILDBProjectServices.OnGenerateScriptAsyncCompletion(IAsyncResult ar)
    at System.Runtime.Remoting.Messaging.AsyncResult.SyncProcessMessage(IMessage msg)
    at System.Runtime.Remoting.Messaging.StackBuilderSink.AsyncProcessMessage(IMessage msg, IMessageSink replySink)
    at System.Runtime.Remoting.Proxies.AgileAsyncWorkerItem.ThreadPoolCallBack(Object o)
    at System.Threading._ThreadPoolWaitCallback.WaitCallback_Context(Object state)
    at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
    at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback(Object state)

  • How to construct a new complete view object programmatically

    HI,
    I want to construct a new complete view object programmatically. I have a result set based on the rows returned from this query i need to build the new vo and show it n a form. Please tell me the complete procedure to do this or else provide me any links.
    Thanks
    Satya

    Hi,
    have a look how dynamic tables are created (using af:forEach to iterate the attribute Defs for generating columns). Your approach is similar except that you not only need to know about attributes but also the rows to fecth
    1. create a tree binding for the view object
    2. create the binding with one hierarchy
    3. ensure all attributes are deleted for the tree binding (you do this manually in the PageDef)
    4. when executing the query for a new SQL, call clearForRecreate() on the DCIteratorBinding instance
    5. On the page, use af:forEach to create the form fields and labels for each row. Like for dynamic tables, you first need to determine the attributes to render (its a nested loop you are going for
    6. Updates of the form fields must be through a managed bean
    Frank

  • Hi, I have been having problem in creating 'undistorted' multiple rounded cornered rectangles?

    hi, I have been having problem in creating 'undistorted' multiple rounded cornered rectangles?  I have attached an image to show what i mean ( problem highlighted in blue). Any help would be really appreciated...

    Thanza,
    If you wish to have proportionately growing sizes with the same rounding radius, you may:
    1) Start with a (non rounded) rectangle and Effect>Distort & Transform>Transform with the desired scaling and number of copies;
    2) Object>Expand Appearance;
    3) Effect>Stylize>Round Corners with the desired radius.

  • Add a new type of object links (transaction CV02N)  - by material group .

    Hi experts .
    How can I create an additional screen for new tab by material group
           in DMS System ?
    I have a requirement :  1. Add a new type of object links in transaction CV02N 
                                          by material group(V023-MATKL) .
                                        Today we use 2 existing options  :  by Equipment and material .
                                      2. Save and display data .
    We did the following  steps :
    1 . In customizing  for Document Management  :
                   a. Maintained a  key fields :
                          table : V023 , tran.code : OMSF , field name : MATKL .
                   b. Maintained screen object link  for V023 .
                         Our problem is screen number  . we used at existing screen  - 500 for user exit.
                         So we get a new tab with material instead of material group .
                         How I can create a new screen with field material group
                             for set this screen number in step b ?       
                         May be I need the access key for FUNCTION GROUP CV130
                         and create this screen by myself ? .
                   c. Defined Object links for special document type  .
    2 .   Created in se19 at implementation of DOCUMENT_OBJ
                          with defined filter : V023 .
                          Regards Helena .

    Hi Nuno,
    how did you solve this problem?
    tks

  • Create form in new window

    there are two pages.
    There is a table on the first one. The second one can be caused (called) as switch to dialog.and it contains a form of new record creating formed by the same view-object. After creating a new record dialog window closes and an error "JBO-35007: Row currency has changed since the user interface was rendered " appeal on the first page

    Sorry I didn't understand the answer.Did You meant that i have to refresh iterarator from in returnlistener method?Can you give me example how to do it?

Maybe you are looking for

  • Login as SYSDBA in WindowsXP

    I installed Oracle 10G R2 Database in my Windows XP Professional. I have succeeded in connecting to Database Control to orcl(default) database using SYS user id with Password 123456. When I try to connect to iSqlplus using the same user id SYS and Pa

  • Some records not transfer from ODS to infocube

    Hello BW folks , We have an ODS which stores the various sales doc. types. We are transfering all the data from this ODS to infocube. We do not have any routine or filter conditions while loading data from ODS to infocube. In the update rules of info

  • Installing Colour Profiles in Distiller

    Hi All, Just wondering if anyone knows how to install colour profiles in Distiller. I need to add a profile to the CMYK area of Working Spaces. I've added the profile to the ColorSync folder, so I was hoping that it would be there to click on when I

  • What is position override in OM?

    Hi experts, I have heard people saying position override many times in the meetings. I wonder what is that. From the definition and meetings I could figure out that it is a position overriding an existing position. Please explain with a scenario and

  • What R the dimensions of the box of Sharp Led TV 60''?

    What R the dimensions of the box of Sharp Led TV 60''? If I'm not mistaken the dimensions of the BOX (not the screen) is not mentioned in the specs. Plz take a look : http://www.bestbuy.com/site/Sharp+-+AQUOS+-+60%22+Class+%2860-1/32%22+Diag.%29+-+LE