Problem in Dloading O/P

Hi all,
I am trying to save a Classical report output as a excel file using CALL METHOD. wat i want is to give functionality to the user so he can select his own path to save the excel file. I was successful till that. but after it is saved, i am unable to open it. But if i copy and save the same excel i am able to open and see the output in excel. Can any one tell wat might be wrong??
I would hav copied the code but its too big to post it in the thread.
Also please tell me wat Call methods to be applied to download and save the O/P as excel.
I am using
  DATA: NAME TYPE STRING,
        PATH TYPE STRING,
        FULLPATH TYPE STRING,
        EXT TYPE STRING,
        FILTER TYPE STRING,
        SIZE TYPE I,
       GUIOBJ TYPE REF TO CL_GUI_FRONTEND_SERVICES,
        UACT TYPE I
        SHEET TYPE OLE2_OBJECT.
  CONDENSE V_FILE NO-GAPS.
  EXT = 'xls'.
  CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG
    EXPORTING
      DEFAULT_EXTENSION = EXT
      DEFAULT_FILE_NAME = NAME
      FILE_FILTER       = FILTER
    CHANGING
      FILENAME          = NAME
      PATH              = PATH
      FULLPATH          = FULLPATH
      USER_ACTION       = UACT.
  V_FILE = FULLPATH.
  CALL METHOD CL_GUI_FRONTEND_SERVICES=>DIRECTORY_EXIST
    EXPORTING
      DIRECTORY            = V_FILE
    RECEIVING
      RESULT               = W_RESULT
    EXCEPTIONS
      CNTL_ERROR           = 1
      ERROR_NO_GUI         = 2
      WRONG_PARAMETER      = 3
      NOT_SUPPORTED_BY_GUI = 4
      OTHERS               = 5.
  IF SY-SUBRC EQ 0.
    CONCATENATE 'Excel Saved at' V_FILE 'successfully' INTO MSG SEPARATED BY SPACE.
    MESSAGE MSG TYPE 'I'.
  ENDIF.
*Save excel speadsheet to particular filename
  CALL METHOD OF SHEET 'SaveAs'
                  EXPORTING
                            #1 = V_FILE     "filename
                            #2 = 1.                          "fileFormat
Save Excel document
CALL METHOD OF SHEET 'SAVE'.
Quits out of Excel document
  CALL METHOD OF SHEET 'QUIT'.
Closes visible Excel window, data is lost if not saved
  SET PROPERTY OF APPLICATION 'visible' = 0.
Thank you.
Best regards

If I understand well what you say, you just don't use the correct technology : if your report displays a classic output (I understand it's a "list" based on WRITE abap statement?), you can't juste use OLE (call method of) to convert and save the list to an excel file. You must use CL_GUI_FRONTEND_SERVICES=>GUI_DOWNLOAD method, passing an internal table with comma separated values.

