How do I rid work area of a double-dashed outline box that suddenly appeared on screen?

Any help/suggestions/directions will be most appreciated...Working with AI CS2 for Mac when a double-dashed outline box appeared within my work area on-screen.  I'm not sure what it is...or how it got there...but it
also appears on a PDF copy I made of my graphics.  How can I remove this 'box' ?   THANKS ALL   Curious-george

Scott,
Problem solved... by selecting VIEW  - - "Hide page tiling" to delete the 'box' from my work area.
Best regards,
George

Similar Messages

  • How do I get the "Bitdefender Quick Scan" box that suddenly appeared uninvited on the lower right coner of my screen to disappear??

    A non-movable black box with "Bitdefender Quick Scan" "you haven't scanned your computer in a while. Would you like to start QuickScan now? appeared at the bottom right corner of my screen. How do I remove it?

    Your system details list shows a "Bitdefender QuickScan Web Netscape Plugin", so you must have or had Bitdefender software installed.
    You can set the plugin.expose_full_path pref to true on the about:config page to see the full path of enabled installed plugins on the about:plugins page.
    *http://kb.mozillazine.org/Issues_related_to_plugins#Identifying_installed_plugins
    *http://kb.mozillazine.org/about:plugins
    *http://kb.mozillazine.org/about:config
    It is best not to leave that pref set to true as it exposes that full path to web servers via the navigator.plugins object, so reset that pref to false after you are done with the about:plugins page.
    You can use the MSConfig program or the Autoruns utility to see which software and services are getting started.
    *http://technet.microsoft.com/en-us/sysinternals/bb963902.aspx

  • How to fill Dynamic work area or field symbol?

    HI All,
    I have created dynamic work area(field symbol) by using following code. Now I want to fill the work area with values which are there in other internal table.
    * Create dynamic internal table/structure
      call method cl_alv_table_create=>create_dynamic_table
        exporting
          it_fieldcatalog = it_fieldcat
        importing
          ep_table        = dyn_table.
      assign dyn_table->* to <fs_table>.
    * Create dynamic work area and assign to Field Symbol
      create data dyn_line like line of <fs_table>.
      assign dyn_line->* to <fs_wa>.
    My <FS_WA> contains:
    ROW1
    ROW2
    ROW3
    ROW4 as fields in it without having any data.
    I have other internal table.. where I have FIELDS and Data like following:
    FIELD1  FIELD2   FIELD3
    ID1 ROW1 A1
    ID1 ROW2 A2
    ID1 ROW3 A3
    ID1 ROW4 A4
    ID2 ROW1 B1
    ID2 ROW2 B2
    ID2 ROW3 B3
    ID3 ROW1 C4
    Important thing that I have to share with you is... Source table of my Internal table and Source structure to create my dynamic table are same.
    This dynamic table has fields... with "FIELD2" values.
    Thanks,
    Naveen.I

    Create a dynamic internal table
      CALL METHOD cl_alv_table_create=>create_dynamic_table
        EXPORTING
          it_fieldcatalog = lt_fcat
        IMPORTING
          ep_table        = lt_dy_table.
    Create dynamic work area and assign to FS
      ASSIGN lt_dy_table->* TO <fs_dyn_table>.
      CREATE DATA lt_dy_line LIKE LINE OF <fs_dyn_table>.
      ASSIGN lt_dy_line->* TO <fs_dyn_wa>.
    Define WA
      CREATE DATA dref TYPE (iv_struc_name).
      ASSIGN dref->* TO <fs_final>.
    Populate dynamic table from the file
      OPEN DATASET iv_path FOR INPUT IN TEXT MODE ENCODING DEFAULT.
      IF sy-subrc = 0.
        DO.
          READ DATASET iv_path INTO ls_str.
          IF sy-subrc <> 0.
            ev_failed = abap_true.
            EXIT.
          ENDIF.
          SPLIT ls_str AT ';' INTO TABLE lt_dyn_tab.  " columns
          LOOP AT lt_dyn_tab INTO ls_dyn_tab.
            READ TABLE lt_struc_fld INTO ls_struc_fld INDEX sy-tabix.
            IF sy-subrc EQ 0.
              MOVE ls_struc_fld-fieldname TO ls_fieldname.
              ASSIGN COMPONENT ls_fieldname OF STRUCTURE <fs_dyn_wa> TO <fs_val>.
              IF sy-subrc = 0.
                <fs_val> = ls_dyn_tab.
              ENDIF.
              ASSIGN COMPONENT ls_fieldname OF STRUCTURE <fs_final> TO <fs_val>.
              IF sy-subrc = 0.
                <fs_val> = ls_dyn_tab.
              ENDIF.
            ENDIF.
          ENDLOOP.
          APPEND <fs_dyn_wa> TO <fs_dyn_table>.
          APPEND <fs_final> TO et_table.
          UNASSIGN: <fs_val>.
        ENDDO.
      ENDIF.
      CLOSE DATASET iv_path.

  • How to I get rid of the black outlined box that tells me everything I am clicking on?

    My friend pressed random keys on my computer, and now there is a rectangular square that is black and outlined with a white line, and whatever i put my mouse on, the black box tells me what i have clicked on. And then when I do click on something, it puts a black line around what I have clicked on, it is stressing me out and i have no idea how to get rid of it. Please help.

    Turn off VoiceOver in the Universal Access or Accessibility pane of System Preferences.
    (93733)

  • How do I attached a jpg from iPhoto to mail as so that it appears as an icon and not an image. PC user can nor download as entire image

    How do I attach a jpg from iPhoto to mail so that it appears as an icon only and NOT the photo image. Mac and PC user can no download in format as entire image. thx

    Use Apple Mail as your e-mail client and under the format menu set format to plain text
    LN

  • How to WRITE a work area of type GLPCT into a list in ECC6.0?

    Hi,
    I need to wirte a workarea of type glpct as output in the list in ECC6.0. I dont want to include all the 105 fields in the structure in the WRITE statement. Please find the sample code (errored) below.I need your valuable suggestions to simplify this case.
    Note :  (In ECC6.0 it is not allowing us to write the structured workarea directly on the list.)
    DATA : wa_glpct TYPE glpct,
               wa_str TYPE string.
    SELECT * FROM glpct INTO wa_glpct UP TO 1 ROWS.
    MOVE wa_glpct TO wa_str.
    ENDSELECT.
    IF sy-subrc EQ 0.
    WRITE : wa_str.
    ENDIF.

    Hi,
    "WA_STR" and "WA_GLPCT" are not mutually convertible in a Unicode program."
    i.e Both workarea structure must be same when we r using MOVE statement..
    so use the field symbols?
    FIELD-SYMBOLS: <f1> TYPE ANY.
    ASSIGN wa_glpct TO <f1>.
    Try this....
    DATA : wa_glpct LIKE glpct.
    FIELD-SYMBOLS: <f1> TYPE ANY.
    ASSIGN wa_glpct TO <f1>.
    SELECT * FROM glpct INTO wa_glpct UP TO 1 ROWS.
    ENDSELECT.
    IF sy-subrc EQ 0.
    WRITE : / <f1>.
    ENDIF.
    Edited by: Upender Verma on Feb 16, 2009 9:25 AM

  • How to get rid of an image which is stuck to the background of the phone screen.

    while i was watching  a youtube motions suddenly all stopped and the picture stuck hindering all the operation such as phoning or checking the addresses.........how can i do?

    Hello sapho and welcome to the BlackBerry Support Community Forums.
    Have you done a device reboot yet by pulling the battery? If not, remove and reinsert the battery to reboot.
    If you are still having this issue after the reboot you will need to reinstall your device software.
    Backup your device data and follow the steps in KB11320 and check your browser before restoring your data.
    Let me know how you make out.
    -HMthePirate
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • How to get rid of red rectangle in gray rectangle cropping box?

    A little box has appeared on the right side of the preview screen. It has a small red rectangle in a larger gray rectangle. You can move around the red rectangle to crop the frame.
    The problem is, I don't want to crop the frame! How do I get rid of the red rectangle thing?
    I've tried the "crop" button and read the documentation about cropping but there's no mention of this red rectangle. I looked at the project settings and it looks good (1920x1080).

    Thomas Kehoe wrote:
    ... You can move around the red rectangle to crop the frame.
    no, you don't crop the video.
    It is just shown, when you set your preview window to a setting which doesn't 'fit'. Then, the red rectangle indicates which part of the whole frame you see; or, drag it to a part you like to see.
    Set your  Preview window to a smaller size (like '50%' or simply 'fit') = no red cross rectangle.
    for cropping, use the cropping tool

  • How do I get rid of a shadow that suddenly appeared on two sides of my square brush?

    I did a bunch of work today and rebooted my computer, and checked my brush tip shapes and presets but cannot figure out why my square hard brush has a shadowy edge on the right and bottom.

    Just checked my square brushes and they look the same as yours. But if you click on Texture in the brush palette and change the mode to Height, the edges are hard.

  • How can I get rid of "myV9" that suddenly appeared the other day when I started Firefox?

    Suddenly there was a portal site named "myv9" or "V9" on the screen when I started Firefox the other day. It contains a lot of icons for programs like Facebook, Google and so on. Until now I have had only Google as start page from Firefox. Of course I can click on the Google icon to get there, but it is the only site that I want to use of all these. Nearly all the other icons (except Facebook and some others) lead to specific US sites that I never visit (for example the weather forecast for North America) , because I live in Sweden. How can I get rid of "myv9"?
    Even if it doesn´t harm my computer, I am afraid that it will slow it down, and, besides, it needs an extra click to get to Google.
    Vidar Ferm, Sweden

    Do a malware check with some malware scanning programs on the Windows computer.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.microsoft.com/security/scanner/en-us/default.aspx - Microsoft Safety Scanner
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    You can also do a check for a rootkit infection with TDSSKiller.
    *http://support.kaspersky.com/viruses/solutions?qid=208280684
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • How to  define and work with bind-variables without the dialog-box ?

    I want to select different tables with the same bind_variables,
    but do want not fill the bind-variables-dialogbox
    everytime I use the select statements
    because I could simple edit and bind this bind-variables once
    at the first select.
    select col1, col2 into :bind1, :bind2 from mybasictable_10 where col3 = 'ABCD':
    select * from mytable_b where b1 = :bind1 and b2 = :bind2 ;
    select * from mytable_c where c1 = :bind1 and c2 = :bind2 ;
    select * from mytable_d where d1 = :bind1 and d2 = :bind2 ;
    select * from mytable_e where e1 = :bind1 and e2 = :bind2 ;
    it doesn't work and I didn't find that in help,
    how does it work in sql-developer ?
    regards

    david,
    back to the root of my question:
    I do use an 10 years old low-end sql / plsql-tool where I can simple and fast do sql-things like that:
    select col1, col2 into :bind1, :bind2 from mybasictable_10 where col3 = 'for_example_ABCD':
    select * from mytable_b where b1 = :bind1 and b2 = :bind2 ;
    select * from mytable_c where c1 = :bind1 and c2 = :bind2 ;
    select * from mytable_d where d1 = :bind1 and d2 = :bind2 ;
    select * from mytable_e where e1 = :bind1 and e2 = :bind2 ;
    I would like to use oracles SQL-Developer instead of this 'old' tool,
    and want to use my 'old' sql / plsql scripts
    but the SQL-Developer in this matter seems is to much complicate to use,
    I can do complex and big things with sql-dev,
    but not simple using bind-variables ;-)( .

  • How to get rid of hash lines on tabs,ive been told that you have to down grade to wot.. true not true

    randomly hash lines will appear on tabs and continue across every tab when open... how do i get rid of this whit out down gradeing to a previous version?

    ''cor-el [[#answer-713567|said]]''
    <blockquote>
    You can try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    You need to close and restart Firefox after toggling this setting.
    *https://support.mozilla.org/kb/upgrade-graphics-drivers-use-hardware-acceleration
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    </blockquote>

  • How to get rid of white border around Container Div (main box)?

    I have look and look for a solution but couldn't find one. I'm developing a website but the main issue is the white (I changed it black so you can see what I'm talking about)  border around the website when i go to preview it from DW to Google Chrome or Internet Explorer.
    I've tried everything! from setting body margins all to zero but nothing works... can anyone help me?!

    No that's not what I'm talking about, the black div bot on the top is what i put, I put the entire style.css code in my last post, I'm talking about the white border on the right inside the scroll bar.
    let me explain from the bottom, let say I don't put Margin: 0 under Body  in my style.css . I get a white (I made it Green to show you better) border around my entire webpage looking like this:
    so this made me curios because I wanted to know why it gave me this border without putting Margin: 0 under Body in my Style.css sheet. so i went to inspect element inside Google Chrome and saw this:
    I was shocked because it automatically added 8 px in Margin around the body. So I took all the advice i was given in this thread and put the Margin: 0 ; under Body in my Style.css Sheet and it did this:
    for Some reason it says Margin 0 in the inspect element under body but put a default white border there to the right....
    I have explained this the best way possible. PLEASE CAN ANYONE HELP ME?!
    ps. its doing this for all browsers so i know it not a chrome issue!

  • Dropdown dialog boxes will not work. I can click on the boxes, the dropdown appears, but I cannot make anything in the box operate. I just upgraded to 6.0.2 on a fresh install of Windows XP

    I use the net to pay bills. The dialog box on my bills have accounts in them, but I cannot make the account numbers work. I regularly go to websites that are several pages deep, but the dropdowns for the next page don't work. The numbers, as well as the accounts appear, but they cannot be highlighted to access them.

    I'm not sure if the crash is or isn't related to fonts.
    Deciphering the crash long is something I don't have any experience with.
    I'm not even sure how the crash log is structured. I've downloaded two screen captures: one from the top of the adobe Photoshop crash log and one from the bottom. Perhaps someone more knowledgeable than I can discern what may be causing the crash?
    Screen capture from the top of the Adobe Photoshop crash log:
    Screen capture from the bottom of the Adobe Photoshop crash log:
    Any ideas?
    Thanks a bunch.

  • I can no longer see how many emails I have.  It used to have the number of how many were in each list at the top of the box that was open. How can I get this back?

    Also, it's hard to read the number of new emails in the list of accts, any way to fix this? I really dislike this visual change.

    Deleting the cache and cookies is not normally a major problem, things will rebuild as you use the computer.
    Ensure that you have javascript enabled
    * see [[JavaScript]] <-- clickable link (blue) --
    * does this forum page work ok for you ? (are you able to see the bold and italic buttons above where you write messages ?)
    A couple of screenshots may help
    * [[How do I create a screenshot of my problem?]]
    You may have changed some preferce also read the articles:
    *[[websites look wrong]]
    *[[Options window - Content panel]]

Maybe you are looking for