Positioning a box

I am having trouble positioning a box underneath the
horizontal spry drop down menu bar. I set the positioning top to 0
pixel. the problem is that the box goes underneath the menu bar
rather than below it. How can i fix the issue.
the problem is only on (Iexplorer on windows).
Thanks

Hi,
U can print a box after current row.
/: BOX XPOS '0' MM YPOS '6.50' MM WIDTH '188' MM HEIGHT '0' MM FRAME 10 TW
/: BOX XPOS '0' MM YPOS '0' MM WIDTH '0' MM HEIGHT '6.50' MM FRAME 10 TW
Give this in text editor.
Yes u can reday current row...also
p0008-lga01 - From Field
p0008-lga02 - Next Field
l_lga01 - Holds the value
DO 40 TIMES VARYING l_lga01 FROM p0008-lga01 NEXT p0008-lga02
ENDDO.
DO ... VARYING dobj FROM dobj1 NEXT dobj2 [RANGE range].
  [statement_block]
ENDDO.
Thanks,
Neelima.
Press F1 you can get the information & Example

Similar Messages

  • Position text box  in centre part of region

    Hi
    I want to position of componentes (text box, buttons, combo box) in region at center.
    i.e if i have region having only two text boxes and i want to put it in centre part of form/region.
    How it can be done, do i need to write any code or from APEX it can be done?
    Thanks in advance

    For information, <center> tag is deprecated.
    Use <div align="center">...</div>or CSS (text-align, margin, etc...) instead.
    Yann.

  • Position of box after dragging?

    I have a draggable box made with jquery (http://jqueryui.com/demos/draggable/). After the box has been moved and I go to another page  with has the same box on it, or if I refresh the box goes back to its original position. How do I get the left and top position of the box when it has been dragged so I could pass it on with a parameter or something like that to another site? Thankx for any further help, tips, link!
    <script type="text/javascript">
      $(document).ready(function(){
        $("#draggable").draggable();
      </script>
    <style type="text/css">
    <!--
    #draggable {
         left: 10px;
         top: 10px;
    }-->
    </style>

    coreysyms wrote:
    > you can manipulate loaded movies via the _level
    property.
    >
    > for instance.
    >
    > this.loadMovieNum("my_movie.swf", 1); // loading a movie
    into _level1
    >
    > now i can target the level.
    >
    > _level1._x = 50;
    > _level1._y = 50;
    >
    > or even clips inside that movie.
    >
    > _level1.myMovieClip._x = 50;
    >
    > whatever you want.
    >
    > BUT the clip has to be completly loaded before flash can
    target it. so use
    > preloaders to be safe.
    >
    > cheers,
    > corey
    so, to avoid the wait and executing action prematurely, all
    you need to do
    is place this._x=50; and this._y=50; on the first frame of
    the loaded movie.
    It will position itself automatically while loading.
    Regards
    Urami
    Happy New Year guys - all the best there is in the 2006 :)
    <urami>
    http://www.Flashfugitive.com
    </urami>
    <web junk free>
    http://www.firefox.com
    </web junk free>

  • How to SET positions for Boxes

    Hi
    I have to put some Box on my Applet, at different positions (coordinates).
    Is it possible to set the positions, without having as many Transform3d as Box?
    Thanks ...
    Bertrand

    maybe i'm wrong
    but you need a transform3d for every boxes
    if you want them to be in different location
    sorry
    cyril

  • How to position a BOX right after a list?

    Hi all!
    I need to put a box right after list which I am not how long.
    But I do not know yet how to do it because as I know, the BOX command has an XPOS and YPOS parameter which forces me to put position values...
    So how do I do it?
    Thank you!

    Hi,
    You can create one new window and in that window draw the box.
    and display that window only  on last page.
    so  your problem will be resolved...........

  • Variable position of box in the SAPScript - any solution??

    Hi All,
    I have a problem displaying box in the script whose Y coordinate I want to keep as a variable. Please refer to the following scenario I have for this :
    I have some records to be displayed in the layout which I am taking in the main window. The number of records may vary. Just after the last record I have to display one blank box.
    And then again some records (Number may vary) and a blank box.
    Now the problem I am facing is, if I give the following command :
    BOX XPOS 10 MM YPOS 52 MM WIDTH 190 MM HEIGHT 35 MM FRAME 10 TW
    the y coordinate is fixed here. If the number of records increase the expectation, the box will overlap with the last records and if number of records are less, I'll get a gap between the last entry and the blank box.
    Please help me if anybody have solution for this problem.
    Thanks a lot!
    Navita

    Hi,
    In scripts Dynamic table is not possible.
    So, you can not make as y as variable.
    Regards,
    Kumar(Reward if helpful).

  • Moving the position of box with rollover

    I have a flash file that slides the position of a movieclip to 4 different positions with 4 buttons which works great.  I also want to add 2 buttons that when you roll over them, I would like the position of the movie clip to keep sliding to the left and right until you roll off of the button(and stop when it gets to either end of the movieclip.  The code below slides the movie clip when you click them...if that helps.
    onClipEvent (load) {
    _x = 0;
    _y = 0;
    spd = 2;
    //this is the scrolling speed, the hight the number the faster it scrolls//
    onClipEvent (enterFrame) {
    _x += (endX-_x)/spd;
    _y += (endY-_y)/spd;
    _root.page1.onRelease = function() {
      endX = 0;
      endY = 0;
    _root.page2.onRelease = function() {
      endX = -220;
      endY = 0;
    _root.page3.onRelease = function() {
      endX = -440;
      endY = 0;
    _root.page4.onRelease = function() {
      endX = -660;
      endY = 0;
    I have a new buttons started called "test"
    and here is the function I started:
    _root.test.onRollover = function() {
    Any help is very very very much appreciated!!!!
    Thanks

    no worries.....I really like the way my file works now.  i have another file with really nice easing to it that contains the code below. what I'm trying to figure out is if I can add that easing into the file you helped me with or would it be easier to modify the code below into a horizontal scroller like I need.
    either way, i'm looking for suggestions on a starting point so I can work on getting this figured out.
    I appreciate the help!
    fscommand("allowscale", "false");
    bar.useHandCursor = dragger.useHandCursor=false;
    space = 20;
    friction = 0.9;
    speed = 4;
    y = dragger._y;
    top = main._y;
    bottom = main._y+mask_mc._height-main._height-space;
    ///////////no x y values ////////////////////////
    up_btn.onPress = function() {
    myInterval = setInterval(moveDragger, 18, -1);
    down_btn.onPress = function() {
    myInterval = setInterval(moveDragger, 18, 1);
    up_btn.onMouseUp = down_btn.onMouseUp=function () {
    clearInterval(myInterval);
    dragger.onMouseUp = function() {
    this.stopDrag();
    drag = false;
    bar.onMouseUp = function() {
    drag = false;
    ///////////no x y values ////////////////////////
    dragger.onPress = function() {
    drag = true;
    this.startDrag(false, this._x, this._parent.y, this._x, this._parent.y+this._parent.bar._height-this._height);
    dragger.scrollEase();
    bar.onPress = function() {
    drag = true;
    if (this._parent._ymouse>this._y+this._height-this._parent.dragger._height) {
      this._parent.dragger._y = this._parent._ymouse;
      this._parent.dragger._y = this._y+this._height-this._parent.dragger._height;
    } else {
      this._parent.dragger._y = this._parent._ymouse;
    dragger.scrollEase();
    moveDragger = function (d) {
    if ((dragger._y>=y+bar._height-dragger._height && d == 1) || (dragger._y<=y && d == -1)) {
      clearInterval(myInterval);
    } else {
      dragger._y += d;
      dragger.scrollEase();
      updateAfterEvent();
    MovieClip.prototype.scrollEase = function() {
    this.onEnterFrame = function() {
      if (Math.abs(dy) == 0 && drag == false) {
       delete this.onEnterFrame;
      r = (this._y-y)/(bar._height-this._height);
      dy = Math.round((((top-(top-bottom)*r)-main._y)/speed)*friction);
      main._y += dy;

  • There is no motion tracking position selection box.

    Hi. I'm using a Mac. 10.8.5. I opened the new AE 2014. I make a new composition 1280 by 720. I open a short clip. I play it through once. I go to animations and select "Track Motion" I select "Track Motion" in the "Tracker" box on the bottom right on the AE program. No motion tracking boxes appear on my clip. I cannot select a point for tracking. Please, how can I fix this? 

    Thanks. I was almost ready to uninstall it and re-download it when I noticed I might be using the older AE CC which had it's icon on my dash board instead of the newer AE 2014. So I opened the newer one from applications and everything works fine. Thanks you for your assistance.

  • Positioning a box dynamically into a window

    Hi,
    I have a problem with a sapscript:
    Can I print a box (or a grid) after the current row?
    Can I read the current row?
    Thanks

    Hi,
    U can print a box after current row.
    /: BOX XPOS '0' MM YPOS '6.50' MM WIDTH '188' MM HEIGHT '0' MM FRAME 10 TW
    /: BOX XPOS '0' MM YPOS '0' MM WIDTH '0' MM HEIGHT '6.50' MM FRAME 10 TW
    Give this in text editor.
    Yes u can reday current row...also
    p0008-lga01 - From Field
    p0008-lga02 - Next Field
    l_lga01 - Holds the value
    DO 40 TIMES VARYING l_lga01 FROM p0008-lga01 NEXT p0008-lga02
    ENDDO.
    DO ... VARYING dobj FROM dobj1 NEXT dobj2 [RANGE range].
      [statement_block]
    ENDDO.
    Thanks,
    Neelima.
    Press F1 you can get the information & Example

  • Positioning box in Main Window

    I have a main window (Sapscript) with multiple text elements as follows:
    <Start Text Element1>
    Include statement with varying text length
    <End Text Element1>
    <Start Text Element2>
    Include statement with varying text length
    <End Text Element2>
    <Start Text Element3>
    I need a box to appear here with item header. ****
    <End Text Element3>
    How can I position the box in the 3rd text element section ? The text appearing in Text Element1 & Text Element2 are not fixed in length. I will not know where text element 3 starts.

    Hi...
    You can do like this.
    BOX XPOS  YPOS   WIDTH 10 CM HEIGHT 10 CM
    INCLUDE TEXT
    INCLUDE TEXT
    INCLUDE TEXT.
    Here, you need to change your XPOS and YPOS accordingly
    So that your Third text will be fit in the Box.
    Regards
    Sandeep Reddy.
    Edited by: Sandeep Reddy on Dec 31, 2007 11:34 AM

  • Box model/none absolute positioning with flash

    In recent years none-absolute positioning (or box model positioning) has become the norm with HTML/CSS
    this is uselfull for dynamic functions which appear on an event (such as an object which appears when a button is clicked on or a error message that appears when a form box is given invalid input because it automatically inserts itself it the right place.)
    One very important example of this is when you have a form which automatically produces an error message and the error message appears bellow the input area which caused it and the rest of the page is pushed down.
    With none absolute positioning the developer does not need to worry about this.
    But if the objects are given absolute position then it becomes a massive problem, the developer has to go about giving the objects differetn positions dependant on if dynamic objects appear or not
    potentially the developer has to consider all possible variables, and code if statements which determine the position of all static objects for all possible variables which dynamic objects could take.
    so does flash have a "none absolute positioning" solution to this problem.

    Before you get all happy and pleased with yourself, APDivs or Layers seldom work well as a primary layout method. Here are some reasons why:
    http://apptools.com/examples/pagelayout101.php
    You're much better off using default CSS positioning (which is no positioning at all) along with CSS margins, padding and floats.  If you don't believe me, check your page in non-IE browsers with increased/decreased text-sizes (zoom, text only).
    From  Tables to CSS Web Design Part 1 -
    http://www.adobe.com/devnet/dreamweaver/articles/table_to_css_pt1.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • After importing word document in RH 9, why does the position of image changes

    Hi All,
    I have a document which i need to import in RH9. However when i imported the document, the position of the images on my first page changed.
    i read several discussion, but could nt get any relevant suggestion.
    the first page of my document has company logo and a text box on its left but when i am importing, the image is displayed separately and text box is displayed after the image. the first page is my cover page thats the reason it has text box.
    Now can anyone please tell me how i can club the text box and image on a single htm.Robohelp also converts the text box and its data to an image format.
    Thanks for your time and consideration

    Hi there
    As you have seen, RoboHelp doesn't understand how to create the layers you are wanting to achieve the effect in Word. It simply brings the images in as separate objects.
    Basically there are two approaches you might consider.
    You could insert Positioned Text Boxes and configure them to present the images as you want. If you take this approach, you will likely find yourself struggling to maintain the positioning consistently as well as noticing text flow issues. Personally, I'd avoid that approach.
    The other approach involves displaying the images in your Word document so that you see them as intended, then screen capture so you grab the combined image. Then save that combined image and use it instead of the separate images in RoboHelp. This is the approach I'd suggest and that I use myself.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Exact, precise positioning of Objects

    I have an application that needs to be very precise in the positioning of a text object (so that OCR can read it).  As an example, I can position an object at x=3.5 inches but I need to position at x=3.53.   I use the "Size and Position" dialog box and enter x=3.53.  Get out of the dialog, go back in and it has changed to 3.52, Get out and in and now it is 3.51.  Once at 3.5 it stays at 3.5.  Position seems to work well at 1/10 of an inch but I need 1/100 of an inch.  Snap to Grid & Free-Form Placement Options can be on or off - no difference.
    This is my first post.

    James Terry You sent a reply via email with discussion regarding setting the grid to 0.01 inches (which is 1/100 of an inch).  When I sent grid to 0.01" and moved them manually without using "Size and Position" dialog window, the objects stayed where they needed.  Going in and out "Size & Position" does cause it to move.  But by forcing 0.01" with snap turned on, I GOT WHAT I NEEDED!  James: put in a response and then I can award points and mark this answered.

  • Printing boxes in scripts

    Hi all,
             For  printing boxes in sap scripts we have a command ie. POSITION WINDOW,BOX FRAME HEIGHT WIDTH XPOS YPOS XORIGIN YORIGIN like this we have.Here my question is can any one explain me about this syntax means what exactly this syntax and how it will draw a box?
    Thanks & Regards.
    Laxman.P
    B'lore.

    Hai Laxman,
    <u><b>Boxes, Lines, Shading: BOX, POSITION, SIZE</b></u>
    Use the BOX, POSITION, and SIZE commands for drawing boxes, lines, and shading to print particular windows within a form or passages of text within a window in a frame or with shading.
    The SAP printer drivers that are based on page-oriented printers (the HP LaserJet driver HPL2, the Postscript driver POST, the Kyocera Prescribe driver PRES) employ these commands when printing. Line printers and page-oriented printers not supported in the standard ignore these commands. You can view the resulting printer output in the SAPscript print preview.
    Syntax:
    /: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]
    /: POSITION [XORIGIN] [YORIGIN] [WINDOW] [PAGE]
    /: SIZE [WIDTH] [HEIGHT] [WINDOW] [PAGE]
    BOX Command
    Syntax
    /: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]
    Effect: draws a box of the specified size at the specified position.
    Parameters: For each of XPOS, YPOS, WIDTH, HEIGHT, and FRAME, you must specify both a measurement and a unit of measurement. Specify the INTENSITY parameter as a percentage between 0 and 100.
    XPOS, YPOS
    Upper left corner of the box, relative to the values of the POSITION command.
    Default: Values specified in the POSITION command.
    The following calculation is performed internally to determine the absolute output position of a box on the page:
    X(abs) = XORIGIN + XPOS
    Y(abs) = YORIGIN + YPOS
    WIDTH
    Width of the box. Default: WIDTH value of the SIZE command.
    HEIGHT
    Height of the box. Default: HEIGHT value of the SIZE command.
    FRAME
    Thickness of frame.
    Default: 0 (no frame).
    INTENSITY
    Grayscale of box contents as %.
    Default: 100 (full black)
    Measurements: You must specify decimal numbers as literal values (like ABAP numeric constants) by enclosing them in inverted commas. Use the period as the decimal point character. See also the examples listed below.
    Units of measurement: The following units of measurement may be used:
    TW (twip)
    PT (point)
    IN (inch)
    MM (millimeter)
    CM (centimeter)
    LN (line)
    CH (character).
    The following conversion factors apply:
    1 TW = 1/20 PT
    1 PT = 1/72 IN
    1 IN = 2.54 CM
    1 CM = 10 MM
    1 CH = height of a character relative to the CPI specification in the form header
    1 LN = height of a line relative to the LPI specification in the form header
    /: BOX FRAME 10 TW
    Draws a frame around the current window with a frame thickness of 10 TW (= 0.5 PT).
    /: BOX INTENSITY 10
    Fills the window background with shading having a gray scale of 10 %.
    /: BOX HEIGHT 0 TW FRAME 10 TW
    Draws a horizontal line across the complete top edge of the window.
    /: BOX WIDTH 0 TW FRAME 10 TW
    Draws a vertical line along the complete height of the left hand edge of the window.
    /: BOX WIDTH '17.5' CM HEIGHT 1 CM FRAME 10 TW INTENSITY 15
    /: BOX WIDTH '17.5' CM HEIGHT '13.5' CM FRAME 10 TW
    /: BOX XPOS '10.0' CM WIDTH 0 TW HEIGHT '13.5' CM FRAME 10 TW
    /: BOX XPOS '13.5' CM WIDTH 0 TW HEIGHT '13.5' CM FRAME 10 TW
    Draws two rectangles and two lines to construct a table of three columns with a highlighted heading section.
    <b><u>POSITION Command</u></b>
    Syntax
    /: POSITION [XORIGIN] [YORIGIN] [WINDOW] [PAGE]
    Effect: Sets the origin for the coordinate system used by the XPOS and YPOS parameters of the BOX command. When a window is first started, the POSITION value is set to refer to the upper left corner of the window (default setting).
    Parameters: If a parameter value does not have a leading sign, then its value is interpreted as an absolute value, in other words, as a value that specifies an offset from the upper left corner of the output page. If a parameter value is specified with a leading sign, then the new value of the parameter is calculated relative to the old value. If one of the parameter specifications is missing, then no change is made to this parameter.
    XORIGIN, YORIGIN
    Origin of the coordinate system.
    WINDOW
    Sets the values for the left and upper edges to match those of the current window (default setting).
    PAGE
    Sets the values for the left and upper edges to match those of the current output page (XORIGIN = 0 cm, YORIGIN = 0 cm).
    /: POSITION WINDOW
    Sets the origin for the coordinate system to the upper left corner of the window.
    /: POSITION XORIGIN 2 CM YORIGIN '2.5 CM'
    Sets the origin for the coordinate system to a point 2 cm from the left edge and 2.5 cm from the upper edge of the output page.
    /: POSITION XORIGIN '-1.5' CM YORIGIN -1 CM
    Shifts the origin for the coordinates 1.5 cm to the left and 1 cm up.
    <u><b>SIZE Command</b></u>
    Syntax
    /: SIZE [WIDTH] [HEIGHT] [WINDOW] [PAGE]
    Effect: Sets the values of the WIDTH and HEIGHT parameters used in the BOX command. When a window is first started, the SIZE value is set to the same values as the window itself (default setting).
    Parameters: If one of the parameter specifications is missing, then no change is made to the current value of this parameter. If a parameter value does not have a leading sign, then its value is interpreted as an absolute value. If a parameter value is specified with a leading sign, then the new value of the parameter is calculated relative to the old value.
    WIDTH, HEIGHT
    Dimensions of the rectangle or line.
    WINDOW
    Sets the values for the width and height to the values of the current window (default setting).
    PAGE
    Sets the values for the width and height to the values of the current output page.
    /: SIZE WINDOW
    Sets WIDTH and HEIGHT to the current window dimensions.
    /: SIZE WIDTH '3.5' CM HEIGHT '7.6' CM
    Sets WIDTH to 3.5 cm and HEIGHT to 7.6 cm.
    /: POSITION WINDOW
    /: POSITION XORIGIN -20 TW YORIGIN -20 TW
    /: SIZE WIDTH +40 TW HEIGHT +40 TW
    /: BOX FRAME 10 TW
    A frame is added to the current window. The edges of the frame extend beyond the edges of the window itself, so as to avoid obscuring the leading and trailing text characters.
    Regards,
    Ajith V

  • SAP-Script; Is it possible to handle the BOX -Statement dynamic?

    Hi Scripters!
    My consultant wants a box around some information in a SAP-Script form.
    Normally this is quite easy, BUT in this case i have the information (which needs the box around) printed after the positions.
    So problem is: the box can not have a certain position in the Form since i dont know how much positions are to be printed.
    any ideas on this subject?

    Hi Florian,
    Yes it is possible to play arount with positions of Box.
    You can pass variable name in between & in place of fixed XPOS and YPOS.
    and pass value to that dynamic variable.
    You have to test a lot with different values in those variables for pefect settings.
    Hope it will solve your problem.
    Regards
    Krishnendu

Maybe you are looking for

  • Aperture 1.5 and folder with . as first letter

    Hi ! I'm updating Aperture to version 1.5, now it is "Upgrading X of Y projects" but I see that in the left area (where there are the folder and project) go aways all the folder starting with . (point) as first letter that I had before. I have used t

  • What is a default password in Lion terminal

    What is a default password in the Mac Lion Terminal? I never setup any password on my MacBook Air. Everytime I used command line in TERMINAL (such as sudo....) they always ask for Password. Thanks

  • Manufacturers Coupon + PM causing issues -- Policy change or Incorrect Store Procedure

    Let's try again. Has BBY changed its official policy about PM and use of Manufacturer/Vendor Coupons? Many (many, many) times over the years the mods here have stated that  MQ should essentially be considered a form of payment and should never be tur

  • Shape 3d rotation / anchor point

    I'd like to recreate this kind of rotation on shape layers as they have in these transitions. http://www.sprinklelab.com/our-work/everyme/ I've started off with a square and a centred anchor point, and with the Y axis starting at 75 degrees moving do

  • Como utilizar la funcion inport y outpor con windos xp

    tenia xindos 98 y no tenia problemas con mi aplicacion, me actualice a xp pero mi aplicacion ya no funciona, estoy manejando el puerto paralelo y nesecito enviar y recibir datos por el mismo, utilizando todos los registros.