Road directions output to remote screen ?

Does anyone know if it is possible to use the voice guidance on a N95 and have the screen duplicated on an external screen similar to the capabilities viewing video/photos on a tv screen.
Thanks Walter

Anyone have any ideas ?

Similar Messages

  • Hp officejet 8610 fax sends out more pages than scanned - received partial output on remote end

    Hp officejet 8610 fax sends out more pages than scanned - received partial output on remote end

    Hi,
    How long is a page on the sender side?  If it is a long page like a legal page, it may end up in in 2 pages in the receiver side. Also check on the receiver end, if it is set to 'auto reduction - off' this may happen, try turning it "on".
    Also if the sender page is not a long page, try observing the paper that is going into the ADF, it should be 1 page at a time, if pages goes into the ADF continueously, it suggest that ADF is could be faulty.
    Set automatic reduction for incoming faxes (for HP printers only)
    The Automatic Reduction setting determines what the printer does if it receives a fax that is too large
    for the default paper size. This setting is turned on by default, so the image of the incoming fax is
    reduced to fit on one page, if possible. If this feature is turned off, information that does not fit on the
    first page is printed on a second page. Automatic Reduction is useful when you receive a Legal-size
    fax and Letter-size paper is loaded in the main tray.
    To set automatic reduction from the printer control panel 
    1. From the printer control panel display, touch and slide your finger across the screen and then 
    touch Setup. 
    2. Touch Fax Setup. 
    3. Touch Advanced Fax Setup. 
    4. Touch Automatic Reduction to turn on or off.
    Please click the "Thumbs Up", to say thanks for helping!
    Also, please consider marking my post as “Accept as Solution" if you feel my post solved your issue.
    I work for HP

  • How to print the output of the screen in Dialog Programming

    Hi,
    Could anybody help how to print the output of a screen in the dialog programming. i can select 'Hard Copy' option in the 'Custumizing of Local Layout' Icon in the standard tool bar. but that prints the whole screen with the toolbar. i want to print only the output which is displayed on the screen. Please help..
    Regards,
    Swathi

    Hi Swathi,
        Ok. Do One thing. Go to menu bar and select Systems -> Own pool Request -> here you get the spool number. Select it and select the option "Print Directly" in tool bar.
    Thanks.

  • Video output to full screen?

    I have a situation where I need to synch multiple separate recorded backing tracks with video in a live performance situation with a live band. I was told that Logic 8 allows for outputting full screen video synched to music tracks. I have tested this and gotten as far as having my Quicktime video synched to the backing tracks - all working weell, however I cannot output the video to full screen mode. I can output just a Quicktime file to full screen mode, but not Logic.
    Are you able to do this on Logic 8 or was I given bum information about it's capabilities when I bought it? Do I need a specific video card maybe (I didn't think so since Quicktime works in fullscreen mode).
    I'm using a PowerBook g4 currently.
    Thanks!
    Sean

    Sorry guys but this is a bit confusing to me- I am not that familiar with the video stuff...
    I know that if I run Quicktime on my Mac and go to full screen mode then it works fine. It even works with my Mac hooked up to a video projector. So my computer can output full screen (in Quicktime). However, Logic will not go into full screen mode when I tell it to.
    So, since I can go into full screen mode in Quicktime does this mean that Logic should also be able to - or does this mean that the Logic program requires this box you're talking about in order to do full screen mode?
    Also, I'm not sure what this box does exactly or what I have to "import" and where I have to "import" it to.
    Again I am making videos that will accompany a live band but must be synched to the backing tracks and the drummer's click track that will be located on my Mac laptop. So all I need is the video that is synched to my Logic song file to output to full screen when I connect it to a video projector.
    Thanks...

  • When I run this script nothing is output to the screen or spooled to a file

    When I run this script nothing is output to the screen or spooled to a file. What do I need to do to get output from this script.
    SET SERVEROUTPUT ON size 100000
    DECLARE
    v_schema     Varchar2(50);
    v_statement      Varchar2(500);
    v_name varchar2(30);
    v_id varchar2(8);
    v_pwd varchar2(16);
    v_acct varchar2(16);
    CURSOR get_schemas IS
    SELECT DISTINCT owner
    FROM all_tables
    WHERE table_name = 'USERID'
    ORDER BY owner;
    BEGIN
    OPEN get_schemas;
    LOOP
    FETCH get_schemas INTO v_schema;
    EXIT WHEN get_schemas%NOTFOUND;
              v_statement := 'SELECT name,usid,passwd,acctnum INTO v_name,v_id,v_pwd,v_acct FROM '||v_schema||'.userid';
              execute immediate v_statement;
              DBMS_OUTPUT.PUT_LINE('Name='||v_name||' ID='||v_id||' PW='||v_pwd||' AC='||v_acct);          
    END LOOP;
    CLOSE get_schemas;
    END;
    /

    Do I include several variables after the INTO or just
    one?
    How do I loop through the record and print the
    individual variables?
    I appreciate your assistance!He already gave you the answer above:
    v_statement := 'SELECT name,usid,passwd,acctnum FROM ' || v_schema ||
    '.userid';
    execute immediate v_statement
    INTO v_name, v_id, v_pwd, v_acct;
    If this is not printing any output, it is because you don't have a table named USERID... what are you trying to do?

  • Add a radio button to each row on output (not selection-screen)

    its a normal interacitve report...
    we need to add a radio button to each row on output (not selection-screen) and when user selects the radio button of a particular row and clicks on the user defined menu 'Execute' the report has to fetch the records from a table corresponding to the selected row on the second list.
    all this has to be done in normal interactive list.
    please let me know your suggetions as soon as possible.
    thanks,
    usha.

    Hi ,  try this
    TABLES: spfli.
    TYPE-POOLS:slis.
    PARAMETERS: p_col TYPE i ,
                p_row TYPE i,
                p_color(4) TYPE c .
    DATA: t_fieldcat TYPE slis_t_fieldcat_alv,
          fs_fieldcat LIKE LINE OF t_fieldcat,
          fs_layout TYPE slis_layout_alv ,
          w_color(4) ,
          w_row TYPE i,
          w_fieldname(20),
          w_prog TYPE sy-repid.
    TYPES : BEGIN OF ty_spfli ,
              color(4),
              checkbox ,
              cell TYPE slis_t_specialcol_alv,
              carrid TYPE spfli-carrid,
              connid TYPE spfli-connid,
              cityfrom TYPE spfli-cityfrom,
              cityto TYPE spfli-cityto,
              distance TYPE spfli-distance,
           END OF ty_spfli.
    DATA : wa_spfli TYPE ty_spfli ,
           t_spfli TYPE TABLE OF ty_spfli.
    DATA: fs_cell LIKE LINE OF wa_spfli-cell.
    SELECT carrid connid cityfrom cityto distance
      FROM spfli
      INTO CORRESPONDING FIELDS OF TABLE t_spfli.
    w_color = p_color.
    fs_fieldcat-fieldname = 'CARRID'.
    fs_fieldcat-ref_tabname = 'SPFLI'.
    fs_fieldcat-col_pos = 1.
    fs_fieldcat-key = 'X'.
    APPEND fs_fieldcat TO t_fieldcat.
    CLEAR fs_fieldcat .
    fs_fieldcat-fieldname = 'CONNID'.
    fs_fieldcat-ref_tabname = 'SPFLI'.
    fs_fieldcat-col_pos = 2.
    fs_fieldcat-key = 'X'.
    APPEND fs_fieldcat TO t_fieldcat.
    CLEAR fs_fieldcat .
    fs_fieldcat-fieldname = 'DISTANCE'.
    fs_fieldcat-ref_tabname = 'SPFLI'.
    fs_fieldcat-col_pos = 3.
    fs_fieldcat-key = ' '.
    fs_fieldcat-edit = 'X'.
    APPEND fs_fieldcat TO t_fieldcat.
    CLEAR fs_fieldcat.
    fs_fieldcat-fieldname = 'CITYFROM'.
    fs_fieldcat-ref_tabname = 'SPFLI'.
    fs_fieldcat-col_pos = 4.
    fs_fieldcat-key = ' '.
    APPEND fs_fieldcat TO t_fieldcat.
    LOOP AT t_fieldcat INTO fs_fieldcat.
      IF fs_fieldcat-col_pos EQ p_col.
        fs_fieldcat-emphasize = p_color.
        w_fieldname = fs_fieldcat-fieldname.
        IF p_row IS INITIAL AND p_col GT 0.
          MODIFY t_fieldcat FROM fs_fieldcat TRANSPORTING emphasize.
        ENDIF.
      ENDIF.
    ENDLOOP.
    fs_layout-info_fieldname = 'COLOR'.
    fs_layout-box_fieldname = 'CHECKBOX'.
    fs_layout-coltab_fieldname = 'CELL'.
    fs_layout-f2code = '&ETA'.
    w_prog = sy-repid.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
      EXPORTING
        i_callback_program = w_prog
        is_layout          = fs_layout
        it_fieldcat        = t_fieldcat
      TABLES
        t_outtab           = t_spfli
      EXCEPTIONS
        program_error      = 1
        OTHERS             = 2.
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Regards,
    Aby

  • How to delete unwanted road direction in ovi maps ...

    if i already saved my previous road direction in drive mode , but i cannot delete it , no delete function found, it is annoying...how u guys to remove it ? for landmark ,i know i can delete inside location icon..but this road direction no...really Nokia not aware of this ?
    Solved!
    Go to Solution.

    Ovi maps 3.03 was designed to be synced with your ovi account at maps.ovi.com. You can manage routes there, and delete them if you wish. Sync your maps to your account, opens maps.ovi.com, log in, go to favorites and delete your route, then sync again. The website acts as an in PC maps manager. If you wish this function to be added to next versions of the maps, head over to Nokia Beta Labs and post your feedback in the section for Ovi Maps.
    If you find my post helpful please click the green star on the left under the avatar. Thanks.

  • Editing adobe form output in ECC screen

    Hi all,
    I am creating adobe form in ECC. Then I can change its output in portal page. But I can not change the output in ECC screen. can you help me about this issue?
    Thank you for your interest,

    Hi,
    Please see the following KBA about a solution for this.
    [Download Adobe PDF Spool|https://bosap-support.wdf.sap.corp/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3030303136303236323526]
    You need to Install at least SAPDFPRINT patch level 3(see note #1444342) and SAPGUI 7.20 patch level 5 and then follow the steps of the KBA.
    Regards,
    Aidan

  • I would like to be able to pipe output to the screen as well as to 'append' it to an array

    I would like to be able to pipe output to the screen as well as to 'append' it to a variable.
    For example, for something like this:
    $result =@()
    $result += Invoke-Command -cn $servers -scriptblock { foo }
    I would like to be able to see on the screen the running output of
    Invoke-Command -cn $servers -scriptblock { foo }
    as well as capture each result to the $result variable.

    Just wrap the expression in parens:
    ($result += Invoke-Command -cn $servers -scriptblock { foo })
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • Remote Screen Cropped in Mac OS X RDC 8.0.12

    Hi!  I'm running 8.0.12 on the latest Mac OS and I'm running into an issue where the remote screen has a black line at the bottom and is being cropped at the top.  This happens only if I select the remote computer in the "My Desktop"
    list and press enter on my keyboard.  If I double-click with the mouse -- all is good.
    Thanks for a great product!  The RDC client for the Mac is quite good.
    Jason.

    Hi Jason,
    Thank you for posting!
    Since we are not familiar with Mac Operating System, I would suggest you refer to Mac OS X forums below to see if others are experiencing the same behavior as you do:
    http://macforums.com/forums/mac-os-x.33/
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Can I connect the digital output of flat screen to digital stereo output?

    can I connect the digital output of flat screen to digital stereo output? 

    Hello JRefugio,
    Welcome to the Sony Community.
    Are you referring to a Sony flat screen TV? What is the model number of the device to which you wish to connect the digital output from the flat screen? It is required to know the exact model number of the Sony product so that the appropriate information can be provided.
    Thank you for your post.

  • I can't get this script to produce output to the screen or a log file

    I can't get this script to produce output to the screen or a log file of the select statement results as they are executed.
    SET SERVEROUTPUT ON size 100000
    DECLARE
    v_schema     Varchar2(50);
    v_statement      Varchar2(500);
    v_name varchar2(30);
    v_id varchar2(8);
    v_pwd varchar2(16);
    v_acct varchar2(16);
    CURSOR get_schemas IS
    SELECT DISTINCT owner
    FROM all_tables
    WHERE table_name = 'USERID'
    ORDER BY owner;
    BEGIN
    OPEN get_schemas;
    LOOP
    FETCH get_schemas INTO v_schema;
    EXIT WHEN get_schemas%NOTFOUND;
              v_statement := 'SELECT name,usid,passwd,acctnum INTO v_name,v_id,v_pwd,v_acct FROM '||v_schema||'.userid';
              execute immediate v_statement;
              DBMS_OUTPUT.PUT_LINE('Name='||v_name||' ID='||v_id||' PW='||v_pwd||' AC='||v_acct);          
    END LOOP;
    CLOSE get_schemas;
    END;
    /

    Duplicate post.
    When I run this script nothing is output to the screen or spooled to a file

  • Transparant Speedtouch enables videochat AND remote screen!!!!

    By making my Speedtouch ST780 as transparant as possible, i can finally videochat AND do remote screen.
    1) I assigned my Mac the public IP address of my speedtouch, using the Speedtouch webinterface: Home > Network > Devices > Assign the public IP address of a connection to a device
         This adds the next portmapping In the ST780 portmap
       Idx Type Interface       Outside Address                Inside Address                 Use
         3 NAPT Internet        aaa.bbb.ccc.ddd                aaa.bbb.ccc.ddd                23
    2) I set the security level of the firewall of the speedtouch to disabled, using the Speedtouch webinterface: Home > Toolbox > Firewall > Configure
         This adds the next firewall rule in the ST780:
       Chain                    Nr.  Flags  Rule                                                      
       forwardlevelDisabled   1    C E    AnyTraffic    : accept   . > .
    3) I set the firewall of the Mac to " Set access for specific services and applications" and added the application ichat. Setting the Mac's firewall to "Allow all incoming connections" also works, but i need some protection now.
    Of course my VOIP telephone of the speedtouch doesnot work now, but that's the next problem to tackle. Now i start from a working situation. The steps will be:
    1) make a copy of the standard security level of the ST780, so you can edit it
    2) add a line in the portmap to map all ports not yet used to my Mac
    3) define a service for all UDP ports to be used in the firewall rules
    4)add a firewall rule, allowing traffic form any interface to any interface, or a little more strict from wan to lan and vice versa
    I will let you know the results

    It isn't a bug - setting up your Mac as a web server is easy. Connecting remotely is a little harder. A service like logmein makes it very easy but if you want to avoid third parties have a look at this article: http://lifehacker.com/software/feature/special-how-to-control-your-home-computer -from-anywhere-125607.php
    I've used Chicken of the VNC on Tiger and it works well - connecting remotely is more of a challenge but isn't too hard.

  • 'Music' displays but won't play. Settings appear correct and iPhone is selected for output.  Startup screen intermittently displays with the lower pause/play volume bar for no clear reason..... developed at the same time as play failure.  Ideas????

    'Music' displays but won't play. Settings appear correct and iPhone (3G)  is selected for output.  Startup screen intermittently displays with the lower pause/play volume bar for no clear reason..... developed at the same time as play failure.  Ideas????

    Thank you for the replies.
    Appearane of 'Music' functions (I>>   > II   <<I,   plus volume slider)  on the lock/log in screen (when first turning on the iPhone) thus far seems without pattern, i.e. regardless of which if any applications are up in the background, and indeed even when all have been quit.
    All visual aspects of 'Music' appear normal after launch including the title scroll across the top in vertical mode. However, while pressing play (>) converts the play (>) icon to pause (II), selected song does not play and the elapsed time bar (upper end between the track count and the repeat/shuffle icons) remains stationary at 0:00 or at any point to which it is dragged.  When using home sharing this same problem persists regardless of what output is selected.
    Hope that may prompt a thought somewhere.

  • IChat 4.0 - Share Remote Screen - "Slow Network" Problem

    The iChat Connection Doctor shows that I don't have the capability to "Share Remote Screen" due to "Slow Network." I am able to have someone else share my screen, but not the other way around. The "Ask to share users screen" option is grayed out. I've tried it on two different cable modems, which are not slow. Does anyone know a fix for this?
    I'm running a 867 MHz PowerPC G4 with OS 10.5.1.

    http://docs.info.apple.com/article.html?artnum=307035
    7:36 PM Saturday; December 8, 2007

Maybe you are looking for