How to keep hotspot on a diagram ?

Hi,
     I am having an interactive report where in my basic list i kept a clipart(diagram which is been uploaded by Txcode - smw0) my requirement is when i am double clicking on that clipart(diagram) i have to get the secondary list pretaining to that diagram.
Helpful answers will be rewared for sure. Its urgent task please help me to achieve this.
Thks

Hello Keerthi,
Thks for the answer but i am not having any concept i mean i am totally new to the OO-ABAP concept.
I got one code just copy and exceute the code......
START OF DO NOT CHANGE----------------------------------*
DATA: docking TYPE REF TO cl_gui_docking_container,
      picture_control_1 TYPE REF TO cl_gui_picture,
      url(256) TYPE c .
DATA: query_table LIKE w3query OCCURS 1 WITH HEADER LINE,
      html_table LIKE w3html OCCURS 1,
      return_code LIKE  w3param-ret_code,
      content_type LIKE  w3param-cont_type,
      content_length LIKE  w3param-cont_len,
      pic_data LIKE w3mime OCCURS 0,
      pic_size TYPE i.
TABLES: SPFLI.
DATA ITAB LIKE SPFLI OCCURS 0 WITH HEADER LINE.
SELECT SINGLE * FROM SPFLI INTO ITAB.
FORMAT HOTSPOT ON.
SKIP 9.
FORMAT COLOR 7.
WRITE:/25 ITAB-CONNID.
FORMAT HOTSPOT OFF.
AT SELECTION-SCREEN OUTPUT.
PERFORM show_pic.
  START-OF-SELECTION.
   PERFORM show_pic.
*& Form show_pic
FORM show_pic.
   DATA: repid LIKE sy-repid.
         repid = sy-repid.
  CREATE OBJECT picture_control_1 EXPORTING parent = docking.
  CHECK sy-subrc = 0.
  CALL METHOD picture_control_1->set_3d_border
    EXPORTING
      border = 5.
  CALL METHOD picture_control_1->set_display_mode
    EXPORTING
      display_mode = cl_gui_picture=>display_mode_stretch.
  CALL METHOD picture_control_1->set_position
    EXPORTING
      height = 50
      left   = 40
      top    = 50
      width  = 190.
CHANGE POSITION AND SIZE ABOVE****************
IF url IS INITIAL.
REFRESH query_table.
    query_table-name  = '_OBJECT_ID'.
*CHANGE IMAGE NAME BELOW UPLOADED ******************
    query_table-value = 'ENJOYSAP_LOGO'.
    APPEND query_table.
    CALL FUNCTION 'WWW_GET_MIME_OBJECT'
      TABLES
        query_string        = query_table
        html                = html_table
        mime                = pic_data
      CHANGING
        return_code         = return_code
        content_type        = content_type
        content_length      = content_length
      EXCEPTIONS
        object_not_found    = 1
        parameter_not_found = 2
        OTHERS              = 3.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    CALL FUNCTION 'DP_CREATE_URL'
      EXPORTING
        type     = 'image'
        subtype  = cndp_sap_tab_unknown
        size     = pic_size
        lifetime = cndp_lifetime_transaction
      TABLES
        data     = pic_data
      CHANGING
        url      = url
      EXCEPTIONS
        OTHERS   = 1.
        ENDIF.
        CALL METHOD picture_control_1->load_picture_from_url
    EXPORTING
      url = url.
*Syntax for URL
*url = 'file://D:\corp-gbanerji\pickut\cartoon_184.gif'.
*url = 'http://l.yimg.com/a/i/ww/beta/y3.gif'.
ENDFORM.                    "show_pic
INITIALIZATION.
  TABLES : SFLIGHT, SBOOK.
    DATA STAB LIKE SFLIGHT OCCURS 0 WITH HEADER LINE.
    DATA BTAB LIKE SBOOK  OCCURS 0 WITH HEADER LINE.
    DATA : CONID LIKE STAB-CONNID,
           LNO LIKE SY-LILLI,
           CID LIKE STAB-FLDATE.
