Help for an anaglyph presentation

hello
please please can you help me
i am a novice but have been charged with creating a presentation for my friends wedding
is there a template were all i need to do is change the words
can you help?
thank you
David

Hi,
Which version and localization?
In the french localization I'm using, we have a Tax Code Determination - Setup form (Administration / Setup / Financials / Tax / Tax Code Determination) which allow us to do what you want without FMS. Perhaps it's also the case for you...
Regards,
Eric

Similar Messages

  • Need Help For Sap Insurance Presentation

    Dear Friends,
    I am a Technical person and i want to give a Presentation on 'SAP Insurance - Collection and Disbursements '.I have gone through Sap help for SAP Insurance but am not getting what should be my material for Presentation. Being A technical person not able to understand WHAT SHOULD BE THE CONTENTS OF PRESENTATION i:e should it be more of Technical or Functional.
    Please help me and Guide me for the Contents from a Functional Point of view, as i will be giving presentation to My Seniors.
    Thanks and Regards,
    Ashwini

    I do not understand presentation in terms of collection and disbursement you mean from the business side of things or will i say looking at it from a business analyst perspective. I have some info if you can send an email add then i will send something which might be helpful though i am not sure, I myself i am just moving into such area as a SAP Business Analyst for Claims managment though i have an insurance background of another ERP so i might be able to help.

  • FM for F4 help for presentation server path

    hi Experts,
    FM  for F4 help for presentation server path .
    and also for download to the presentation server.
    Regards,
    Amit

    Amit,
    PARAMETER: pfile LIKE rlgrap-filename OBLIGATORY.
    CALL FUNCTION 'F4_FILENAME'
       EXPORTING
         program_name        = syst-cprog
         dynpro_number       = syst-dynnr
    *   FIELD_NAME          = ' '
       IMPORTING
         file_name           = pfile.
    and use gui_download for download to presentation server:
    CALL FUNCTION 'GUI_DOWNLOAD'
            EXPORTING
              filename              = _filename
              filetype              = 'ASC'
              append                = l_append
              trunc_trailing_blanks = space
              write_lf              = l_write_lf
    ** here we know that we are working with GUI (not batch process) so we can ask user,
    ** if he is really sure to overwrite file in case of overwriting
    *          confirm_overwrite     = l_confirm_overwrite
              confirm_overwrite     = space
            TABLES
              data_tab              = lt_header
            EXCEPTIONS
              error_message         = 98
              OTHERS                = 99.
    Amit.

  • F4 Help for presentation server filepath/name

    Hi,
      Can anyone tell me how can I get a F4 help for selecting a file or directory from the PC...i.e I should get a pop-up “Open File” dialog to select the File on PC.
    Thanks!
    Sunitha.

    Hi Sunitha.,
    You can write the following code in the At selection screeb value request event.
    Using ABAP Objects:
    PARAMETER : p_file LIKE rlgrap-filename.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR path.
      DATA: directory TYPE string,                            
            filetable TYPE filetable,                         
            line      TYPE LINE OF filetable,                 
            rc        TYPE i.                                 
      CALL METHOD cl_gui_frontend_services=>get_temp_directory
        CHANGING                                              
          temp_dir = directory.                               
      CALL METHOD cl_gui_frontend_services=>file_open_dialog  
        EXPORTING                                             
          window_title      = 'SELECT THE FILE'         
          initial_directory = directory                       
          file_filter       = '*.XLS'                         
          multiselection    = ' '                             
        CHANGING                                              
          file_table        = filetable                                                         
           rc                = rc.                         
       IF rc = 1.                                          
         READ TABLE filetable INDEX 1 INTO line.           
         P_FILE = line-filename.                         
       ENDIF.                                              
    Using Normal ABAP:
    DATA:   P_FILE LIKE RLGRAP-FILENAME,
            DPATH LIKE RLGRAP-FILENAME,
            UPATH LIKE RLGRAP-FILENAME,
            MODE TYPE C,
            FLG_UD TYPE C.
      CALL FUNCTION 'WS_ULDL_PATH'
           IMPORTING
                DOWNLOAD_PATH = DPATH
                UPLOAD_PATH   = UPATH.
      IF FLG_UD <> 'D'.
        DPATH = UPATH.
        MODE = 'O'.
      ELSE.
        MODE = 'S'.
      ENDIF.
      CALL FUNCTION 'WS_FILENAME_GET'
           EXPORTING
                DEF_FILENAME     = '*.XLS'
                DEF_PATH         = DPATH
                MASK             = ',*.XLS,*.*,*.*.'
                MODE             = MODE
           IMPORTING
                FILENAME         = P_FILE
           EXCEPTIONS
                SELECTION_CANCEL = 3.
      IF SY-SUBRC <> 0.
        EXIT.
      ENDIF.
    Just copy paste the code this should work fine.
    Cheers
    VJ

  • Change the SWF loading text for a single presentation

    This question was posted in response to the following article: http://help.adobe.com/en_US/Presenter/7.0/WS8815BC0A-5D22-4f29-87B9-D9047B5B57E4.html

    Hi,
      I have Adobe Presenter 7.0.5, in which with recently updating to 7.0.7 version.
    When I tried the fix of this "Change the SWF loading text for a single presentation" workaround fix, I passed to have the error:ReferenceError: Error #1069: Property ADOBE_PRESENTER not found on Pool_P75.Resource.UIText
    But before this error comes, I see that the loading text is changes from the original 2Adobe Presenter" to the one defined by me on the UIText, as the fix said.
    And what's happen is that the scrren with the loading text is not being changed by the learning first slide....
    Is there any workaround to correct that error?
    Many thanks in advance for any feedback from the adobe support team or from any other colleagues that are using Adobe Presenter (;-)).

  • F4 help for file name

    frnds,
    Im using the FM "KD_GET_FILENAME_ON_F4" to get F4 help for file name in presentation server... but it does not seem to work...Y?????????
    and is there any FM to get the file name from the application server..
    points assured to all the answers...
    regrds,
    Madan...

    Try to use WS_FILENAME_GET
      call function 'WS_FILENAME_GET'
        exporting  def_filename     =  space
                  def_path         = 
                    mask             = ',.  ,..'
                    mode             = 'O'
                    title            =  text-038
       importing  filename         =  os_name
                                  RC               =  DUMMY
       exceptions inv_winsys       =  04
                  no_batch         =  08
                                    selection_cancel =  12
                                    selection_error  =  16.
    or
    at selection-screen on value-request for p_file1.
      data wa_file like file_table.
      refresh filetable.
      call method cl_gui_frontend_services=>file_open_dialog
       EXPORTING
       WINDOW_TITLE            =
       DEFAULT_EXTENSION       =
       DEFAULT_FILENAME        =
       FILE_FILTER             =
       INITIAL_DIRECTORY       =
       MULTISELECTION          =
       WITH_ENCODING           =
        changing
          file_table              = filetable
          rc                      = rc
       USER_ACTION             =
       FILE_ENCODING           =
      exceptions
        file_open_dialog_failed = 1
        cntl_error              = 2
        error_no_gui            = 3
        not_supported_by_gui    = 4
        others                  = 5.
      if sy-subrc = 0.
        if rc = 1.
          read table filetable into wa_file index 1.
          move wa_file-filename to p_file1.
        endif.
      endif.
    Max
    Message was edited by: max bianchi

  • Which program for basic business presentations?

    Forgive me but I need to ask for advice on what program to use for video editing for basic business presentations. I think Premiere Pro is way beyond my needs, mainly in terms of learning curve (as well as the cost).
    For what it's worth, I'm an avid Adobe user, and have been for years, for other programs: I currently use InDesign, Photoshop Elements, Dreamweaver, Audition, and Acrobat Standard (and also subscribe to the Acrobat Connect service). So, I don't feel too bad asking this forum to recommend "different" software for video editing. (Maybe Premiere Elements is best for me, but maybe not.)
    I do not have any experience in video editing, and I do not have any time for a significant learning curve. I also don't need to do anything fancy.
    I bought a MiniDV camcorder (Panasonic PV-GS300). I'm using a PC (3.6G, 1G RAM, half the 160G HD available, though I'll have to add a Firewire PCI card shortly) and Windows XP Pro. I'll get tripod lights and a good headworn mic. I use Nero Burning ROM 6 to burn DVDs (I've used its simple wizard to convert files and burn DVDs).
    My purpose is to create about a dozen or so 6- to 12-minute clips consisting mainly just of me standing and giving a verbal speech and with some still images created from the computer (PDF, GIF, or whatever) stuck in between the video (I'll probably want some of the speech from the video taping, or else some speech I create in Audition, to play through the showing of the still images).
    I'm not concerned with fancy video effects! I don't need it and I can't justify the learning curve (or cost) for it! Fades in and out are probably as advanced as I will get, though I really don't even need that.
    I'll want to create the videos in file formats for Windows and for Mac, and to put them on our web site for streaming video as well as burn DVDs.
    I'm sure I'll want to be able to adjust the image sizes and file sizes by choosing the tradeoff level with quality, though I hope there will be a set of standard defaults. I also really need good user forum support (I have no idea if Premiere Elements is enough for me but I sure have come to rely on the users on the Adobe forums).
    I need to ask whether I should get Premiere Elements or... yes, I know it's blasphemy but I swear I'm a loyal member of the clan in all other ways... whether there is another video editing program that's light-weight enough to be pretty quick in getting through the learning curve for the basics I want, and that's relatively inexpensive. (I've been told on one forum... blasphemy again, I know... that I should look into Vegas 7, but the price and sophistication seem way beyond my needs based on an initial glance on the web -- but maybe I should just spring for it and go. It also seems Vegas 7 is more practical for my needs than Premiere Pro -- but I'm really hoping I'll be pointed at much lower-end programs.)
    I really appreciate any advice I can get. I run a small business with big growth ahead (I have a tiger by the tail) and need to jump on this and to do it myself for now, and I just do not have a lot of time for learning.
    Thanks so much!
    Jay

    OK, fair questions.
    In my opinion, the learning curve for the most commonly used 95% of the programs is exactly the same between Premiere Pro and Premiere Elements. It really is. Capture video, figure out what you want on the timeline, put it on the timeline, add transitions, add music, export to something a DVD program can use, all of that. It is darn near identical.
    However... then you decide you want to do something interesting. You come online and we tell you that is it very simple. Just use Premiere Pro to do... oh, wait, you don't have Pro? Just Elements? Too bad.
    OK. Then you say "How do they make those great motion titles?". We say "It's easy, just use one of the text animation presets in After Effects". What? No After Effects? Too bad.
    So let's say you like using After Effects for titles and you decide you want to expand your knowledge. Simple. Get some projects from Dean Velez and modify them to suit you. Do you need to learn it all at one time? No. Just what you need when you need it.
    This is one reason that if you buy the Production Premium, one of the choices for extra goodies is a one month subscription to Lynda.com to watch their tutorials.
    Spend the time watching the tutorials. If something catches you eye, write down where you saw it so you can go back and really learn it.
    Just because you own a hammer and a saw and other hand tools doesn't mean you need to learn to be a carpenter. It just means that when your wife asks you to do something, you will have the required tools so you can go on the web and learn how to do that task, without having to run to Home Depot - which may be closed at the time you need it.
    I originally bought Premiere 6.0 and when I went to an Adobe demo at DVExpo in NYC back in 2002 I saw an After Effects demo. I called from the Adobe booth to order After Effects. Why? When I saw that the learning curve was only hard if you tried to tackle the whole thing, and I realized I could just use the part I needed, my whole opinion changed.
    If you only used After Effects for text in motion and for Stills in motion (Ken Burns and much more), you would get your money out of it. And that stuff can be learned in 15 minutes. Add in the real need for you, the chroma key, and the time savings is HUGE. You really need to know less to use Keylight than you do to use Premiere Pro to attempt the same thing.
    Having the full version of Photoshop is nothing more than you have now. Until you need more. Then you have it.
    The ability to use all of the Adobe products together outweighs any Vegas or Avid (consumer) advantages.
    Besides, we are much more helpful on this forum than those other guys! ;)

  • Required help for a query

    Hi All....
    Required help for one more query.
    I have a table with data like this:
    Cust_id Transaction_no
    111 1
    111 2
    111 3
    111 4
    111 5
    111 6
    222 7
    222 8
    333 9
    333 10
    333 11
    333 12
    I wrote the following query :
    select cust_id, ntile(3) over (order by cust_id) "Bucket" from trans_detls
    The output is like this :
    Cust_id Bucket
    111 1
    111 1
    111 1
    111 1
    111 2
    111 2
    222 2
    222 2
    333 3
    333 3
    333 3
    333 3
    The problem is that I dont want the cust_id to overlap in buckets. That is one cust_id should be present in only one bucket.
    Is this possible?
    Thanks in advance.
    Ameya

    Or Something like..
    SQL> select * from test;
            ID         NO
           111          1
           111          2
           111          3
           111          4
           111          5
           111          6
           222          7
           222          8
           333          9
           333         10
           333         11
           333         12
    12 rows selected.
    SQL> select id, ntile(3) over (order by rn) "Bucket"
      2  from(
      3      select id,row_number() over(partition by id order by no) rn
      4      from test);
            ID     Bucket
           111          1
           222          1
           333          1
           111          1
           222          2
           333          2
           111          2
           333          2
           111          3
           333          3
           111          3
           111          3
    12 rows selected.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Providing F4 help for the same field on selection screen

    Hello Experts,
    My requirement is :
    There are 2 radio buttons and a parameter "p_file" on my selection scree.
    1. rb_appl
    2. rb_pres
    If the radio button rb_appl = 'X', I need to place the logic of F4 help of application server for the field p_file. Else if the rb_pres = 'X', then I need to place the logic of F4 help of presentation server for the same field p_file.
    I have written the code in the below manner
    PARAMETERS: rb_appl RADIOBUTTON GROUP rad DEFAULT 'X',
                             rb_pres RADIOBUTTON GROUP rad ,
                             p_file   TYPE ibipparms-path.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      IF rb_appl = 'X'.
          PERFORM f_applictn_server_filenm.
      ELSEIF rb_pres = 'X'.
        PERFORM f_presentation_filenm.
      ENDIF.
    But I am getting the F4 help for only the radio button for which i have placed the default value in the parameters.
    So please let me know how to define the F4 help for the same field based on the radio buttons.

    Hi,
    You can acheive the same by the addition of [USER-COMMAND fcode].
    RADIOBUTTON GROUP group [USER-COMMAND fcode] - The addition USER-COMMAND can be used to assign a function code fcode to the first parameter in a radio button group. The function code fcode must be specified directly, and have a maximum length of 20 characters. When the user selects any radio button of the radio button group on the selection screen, the runtime environment triggers the event AT SELECTION-SCREEN and transfers the function code fcode to the component ucomm of the interface work area sscrfields.
    So you code should be altered as
    PARAMETERS: rb_appl  RADIOBUTTON GROUP rad
                         USER-COMMAND radclick    "Addition which you have to make.
                         DEFAULT 'X',
                rb_pres  RADIOBUTTON GROUP rad ,
                p_file   TYPE ibipparms-path.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      IF rb_appl = 'X'.
        PERFORM f_applictn_server_filenm.
      ELSEIF rb_pres = 'X'.
        PERFORM f_presentation_filenm.
      ENDIF.
    Thanks & Regards,
    Harish

  • F4 help for pop up window

    Hi guys,
                 for pop up window i need f4 help..... actually wt the task is if i  give the program name, that program contents have to save in a text file... for that i need to specify the path ie., where i have to save the text file...
                i have done some coding on it i dont weather the function module i used is correct? and for that i need f4 help....
             so plx tell me how to use f4 help for the function module and also wt is the exact function module for pop up window....
    here is the code.............
    REPORT  ZTEST_DOWNLOAD.
    PARAMETERS :  P_PROG(30) TYPE c.
    DATA: ITAB TYPE TABLE OF STRING.
    READ REPORT P_PROG INTO ITAB.
    CALL FUNCTION 'RSO_DIRECTORY_POP_UP'
    IMPORTING
      E_DIRECTORY       =
    EXCEPTIONS
       FAILED            = 1
       CANCELLED         = 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.
    START-OF-SELECTION.
    data: progname type string.
    progname = P_PROG.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
      BIN_FILESIZE                    =
        FILENAME                        =   PROGNAME
        FILETYPE                        = 'ASC'
      TABLES
        DATA_TAB                        = ITAB
      FIELDNAMES                      =
    EXCEPTIONS
       FILE_WRITE_ERROR                = 1
       NO_BATCH                        = 2
       GUI_REFUSE_FILETRANSFER         = 3
       INVALID_TYPE                    = 4
       NO_AUTHORITY                    = 5
       UNKNOWN_ERROR                   = 6
       HEADER_NOT_ALLOWED              = 7
       SEPARATOR_NOT_ALLOWED           = 8
       FILESIZE_NOT_ALLOWED            = 9
       HEADER_TOO_LONG                 = 10
       DP_ERROR_CREATE                 = 11
       DP_ERROR_SEND                   = 12
       DP_ERROR_WRITE                  = 13
       UNKNOWN_DP_ERROR                = 14
       ACCESS_DENIED                   = 15
       DP_OUT_OF_MEMORY                = 16
       DISK_FULL                       = 17
       DP_TIMEOUT                      = 18
       FILE_NOT_FOUND                  = 19
       DATAPROVIDER_EXCEPTION          = 20
       CONTROL_FLUSH_ERROR             = 21
       OTHERS                          = 22
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Thanks in advance..............

    Use this code.. F4 help for both Application as well as Presentation Server..
    *                      Form  FILE_F4_APP
    *      Help on Selection-screen for file on Application Server
    form file_f4_app .
      call function '/SAPDMC/LSM_F4_SERVER_FILE'
        exporting
          filemask         = space
        importing
          serverfile       = p_name
        exceptions
          canceled_by_user = 1
          others           = 2.
      if sy-subrc is not initial.
        p_name = space.
      endif.
    endform.                    " FILE_F4_APP
    *                      Form  FILE_F4_PRE
    *           Filename F4 help for Presentation Server
    form file_f4_pre .
    * Local Constant
      constants: l_c_p type c length 1 value 'P'.
    * Local Data
      data: l_path type c length 255.
      call function 'F4_DXFILENAME_TOPRECURSION'
        exporting
          i_location_flag = l_c_p
          i_path          = l_path
        importing
          o_path          = l_path
        exceptions
          rfc_error       = 1
          error_with_gui  = 2
          others          = 3.
      if sy-subrc eq 0.
        p_name = l_path.
      endif.
    endform.                    " FILE_F4_PRE
    Please award points..
    Thanks,
    Rahul

  • Showing Help Icon in ALBPM Presentations

    I was wondering if there was a method to show a help icon in the presentation. For e.g. there is a list of medical devices in the drop down.. When the user clicks on the help icon besides the medical devices list in the drop down, he sees information on the various medical devices in the drop down?

    There is no out of the box help icon in the standard BPM Object presentation, but what we'd usually do is to make a field field visible (or invisible) based on an image (e.g. a help icon) or button clicked.
    What you'd do is to create a method that would have logic like this:
    setVisible this
    using componentId = “helpField”,
    visible = true, // “false" to make invisible
    collapsed = false // removes the space on the window
    The "helpField" is the name of the field placed on the presentation (NOT the attribute's name)
    This method would be invoked by the presentation field's "On Click" event property.
    Hope this helps,
    Dan

  • Change Search help for Location in Schedule creation screen(NWBC)

    Hi all,
    My requirement is to change the standard search help for Location field in Standard stop sequence of Schedule creation in NWBC.
    Presently, the search help for the location field is a webdynpro component WDR_F4_ELEMENTARY .Is there any possibility to replace with the custom search help.
    Can anybody please let me know how to replace the search help.
    Thanks&Regards,
    Sharmista.

    Hi
    I suppose you may create a component customizing for /SCMTMS/WDCC_SCH_C_LOC_ATS, and maintain your DDIC search help for location ID, this will replace the one assigned in structure:
    You may only maintain DDIC search help here, but if you have a custom developed search help, then you may need to go with another approach, in viewexit class (/SCMTMS/CL_UI_VIEWEXIT_SCH) adapt_fields (ADAPT_FIELDS), modify the attribute 'WD_VALUE_HELP' = custom search help.
    Hope it helps

  • Plugin help for PS cc

    I just installed PS CC, but have already had portraiture +, I now need to use portraiture + as my PS plugin, but I am not sure how to do that...can anyone help?

    There are just so many options with Wacom kit nowadays, and along with the name changes, I for one, am having trouble keeping up.  I had a go of a 13 in Companion, and the 1920x1080 was more than enough for a 13 and a bit inch screen.  It was lovely to use, but from your point of view, they run Windows 8.1, and cost a fortune for their screen size.  They do have the huge advantage of being a stand alone product, but can be used with a large monitor in dual screen mode, but as the Companion is providing all the driving power, I'd wonder if that was enough.  I just looked and it is OK but not great.
    The one I saw was owned by Oz Master Photographer Peter Eastway, and he used it for all his presentations as main speaker at the 2014 PSNZ National Convention.  It was driving a pair of 1920 x 1200 projectors, but had to drop screen res to 1680 x 1050 to fit the 16.10 aspect ratio.  I have to say it was entirely up to the job!
    But too much money for the size IMO, but I might invest in a 13HD one day.

  • Developing Online Help for Mobile Applications

    My company is just starting to develop applications for mobile devices (cell phone, iPad
    , etc.). Can anyone tell me whether RoboHelp is the best Adobe application for devel
    oping online help for mobile devices or if some other application should be used? Thanks.

    Thanks for the insight. I haven't read about RH8 so wasn't aware of that difference. No, I haven't tried the demo yet. I guess that would be the logical next step. I've been trying to get to the STC web site to download the PDF file of the presentation, but can't get the web site to open. Oh well. Thanks again.
    Regards, Fred W. Brown
    Technical Writer 3
    InnovaSystems International, LLC
    (757) 282-7921
    • Writing is simple. First you have to make sure you have plenty of paper... sharp pencils... typewriter ribbon. Then put your belly up to the desk... roll a sheet of paper into the typewriter... and stare at it until beads of blood appear on your forehead.
    • Prof. Cosmo Fishhawk, in Shoe

  • HELP FOR ME

    EXPERTS:-This is given One of interiviwer asking the this Question:-(scnario)pls help for this one.(2plant here one plant is manufactring, and second one sales)
      Here is the TWO plants:-      1.plnat                               2.plant
                                            This plant is manufactring        This plant is sales
    How we can cost estimate?

    Well, after quite sometime tonight I have achieved an output here-but as Scotty might say "it 's a chessboard Jim, but not as we know it!"
    I checked out the looping info on several websites (& had to adjust my classpath which I had altered earlier trying unsuccessfully to install JMusic -which then stopped me compiling!).
    So presently this chessboard is not a chessboard! I will continue to play with the code to somehow get a proper board. I present here my present hapless code offering and am open to suggestions (except giveup coding! LOL!). I am using a lot of trial & error to learn what & how this code does & doesn't work. Just to think I then need to colour alternate squares and add mouselistener control, coordinates, chess pieces & more features(moves etc) !
    Still I have learnt something new about loops/ looping.Here is the code:-
    private void draw8x8Board(int x,int y, int f, Graphics g){
    for (x = 10; x <= 220; x = x + 25)
    g.drawLine(x, 20, x, 220 );
    for (y = 10;y<= 220; y = y+25){
    g.drawLine (20, y, 220, y );
    for (f = 10; f<=220; f = f + 10){
    g.drawLine( x, y, 10,10);
    What an odd board; what skill?! mmmm.......(I can't believe I'm showing this. I hope I can sort it out reasonably quickly.Anyway I'm just starting to learn some Java, and in a strange way it is a bit of fun -though it'll be out of fashion by the time I get it right!).
    RPD(=tR2):mycode

Maybe you are looking for

  • How to download Adobe Bridge in Creative Cloud?

    I don't see Adobe Bridge in the list of Creative Cloud apps in Application Manager. How can I download it?

  • Pause statement in java?

    I was wondering if there is code in java to "pause" a program, just like C has getch() or system(pause) etc. ? Because in my program I need to prompt user if he/she wants to continue. -thanks

  • New to Mac, embarrassed to ask, but can I insert....

    mini digital disks into my iMac or will they get stuck? Someone said I had to insert them into a drive that opens with a tray. iMac 20   Mac OS X (10.4.8)   Mac Rules!!!

  • Viewing system files in finder

    Is there a change I can make to enable finder to view /var /etc and other system directories? Thanks. -- James

  • Private IP Schemes

    I have a company with 13 offices. Each of the offices has anywhere from 6 - 40 nodes. Also I am considering VOIP so I may need some address for that. Currently I have a site to site VPN with configure each site with the following IP's ranges; 172.16.