Similar Messages

  • Help on Linux with JRE 1.3.1_02!!!

    Well..hello.
    Here is my Problem:
    I Dloaded the JRE 1.3.1_002.bin file and instaled it. No Problems, nu Errors, nothing.
    But for Example, Limewire still doesn't work! It says that
    "No Java Viritual Machine could be found from your Path Enviroment.
    Youmust install a VM prior to use this Programm."
    Well, sounds like Limewire is too stupid, I know. BUT: Other Programs like "Go ICQ"
    ( http://go.icq.com ) aren't working too, so there is definitivley a Prob wit my java.
    There is a jre 1.3.1_02 directory in my /home directory, and I can run the Control Panel. I told him to use the RE in my /home directory...and I told Konqueror to use the Ns4 Plugin...But nothing works!
    I am runing Mandrake 8.2 on a i386 class system....
    Please help, I really need ICQ and Limewire...

    Ok, I had the same problem! Goto settings>Configure Konqueror>Konqueror Browser>Java; and enable java globally! (however, the icq is just sooo slow and it "I don't know how to say it in english" all the time, then I have to Ctrl+Alt+Esc all the windows...)

  • Problem in sending the attachment using SO_NEW_DOCUMENT_ATT_SEND_API1

    Hi,
    I have a requirement to send the details of an internal table to External mail as an attachment. I have used fn.module 'SO_NEW_DOCUMENT_ATT_SEND_API1' to do so. I am getting the attachment but the data is stored in only one row when we checked it in SAP outbox. This is irrespective of TXT, XLS etc. I can not check the exact file in my external mail inbox as the connection is not established in dev & Quality systems. This question was raised earlier by other guys and there was no correct answer provided. If any of you encountered this type of problem & got the solution please help.
    Thanks,
    Ashok

    Hi Buddy,
        Hope this piece of code will definately help you out, Its working at my end.
    Thanks,
    Krishna..
    FORM p_send_email .
      FIELD-SYMBOLS: <field> TYPE ANY.
      DATA : BEGIN OF i_dload OCCURS 0 ,
             dload(1000) ,
           END OF i_dload .
      DATA: it_receivers LIKE somlreci1 OCCURS 1 WITH HEADER LINE,
              w_object_content LIKE solisti1 OCCURS 1 WITH HEADER LINE.
      DATA: w_doc_data LIKE sodocchgi1 OCCURS 0 WITH HEADER LINE.
      DATA :w_records TYPE zres_records.
      DATA: w_rsnum(10),
            w_bdmng(14),
            w_meins(4).
      DATA: ws_email LIKE adr6-smtp_addr.  "for internal e_mail address
      DATA: ws_email1 LIKE adr6-smtp_addr. "for external e_mail address
    *--Internal table declaration
      DATA: it_objpack   LIKE sopcklsti1 OCCURS 2 WITH HEADER LINE.
      DATA: it_objhead   LIKE solisti1 OCCURS 1 WITH HEADER LINE.
      DATA: it_objbin    LIKE solisti1 OCCURS 10 WITH HEADER LINE.
      DATA: it_objtxt    LIKE solisti1 OCCURS 10 WITH HEADER LINE.
      DATA: it_reclist   LIKE somlreci1 OCCURS 5 WITH HEADER LINE.
      DATA: doc_chng  LIKE sodocchgi1.
      DATA: tab_lines LIKE sy-tabix.
      DATA: w_longtext(500) TYPE c.
      DATA: v_date(10) TYPE c.
      DATA: text(200)  TYPE c.
      DATA: w_text(50) TYPE c.
    *--Get receipient address
      CLEAR it_reclist.
    *--To send error to internal mail
      ws_email = p_email.
    *--To send error to external mail
      ws_email1 = p_email1.
    *---setting name of file for csv
      CONCATENATE text-003 p_bdoc text-004 INTO w_filename.
      CONDENSE w_filename NO-GAPS.
      IF flag <> 1.
        IF p_email1 IS NOT INITIAL.
    build body of message
          CONCATENATE 'disply message ' ' ' INTO it_objtxt
           SEPARATED BY space.
          APPEND it_objtxt.
          CLEAR it_objtxt.
          it_reclist-receiver = ws_email1.
          it_reclist-rec_type = c_u.
          it_reclist-express  = ' '.
          it_reclist-com_type = 'INT'.
          APPEND it_reclist.
    Set title of object and email
          CLEAR: w_text.
         CONCATENATE 'Greenheck Packing List Data'
                            INTO w_text SEPARATED BY space.
          doc_chng-obj_descr = text-005. "w_text.
          doc_chng-obj_name  = 'Inbound EDI'.
          DESCRIBE TABLE it_objtxt LINES tab_lines.
          READ TABLE it_objtxt INDEX tab_lines.
          doc_chng-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( it_objtxt ).
    *--Move the Report Name as the Heading line for email file
          CLEAR: w_longtext.
    MOVE: text-012 TO w_longtext.
          w_longtext = 'name of report for testing'.
          it_objbin = w_longtext.
          APPEND it_objbin. CLEAR it_objbin.
    *--Append Blank Lines
          APPEND it_objbin. CLEAR it_objbin.
          APPEND it_objbin. CLEAR it_objbin.
    *User name
          CLEAR text.
          MOVE: 'User:' TO text,
                 sy-uname TO text+6.
          it_objbin = text.
          APPEND it_objbin. CLEAR it_objbin.
    ---appending heading to Internal table of Email
          CLEAR: w_longtext, w_xblnr_1 , w_aubel_1,   w_vemng_1,
                 w_matnr_1,  w_harmdesc_1, w_hc_1, w_cooland1_1,
                 w_brgew_1,  w_tknum_1,   w_vbeln_1,  w_vbeln1_1,
                 w_exidv_1,  w_vhilm_1,   w_pack_no_1,
                 w_brgew1_1, w_laeng_1,   w_breit_1,
                 w_hoehe_1,   w_vol_1.
          w_xblnr_1 = 'Cust PO No.'.
          w_aubel_1 = 'Sal Order'.
          w_vemng_1 = 'Pack Qty'.
          w_matnr_1 = 'Model no.'.
          w_harmdesc_1 = 'Hrm Desc'.
          w_hc_1 = 'Hrm Code'.
          w_cooland1_1 = 'Country of Origin'.
          w_brgew_1 = 'Net Wt.'.
          w_tknum_1 = 'Shipment'.
          w_vbeln_1 = 'Billing Doc'.
          w_vbeln1_1 = 'Delivery'.
          w_exidv_1 = 'Pkg ID'.
          w_vhilm_1 = 'Pkg Desc'.
          w_pack_no_1 = 'Pkg No.'.
          w_brgew1_1 = 'Gross Wt'.
          w_laeng_1 = 'Length'.
          w_breit_1 = 'Width'.
          w_hoehe_1 = 'Height'.
          w_vol_1 = 'Cubic Mtr'.
          CONCATENATE w_xblnr_1  w_aubel_1   w_vemng_1
                      w_matnr_1  w_harmdesc_1 w_hc_1   w_cooland1_1
                      w_brgew_1  w_tknum_1   w_vbeln_1  w_vbeln1_1
                      w_exidv_1  w_vhilm_1   w_pack_no_1
                      w_brgew1_1 w_laeng_1   w_breit_1
                      w_hoehe_1   w_vol_1
          INTO w_longtext SEPARATED BY ','.
          it_objbin = w_longtext.
          APPEND it_objbin. CLEAR it_objbin.
          LOOP AT it_tab.
            DO.
              ASSIGN COMPONENT sy-index OF STRUCTURE it_tab TO <field>.
              IF sy-subrc <> 0.
                EXIT.
              ENDIF.
    Look for Commas in the field value.  If it exists, put quotes around
    value so that the file opens correctly with all the columns aligned
    in Excel.
              SEARCH <field> FOR ',' IN CHARACTER MODE.
    If search for commas was successful.
              IF sy-subrc = 0.
                CONCATENATE '"' <field> '"' INTO <field> IN CHARACTER MODE.
              ENDIF.
              IF sy-index = 1.
                i_dload-dload = <field>.
                SHIFT: i_dload-dload  LEFT DELETING LEADING space.
              ELSE.
    Put Comma as a separator for values in IT_DLOAD internal table
                SHIFT: i_dload-dload  LEFT DELETING LEADING space.
                CONCATENATE i_dload-dload <field> INTO i_dload-dload
                            SEPARATED BY ',' IN CHARACTER MODE.
              ENDIF.
            ENDDO.
            it_objbin = i_dload-dload.
            APPEND it_objbin. CLEAR it_objbin.
          ENDLOOP.
              flag = 1.
            endif.
        ENDIF.
    ---if to send error file.
        IF p_email IS NOT INITIAL.
    build body of message
          CONCATENATE 'Errors in file ' ' ' INTO it_objtxt
           SEPARATED BY space.
          APPEND it_objtxt.
          CLEAR it_objtxt.
          it_reclist-receiver = ws_email.
          it_reclist-rec_type = c_u.
          it_reclist-express  = ' '.
          it_reclist-com_type = 'INT'.
          APPEND it_reclist.
    Set title of object and email
          CLEAR: w_text.
       CONCATENATE 'Greenheck Packing List Data'
                          INTO w_text SEPARATED BY space.
          doc_chng-obj_descr = text-005.
          doc_chng-obj_name  = 'Inbound EDI'.
          DESCRIBE TABLE it_objtxt LINES tab_lines.
          READ TABLE it_objtxt INDEX tab_lines.
          doc_chng-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( it_objtxt ).
    *--Move the Report Name as the Heading line for email file
          CLEAR: w_longtext.
    MOVE: text-012 TO w_longtext.
          w_longtext = 'name of report for testing'.
          it_objbin = w_longtext.
          APPEND it_objbin. CLEAR it_objbin.
    *--Append Blank Lines
          APPEND it_objbin. CLEAR it_objbin.
          APPEND it_objbin. CLEAR it_objbin.
    *User name
          CLEAR text.
          MOVE: 'User:' TO text,
                 sy-uname TO text+6.
          it_objbin = text.
          APPEND it_objbin. CLEAR it_objbin.
    ---appending heading to Internal table of Email
          CLEAR: w_longtext, w_xblnr_1 , w_aubel_1,   w_vemng_1,
                 w_matnr_1,  w_harmdesc_1, w_hc_1,  w_cooland1_1,
                 w_brgew_1,  w_tknum_1,   w_vbeln_1,  w_vbeln1_1,
                 w_exidv_1,  w_vhilm_1,   w_pack_no_1,
                 w_brgew1_1, w_laeng_1,   w_breit_1,
                 w_hoehe_1,   w_vol_1, w_error.
          w_xblnr_1 = 'Cust PO No.'.
          w_aubel_1 = 'Sal Order'.
          w_vemng_1 = 'Pack Qty'.
          w_matnr_1 = 'Model no.'.
          w_harmdesc_1 = 'Hrm Desc'.
          w_hc_1 = 'Hrm Code'.
          w_cooland1_1 = 'Counrty of Origin'.
          w_brgew_1 = 'Net Wt.'.
          w_tknum_1 = 'Shipment'.
          w_vbeln_1 = 'Billing doc'.
          w_vbeln1_1 = 'Delivery'.
          w_exidv_1 = 'Pkg ID'.
          w_vhilm_1 = 'Pkg Desc'.
          w_pack_no_1 = 'Pkg No.'.
          w_brgew1_1 = 'Gross Wt'.
          w_laeng_1 = 'Length'.
          w_breit_1 = 'Width'.
          w_hoehe_1 = 'Height'.
          w_vol_1 = 'Cubic Mtr'.
          w_error = 'Error'.
          CONCATENATE w_xblnr_1  w_aubel_1   w_vemng_1
                      w_matnr_1  w_harmdesc_1 w_hc_1  w_cooland1_1
                      w_brgew_1  w_tknum_1   w_vbeln_1  w_vbeln1_1
                      w_exidv_1  w_vhilm_1   w_pack_no_1
                      w_brgew1_1 w_laeng_1   w_breit_1
                      w_hoehe_1   w_vol_1 w_error
          INTO w_longtext SEPARATED BY ','.
          it_objbin = w_longtext.
          APPEND it_objbin. CLEAR it_objbin.
    *--Append the details to Internal table of Email
          LOOP AT it_tab.
            DO.
              ASSIGN COMPONENT sy-index OF STRUCTURE it_tab TO <field>.
              IF sy-subrc <> 0.
                EXIT.
              ENDIF.
    Look for Commas in the field value.  If it exists, put quotes around
    value so that the file opens correctly with all the columns aligned
    in Excel.
              SEARCH <field> FOR ',' IN CHARACTER MODE.
    If search for commas was successful.
              IF sy-subrc = 0.
                CONCATENATE '"' <field> '"' INTO <field> IN CHARACTER MODE.
              ENDIF.
              IF sy-index = 1.
                i_dload-dload = <field>.
                SHIFT: i_dload-dload  LEFT DELETING LEADING space.
              ELSE.
    Put Comma as a separator for values in IT_DLOAD internal table
                SHIFT: i_dload-dload  LEFT DELETING LEADING space.
                CONCATENATE i_dload-dload <field> INTO i_dload-dload
                            SEPARATED BY ',' IN CHARACTER MODE.
              ENDIF.
            ENDDO.
            it_objbin = i_dload-dload.
            APPEND it_objbin. CLEAR it_objbin.
          ENDLOOP.
           flag = 0.
          endif.
    -Convert to correct format----
      CALL FUNCTION 'SO_RAW_TO_RTF'
        TABLES
          objcont_old = it_objbin
          objcont_new = it_objbin.
    create the control table entry for the main email
      DESCRIBE TABLE it_objtxt LINES tab_lines.
      CLEAR it_objpack-transf_bin.
      it_objpack-head_start = 1.
      it_objpack-head_num   = 0.
      it_objpack-body_start = 1.
      it_objpack-body_num   = tab_lines.
      it_objpack-doc_type   = 'RAW'.
      APPEND it_objpack.
      DESCRIBE TABLE it_objbin LINES tab_lines.
      it_objpack-head_start = 1.
      it_objpack-head_num   = 0.
      it_objpack-body_start = 1.
      it_objpack-body_num   = tab_lines.
      it_objpack-transf_bin = c_x.
      it_objpack-doc_type   = 'CSV'.
      it_objpack-obj_descr  = w_filename. "'billing doc no.csv'.
      it_objpack-obj_name   = 'Billing Doc'.
      it_objpack-doc_size   = tab_lines * 255.
      APPEND it_objpack.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = doc_chng
         PUT_IN_OUTBOX              = c_x
          commit_work                = c_x
        TABLES
          packing_list               = it_objpack
         object_header              = it_objhead
          contents_bin               = it_objbin
          contents_txt               = it_objtxt
          receivers                  = it_reclist
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          operation_no_authorization = 4
          OTHERS                     = 99.
      IF sy-subrc <> 0.
        WRITE: / 'failure in sending mail'.
      ELSE.
         if flag = 0.
           MESSAGE s999(pp) WITH text-007.
         endif.
         if flag = 1.
           MESSAGE s999(pp) WITH text-006.
         endif.
       WRITE: / 'success in sending mail'.
      ENDIF.
        ENDFORM.                    " p_send_email

  • Netra T1 booting problems, works only if I "boot disk"

    I'm having a problem booting my Netra T1 AC200. When I issue the "poweron" command from the LOM or when I issue the "reset" command from the ok prompt, the system fails to boot, gives me an error, and drops back to the ok prompt. However, if I type "boot disk" at the ok prompt, the system will boot just fine. I have tried playing with setenv, but eventually returned all of those values to their defaults. I have a fresh install of Solaris 9.
    The error message and the output of printenv are below.
    Thank you in advance!!
    LOM event: +1h36m0s host reset
    Resetting ...
    Netra T1 200 (UltraSPARC-IIe 500MHz), No Keyboard
    OpenBoot 4.0, 1024 MB memory installed, Serial #51329155.
    Ethernet address 0:3:ba:f:38:83, Host ID: 830f3883.
    000000000000001500000000f000000000000000000000000000000000000000ffffffffd3858020000000000000000d00000004
    Watchdog Reset
    Externally Initiated Reset
    ok
    ok printenv
    Variable Name Value Default Value
    ras-shutdown-enabled? false false
    shutdown-temp 75 75
    warning-temp 70 70
    env-monitor disabled disabled
    diag-passes 1 1
    diag-continue? 0 0
    diag-targets 0 0
    diag-verbosity 0 0
    keyboard-click? false false
    keymap
    scsi-initiator-id 7 7
    #power-cycles 0 No default
    system-board-serial# No default
    system-board-date No default
    ttyb-rts-dtr-off false false
    ttyb-ignore-cd true true
    ttya-rts-dtr-off false false
    ttya-ignore-cd true true
    ttyb-mode 9600,8,n,1,- 9600,8,n,1,-
    ttya-mode 9600,8,n,1,- 9600,8,n,1,-
    pcia-probe-list 8,5,6,7 8,5,6,7
    pcib-probe-list 7,c,3,d,5 7,c,3,d,5
    mfg-mode off off
    diag-level max max
    fcode-debug? false false
    output-device ttya ttya
    input-device ttya ttya
    load-base 16384 16384
    auto-boot-retry? false false
    boot-command boot boot
    auto-boot? true true
    watchdog-reboot? false false
    diag-file
    diag-device net net
    boot-file
    boot-device disk net disk net
    local-mac-address? false false
    net-timeout 0 0
    ansi-terminal? true true
    screen-#columns 80 80
    screen-#rows 34 34
    silent-mode? false false
    use-nvramrc? false false
    nvramrc
    security-mode none No default
    security-password No default
    security-#badlogins 0 No default
    oem-logo No default
    oem-logo? false false
    oem-banner No default
    oem-banner? false false
    hardware-revision No default
    last-hardware-update No default
    diag-switch? false false
    ok

    The drive is disk0 on my Netra T1 AC200. Typing "boot disk" results in the system booting just fine. "reset-all" or "poweron" causes the error described above. My aliases are as follows:
    ok devalias
    lom /pci@1f,0/pci@1,1/ebus@c/SUNW,lomh@14,200000
    dload /pci@1f,0/pci@1,1/network@c,1:,
    net2 /pci@1f,0/pci@1,1/network@5,1
    net /pci@1f,0/pci@1,1/network@c,1
    diskx /pci@1f,0/pci@1/scsi@8,1/disk@0,0
    diskx3 /pci@1f,0/pci@1/scsi@8,1/disk@3,0
    diskx2 /pci@1f,0/pci@1/scsi@8,1/disk@2,0
    diskx1 /pci@1f,0/pci@1/scsi@8,1/disk@1,0
    diskx0 /pci@1f,0/pci@1/scsi@8,1/disk@0,0
    scsix /pci@1f,0/pci@1/scsi@8,1
    disk /pci@1f,0/pci@1/scsi@8/disk@0,0
    disk3 /pci@1f,0/pci@1/scsi@8/disk@3,0
    disk2 /pci@1f,0/pci@1/scsi@8/disk@2,0
    disk1 /pci@1f,0/pci@1/scsi@8/disk@1,0
    disk0 /pci@1f,0/pci@1/scsi@8/disk@0,0
    scsi /pci@1f,0/pci@1/scsi@8
    cdrom /pci@1f,0/pci@1,1/ide@d/cdrom@0,0:f
    ide /pci@1f,0/pci@1,1/ide@d
    ttyb /pci@1f,0/pci@1,1/isa@7/serial@0,2e8
    ttya /pci@1f,0/pci@1,1/isa@7/serial@0,3f8

  • Problem Synching Podcasts of type Quicktime

    I see others have been having problems synching podcasts as well. I pulled these podcasts from the iTunes store (free) and am surprised that they won't synch. (Tekzilla - episode "Windows Thumbnail Generator") I understand that some aren't created for iPods but **aren't all the ones at the iTunes store expected to work on the iPod??** They are working within iTunes, but I'd like them on the iPod with out have to do that lengthy conversion.
    I have tried running the diagnostics and I get the message that "one or more of the synch tests has failed", when I click on help it takes me to a useless web page showing me the exact error I got, but not how to fix it. **Has anyone else had this error message?** I just set this up today, after dloading all the latest software. I have been able to synch my music and MP4 podcasts.
    Cheers.

    I understand that some aren't created for iPods but *aren't all the ones at the iTunes store expected to work on the iPod??*
    It seems not... Radiohead's In Rainbows podcasts for example won't sync without conversion. Perhaps the classic accepts a smaller subset of video formats than earlier iPods or the podcasting guidelines don't specify exactly which sub-formats can be used. Like you I'm surprised to find podcasts that won't sync but the responsibility here is with the publisher rather than the iTunes store.
    tt2

  • Miglia Director's Cut Take 2, old VHS source - vertical sync offset problem

    I'm using a 20" iMac G5 and a Miglia Director's Cut Take 2 to import old family videos from VHS.
    Some of these tapes are up to 21 years old, so they aren't exactly in the best shape. Still, I'm doing everything I can to get them in shape for capturing (including using the original tapes from the VHS camcorder, and exercising the tapes by fast forwarding them to the end then rewinding to the beginning before capturing).
    Unfortunately, I'm having problems with the Director's Cut losing vertical synchronization whenever a worn out bit of the tape causes picture to be glitchy for a few seconds. The Director's Cut doesn't ever "fix" the sync on its own, until the next "glitch" in the tape happens to put it back in sync (or further out of sync).
    This offset basically causes my captured video to have the bottom half of a frame on top, then the VHS head switch noise (which should be on the bottom of the video, not in the middle of it), then the top half of the next frame on the bottom. The VCR's on screen display, when I enable it, is offset too (this happens with both of the VCRs I tested). This means that the sync offset is NOT due to a VCR failing to properly syncronize the video (not to mention the unlikelyhood of that being the problem, due to the way that the VHS standard encodes pictures onto the tape).
    What I find especially strange is that the vertical blanking interval doesn't appear in the middle of the video, right after the VHS head switch noise. The vertical blanking interval lasts for about 30 field lines (60 frame lines once the fields are combined in iMovie), so it should be quite prominent. This leads me to believe that the Director's Cut has managed to sucessfully capture the frames WITH proper vertical synchronization - which is then broken again somewhere between the Director's Cut and iMovie. My theory is that the Director's Cut isn't smart enough to change the read offset in its buffer between its analog to digital converter and its DV encoder. Another possibility: iMovie isn't doing the same thing between its Firewire interface and its DV decoder.
    I can force the Director's Cut Take 2 to "restart" and regain sync by stopping input capture/monitoring in iMovie then starting it again, which also flips the DC2 between "Capture" and "Export" modes. Unfortunately, this is not a real solution for me - I don't want to babysit the computer while I'm importing all these long tapes. Plus, this causes me to lose a few seconds of video.
    I've also tried to find ways to fix this problem using iMovie effect plugins. The closest I've got is using the "Vertical Hold" effect from the free Effects Pack 2 plugins (http://yorgle.cis.rit.edu/Software/iMovie/#dload) by Jerry Lawrence. Unfortunately, this plugin is really only useful for simulating, not correcting, vertical sync problems. It doesn't reference the previous or next frame in the DV file to get the top or bottom half of the picture. This results in a tearing effect, because, after I apply the filter, half of the picture is still from a different "frame" on the VHS tape.
    Is my Director's Cut Take 2 defective, or is this normal behavior for the converter? If this is an unavoidable problem with the converter, is there any iMovie effect plugin that could correct it?
    (If they would be helpful, I can post framegrabs of the DV file, and also framegrabs of the results of trying to use the "Vertical Hold" effect plugin.)
    imac g5 (isight) 2.1ghz (base configuration), miglia director's cut take 2   Mac OS X (10.4.5)  

    Hello, dbloom,
    Is there a particular reason you are using Miglia for VHS conversion/capture?
    I captured my old VHS tapes the way the other poster suggested by recording them onto DV tapes in my camcorder. (My computer setup is not convenient to do any direct connections from a VCR with a converter).Then, I imported the DV tapes to iMovie directly from the camcorder. I had no stoppages of imports/capture; the importing continued as long as my DV tapes, some of which were 80min.
    This method also gives you a digital copy of the original VHS tape. I don't know about yours, but some of mine were getting to be pretty bad. I like having the DV tape of the raw footage to save. The DV versions are actually quite a bit better than the VHS tapes.
    I have made iMovies of our family movies and photos of 15 years so far, burning the final edited versions to DVDs. I think I have made at least 40 movies so far, most of which are nearly 2hrs long. I also save the final movies back to DV tapes so that I have multiple backups of our family movies.
    Just to add my 2 cents worth

  • Problems with MSI K8MM-ILSR mATX after BIOS flash...

    I flashed it with the latest AMI bios dated 12/21/2004 and i used the LiveUpdate Windows-Based flashing. Everything was perfect and ran fine, comp rebooted and everything is still running great, EXCEPT....
    Now my memory wont run at DDR400, There is a DDR Setting, if anyone wants to DLOAD the manual and look with me....Its either set to 'Limit' or 'Auto'. Auto on the old bios loaded at DDR400, but now its DDR333. When i choose limit, my DDR Options come up, DDR100, 200, 266, 333, 400. When i set it to 400, DDR333 STILL comes up. Aside from that i dont know where the dividers are. CPU said my ram is at 333 aswell. Its stating that the mobo is using CPU/12, which i dont like.
    Any help or ideas? I dont really wanna use the old bios.
    EDIT: I tried removing CMOS battery, resetting CMOS, and using the second to last BIOS, still no DDR400.

    rakstr,
    Since I now have two boards with memory setup restrictions (see stats) from MSI, I decided to work the problem with my own fix.  That's Danno's "don't get mad, get even-better-results policy".  I had a choice of hacking the Bios or something more entertaining...... 
    Last night, I wrote a PCR File for the AMD Athlon 64 memory controller, i.e. the Hypertransport bridge.  I googled to find one, but apparently no one's bothered to write one.  I'm doing alpha testing now with the PCR, and the results have been good.   Are you familiar with H. Oda's WPCREDIT/WPCRSET utilities?  I see some of the folks in this Forum have been using it to toggle 1T/2T Command Rate.  Since Memtest86+ can provide alterations to settings on the fly to establish best memory tweaks with stability, I'm now able to recreate any of those settings with WPCREDIT from within Windows.  I had fun last night tweaking a setting with WPCREDIT running on screen side-by-side with the memory window from CPU-Z.  As I'd tweaked a setting, CPU-Z would almost immediately update (on it's own) to the altered setting....fun fun.    It was good verification of the PCR.  I do have more testing and documentation to do.
    I need a beta tester/volunteer in a day or so.  Are you interested?  Are you familiar with those utilities?
    Danno

  • Disk booting problem

    I have problem with one of my solaris and after power-on, it go to test and than try to get boot net. If I insist to boot from disk it gave me the following error:
    ok boot disk -s
    Boot device: /pci@1f,0/ide@d/disk@0,0 File and args: -s
    Can't open boot device
    I have tried to do:
    ok test-all
    Testing /pci@1f,0/ide@d
    Testing /pci@1f,0/usb@a
    Testing /pci@1f,0/ethernet@5
    Testing /pci@1f,0/ethernet@c
    Testing /pci@1f,0/pmu@3
    Testing /pci@1f,0/pmu@3/i2c@0,0/i2c-nvram@0,a0
    Testing /pci@1f,0/isa@7/serial@0,2e8
    Testing /pci@1f,0/isa@7/serial@0,3f8
    [Used as Console]
    Testing /pci@1f,0/isa@7/SUNW,lomh@0,8010
    where is the disk?

    ok probe-ide
    Device 0 ( Primary Master )
    Not Present
    Device 1 ( Primary Slave )
    Not Present
    Device 2 ( Secondary Master )
    ATA Model: ST340016A
    Device 3 ( Secondary Slave )
    Not Present
    ok show-disks
    a) /pci@1f,0/ide@d/cdrom
    b) /pci@1f,0/ide@d/disk
    c) /pci@1f,0/isa@7/SUNW,lomh@0,8010
    q) NO SELECTION
    Enter Selection, q to quit: b
    /pci@1f,0/ide@d/disk has been selected.
    Type ^Y ( Control-Y ) to insert it in the command line.
    e.g. ok nvalias mydev ^Y
    for creating devalias mydev for
    /pci@1f,0/ide@d/disk
    ok devalias
    disk /pci@1f,0/ide@d/disk@0,0
    rtc /pci@1f,0/isa@7/rtc@0,70
    usb /pci@1f,0/usb@a
    flash /pci@1f,0/isa@7/flashprom@1f,0
    lom /pci@1f,0/isa@7/SUNW,lomh@0,8010
    i2c-nvram /pci@1f,0/pmu@3/i2c@0,0/i2c-nvram@0,aa
    net1 /pci@1f,0/ethernet@5
    dload1 /pci@1f,0/ethernet@5:,
    dload /pci@1f,0/ethernet@c:,
    net0 /pci@1f,0/ethernet@c
    net /pci@1f,0/ethernet@c
    cdrom /pci@1f,0/ide@d/cdrom@3,0:f
    disk3 /pci@1f,0/ide@d/disk@3,0
    disk2 /pci@1f,0/ide@d/disk@2,0
    disk1 /pci@1f,0/ide@d/disk@1,0
    disk0 /pci@1f,0/ide@d/disk@0,0
    ide /pci@1f,0/ide@d
    floppy /pci@1f,0/isa@7/dma/floppy
    ttyb /pci@1f,0/isa@7/serial@0,2e8
    ttya /pci@1f,0/isa@7/serial@0,3f8
    from the commands, I can see the disks, but how can I check if the disk is ok or not? and my second disk is mirrored fully to first one, how can I boot form second disk?
    My system is netra x1

  • Problems installing perl-goo-canvas

    I want to install shutter, however, it failed because it can't build perl-goo-canvas, so when i try to install perl-goo-canvas, i meet the following problem:
    ==> Building and installing package
    ==> Making package: perl-goo-canvas 0.06-2 (Sat Jun 23 12:12:29 CST 2012)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    -> Downloading Goo-Canvas-0.06.tar.gz...
    % Total % Received % Xferd Average Speed Time Time Time Current
    Dload Upload Total Spent Left Speed
    0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
    0 103k 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 30 103k 30 32768 0 0 19030 0 0:00:05 0:00:01 0:00:04 100 103k 100 103k 0 0 51069 0 0:00:02 0:00:02 --:--:-- 181k
    ==> Validating source files with md5sums...
    Goo-Canvas-0.06.tar.gz ... Passed
    ==> Extracting Sources...
    -> Extracting Goo-Canvas-0.06.tar.gz with bsdtar
    ==> Starting build()...
    Perl API version v5.16.0 of Cairo does not match v5.14.0 at /usr/lib/perl5/core_perl/DynaLoader.pm line 213.
    Compilation failed in require at (eval 8) line 1.
    BEGIN failed--compilation aborted at (eval 8) line 1.
    Checking if your kit is complete...
    Looks good
    Warning: Guessing NAME [Goo-Canvas] from current directory name.
    Can't locate object method postamble_clean via package Glib::MakeHelper (perhaps you forgot to load Glib::MakeHelper?) at Makefile.PL line 153.
    ==> ERROR: A failure occurred in build().
    Aborting...
    ==> ERROR: Makepkg was unable to build perl-goo-canvas.
    can anyone help me solve this problem ? thank you!

    Thanks much!!  Once I saw that it was part of the base-devel meta package I realized I must never have installed that (could have sworn I had, but apparently not so much), fixed all my issues.  MUCHAS GRACIAS!!

  • I feel like this is fast/easy to solve, but I'm stuck AS 3 problem

    I thought I'd teach my grade 10 programming class Action Scripting 3.0. We've already gone through SmallBasic and they understand conditional logic, looping etc.. to give you a bit of background so I thought we'd tackle it in an OOP language.
    I haven't tackled A.S. since back in 2.0 and I think maybe I'm missing something. I used this tutorial as a foundation and updated it to reflect AS3.0 for my course notes.
    That said, when making their quiz, (a simple 2 question quiz that tallies the score at the end of the quiz) I keep getting a logic error. Everything runs smoothly using the controls, I'm getting the variables return properly to the Interpreter pane, but the logic evaluation at the end returns a glitch where it counts against my last clicked value and uses it twice to evaluate truth. Likely I'm missing something simple and it'll take somebody who knows Flash well about 3 seconds to ID my problem.
    Thanks in advance.
    FLA file if you want to browse it:
    FLA file
    SWF file if you want to view that:
    SWF file
    If you don't want to dload the files then here's AS code at the 3 locations (q1, q2, quizEnd)
    Code Block 1 at frame 1:
    // Initialize main timeline variables
    // next, create variables to store user's answers:
    var q1Answer;          // User's answer for question 1
    var q2Answer;          // User's answer for question 2
    //next, create a variable to track number of questions answered correctly:
    var totalCorrect = 0;  // Counts number of correct answers
    //finally, stop the movie at the first question:
    stop();
    choice1_btn.addEventListener(MouseEvent.CLICK, answer1);
    function answer1(event_object:MouseEvent){
    q1Answer = 1;
    gotoAndStop("q2");
    trace(q1Answer);
    choice2_btn.addEventListener(MouseEvent.CLICK, answer2);
    function answer2(event_object:MouseEvent){
    q1Answer = 2;
    gotoAndStop("q2");
    trace(q1Answer);
    choice3_btn.addEventListener(MouseEvent.CLICK, answer3);
    function answer3(event_object:MouseEvent){
    q1Answer = 3;
    gotoAndStop("q2");
    trace(q1Answer);
    Code Block 2 at frame 10
    choice1_btn.addEventListener(MouseEvent.CLICK, answer21);
    function answer21(event_object:MouseEvent){
    q2Answer = 1;
    gotoAndStop("quizEnd");
    trace(q2Answer);
    choice2_btn.addEventListener(MouseEvent.CLICK,answer22);
    function answer22(event_object:MouseEvent){
    q2Answer = 2;
    gotoAndStop("quizEnd");
    trace(q2Answer);
    choice3_btn.addEventListener(MouseEvent.CLICK,answer23);
    function answer23(event_object:MouseEvent){
    q2Answer = 3;
    gotoAndStop("quizEnd");
    trace(q2Answer);
    Code Block 3 at frame 20
    if (q1Answer ==  3) {
      totalCorrect = totalCorrect + 1;
      trace("Value for Q1 is 1 point");
      } else {
              trace("Wrong answer #1 " + q1Answer);
    if (q2Answer == 3) {
              totalCorrect++; //simply adds 1 more to the previous value of totalCorrect//
              trace("Value for Q2 is 1 point");
    } else {
                  trace("Wrong answer #2 " + q2Answer);
    //displays final score on interpreter
    trace("Your total is "+totalCorrect+"/2 points");
    //displays the answer on the stage
    var txtFld:TextField = new TextField();
    addChild(txtFld);
    txtFld.text = ("Your total is" + totalCorrect);
    txtFld.appendText ("/2 points");
    //extra bits to un-comment once text output is understood
    //txtFld.wordWrap = true;
    //txtFld.textColor = 0xFF00FF
    //txtFld.width=150
    //txtFld.height = 60

    Let's say I click on button1 at frame 1 returning a value for q1Answer as 1, then button 3 at frame 10 returning a value for q2Answer as 3, I'll get both questions marked as right. Button 3 is the "right button" in each case so only q1Answer = 3 and q2Answer=3 should be correct.
    Here's the trace output if I click as above:
    1
    3
    Value for Q1 is 1 point
    Value for Q2 is 1 point
    Your total is 2/2 points
    3
    If I click on 1 and 2 say instead, here's the Interpreter result:
    1
    2
    Wrong answer #1 2
    Wrong answer #2 2
    Your total is 0/2 points
    2
    Mystifying.
    kglad wrote:
    looks ok.
    which trace is giving an unexpected result?

  • ITunes Install PROBLEM. Error Code 2330

    I cannot install itunes. I get to the setup and it quickly says error code 2330 and something like a problem with this package or something. Please help I need this soon.

    Now when I dloaded itunes and try to install, I am getting Error Code 2330??
    what is the full text of your 2330, K?
    sometimes it's easiest to send us a screenshot of the error message box. there are instructions on how to do that in the following user tip:
    hudgie: Taking screenshots to help with problems

  • Problem posting to group wiki/blog using podcast capture

    I am having a problem posting to 2 wiki blogs using podcast capture and montage workflow. A similar montage workflow works great on another group wiki blog. I am getting this log error:
    *Xgrid Job: 72 is Running*
    *Wed Jan 06 08:16:37 -0600 2010 -- Unknown agent: 7A49DCBE-B57B-4ED8-A250-9CA538A06856*
    *Wed Jan 06 08:16:37 -0600 2010 -- Unknown agent: 8251443A-5F69-40A0-8172-12DA139F8DAC*
    *Wed Jan 06 08:16:38 -0600 2010 -- Unknown agent: 24690148-E8E5-40B3-A46F-6C3C652B04CF*
    *Wed Jan 06 08:17:39 -0600 2010 -- Unknown agent: 7A49DCBE-B57B-4ED8-A250-9CA538A06856*
    *Wed Jan 06 08:17:39 -0600 2010 -- Unknown agent: 8251443A-5F69-40A0-8172-12DA139F8DAC*
    *Wed Jan 06 08:17:41 -0600 2010 -- Unknown agent: 24690148-E8E5-40B3-A46F-6C3C652B04CF*
    *Wed Jan 06 08:18:33 -0600 2010 -- Xgrid Job: 72 is Failed*
    Has someone seen this problem using Mac OS X Server 10.6.2, Podcast Producer server.

    Yes, the related log:
    Processing paginated document as landscape...
    Processing Page... (1 / 8)
    Processing Page... (2 / 8)
    Processing Page... (3 / 8)
    Processing Page... (4 / 8)
    Processing Page... (5 / 8)
    Processing Page... (6 / 8)
    Processing Page... (7 / 8)
    Processing Page... (8 / 8)
    Running /Network/Servers/tmstec.mtsu.edu/Volumes/datastore/PodcastProducer/Shared/Caches/Resources/Tools/preflightscript
    ########### STDERR ###########
    Wed Jan 6 08:18:09 tmstec.mtsu.edu pcastaction[7454] <Notice>: PodcastProducer::Actions::Annotate: START: [Working directory: /Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Shared/UUID s/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Working] {Arguments: --prb=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Share d/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb --input=edit-core-master.mov --no_fail} v.2
    DEPRECATED: This command has been deprecated please use /usr/bin/pcastaction
    Wed Jan 6 08:18:09 tmstec.mtsu.edu pcastaction[7454] <Notice>: PodcastProducer::Actions::Annotate: 'edit-core-master.mov' was successfully annotated with {:software=>"Podcast Producer", :title=>"Copyright Law", :copyright=>""}
    Wed Jan 6 08:18:09 tmstec.mtsu.edu pcastaction[7454] <Notice>: PodcastProducer::Actions::Annotate: FINISH
    Wed Jan 6 08:16:39 tmstec.mtsu.edu pcastaction[7239] <Notice>: PodcastProducer::Actions::Watermark: START: [Working directory: /Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Shared/UUID s/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Working] {Arguments: --prb=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Share d/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb --watermark=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer /Shared/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Workin g/0009CD91-99E3-4EA8-8089-F6CB75692CCF.pwf/Contents/Resources/Images/8ea6d.png --input=import-plugin-document-generated.mov --size=10 --opacity=70 --position=Top Right --output=edit-core-intermediate-1.mov --editinfofile=edit-info.yaml} v.2
    Wed Jan 6 08:16:40 tmstec.mtsu.edu qc2movie[7247] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    2010-01-06 08:16:42.282 qc2movie[7247:903] * Failed updating composition repository cache
    Wed Jan 6 08:16:42 tmstec.mtsu.edu pcastaction[7239] <Notice>: PodcastProducer::Actions::Watermark: FINISH
    Wed Jan 6 08:17:02 tmstec.mtsu.edu pcastaction[7343] <Notice>: PodcastProducer::Actions::Merge: START: [Working directory: /Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Shared/UUID s/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Working] {Arguments: --prb=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Share d/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb --input1=edit-core-intermediate-4.mov --input2=/Network/Servers/tmstec.mtsu.edu/Volumes/datastore/PodcastProducer/Shared/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Cont ents/Resources/Working/0009CD91-99E3-4EA8-8089-F6CB75692CCF.pwf/Contents/Resourc es/Movies/tmsteclogo.mov --duration=1 --pqz=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Share d/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Working/0009 CD91-99E3-4EA8-8089-F6CB75692CCF.pwf/Contents/Resources/Compositions/DissolveTra nsition.pqz --firstinput_is_maincontent --output=edit-core-intermediate-5.mov --editinfofile=edit-info.yaml} v.2
    Wed Jan 6 08:17:03 tmstec.mtsu.edu qc2movie[7355] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    2010-01-06 08:17:05.711 qc2movie[7355:903] * Failed updating composition repository cache
    2010-01-06 08:17:08.623 qttrackadd[7359:903] * Failed updating composition repository cache
    Wed Jan 6 08:17:09 tmstec.mtsu.edu pcastaction[7343] <Notice>: PodcastProducer::Actions::Merge: FINISH
    Wed Jan 6 08:16:55 tmstec.mtsu.edu pcastaction[7275] <Notice>: PodcastProducer::Actions::Merge: START: [Working directory: /Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Shared/UUID s/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Working] {Arguments: --prb=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Share d/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb --input1=/Network/Servers/tmstec.mtsu.edu/Volumes/datastore/PodcastProducer/Shared/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Cont ents/Resources/Working/0009CD91-99E3-4EA8-8089-F6CB75692CCF.pwf/Contents/Resourc es/Movies/tmsteclogo.mov --input2=edit-core-intermediate-3.mov --duration=2 --pqz=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Share d/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Working/0009 CD91-99E3-4EA8-8089-F6CB75692CCF.pwf/Contents/Resources/Compositions/ScaleTransi tion.pqz --secondinput_is_maincontent --output=edit-core-intermediate-4.mov --editinfofile=edit-info.yaml --direction=0} v.2
    Wed Jan 6 08:16:56 tmstec.mtsu.edu qc2movie[7289] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    2010-01-06 08:16:58.302 qc2movie[7289:903] * Failed updating composition repository cache
    2010-01-06 08:17:01.246 qttrackadd[7337:903] * Failed updating composition repository cache
    Wed Jan 6 08:17:01 tmstec.mtsu.edu pcastaction[7275] <Notice>: PodcastProducer::Actions::Merge: FINISH
    Wed Jan 6 08:17:10 tmstec.mtsu.edu pcastaction[7362] <Notice>: PodcastProducer::Actions::Encode: START: [Working directory: /Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Shared/UUID s/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Working] {Arguments: --prb=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Share d/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb --input=edit-core-intermediate-5.mov --output=edit-core-master.mov --encoder=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/S hared/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Working/ 0009CD91-99E3-4EA8-8089-F6CB75692CCF.pwf/Contents/Resources/Presets/master.plist } v.2
    2010-01-06 08:17:12.706 ruby[7362:e0b] * Failed updating composition repository cache
    Wed Jan 6 08:18:08 tmstec.mtsu.edu pcastaction[7362] <Notice>: PodcastProducer::Actions::Encode: FINISH
    Wed Jan 6 08:16:43 tmstec.mtsu.edu pcastaction[7249] <Notice>: PodcastProducer::Actions::Title: START: [Working directory: /Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Shared/UUID s/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Working] {Arguments: --prb=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Share d/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb --pqz=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Share d/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Working/0009 CD91-99E3-4EA8-8089-F6CB75692CCF.pwf/Contents/Resources/Compositions/FlyingTitle .pqz --output=edit-core-intermediate-2.mov --editinfofile=edit-info.yaml --enable_author=yes --enable_copyright=yes --enable_date=yes --enable_organization=yes --enable_title=yes} v.2
    Wed Jan 6 08:16:44 tmstec.mtsu.edu qc2movie[7252] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    2010-01-06 08:16:46.297 qc2movie[7252:903] * Failed updating composition repository cache
    Wed Jan 6 08:16:46 tmstec.mtsu.edu pcastaction[7249] <Notice>: PodcastProducer::Actions::Title: FINISH
    Wed Jan 6 08:16:47 tmstec.mtsu.edu pcastaction[7257] <Notice>: PodcastProducer::Actions::Merge: START: [Working directory: /Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Shared/UUID s/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Working] {Arguments: --prb=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Share d/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb --input1=edit-core-intermediate-2.mov --input2=edit-core-intermediate-1.mov --duration=3 --pqz=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Share d/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Working/0009 CD91-99E3-4EA8-8089-F6CB75692CCF.pwf/Contents/Resources/Compositions/SwingTransi tion.pqz --secondinput_is_maincontent --output=edit-core-intermediate-3.mov --editinfofile=edit-info.yaml --direction=0} v.2
    Wed Jan 6 08:16:48 tmstec.mtsu.edu qc2movie[7268] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    2010-01-06 08:16:50.810 qc2movie[7268:903] * Failed updating composition repository cache
    2010-01-06 08:16:53.762 qttrackadd[7272:903] * Failed updating composition repository cache
    Wed Jan 6 08:16:54 tmstec.mtsu.edu pcastaction[7257] <Notice>: PodcastProducer::Actions::Merge: FINISH
    Wed Jan 6 08:18:10 tmstec.mtsu.edu pcastaction[7456] <Notice>: PodcastProducer::Actions::GetPosterImage: START: [Working directory: /Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Shared/UUID s/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Working] {Arguments: --prb=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Share d/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb --input=edit-core-master.mov --output=export-core-preview-image.png --no_fail} v.2
    Wed Jan 6 08:18:11 tmstec.mtsu.edu pcastaction[7456] <Notice>: PodcastProducer::Actions::GetPosterImage: Since no time was provided, the 'getposterimage' tool will grab a frame at 1/3 of the movie's duration (13.3711111111111 seconds)
    Wed Jan 6 08:18:11 tmstec.mtsu.edu pcastaction[7456] <Notice>: PodcastProducer::Actions::GetPosterImage: Successfully created poster image ('export-core-preview-image.png') by grabbing frame from 'edit-core-master.mov' at 13.3711111111111 seconds.
    Wed Jan 6 08:18:11 tmstec.mtsu.edu pcastaction[7456] <Notice>: PodcastProducer::Actions::GetPosterImage: FINISH
    Wed Jan 6 08:18:10 tmstec.mtsu.edu pcastaction[7457] <Notice>: PodcastProducer::Actions::Encode: START: [Working directory: /Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Shared/UUID s/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Working] {Arguments: --prb=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Share d/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb --input=edit-core-master.mov --output=export-plugin-quicktime-E43D860D-31BB-454F-83AD-B2ECFFED9E92.m4v --encoder=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/S hared/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Working/ 0009CD91-99E3-4EA8-8089-F6CB75692CCF.pwf/Contents/Resources/Presets/ipod.plist} v.2
    CoreMediaAuthoring: the source video is color-untagged. Assuming Rec 601...
    Wed Jan 6 08:18:25 tmstec.mtsu.edu pcastaction[7457] <Notice>: PodcastProducer::Actions::Encode: FINISH
    Wed Jan 6 08:16:35 tmstec.mtsu.edu pcastaction[7217] <Notice>: PodcastProducer::Actions::Documents2Movie: START: [Working directory: /Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Shared/UUID s/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Working] {Arguments: --prb=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Share d/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb --input=Copyright Law and Podcasting-C4931603-8008-4B71-B3FD-DEBC424C5AB0.pptx --pqz=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Share d/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Working/0009 CD91-99E3-4EA8-8089-F6CB75692CCF.pwf/Contents/Resources/Compositions/PageCurlTra nsition.pqz --image_duration=3 --transition_duration=1 --output=import-plugin-document-generated.mov --transition_direction=0} v.2
    Wed Jan 6 08:16:36 tmstec.mtsu.edu qc2movie[7233] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    2010-01-06 08:16:38.358 qc2movie[7233:903] * Failed updating composition repository cache
    Wed Jan 6 08:16:38 tmstec.mtsu.edu pcastaction[7217] <Notice>: PodcastProducer::Actions::Documents2Movie: FINISH
    Wed Jan 6 08:16:34 tmstec.mtsu.edu pcastaction[7214] <Notice>: PodcastProducer::Actions::Preflight: START: [Working directory: /Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Shared/UUID s/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Working] {Arguments: --prb=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Share d/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb} v.2
    Wed Jan 6 08:16:34 tmstec.mtsu.edu pcastaction[7214] <Notice>: PodcastProducer::Actions::Preflight: Running preflight script [Script path: /Network/Servers/tmstec.mtsu.edu/Volumes/datastore/PodcastProducer/Shared/Caches/Resources/Tools/preflightscript] {Arguments: }
    Wed Jan 6 08:18:26 tmstec.mtsu.edu pcastaction[7471] <Notice>: PodcastProducer::Actions::Publish2Library: START: [Working directory: /Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Shared/UUID s/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Working] {Arguments: --prb=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Share d/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb --file=export-plugin-quicktime-E43D860D-31BB-454F-83AD-B2ECFFED9E92.m4v --outfile=publish-plugin-podcastlibrary-export-plugin-quicktime-E43D860D-31BB-4 54F-83AD-B2ECFFED9E92.yaml --type=production --mimetype=video/x-m4v --tag=TMSTEC --tag=STEM} v.2
    warning: peer certificate won't be verified in this SSL session
    % Total % Received % Xferd Average Speed Time Time Time Current
    Dload Upload Total Spent Left Speed
    0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
    102 1022 102 1022 0 0 11127 0 --:--:-- --:--:-- --:--:-- 13447
    Wed Jan 6 08:18:27 tmstec.mtsu.edu pcastaction[7471] <Notice>: PodcastProducer::Actions::Publish2Library: Added file and created corresponding .ppi file to the Podcast Repository Bundle (File Path: '/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Shared/UUI Ds/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Published/FD66ADF 4-AC4F-499A-A9E2-FACD2E690EBE.m4v', Format: com.apple.video.ipod.lc, MIME type: video/x-m4v, isPrivate: false, Tags:["TMSTEC", "STEM"])
    Wed Jan 6 08:18:27 tmstec.mtsu.edu pcastaction[7471] <Notice>: PodcastProducer::Actions::Publish2Library: Wrote outfile to 'publish-plugin-podcastlibrary-export-plugin-quicktime-E43D860D-31BB-454F-83AD- B2ECFFED9E92.yaml'
    Wed Jan 6 08:18:27 tmstec.mtsu.edu pcastaction[7471] <Notice>: PodcastProducer::Actions::Publish2Library: FINISH
    Wed Jan 6 08:16:35 tmstec.mtsu.edu pcastaction[7218] <Notice>: PodcastProducer::Actions::Publish2Library: START: [Working directory: /Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Shared/UUID s/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Working] {Arguments: --prb=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Share d/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb --file=Copyright Law and Podcasting-C4931603-8008-4B71-B3FD-DEBC424C5AB0.pptx --outfile=publish-plugin-podcastlibrary-import-plugin-document-original.yaml --type=original --index=1 --tag=TMSTEC --tag=STEM} v.2
    warning: peer certificate won't be verified in this SSL session
    % Total % Received % Xferd Average Speed Time Time Time Current
    Dload Upload Total Spent Left Speed
    0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
    102 1022 102 1022 0 0 6867 0 --:--:-- --:--:-- --:--:-- 7742
    Wed Jan 6 08:16:35 tmstec.mtsu.edu pcastaction[7218] <Notice>: PodcastProducer::Actions::Publish2Library: Added file and created corresponding .ppi file to the Podcast Repository Bundle (File Path: '/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Shared/UUI Ds/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Published/28861BB 0-58A6-455F-84A8-244F523BFBC7.pptx', Format: , MIME type: application/vnd.ms-powerpoint, isPrivate: false, Tags:["TMSTEC", "STEM"])
    Wed Jan 6 08:16:36 tmstec.mtsu.edu pcastaction[7218] <Notice>: PodcastProducer::Actions::Publish2Library: Wrote outfile to 'publish-plugin-podcastlibrary-import-plugin-document-original.yaml'
    Wed Jan 6 08:16:36 tmstec.mtsu.edu pcastaction[7218] <Notice>: PodcastProducer::Actions::Publish2Library: FINISH
    Wed Jan 6 08:18:26 tmstec.mtsu.edu pcastaction[7472] <Notice>: PodcastProducer::Actions::WikiServer: START: [Working directory: /Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Shared/UUID s/A824CF1C-CC3E-4796-A841-C48B296D0977.prb/Contents/Resources/Working] {Arguments: --prb=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/Share d/UUIDs/A824CF1C-CC3E-4796-A841-C48B296D0977.prb --input=export-plugin-quicktime-E43D860D-31BB-454F-83AD-B2ECFFED9E92.m4v --docroot=/Network/Servers/tmstec.mtsu.edu/Volumes/data_store/PodcastProducer/S hared/Podcasts --url=http://tmstec.mtsu.edu:8171 --posting_url=http://tmstec.mtsu.edu/groups/tmstec/blog --username=tmstec --otp=KREqQ8ejIz5CdFVcDzuViQ== --pcast_server=https://tmstec.mtsu.edu:8170/podcastproducer --outfile=publish-plugin-wikiserver-692a736e889d71474136c62bc3bb1e08.yaml --mimetype=video/x-m4v} v.2
    Wed Jan 6 08:18:28 tmstec.mtsu.edu pcastaction[7472] <Critical>: PodcastProducer::Actions::WikiServer: Authentication to the Wiki Server failed

  • E90 thread loader problem

    Can anyone please tell me if it is a problem,or why am I constantly getting the following message on my E90 :
    "Application Closed dloader thread kern-exec 3"It is very annoying -How can I stop this?What have I done wrong?
    Thankyou
    Marius2

    I think that a FW reload or an upgrade should solvethe problem

  • A problem with threads

    I am trying to implement some kind of a server listening for requests. The listener part of the app, is a daemon thread that listens for connections and instantiates a handling daemon thread once it gets some. However, my problem is that i must be able to kill the listening thread at the user's will (say via a sto button). I have done this via the Sun's proposed way, by testing a boolean flag in the loop, which is set to false when i wish to kill the thread. The problem with this thing is the following...
    Once the thread starts excecuting, it will test the flag, find it true and enter the loop. At some point it will LOCK on the server socket waiting for connection. Unless some client actually connects, it will keep on listening indefinatelly whithought ever bothering to check for the flag again (no matter how many times you set the damn thing to false).
    My question is this: Is there any real, non-theoretical, applied way to stop thread in java safely?
    Thank you in advance,
    Lefty

    This was one solution from the socket programming forum, have you tried this??
    public Thread MyThread extends Thread{
         boolean active = true;          
         public void run(){
              ss.setSoTimeout(90);               
              while (active){                   
                   try{                       
                        serverSocket = ss.accept();
                   catch (SocketTimeoutException ste){
                   // do nothing                   
         // interrupt thread           
         public void deactivate(){               
              active = false;
              // you gotta sleep for a time longer than the               
              // accept() timeout to make sure that timeout is finished.               
              try{
                   sleep(91);               
              }catch (InterruptedException ie){            
              interrupt();
    }

  • A problem with Threads and MMapi

    I am tring to execute a class based on Game canvas.
    The problem begin when I try to Play both a MIDI tone and to run an infinit Thread loop.
    The MIDI tone "Stammers".
    How to over come the problem?
    Thanks in advance
    Kobi
    See Code example below:
    import java.io.IOException;
    import java.io.InputStream;
    import javax.microedition.lcdui.Graphics;
    import javax.microedition.lcdui.Image;
    import javax.microedition.lcdui.game.GameCanvas;
    import javax.microedition.media.Manager;
    import javax.microedition.media.MediaException;
    import javax.microedition.media.Player;
    public class MainScreenCanvas extends GameCanvas implements Runnable {
         private MainMIDlet parent;
         private boolean mTrucking = false;
         Image imgBackgound = null;
         int imgBackgoundX = 0, imgBackgoundY = 0;
         Player player;
         public MainScreenCanvas(MainMIDlet parent)
              super(true);
              this.parent = parent;
              try
                   imgBackgound = Image.createImage("/images/area03_bkg0.png");
                   imgBackgoundX = this.getWidth() - imgBackgound.getWidth();
                   imgBackgoundY = this.getHeight() - imgBackgound.getHeight();
              catch(Exception e)
                   System.out.println(e.getMessage());
          * starts thread
         public void start()
              mTrucking = true;
              Thread t = new Thread(this);
              t.start();
          * stops thread
         public void stop()
              mTrucking = false;
         public void play()
              try
                   InputStream is = getClass().getResourceAsStream("/sounds/scale.mid");
                   player = Manager.createPlayer(is, "audio/midi");
                   player.setLoopCount(-1);
                   player.prefetch();
                   player.start();
              catch(Exception e)
                   System.out.println(e.getMessage());
         public void run()
              Graphics g = getGraphics();
              play();
              while (true)
                   tick();
                   input();
                   render(g);
          * responsible for object movements
         private void tick()
          * response to key input
         private void input()
              int keyStates = getKeyStates();
              if ((keyStates & LEFT_PRESSED) != 0)
                   imgBackgoundX++;
                   if (imgBackgoundX > 0)
                        imgBackgoundX = 0;
              if ((keyStates & RIGHT_PRESSED) != 0)
                   imgBackgoundX--;
                   if (imgBackgoundX < this.getWidth() - imgBackgound.getWidth())
                        imgBackgoundX = this.getWidth() - imgBackgound.getWidth();
          * Responsible for the drawing
          * @param g
         private void render(Graphics g)
              g.drawImage(imgBackgound, imgBackgoundX, imgBackgoundY, Graphics.TOP | Graphics.LEFT);
              this.flushGraphics();
    }

    You can also try to provide a greater Priority to your player thread so that it gains the CPU time when ever it needs it and don't harm the playback.
    However a loop in a Thread and that to an infinite loop is one kind of very bad programming, 'cuz the loop eats up most of your CPU time which in turn adds up more delays of the execution of other tasks (just as in your case it is the playback). By witting codes bit efficiently and planning out the architectural execution flow of the app before start writing the code helps solve these kind of issues.
    You can go through [this simple tutorial|http://oreilly.com/catalog/expjava/excerpt/index.html] about Basics of Java and Threads to know more about threads.
    Regds,
    SD
    N.B. And yes there are more articles and tutorials available but much of them targets the Java SE / EE, but if you want to read them here is [another great one straight from SUN|http://java.sun.com/docs/books/tutorial/essential/concurrency/index.html] .
    Edited by: find_suvro@SDN on 7 Nov, 2008 12:00 PM

Maybe you are looking for

  • How to set  the CR print job name that displayed in Printer job queue?

    As following image shows, when I press the Print button in Crystal Report Preview GUI, a print job is sent to Windows Printer Spool. [Windows Printer queue dialog snapshot|http://www.box.net/shared/96vq4qa2mp] The "Document Name" in the dialog is lik

  • Accounting documents not released

    Hi Guru's When saving the billing document the accouting documents were not released ,wat may b the probable reason.I have checked the sd configuration,It was ok .Pls let me know wat may be the missed link . Thanks in advance rgds

  • HP4507 all in one doesn't print

    I bought one of these before and had same problem so I sent it back. I didn't realise I had bought the same model this time. And same problem all the print set up pages and test pages are great. When I try to print from my pc or from online it doesn'

  • What am I missing?

    I'm a new user of Dreamweaver, stepping in to fix up some problems with my Garden's website. You can see that the side-column links for MEMBERSHIP and SUPPORT US go to the same page. I've found what I assume to be the changeable template for that inf

  • Where can I find OVI suite synced messages after P...

    Hi All, I have done a message synch some time back in Nokia OVI suite and removed all messages from my Nokia N73. After that I did format my PC and installed a fresh copy of Windows 7. How can I get those messages back. Before formatting I have taken