AT LINE-SELECTION.
CASE SY-LSIND.
  WHEN 1.
      READ LINE SY-LILLI FIELD VALUE ITAB-CONNID.
      SELECT * FROM SFLIGHT INTO TABLE STAB WHERE CONNID = ITAB-CONNID.
      LOOP AT STAB.
           WRITE :/ SY-TABIX CENTERED ,10 STAB-CARRID.
           FORMAT HOTSPOT ON COLOR 6.
           WRITE : 20 STAB-CONNID.
           FORMAT HOTSPOT OFF COLOR 4.
           WRITE : 30 STAB-SEATSMAX,40 STAB-SEATSOCC,50 STAB-PRICE.
           FORMAT HOTSPOT ON COLOR 7.
           WRITE: 75 STAB-FLDATE .
           FORMAT HOTSPOT OFF COLOR 4.
      HIDE STAB-FLDATE.
      ENDLOOP.
   WHEN 2.
   SELECT * FROM SBOOK INTO TABLE BTAB WHERE FLDATE = STAB-FLDATE  AND
CONNID = STAB-CONNID .
LOOP AT BTAB.
FORMAT COLOR 1.
    WRITE : /3 BTAB-CONNID,15 BTAB-CARRID .
    FORMAT COLOR 6.
    WRITE : 30 BTAB-FLDATE .
    FORMAT COLOR 1.
    WRITE : 45 BTAB-BOOKID,50 BTAB-CUSTOMID ,60 BTAB-WUNIT.
ENDLOOP.
ENDCASE.
TOP-OF-PAGE DURING LINE-SELECTION.
CASE SY-LSIND.
WHEN 1.
  FORMAT COLOR 5.
  WRITE :/ 'SLNO',10 'CARRID',20 'CONNID',30 'SEATSMAX',40 'SEATSOCC',
60
          'PRICE',80 'FLDATE'.
  ULINE.
WHEN 2.
FORMAT COLOR 2.
WRITE : /3 'CONNID',15 'CARRID' ,30 'FLDATE' ,45
'BOOKID',50 'CUSTOMID' ,60 'WUNIT'.
ENDCASE.
Here you can see i have brought the value of a basic list to the clip art by changeing the position and when i am clicking on that color only it is going to the secondary list and one more thing is i have to remove the clipart in the secondary list which is not happening here. But i dont want to click on the color indication rather on the Picture. Please if you are having any code or if you can change my code and revert me i will be very happy since it is the important task assigned to me and i have to do it please understand and help me.
Waiting for the answer.
Thks

