Finesse -( UCCX 10) - Create a list of actions for Call ends

Hi,
I want to create a list of actions in Finesse, when the call ends for Agent, it dials another Trigger.  How can I do that?
There are two options, Browser pop-up or HTTP Request. Unfortunately there is not enough document about this on the net.
Thanks,
HM

Hi,
Actually my requirement is to allow users to select multiple values from an LOV i.e. 7,8,11 (comma seperated). As it is not possible with the standard list of values to select multiple values so I'm using the above document from the Metalink to create an LOV with the same look and feel as the standard LOV of forms. I've tried all the steps but unfortunately no luck.
Elements in List => put one item with space <--- i'm confused on this one, may be i'm not setting this properly.
Thanks
regards
RM

Similar Messages

  • TS3988 How do I create a List (multiple recipients) for my iCloud email?

    What steps must I take to create a List (multiple recipients) for my iCloud email?  I will be corresponding with a fied group of contacts over the course of a 3-month project.  I need to create a List/Alias that will send the same message to some 18-20 members of this group in a single email exchange.

    lets try this again. A PST file is an outlook file. Thunderbird does not and never has created them.
    https://addons.mozilla.org/en-US/thunderbird/addon/importexporttools/
    Use the add-on to export your mail as EML. This is a fairly standard format that just abut any mail client can read. Except Outlook.

  • Create a list or container for states of a statemachine

    Hi,
    I am working on an application where several different types of devices will be put into a test fixture for board level testing.  Based on the type of board, i need to create an ordered list of all of the tests necessary for the device.  I have a state machine and a unique state for each of the tests and am trying to figure out how to create a list of tests for the specific device.  I want to have a check in each of the states to remove the first item of the list and then take the next value and wire it to the shift register used to go from state to state.  This should allow the state machine to switch to the appropriate state based on the device type and its necessary test sequence.
    Should this be implemented with an array?  Is there some easier container to work with for this use case?  I need a container that will allow me to easily add between 5 and 30 state names (based on the needs of the device type) and easily remove them or increment a pointer to the next state in the container.
    Thanks,
    Gary
    Solved!
    Go to Solution.

    I would avoid using the stacked sequence at all cost. This is not a very good approach to the solution. How are you determining which tests need to be run at which time? I would use a loop to enqueue the desired tests. You can use a separate table (which could be initialized from an external source such as an ini file) which defines all your available tests, hich hardware they apply to and the order they would need to be run. When your specific hardware is selected you can iterate over the table and select the tests that need to be executed. Using the state machine is still a good idea since it allows you to interrupt the exection as well as insert or include other general tasks that may be required during the tests.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot

  • Help with creating a list, adding to it, calling it and putting it in a combobox with c#

    I have been making a word RPG game with the windows form in c#, and I have encountered some problems along the way. Right now I have a character creation screen, and a screen that displays all of the stats, and gear equipment. I was thinking about adding
    some basic/starting items and put the list into a combobox. I created a separate class and named it HeadItems.cs, and put all of the possible stats, as well as ID and string name. I set a constructor with many parameters, so I can simply input this code, and
    have it generate a head item.
    HeadItems.Add(new HeadItem("Test Head", 0,2,0,0,1));
    Then I was trying to make the combobox, called cboHeadItems, and put its DataSource as HeadItems. Though I am not sure how to get it so it displays the first array, or the string name in the combobox. I am also not sure if I should create the list in the
    player entity class or its own class. From there I am not sure how to call the list on other forms/classes or how to make the name appear in the combobox for people to select.

    Hiya!
    It isn't that simple I'm afraid! You cant make the datasource of a combobox a 'HeadItem' because it doesn't know what that is and it won't know how to handle it.
    There are a few different ways to do it. You can pass it an array, a dataset, a datatable to mention just a few.
    Probably the simplest way is this:
    foreach(HeadItem hi in HeadItems){
    comboBox1.Items.Add(hi[0]); //Depends on your setup
    Antony
    :D

  • Create a List of receivers for the FM SO_NEW_DOCUMENT_SEND_API1 on screen

    Hello everybody,
    I user the FM SO_NEW_DOCUMENT_SEND_API1 to send mails from SAP. I send the mail to different types of receivers. SAP users, external receivers, ...
    I have define this list of receivers with a distribiution list in the Business Workplace (SO23).
    There you define for each row of the list which type is it.
    Now I have a problem.
    I want to implement a report which sends the output to n receivers. This receivers can be different types. I don't want to use a static distribution list in SO23.
    I will send the mail to n dynamic receivers which should be defined in the selection screen.
    The problem is that I don't know how I can define the receiver type for an receiver.
    This means I need something like the table in SO23 on my screen where I can insert any receivers with the adress and the adapted type.
    Do anybody of knows how I can solve this behaviour?
    Regards and thank you
    Christian
    Edited by: Christian Swonke on Mar 4, 2008 9:58 AM

    Hi
    Try this,
    Add the recipients email address
      CLEAR wa_receivers.
      REFRESH it_receivers.
      wa_receivers-receiver   = c_mailid_1.
      wa_receivers-rec_type   = c_u.
      wa_receivers-com_type   = c_int.
      wa_receivers-notif_del  = c_x.
      wa_receivers-notif_ndel = c_x.
      APPEND wa_receivers TO it_receivers.
    Add the recipients email address
      CLEAR wa_receivers.
      REFRESH it_receivers.
      wa_receivers-receiver   = c_mailid_2.
      wa_receivers-rec_type   = c_u.
      wa_receivers-com_type   = c_int.
      wa_receivers-notif_del  = c_x.
      wa_receivers-notif_ndel = c_x.
      APPEND wa_receivers TO it_receivers.
    Add the recipients email address
      CLEAR wa_receivers.
      REFRESH it_receivers.
      wa_receivers-receiver   = c_mailid_3.
      wa_receivers-rec_type   = c_u.
      wa_receivers-com_type   = c_int.
      wa_receivers-notif_del  = c_x.
      wa_receivers-notif_ndel = c_x.
      APPEND wa_receivers TO it_receivers.
    Add the recipients email address
      CLEAR wa_receivers.
      REFRESH it_receivers.
      wa_receivers-receiver   = c_mailid_4.
      wa_receivers-rec_type   = c_u.
      wa_receivers-com_type   = c_int.
      wa_receivers-notif_del  = c_x.
      wa_receivers-notif_ndel = c_x.
      APPEND wa_receivers TO it_receivers.
    Add the recipients email address
      CLEAR wa_receivers.
      REFRESH it_receivers.
      wa_receivers-receiver   = c_mailid_5.
      wa_receivers-rec_type   = c_u.
      wa_receivers-com_type   = c_int.
      wa_receivers-notif_del  = c_x.
      wa_receivers-notif_ndel = c_x.
      APPEND wa_receivers TO it_receivers.
    Add the recipients email address
      CLEAR wa_receivers.
      REFRESH it_receivers.
      wa_receivers-receiver   = c_mailid_6.
      wa_receivers-rec_type   = c_u.
      wa_receivers-com_type   = c_int.
      wa_receivers-notif_del  = c_x.
      wa_receivers-notif_ndel = c_x.
      APPEND wa_receivers TO it_receivers.
    Perform send_file_as_email_attachment.
    *&      Form  send_file_as_email_attachment
    Form for sending the data in an e-mail as an Excel attachment
    FORM send_file_as_email_attachment.
    Declaration of the local variables used for passing the values to the function module.
      DATA: ld_mtitle              TYPE  sodocchgi1-obj_descr,
            ld_email               TYPE  somlreci1-receiver,
            ld_format              TYPE  so_obj_tp ,
            ld_attdescription      TYPE  so_obj_nam ,
            ld_attfilename         TYPE  so_obj_des ,
            ld_sender_address      TYPE  soextreci1-receiver,
            ld_sender_address_type TYPE  soextreci1-adr_typ.
    Passing the values to the local variables
      ld_mtitle              = text-001.                                   " Mail title.
      ld_format              = c_xls.                                      " Mail format.
      ld_attdescription      = text-012.                                   " Mail attachment description.
      ld_attfilename         = text-011.                                   " Filename.
      ld_sender_address      = ''.                                         " sender address.
      ld_sender_address_type = ''.                                         " sender addres type.
    Fill the document data and get size of attachment
      CLEAR: wa_docdata, wa_attach.
      READ TABLE it_attach INTO wa_attach INDEX v_lines.
      wa_docdata-doc_size   = ( v_lines - c_1 ) * c_255 + STRLEN( wa_attach ).
      wa_docdata-obj_langu  = sy-langu.
      wa_docdata-obj_name   = c_saprpt.
      wa_docdata-obj_descr  = ld_mtitle.
      wa_docdata-sensitivty = c_f.
      CLEAR it_attachment.
      REFRESH it_attachment.
      it_attachment[] = it_attach[].
    Describe the body of the message
      CLEAR wa_packing_list.
      REFRESH it_packing_list.
      wa_packing_list-transf_bin = space.
      wa_packing_list-head_start = c_1.
      wa_packing_list-head_num   = c_0.
      wa_packing_list-body_start = c_1.
      DESCRIBE TABLE it_message LINES wa_packing_list-body_num.
      wa_packing_list-doc_type = c_raw.
      APPEND wa_packing_list TO it_packing_list.
    Create attachment notification
      wa_packing_list-transf_bin = c_x.
      wa_packing_list-head_start = c_1.
      wa_packing_list-head_num   = c_1.
      wa_packing_list-body_start = c_1.
      DESCRIBE TABLE it_attachment LINES wa_packing_list-body_num.
      wa_packing_list-doc_type   =  ld_format.
      wa_packing_list-obj_descr  =  ld_attdescription.
      wa_packing_list-obj_name   =  ld_attfilename.
      wa_packing_list-doc_size   =  wa_packing_list-body_num * c_255.
      APPEND wa_packing_list TO it_packing_list.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
        EXPORTING
          document_data              = wa_docdata
          put_in_outbox              = c_x
          sender_address             = ld_sender_address
          sender_address_type        = ld_sender_address_type
          commit_work                = c_x
        IMPORTING
          sent_to_all                = wa_sent_all
        TABLES
          packing_list               = it_packing_list
          contents_bin               = it_attachment
          contents_txt               = it_message
          receivers                  = it_receivers
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          document_type_not_exist    = 3
          operation_no_authorization = 4
          parameter_error            = 5
          x_error                    = 6
          enqueue_error              = 7
          OTHERS                     = 8.
      IF sy-subrc = 0.
        MESSAGE s019(ztrack_toolmsg) WITH text-002.             " E-mails have been sent to the mentioned people.
       LEAVE LIST-PROCESSING.
      ELSE.
        MESSAGE s019(ztrack_toolmsg) WITH text-003.             " Message sending failed.
       LEAVE LIST-PROCESSING.
      ENDIF.
      REFRESH: it_packing_list,
               it_attachment,
               it_message,
               it_receivers.
    ENDFORM.                    " send_file_as_email_attachment
    Regards
    Rohini.

  • I want to create a distinct (default) ringtone for calls from people not in my address book?

    I want to have one default ringtone for calls from people who are not in my address book.  I would also have a distinct ( different) ringtone for those people IN my address book.

    Seastar214 wrote:
    I want to have one default ringtone for calls from people who are not in my address book.  I would also have a distinct ( different) ringtone for those people IN my address book.
    Then do that.

  • How to create a single action for adding a border and signature for portrait AND landscape images???

    i would love to be able to create a single photoshop action for adding a border, plus a signature in the bottom right corner, that works for both portrait and landscape images.
    need i say more?!
    i already have an action that adds a signature in the centre of the border at the bottom of the image e.g. the image below. what i want though is for that signature to be on the RHS and for the same action to work for portrait images as well.
    supplementary info: reason for this is that I want to be able to export 300 wedding images (mix of landscape and portrait images) from lightroom in my pre-selected order (meaning the files are labelled from 001 to 300, ordered according to how the wedding day unfolded) and then use PS to add the border and the signature, in the same place, and for it to work for both orientations.
    i need this to work for full sized exported jpeg images, i.e. i want the files that i give on CD to my clients to include my signature in this manner. so I don't want to copy the initial layer and then reduce the second layer size to leave a border around the second layer.
    i hope i've been clear and that someone can help me here. I think that this sort of presentation makes such a difference to final printed image, and I DONT want to have to go to all 300 images picking out the landscape from portrait ones (although this may be what I have to do and wouldn't really take that long but surely there's a better way!!!!).
    Thanks in advance photoshoppers ...

    It is actually quite easy to do if you have a good understanding of how Photoshop works.  To be able to handle any size Landscape and Portrait you need to scale the document to a known width or height.  Once the document is resized to the width or height it easy.  When yot resize the document you use Image size with resample NOT checked.  Not a single image pixels is changed all the happens is the documents DPI is set to the proper DPI resolution to print that size.  This lets you add a border sized for and document.  You can use Canvas Size check relative and  leatve the anchor point centered and set width and height to 2" this will add 1"on all sides. Use Canvas size a second time move the anchor point to the top center check relative and set height 1" the will add an additional 1" border on the bottom.  You then record a text layer with your Name title or what ever to the top left of the image. Select all ant the align the text layer to the selection to move it to the bottom right.
    Adding a couple of scripts to the action you can make sure there is a background layer so the added canvas will be filled with pixels.  You can restore the document to its original DPI resolution to retain the images print size. Down load my crafting actions package it contains a dozen scripts to be used within actions. There are text file with tips and guidelines additionaly there is one on dealing with document size and includes a sample action set with a watermarking action the can watermark and size image. The Action set is also saved as a text file with additional comments I added my downloads can be found here http://mouseprints.net/Photoshop.html

  • Create a list

    How do I creat a list of records. I can't use an array because the groupings have different number of records and the records have different data types. For example
    a record consists of a group, section, and a task/test. How do I create a list of these for me to process and report on downstream in my application?

    "[email protected]" wrote in message news:<[email protected]>...
    > How do I creat a list of records. I can't use an array because the
    > groupings have different number of records and the records have
    > different data types. For example
    > a record consists of a group, section, and a task/test. How do I
    > create a list of these for me to process and report on downstream in
    > my application?
    Make an array of clusters. (This is going to get complicated, so I am
    making a list)
    On the FRONT PANEL:
    1.Make a cluster
    2.Make 3 arrays of strings labeled group array, section array, and
    task/test array, then drag these arrays into the cluster listed
    above.(I suggest strings because they can pass text and numbers
    easily)
    3.Make an array, then drag the cluster listed above into this array.
    This will now make n copies of your cluster, each one having it's own
    trio of arrays inside.
    If for intance, a particular case has more than 1 task/test, start
    listing the tasks in task/test array. Then when you finally unbundle
    the arrays, do whatever you need to do until each array is empty.
    Remember that making arrays and clusters eats up large amounts of
    memory quickly, so this will probably slow the computer down.

  • Creating Distribution List in CRM 2007

    Hiya
    Could somebody please help, is there a way to create Distribution List in CRM for a list of emails, contact from the contacts list.
    Thanks in anticipation.
    Regards
    Ranjeet

    Hello Ranjeet
    Transaction code SO23
    X Shared distribution lists
    Name : ZXXXX
    Title : XXXXX Mail Distribution
    Don't enter anything in the Folder field.
    Folder : Click the down arrow
    Next screen :
    Folder Name : ZXXXX
    Folder Title : Mailing address
    Folder Area : Shared
    Click Create Folder
    Next screen :
    Indexing : Tick
    Specify the 'Retention period of a document in this folder (days)'.
    Choose the 'Folder access authorization'.
    Finish, click the Enter button.
    Click the tabstrips 'Distri. list content' to type in your mailing list.
    Save your entries.
    Finally, test it by sending a mail via the distribution list ZXXXX.
    Regards
    Shikha

  • UWL action for SAPWebDynproLauncher gives NullPointerException

    Hello,
    I have create a action for call a WebDynpro Application. But it gives a exception. The error comes before my WD Application was calling.
    java.lang.NullPointerException
        at com.sap.netweaver.bc.uwl.ui.control.UWLActionControl.handleActionFromTable(UWLActionControl.java:642)
        at com.sap.netweaver.bc.uwl.ui.UWLMainView.onActionUWLActions(UWLMainView.java:607)
        at com.sap.netweaver.bc.uwl.ui.wdp.InternalUWLMainView.wdInvokeEventHandler(InternalUWLMainView.java:469)
        at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87)
        at com.sap.tc.webdynpro.progmodel.controller.Action.fire(Action.java:67)
        ... 27 more
    I use the transaction SWFVISU. I have re-registered the System and the item. I customized my own view in configuration file with <DisplayAttribute name="detailIcon" actionRef="launchWebDynPro"/> . With sap standard action i have no problem but with my own.
    Can anybody help me.
    best regards
    karsten

    Karsten,
    Can you post two things to help us resolve your problem:
    1. The section of the UWL XML file which configures launching the Web Dynpro
    2. The URL of the Web Dynpro application when you launch it in "preview" mode
    Here's a sample which worked for me on a previous project:
      <ItemTypes>
        <ItemType name="uwl.task.webflow.TS90000001" connector="WebFlowConnector" defaultView="ESCRView" defaultAction="launchWebDynPro" executionMode="pessimistic">
          <ItemTypeCriteria externalType="TS90000001" connector="WebFlowConnector"/>
          <Actions>
            <Action name="launchWebDynPro" groupAction="" handler="SAPWebDynproLauncher" returnToDetailViewAllowed="yes" launchInNewWindow="no">
              <Properties>
                <Property name="WebDynproApplication" value="UWLChoiceList"/>
                <Property name="WebDynproDeployableObject" value="local/ESCR01"/>
                <Property name="display_order_priority" value="5"/>
              </Properties>
              <Descriptions default="Launch Choice List">
              </Descriptions>
            </Action>
          </Actions>
          <Menu>
            <MenuItem name="launchWebDynPro" actionRef="launchWebDynPro"/>
          </Menu>
        </ItemType>
    Regards,
    Darren

  • Automator Actions for Pages

    I just checked in Automator, and I can't find a single Pages Automator action.
    With how useful it could be I can't fathom why there wouldn't be some built in.

    I don't know about third-party actions created for them, but Automator does show some actions from Keynote. There no actions from Pages or Numbers in Automator when I review the listing.
    Actions for Keynote include (21 total):
    Add Chart to Slide
    Add File To Slide
    Add Slide to Keynote Presentation
    Change master of Keynote slide
    Close Keynote Presentation
    Create Image Slide
    Delete Slide
    Extract Notes
    Make New Keynote Presentation
    Move Keynote slide
    Open Keynote Presentations
    Print Keynote Presentation
    Quit Keynote
    Save Keynote Presentation
    Set Slide Title
    Set Transition for Slide
    Show Next Keynote Slide
    Show Previous Keynote Slide
    Show Specified Keynote Slide
    Start Keynote Slideshow
    Stop Keynote Slideshow
    In general, actions are usually a part of the application, so no need to install separately unless the actions are supplied afterwards.

  • Error message when installing Flash Player : List of actions not found

    I get an error message when trying to install Flash Player.
    I use Windows 64 bit with Internet Explorer 64x.
    I'm able to download, the installation starts but it stops before completing.
    I get this error message (loosely transalated) :
    Installation encountered errors
    List of actions not found
    How can I fix this ?
    Thank you
    Annie

    I solved my problem by installing the Flash Player from home.
    The network security at work prevented me from completing installation.
    Thanks for your help.
    Annie
    2012/9/26 Pat Willener <[email protected]>
       Re: Error message when installing Flash Player : List of actions not
    found  created by Pat Willener <http://forums.adobe.com/people/pwillener>in
    Installing Flash Player - View the full discussion<http://forums.adobe.com/message/4728064#4728064

  • How to see List of action type & action code in Form View..

    Hi~ Guys ... please help me ~
    In Design Tab of workspace...
    I have worked  like this..
    step 1) I made a Form Wiew using a Add Input Form from BI Query Icon ,
    step 2) submit button was made in the configure element automatically ,,
    step 3) click the submit button to execute the query and it works normally.
                (action code is in the action tab of control properties.. maybe it was created automatically..)
    but, I would like to create submit button in toolbar,,
    step 1)  I click the create toolbar in context menu of form view
    step 2) click the add button to create toolbar button,,
    step 3) rename Button
    step 4) I'd like to click the PLUS button to add the  acton name  and action code
                 -> Menu name : select the type of action that will be triggered by this field  (is located under the define button )
    but , step 4).. I do not see List of Action Name like Submit Form
                          Plus Icon do not working..
    I don't know what the problem is  ..( I installed xml parser 4.0 , svg viewer 3.0 , explorer 8 )
    I wonder I missed a step or I did not install other programs
    Please help me ~

    Hi~
    Thank you for your interest in my question..
    My operating system is Window 7(Enterprise K, service pack 1)
    and..
    my internet browser is Internet Explorer 8(8.07601.17514)
    and..
    VC version is 7.0
    ( GML/Client/VC server/Flex/Potal Content/Potal connector - Version is 700.23 )
    I tried to run in compatibility mode as you said..
    but, The results are same as old,,
    Is it any relation in Client(PC) setting ?
    Regards,
    Evandave

  • Need help creating a folder action for creating folders based on filenames.

    I want to create a folder action that will monitor a folder and every time a file is added to the folder it will create a directory using the filename (minus the extension) and move the file the that directory

    on run {input, parameters} -- create folders from file names and move
      set output to {} -- this will be a list of the moved files
      repeat with anItem in the input -- step through each item in the input
        set {theContainer, theName, theExtension} to (getTheNames from anItem)
        try
          set destination to (makeNewFolder for theName at theContainer)
          tell application "Finder"
            move anItem to destination
            set the end of the output to the result as alias -- success
          end tell
        on error errorMessage -- duplicate name, permissions, etc
          log errorMessage
          # handle errors if desired - just skip for now
        end try
      end repeat
      return the output -- pass on the results to following actions
    end run
    to getTheNames from someItem -- get a container, name, and extension from a file item
      tell application "System Events" to tell disk item (someItem as text)
        set theContainer to the path of the container
        set {theName, theExtension} to {name, name extension}
      end tell
      if theExtension is not "" then
        set theName to text 1 thru -((count theExtension) + 2) of theName -- just the name part
        set theExtension to "." & theExtension
      end if
      return {theContainer, theName, theExtension}
    end getTheNames
    to makeNewFolder for theChild at theParent -- make a new child folder at the parent location if it doesn't already exist
      set theParent to theParent as text
      if theParent begins with "/" then set theParent to theParent as POSIX file as text
      try
        return (theParent & theChild) as alias
      on error errorMessage -- no folder
        log errorMessage
        tell application "Finder" to make new folder at theParent with properties {name:theChild}
        return the result as alias
      end try
    end makeNewFolder
    This script almost does what I need except for the fact that it screws up on files with periods in them
    for example
    1.2.3.4.txt
    will create the directorys 1, 2, 3, and 4 instead of 1.2.3.4

  • Using a newly created Library document to create a list item and attach itself

    I have a workflow that moves a document from one library to another.
    When a document is moved to a certain library I want to create a list item with a link to the document in the list item.  Keep in mind there could be 10 files submitted to the library, so then in my list I would want 10 new list items created for
    each file, with a link to the individual file. or is there a way to attach the document to a newly created list item programmatically?
    is this possible?

    Hi,
    According to your post, my understanding is that you wanted to use a newly created Library document to create a list item and attach itself.
    I recommend to create a workflow assocaited to the second library, and start the workflow automatically when an item is created.
    Then add action as below:
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

Maybe you are looking for

  • Using "real instruments" - not showing up

    I'm very new to Mac and Garageband, so this may be simple. I'm using a Roland RD300sx as my keyboard. I loaded the driver. Followed all other directions provided by tutorial and manuals, but after 2 hours I can't get GB to recognize the input. I saw

  • Clearing documents through EBS

    Hi Experts, Is there a way to clear the documents of sub G/L's or Clearing accounts with out having any information in the EBS file. To be more specific on my requirement  when i paid the vendor invoices DR Vendor CR  Clearing account When EBS statem

  • Need help...  greyed out wifi(no wi-fi)

    after restoring my ipad i tried to get back online and seeing that my wifi tab in general settings was greyed and it says no wi-fi anybody can help with this problem?? i tried restore, update to newest itunes, newest firmware(3.2.2) and tried to hard

  • PO Release Procedure

    Hi experts! We have created two (2) release codes for PO with no release prerequisites. Details are as follows: E1 - total net order value is less than or equal 1 million E2 - total net order value is greater than or equal to zero However, when E1 is

  • Unable to play AVI files with Quicktime

    I installed Perian and the xvid codec but still cannot play all AVI videos in QT. Not really a problem since I have VLC. However it would be nice to be able to play AVI files in QT as well