Move a line at runtime

Is it posible to move a graphic, for instance a line, on a form at runtime ?
Forms 9.0
[email protected]

There is no built-in that does this. If you are talking about a line, you might be able to trick your way around this by having a dislpay item with height of 1, and moving it with set_item_property.

Similar Messages

  • Draw dimension lines at runtime?

    Hi all,
    I crated a little application where the user can drag some
    object around
    the movie.
    Is there a way to allow the user to draw straight lines along
    with a sort
    of number stating the lenght of the line while dragging and
    that remain
    there once you draw your line?
    I'm searching a way to allow the user to add dimension lines
    to the
    objects. So, the user draw a straight line and the lenght of
    the line
    (scale 1:20) is displayed along the line.
    Example:
    I drag a square on the stage. Lets assume that its side is
    5cm long. I take
    the LINE tool and draw a line near the top side of the square
    the same
    lenght of the top side of the square (by eyes, of course). I
    should see a
    number near the line saying 100cm (+/-) (remember the scale
    1:20).
    But I'n new to actionscript and I don't know where to start.
    Is there a
    tutorial that teach ho to draw lines at runtime?
    Any suggestion will be very appreciated.
    Ciao ;).
    tony

    Transform a Layer once (command-T), then use command-alt-shift-T to Transform Again and duplicate.
    Or just duplicate a Layer the intended number of times, move the top one to the proper location, select them all and invoke »Distribute horicontal centers« from the Options Bar.

  • Move Order lines and Delivery Detail lines - Relationship

    Hi All,
    Is there a one - to - one realtionship between Move Order Line and Delivery Detail Line?
    i.e., Each Move Order line will correspond to only one Delivery Details line Record?
    Thanks in advance.
    Regards,
    Gowri

    Hello,
    There is a one - to - many relationship between Move Order Line and Delivery Detail Line when you split lines in delivery.
    select * from mtl_material_transactions t you have source_id.
    select * from WSH_DELIVERABLES_v t you have move_order_id.
    Regards,
    Luko

  • How to add new line in transact move order line

    Hi,
    i am able to update locaotr in Transact move order.
    But i want to add two locators for the same line.
    I tried to insert one more record in data base, but getting error unique index error.
    so how can we add new line in transact move order line .
    please help to slove this isse.
    Thanks In Advance
    Venu.

    Hi,
    the fact that your question is posted in Order Management section, does the move order automatically generated by OM?
    nevertheless, i don't think you should (or allowed, in this case) to add a new line in transact move order. Transact move order only queries (not create records) the move order lines eligible to allocate and transact.
    So, I don't see why you need to add a new line in transact move order.
    You can, however, add a new line in the allocation of the lines, where for instance, you need to have half of the line allocated to one locator, and the other half to another locator
    Thanks

  • Checking output of script line by line at runtime

    hi,
    I am new in solaris scripting. I want to ask that is there any way to check the output of the solaris bash script line by line during runtime of script execuation.
    I actually want to check the values during script execuation at runtime.
    Thanks

    (k)sh -x <scriptname> will show you line by line output.

  • Verizon needs to move their line off old pole. Almost a year now and they still haven't moved it!

    I have submitted two tickets for Verizon to move their line off an old pole to newly erected poles since March 2013. We had new utility poles installed by Dominion Power and all the other utility lines have be moved, but Verizon will not move their line! We are going to start building a new house this spring and Verizon's line is in the way. No matter who I speak with, we get the run around and nothing ever happens. We have asked Dominion Power to intervene since it's their poles and they have sent them "NJUNS" ticket requests (whatever that means). But Verizon still hasn't moved their line. ughhhhhhh Why is it so hard to get though to someone in customer service that can actually help me with this???
    We are now at the point where people have told us we should file a complaint with the VA SCC. I live in northern Virginia. We can't delay building because of this line, so something needs to be done ASAP. If anyone has any advice before I file an official complaint, please let me know. Thanks!
    Solved!
    Go to Solution.

    dizzkat wrote:
    Why is it so hard to get though to someone in customer service that can actually help me with this???
    Because Verizon's customer service department's primary job is to handle billing issues, new customer sign-ups and package changes.  They also provide some technical support.  Anything outside of that is usually something they can't handle.
    You most certainly should file a complaint with your local and/or state government.  That'll get their attention quicker than anything short of the pole getting knocked down by a snowplow.
    Good Luck.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.

  • How to cancel a Move Order line using API

    Hi
    I have a requirement, where I have to cancel Move order lines.
    At times, multiple Move order lines are getting created for the same Sales order line.
    Even after the Sales Order line is shipped and closed, the move order line is still open and it also has a corresponding pending transaction in mtl_material_transactions_temp table.
    I came across INV_MOVE_ORDER_PUB.process move order line API.
    how do I use it to cancel the move order line. Any sample codes would be highly welcome.
    Thanks

    Finally, found an alternate solution.
    used the following code.
    ===================================
    SET serveroutput on size 1000000
    DECLARE
    l_return_status VARCHAR2(100);
    l_msg_count NUMBER;
    l_msg_data VARCHAR2(2000);
    l_msg_index NUMBER;
    l_user_id NUMBER;
    l_resp_id NUMBER;
    l_appl_id NUMBER;
    l_org_id NUMBER := &org_id;
    l_move_order_line_id NUMBER := &mo_line_id ;
    BEGIN
    SELECT user_id
    INTO l_user_id
    FROM fnd_user
    WHERE user_name = 'PRAWILNSON';
    SELECT responsibility_id
    ,application_id
    INTO l_resp_id
    ,l_appl_id
    FROM fnd_responsibility_vl
    WHERE responsibility_name = 'Order Management Super User';
    FND_GLOBAL.apps_initialize (l_user_id, l_resp_id, l_appl_id);
    MO_GLOBAL.set_policy_context ('S', l_org_id);
    MO_GLOBAL.init;
    DBMS_OUTPUT.put_line ('Calling INV_MO_BACKORDER_PVT to Backorder MO');
    DBMS_OUTPUT.put_line ('===============================');
    inv_mo_backorder_pvt.backorder (p_line_id => l_move_order_line_id
    ,x_return_status => l_return_status
    ,x_msg_count => l_msg_count
    ,x_msg_data => l_msg_data);
    DBMS_OUTPUT.put_line ('Return Status is : '|| l_return_status);
    -- Check Return Status
    IF l_return_status = fnd_api.g_ret_sts_success THEN
    DBMS_OUTPUT.put_line ('Successfully BackOrdered the Move Order Line');
    COMMIT;
    ELSE
    DBMS_OUTPUT.put_line ('Could not able to Back Order Line Due to Following Reasons' );
    ROLLBACK;
    FOR j IN 1 .. l_msg_count LOOP
    FND_MSG_PUB.get(p_msg_index => j
    ,p_encoded => fnd_api.g_false
    ,p_data => l_msg_data
    ,p_msg_index_out => l_msg_index);
    DBMS_OUTPUT.put_line ('Error Message is : '|| l_msg_data);
    END LOOP;
    END IF;
    END;
    /

  • Using actionListeners to move a line 20 pixels in every direction

    I'm trying to create an actionListener for a button. I need to be able to click on the button and move a line 20 pixels in every direction. But i have no idea how to do this. I'm supposed to have an object in my ColoredLine class that allows for me to use with the ActionListener class but I don't even know what that means. Here is my ButtonForLine class that implements listener and my ColoredLine class that gives the original line.
    public class ButtonForLine implements ActionListener {
              public int q;
              public int w;
              public int e;
              public int r;
              public Color color;     
    public void actionPerformed ( ActionEvent e ) {
         ColoredLine move= new ColoredLine;
    public ButtonForLine( ) {
         q = (left + 20);
         w = (top + 20);
         e = (right + 20);
         r = (bottom + 20);
    public class ColoredLine implements Drawable {          //creates all instance fields for entire class
         private int left;          //colored lines store the positions of their left, top, right, bottom, and color
         private int top;          // of their lines. It also stores the same positions for the twin lines.
         private int right;
         private int bottom;
         private Color color;
         private int q;
         private int w;
         private int e;
         private int r;
    Creates a colored line. It calls for the new positons of the color swatch.
    @param x1 the top left of the line
    @param y1 the top of the line
    @param x2 the bottom right of the line
    @param y2 the bottom of the line
    @param c the color of the line
    public ColoredLine( int x1, int y1, int x2, int y2, Color c) {
         left = x1;
         top = y1;
         right = x2;
         bottom = y2;
         color = c;
    Draw a colored line using a graphics context
    @param g the graphics context used to draw the line
    public void draw( Graphics2D g ) {
         g.setColor( color );
         g.drawLine( left, top, right, bottom );
    public ColoredLine move() {
         q= (left + 20);
         w= (top + 20);
         e= (right + 20);
         r= (bottom + 20);
         ColoredLine moved = new ColoredLine( q, w, e, r, color );
         return moved;
    }

    [jverd's point|http://forums.sun.com/thread.jspa?messageID=10854585#10854585] was not necessarily to repost this question under a different title (much better title, BTW).
    But you seem to have missed point 2). Please use the code tags when posting code, code snippets, HTML/XML or input/output.
    Note as well, that the message posting form offers a tab at the top to 'Preview' a post - to see how it will look in the forum.

  • How to move wax line down?

    Is it possble to move wax line down from an text adornment like it does "Paragraph Rules"->"Keep in frame"?

    Olemacr wrote:
    Thanks  for the reply but nothing happens on my iMac using those keys.
    There are global shortcuts, which should work in all apps; there are Cocoa text engine shortcuts, which should work in all apps which use the Cocoa text engine; and there are app shortcuts. How a specific app responds to a command such as Page Up is not necessarily under the OS control.
    The shortcuts indicated by Don Archibald are correct. How any specific app responds is another matter. So tell us exactly what app (and version) you are using and maybe we'll be able to help.
    I did find that on my MBP fn and up or down arrows did move a page at a time
    For some keys, and for obvious reasons, on the MBP fn is similar to control.

  • How to change line width runtime?

    Hi,
    I want to change line width dynamically or runtime depending on certain conditions.
    I had written format trigger on line and used SRW.SET_BORDER_WIDTH but it does not work. so what is other possible solution for this?
    Thanks in advance.

    In your variable vertical elasticity frame put several fixed vertical elesticity objects (lines, frames, etc.) of different heights. In the runtime, suppress all the objects in their format triggers, but one with the height you need. The objects need to be made invisible by setting their color to white.

  • Beat mapping glitch? Can't move grid line.

    Greetings,
    I'm trying to synch my tempos to film. I "conducted" the tempo in by tapping the tempo into a midi track, then used beats from region. The tempo was very close (though for some reason it still didn't match up exactly as I had tapped it???) but either way, to repair any imperfections I try to grab a grid line and move it to the appropriate place, but the grid line doesn't move nor does it create the diagonal line from the top that it's supposed to according to the numerous how to videos I've watched. One person said this is a Logic glitch that you can work around by creating a new tempo marker and deleting, but that didn't do the trick. Any suggestions?
    Thanks!

    Logic snaps to relative grids by default. So for example if your sample starts/ends at bar 1 1 1 072 it will snap to 1 1 2 072, 2 1 1 072 etc. To make it snap to the absolute time, click on the snap sub-menu where you select the snap value. In the list that comes up you'll see an item 'snap to absolute value'. Click on it. When this option is checked logic will snap to whole beats in smart, bar and beat modes.

  • Move straight Line on an image view.

    I have drawn a straight line on an UIImageView using CAShapeLayer but I m unable to move it. 
    How to move it on an UIImageView?

    I have drawn a straight line on an UIImageView using CAShapeLayer but I m unable to move it. 
    How to move it on an UIImageView?

  • Data Modeler - How to move relationship lines?

    I can't figure out how to move the relationship lines on the data modeler.
    Tried a bunch of things that have worked in all the other modelers I've used, but no luck. Couldn't find anything in the help text about it, either.
    Edited by: David Wendelken on Nov 14, 2008 4:07 PM

    Hi Jim, David,
    AutoRoute (on/off) can be managed at diagram level - use right mouse click on empty space.
    In current published release (AutoRoute off) - straight lines (only two connection points) cannot be moved. You need intermediate points (at least one) for better arranging. Points (Elbows ) are created using Ctrl+mouse click.
    Connection points also can be moved in next EA release.
    Philip

  • QT movie on line on my website

    Hi, I have a personnal website With photos. I'd like to put online some videos. I used to do it with a little software (PAGEot), but as I didn't do it for a long time it doesn't work anymore.
    So, here's the deal :
    I have .mov or .mpg videos, what do I have to do to have them online eventually with PAGEot or another one.
    My OS is still the same 9.2, 320 mb
    thanx

    bullit_steve...
    I suggest a good HTML book as that is only one line of code to do. See my example below. (Please note caps may be needed in HTML code on some sites.)
    (EMBED SRC= "your.mov" WIDTH=600 HEIGHT=112 AUTOSTART=FALSE)
    You need to change the () for and test out the pixel width and height with the size of your frame. I suggest autostart be set to false because it will then start playing right away once the page loads in if set to TRUE.
    ...Ron
    PS Also you need some way to upload the movie and have sufficent "storage" room available at the site. Rememember .mov, etc. tends to be large.
    Message was edited by: Ron JACKLE 2x

  • How to move a line on mousepress or mousedrag

    i drew a line using drawline function in graphics .how can i move it on mousepreess or mousedrag?

    my email-id is:
    [email protected]
    [email protected]

Maybe you are looking for

  • Open item ( balance) can be find in upgrade from 4.7 to ECC 6

    Dear experts We are planning to upgrade our SAP system from 4.7 to ECC 6 One of my consultant told me that only open balance willbe moved ( customer /vendor open items) How can it be done for the  user if he want to see the details of cleared invoice

  • Buttons over video, scripting?

    Hey Everybody, I'm working on a DVD that has some fairly specific requirements, some of which are negotiable, others of which are not. It's set up kind of strangely because of the limitations of the source footage, I'll try to describe it: There are

  • MS Word formatting inconsistencies

    Hi, When we generate SAP Word documents from SAPGUI using MS Word 2010, we realise that the formatting is affected by the users' options settings: Advanced > Display > Show measurements in units of: We developed based on "Centimetres". However, for s

  • IPhoto 11 & .MOV files

    Hi all, I have recently upgraded to iPhoto 11 & now cannot import .mov files (whereas I could before). I am doing in the same way (import from camera), but when it gets to the .mov files states that it is an unregognised format. I have tried: 1. Diff

  • Drop Down Menus in Photoshop CS 6 Goes Blank In Mavericks

    Hi I'm having trouble with Photoshop CS6 in Mavericks. After a working a little while, all pop up/drop down menus goes blank. They still work, but I can't see what's on them. Even the Apple menu bar is afflicted by this, though only when Photoshop is