Similar Messages

  • How to keep hotspot on particular field in alv interactive report

    hi all,
    i have a small requirement.i developed one interactive alv.in vasic alv wheni click on sales order number it shows secondary alv.but here i would like to keep hotspot symbol so user can understand that he has to click on this sales order number only.
    any body can send me the sam ecode please.
    thanks,
    maheedhar.t

    hi...
    here is an ALV report i did with hot spot!!
    (only a part of my entire report)
    tables: marc.
    types : begin of DISP,
            SLNO TYPE I,
            werks type MARC-WERKS,
            matnr type MARA-MATNR,
            maktx type MAKT-MAKTx,
            mtart type MARA-MTART,
            volum type MARA-VOLUM,
            ntgew type MARA-NTGEW,
            ersda type MARA-ERSDA,
            laeda type MARA-LAEDA,
            end of DISP.
    data : it_disp type table of disp,
           wa_disp type disp.
    Data: it_fcat type slis_t_fieldcat_alv,
          wa_fcat type slis_fieldcat_alv.
    parameters : p_werks type marc-werks.
    IF p_werks IS INITIAL.
    MESSAGE I000(Z_errors).
    ELSE.
    select MARC~WERKS
           MARA~MATNR
           MAKT~MAKTX
           MARA~MTART
           MARA~VOLUM
           MARA~NTGEW
           MARA~ERSDA
           MARA~LAEDA
    from
    MARC inner join MARA
    on marcmatnr = maramatnr
    inner join makt
    on marcmatnr = maktmatnr
    into corresponding fields of table IT_DISP
    where marc~werks = p_werks and spras = 'EN'.
    IF SY-SUBRC = 0.
    PERFORM display.
    ELSE.
    MESSAGE I001(Z_errors).
    ENDIF.
    ENDIF.
    form display.
    LOOP AT IT_DISP INTO WA_DISP.
    MOVE SY-TABIX TO WA_DISP-SLNO.
    MODIFY IT_DISP FROM WA_DISP TRANSPORTING SLNO.
    ENDLOOP.
    wa_fcat-col_pos = 1.
    wa_fcat-fieldname = 'SLNO'.
    WA_fcat-SELTEXT_L = 'SLNO'.
    wa_fcat-tabname = 'IT_DISP'.
    wa_fcat-ref_fieldname ='SLNO'.
    *wa_fcat-ref_tabname = ''.
    <b>wa_fcat-hotspot = 'X'.</b>
    append wa_fcat to it_fcat.
    clear wa_fcat.
    the line in bold is wat which wil enable hpt spot for ur ALV display!
    try out.
    reward if my ans is useful.

  • How to keep multiple function modules under one Web service

    Hi Experts,
    I have Three RFC function modules and i need to create one web service for these three RFC function modules. I know How to crearte a web service for one function module.
    please suggest me How to keep multiple function modules under one Web service.
    Thanks in advance
    Lakshminarayana

    Hi Lakshmi,
    The best way to do it is to assign all the three RFC Enabled FM's to one function group. Later on the top menu in Utilities you get an option to Create a Webservice from a Function Group.
    You can create one single Webservice using all the the 3 FM's.
    I hope this helps.
    Thanks,
    Manu

  • How to keep FI posting period (OB52) closed but keep CO posting periods (OK

    Hi SAP Guru's,
    how to keep FI posting period (OB52) closed but keep CO posting periods (OKP1) open.
    I.e. on Oct 21th the FI posting period 10 should be open but FI posting period 09 should be closed. But on Oct 21th the CO posting period 09 should be open.
    Thanks in Advance.
    RV

    You've already activeted. You can check in IMG-Financial Accounting Global Settings (New) ® Ledgers ® Real-Time Integration of Controlling with Financial Accounting
    Check this for more info http://help.sap.com/saphelp_dimp50/helpdata/en/22/c2cf4031288131e10000000a1550b0/content.htm

  • How to keep file name in print queue when printing crystal report

    We are using VB .Net 2003 + Crystal Report 2008 SP2 up to Fix Pack 2.6
    When the VB program spools crystal report files to print queue, the print queue only shows "Crystal Report" for each document.  How to keep the original file name?  In the past when we were using Crystal Report 11, the original file name can be shown in the print queue.
    Please help because it's so important for operation to see which report is failed in printing when reports are printed in batch.
    Thanks

    Hello,
    Set the PrintOption.JobTitle value for the print job. Here's C# code on how to:
                   System.Drawing.Printing.PrintDocument pDoc = new System.Drawing.Printing.PrintDocument();
                CrystalDecisions.ReportAppServer.Controllers.PrintReportOptions rasPROpts = new CrystalDecisions.ReportAppServer.Controllers.PrintReportOptionsClass();
                CrystalDecisions.ReportAppServer.ReportDefModel.PrintOptions newOpts = new PrintOptionsClass();
                   pDoc.PrinterSettings.PrinterName = cboCurrentPrinters.Text;          
                   rasPROpts.PrinterName = cboCurrentPrinters.Text;               
                   rasPROpts.PaperSize = (CrPaperSizeEnum)
                        pDoc.PrinterSettings.PaperSizes[cboCurrentPaperSizes.SelectedIndex].Kind;
                // this sets the name of the print job
                rasPROpts.JobTitle = "MYPrintJob";
                   rptClientDoc.PrintOutputController.PrintReport(rasPROpts);
                   MessageBox.Show("Printing report.", "RAS", MessageBoxButtons.OK,MessageBoxIcon.Information );
    Thank you
    Don

  • Macbook Pro - How to keep a low cycle count

    hey everyone,
    Basically I purchased a new macbook pro 11 days ago, and My current cycle count is also 11. I am eager to keep my cycle count down this time round as my last macbook's battery died at around the 700 mark (the laptop was around 15 months old at the time) which I am told was very high. The average apparently being around 300 for a computer that old.
    I have also read on other forums that people have managed to keep their cycle counts much much lower than 300 even for laptops over 15 months old.
    So to maintain my battery's life this time round I was wondering if anyone had any tips on how to keep the cycle count down this time round?
    Many thanks,
    Josh

    I should point out that the batteries that seem to survive the longest are those that get used--i.e. relatively high cycle counts. They are like muscles--use them or lose them. I tried keeping cycles down on my first battery and the results were that it made it only 11 months. Most of the "my battery failed..." posts we see here show a low cycle count.
    Also, you've posted a question about a new MBP in the forum for older ones made in Early 2008 and before. As the battery technology in your new MBP is different (and apparently better) and you have other hardware improvement made since 2008, you should use the forum for the current-generation MBPs here:
    http://discussions.apple.com/category.jspa?categoryID=251
    Not to worry. It's not your fault you found the wrong forum. "Original MacBook Pro" is a pretty non-intuitive label! About a dozen people a day with new MBPs end up here and sometimes get inappropriate advise if responders either don't notice of can't tell that the OP is asking about a newer Mac.

  • How to keep all text and formats the same on multiple computers?

    I'm creating a file in InDesign CS6 on my Windows computer. I keep everything on my flash drive. When I go to school, I bring my flash drive with me and open it up on the Mac computer, but then there are are compatibility issues. There seems to be missing fonts and formats but the school uses the same version of InDesign I do. Now I was told a lot of things of how to keep the fonts and formats the same (embed the links, package the files, outline the text, save as IDML). However, it is not clear to me what each of those options do, so I don't know when or why to use them. So I just want to make sure that when I bring in my file in next Monday, I won't have any missing fonts or formats. What would you suggest is the proper things to do to keep everything the same on multiple computers? And could you please explain why?

    If you want cross-paltform comaptibility limit the fonts to OpenType or Windows TrueType formats, both of which work on both Mac and PC. To avoid missing font warnings the fonts must either be installed on each computer, or they must be in a folder named Document Fonts in the same location as the .indd file they are to work with. Packaging the file will build taht folder for you.
    the rest of the stuff in your list won't help you. .idml would allow you to open on an older version, but does nothing for your situation. Embedding the links will keep you from having missing links, but so will packaging, and embedded links will make the file much larger and harder to work with.
    For goodness sake, don't even think about outlining the text. It stops being text when you do that and you can no longer edit it.
    And finally. do yourself a big favor and don't attempt to actually work on your file directly from the flash drive. Copy the whole package folder to the hard drive, work on it, then copy back. You don't want to know how many files are fatally damaged by write errors on flash drives.

  • Does anyone know how to keep all songs in the same album when they say featuring someone?

    Each time I load a CD onto Itunes that has an artist who features another artist on that particular song, it puts it in my library as a separate CD even though it will have the same album listed.  For instance Lady Gaga's song just dance features Colby O'Donnis that song is in its own spot while the rest of the cd is together that one song is separate and I don't know how to keep them all together.  Someone help.

    Get the Informations for that song and have a look in the "Sorting" area if there is something different. The data inserted there is just for how iTunes will order the songs.
    If the Interpret in the general informations is "Lady Gaga" and in the sorting area is "Lady Gaga feat. xxxx" than you'll see Lady Gaga as the interpret but it's sort to a second entry "Lady Gaga feat. xxxx".

  • Using a dump how can i create a ER diagram

    Can any one tell me how can i draw a ER diagram automaticaly by using an existing Database.i mean i have a database with all the relationship,triggers and views now i want to make a ER diagram automaticaly by using this database ... is there any tool for this or is oracle provides any tool can any one help me out to solve this problem
    thx in advance....

    As you are asking on the Designer forum,I am assuming you have a Designer Repository set up. If this is the case,you can use Designer to capture the design of your schema and create a schema model. You can create an ERD from this schema model by using Designer's table to entity retrofit utility. Check out the Designer demos on this site for more. (http://www.oracle.com/technology/products/designer/demos.htm)
    If you do not have a Designer Repository setup, why not try JDeveloper? You can download the latest JDeveloper 10g Preview release from OTN and, using the connection node, connect to the required schema and pull the tables from your schema onto a Database diagram. JDeveloper allows you to quickly and easily review your schema model visually.
    You can also create UML Class models based on your schema.
    There are numerous demos on the JDeveloper area for the UML modeling JDeveloper offers. (http://www.oracle.com/technology/products/jdev/index.html)
    Regards
    Sue Harper

  • How to keep songs on iphone, work computer and home computer the same?

    How to keep songs on iphone, work computer and home computer the same?
    This seems like something everyone would want to do. I don't know why Apple won't give us a simple solution. They could even charge us for it. I would pay!
    Has anyone solved this? What is your solution?
    Thanks!
    [email protected]

    If you just want to be able to sync your devices to the same PC without having them get overwritten all the times, here is a free method
    http://cnettv.cnet.com/sync-your-ipod-two-computers/9742-1_53-50004835.html
    Basically, you put the same itunes database file on all the PCs. This fakes itunes into thinking it is always the same PC and the ipod is OK to sync with it. It will NOT keep your libraries truly synced, though. I've just resigned myself to always buying from one PC and manually transferring the content to other PCs I want it on.

  • How to keep track of how many times a link has been clicked?

    How to keep track of how many times a link has been clicked or accessed? Do I need to use database for this?

    Hi
    Proably something like this can work,
    1> Have a servlet/bean invoked when the link is linked
    2> have a static variable in that servlet/bean wich gets incremented before the control is passed to another desired page..
    The problem with this approach is that care has to be taken that the servlet/bean is not re-instalised, in case of which the static variable will also be instalised and the data would be lost.
    The best thing is to store the count in the database.
    Regards
    Arathi.

  • How to keep the WBS & Order in account assignment tab of SD contract item?

    Hi Experts,
    If I remove the plant from the shipping tab in the contract item (the contract type is WV), I will be able to enter the WBS or Order in accounting assignment tab. However, if I enter the plant (in order to determine the tax in pricing), the WBS and Order are disappered and there is one new settlement rule button showed up.
    Do you know any configuration could keep the WBS and order in the accounting assigment tab even the plant is there.
    Thanks in advance!
    Norman

    Hi Chandra,
    Thanks for your answer. However, I even added the plant in the WBS, the tax (we use tax jurisdiction) still could not be determined.
    The problem is that SAP changes the account assignment tab screen (it suppresses the WBS and Order fields, but addes settlement rule) with the plant in the shipping tab. Do you know how to keep the same account assignment tab screen with the plant in the shipping tab?
    Thanks,
    Norman

  • How to keep email messages on iPhone using iCloud

    I can't figure out how to keep opened email on my iPhone.  If I have previously opened message on my iMac and it is in the Inbox on my iPhone, it disappears as soon as I try to open it.    Often I want to re-read a message.   Surely there must be a way to keep them for a period of time on the iPhone.
    John

    You could just pay for backup space (if iCloud offers it). I am only familiar with MobileMe, so I am not sure. This may help.

  • Comenting code - style - how to keep coments where you want them - without using sequences

    Silly question maybe about style of commenting.
    Basically i like to use sequence boxes to keep comments on my diagram beside the bits of code that they refere to - otherwise when you use diagram cleanup (which i'm afraid i use all the time) they go anywhere.  This is good - except that i found especially when doing FPGA programming the sequence boxes reduce the amount of parralelism that can go on - since the 'box' needs to finish before any of the outputs can be used.  Is there some other method i should be using instead of sequence boxes to keep text beside elements - without enforcing that a set of elements are fixed in one place?
    Solved!
    Go to Solution.

    I usually use labels of structures (loops, cases, etc) and labels of diagram constants, etc. for comments. In newer versions, we also have wire labels.
    (see also)
    What is your LabVIEW version? Also the LabVIEW 2011 cleanup does a better job keeping diagram comments together with the related code compared to earlier version.
    LabVIEW Champion . Do more with less code and in less time .

  • I have a Macbook Pro 15" that is three and a half years old.  Although it has slowed a bit, it still runs well and runs every program I need. Any tips for how to keep this old computer running well and in good health?

    I have a Macbook Pro 15" that is three and a half years old.  Although it has slowed a bit, it still runs well and runs every program I need. Any tips for how to keep this old computer running well and in good health?
    I have a 250 gig drive and try to keep at least 100 gigs unused at all times, 4 GB 667 MHz DDR2 SDRAM memory, back up with Time Machine and CrashPlan, and have OS X 10.7.3.
    This was my first Mac since an old Apple II GS.  After that I used PC's and got really good at reformatting, replacing drives, reinstalling, defragging, resolving software conflicts, etc.  Since switching back to Macs (five in my extended family now), I haven't had to do any of those things. So, although, the cost is three times as much, the aggrevation has been ten times less.
    I'm retired and living on a fixed income and would therefore like to keep this computer running as opposed to constatntly upgrading.
    That said, any tips?
    Thanks
    It does have a crack on the left of the screen case about 3/4'' up from the bottom.  I've posted that as another question.

    Kappy's Personal Suggestions for OS X Maintenance
    For disk repairs use Disk Utility.  For situations DU cannot handle the best third-party utilities are: Disk Warrior;  DW only fixes problems with the disk directory, but most disk problems are caused by directory corruption; Disk Warrior 4.x is now Intel Mac compatible. Drive Genius provides additional tools not found in Disk Warrior.  Versions 1.5.1 and later are Intel Mac compatible.
    OS X performs certain maintenance functions that are scheduled to occur on a daily, weekly, or monthly period. The maintenance scripts run in the early AM only if the computer is turned on 24/7 (no sleep.) If this isn't the case, then an excellent solution is to download and install a shareware utility such as Macaroni, JAW PseudoAnacron, or Anacron that will automate the maintenance activity regardless of whether the computer is turned off or asleep.  Dependence upon third-party utilities to run the periodic maintenance scripts was significantly reduced since Tiger.  These utilities have limited or no functionality with Snow Leopard or Lion and should not be installed.
    OS X automatically defragments files less than 20 MBs in size, so unless you have a disk full of very large files there's little need for defragmenting the hard drive. As for virus protection there are few if any such animals affecting OS X. You can protect the computer easily using the freeware Open Source virus protection software ClamXAV. Personally I would avoid most commercial anti-virus software because of their potential for causing problems. For more about malware see Macintosh Virus Guide.
    I would also recommend downloading a utility such as TinkerTool System, OnyX 2.4.3, or Cocktail 5.1.1 that you can use for periodic maintenance such as removing old log files and archives, clearing caches, etc.
    For emergency repairs install the freeware utility Applejack.  If you cannot start up in OS X, you may be able to start in single-user mode from which you can run Applejack to do a whole set of repair and maintenance routines from the command line.  Note that AppleJack 1.5 is required for Leopard. AppleJack 1.6 is compatible with Snow Leopard. There is no confirmation that this version also works with Lion.
    When you install any new system software or updates be sure to repair the hard drive and permissions beforehand. I also recommend booting into safe mode before doing system software updates.
    Get an external Firewire drive at least equal in size to the internal hard drive and make (and maintain) a bootable clone/backup. You can make a bootable clone using the Restore option of Disk Utility. You can also make and maintain clones with good backup software. My personal recommendations are (order is not significant):
    Carbon Copy Cloner
    Data Backup
    Deja Vu
    SuperDuper!
    SyncTwoFolders
    Synk Pro
    Synk Standard
    Tri-Backup
    Visit The XLab FAQs and read the FAQs on maintenance, optimization, virus protection, and backup and restore.
    Additional suggestions will be found in Mac Maintenance Quick Assist.
    Referenced software can be found at CNet Downloads or MacUpdate.
    Be sure you have an adequate amount of RAM installed for the number of applications you run concurrently. Be sure you leave a minimum of 10% of the hard drive's capacity as free space.
    Adding more RAM, if feasible, and a new, faster hard drive may also help pep it up a little.

Maybe you are looking for

  • Adobe cs6 apps not working with OS X Yosemite

    Illustrator and After Effects are not working with OS 10.10.1  After Effects opens into and is stuck in Render Queue. Illustrator says it need a previous version of java. Im a little nervous about going with a older version of java on my new machine

  • bsp:parameter with syntax check?

    I use subcontrollers pretty often in my application. I usually pass parameters to my subcontrollers like this: <bsp:call url = "blabla.do" comp_id = "id1">     <bsp:parameter name = "my_attribute" value = "<%= lv_bla %>" />        </bsp:call> By this

  • Cisco 881 Zone Firewall issues

    I'm having issues with an 881 that I have configured as a zone based firewall. I have allowed HTTP(s) and DNS on the DMZ but my user is saying he cannot access the internet. On the corporate side the user complains that some websites fail, such as Li

  • I bought a Canon 8400F scanner- question about multiple photos being scanne

    Hi, I have a question about about scanning photos. It was posted that if you scan something with multiple photos, it will separate the pictures. If I put 6 pictures on the scanner, will it automatically scan them and separate them, or is there someth

  • Illustrator will not open files

    Hello, I am using Adobe Illustrator 11.0 for Windows (running on Windows Vista), and for some reason I am not able to open files that were previously created with the same software, on the same system, on the same computer. The files will not open wh