Save filename to data in file

I want to use Automator (or some equivalent) to file save either a pages or PDF doc with a unique name derived from text in the document itself.
I am mail merging and then saving each record as a separate file. The trick is saving each doc with a file name so that i can associate each file with a unique id in that document
Any thoughts?

I don't have Pages either, so I'm still not sure how you are getting the file name from the document text. If you have a method of getting the desired text into an Automator variable, then the next step would be to pass that to a rename action.
There is a hackish method described in this Mac OSX Hint that describes how to make an action use variables when it normally doesn't accept variables, although I'm not sure if it will work with the *Rename Finder Items* action. I have a *Change Name of Finder Items* action that can use variables when renaming - if you want to give that a try it is available here.
To handle multiple items, you would need to run through your workflow for each individual item, so the *Dispense Items Incrementally* action at http://automator.us/leopard/downloads/ can be used to loop through your workflow, processing your input items one at a time.

Similar Messages

  • How to save internal table data to file on local disk from smartforms?

    Hi there,
    I'm trying to save internal table data into .csv file on presentation server from within smartforms using GUI_DOWNLOAD function.
    This function works fine from abap program, but when I call it from smartforms it does nothing. Form prints ok and there is no file created on local dick.
    Is there a way to save smartforms internal table data to local disk?
    Thanks in advance,
    Baske

    Hi Jey,
    Thanks for your prompt replay.
    Unfortunately, Iu2019ve tried both your suggestions without success. Smartforms behaves just like in case of GUI_DOWNLOAD. There is no file saved on disk.
    Do you have any other idea?
    BR,
    Baske

  • How to auto save output with date added to file name, and email the results?

    Hi,
    We found a script to capture disk space usage, that automatically places the results into an Excel file. We would like the script to autosave this file to a specific directroy with the date ran as part of teh file name. We would then like these results to
    be emailed to us if possible. (also if possible to highlight cell in red that is 5% OR less available disk space would be great)
    Here is what we have:
    $erroractionpreference = “SilentlyContinue”
    $a = New-Object -comobject Excel.Application
    $a.visible = $True
    $b = $a.Workbooks.Add()
    $c = $b.Worksheets.Item(1)
    $c.Cells.Item(1,1) = “Machine Name”
    $c.Cells.Item(1,2) = “Drive”
    $c.Cells.Item(1,3) = “Total size (GB)”
    $c.Cells.Item(1,4) = “Free Space (GB)”
    $c.Cells.Item(1,5) = “Free Space (%)”
    $c.cells.item(1,6) = "Name "
    $d = $c.UsedRange
    $d.Interior.ColorIndex = 19
    $d.Font.ColorIndex = 11
    $d.Font.Bold = $True
    $d.EntireColumn.AutoFit()
    $intRow = 2
    $colComputers = get-content "C:\Servers.txt"
    foreach ($strComputer in $colComputers)
    $colDisks = get-wmiobject Win32_LogicalDisk -computername $strComputer -Filter “DriveType = 3"
    foreach ($objdisk in $colDisks)
    $c.Cells.Item($intRow, 1) = $strComputer.ToUpper()
    $c.Cells.Item($intRow, 2) = $objDisk.DeviceID
    $c.Cells.Item($intRow, 3) = “{0:N0}” -f ($objDisk.Size/1GB)
    $c.Cells.Item($intRow, 4) = “{0:N0}” -f ($objDisk.FreeSpace/1GB)
    $c.Cells.Item($intRow, 5) = “{0:P0}” -f ([double]$objDisk.FreeSpace/[double]$objDisk.Size)
    $c.cells.item($introw, 6) = $objdisk.volumename
    $intRow = $intRow + 1
    $d.EntireColumn.AutoFit()
    cls
    Thank You

    Hi Phorbin1128,
    The script below amy be helpful for you to save the Excel file with date in filename, and send email with the attachment of the excel report.
    $erroractionpreference = “SilentlyContinue”
    $a = New-Object -comobject Excel.Application
    $a.visible = $True
    $b = $a.Workbooks.Add()
    $c = $b.Worksheets.Item(1)
    $c.Cells.Item(1,1) = “Machine Name”
    $c.Cells.Item(1,2) = “Drive”
    $c.Cells.Item(1,3) = “Total size (GB)”
    $c.Cells.Item(1,4) = “Free Space (GB)”
    $c.Cells.Item(1,5) = “Free Space (%)”
    $c.cells.item(1,6) = "Name "
    $d = $c.UsedRange
    $d.Interior.ColorIndex = 19
    $d.Font.ColorIndex = 11
    $d.Font.Bold = $True
    $d.EntireColumn.AutoFit()
    $intRow = 2
    $colComputers = get-content "C:\Servers.txt"
    foreach ($strComputer in $colComputers)
    $colDisks = get-wmiobject Win32_LogicalDisk -computername $strComputer -Filter “DriveType = 3"
    foreach ($objdisk in $colDisks)
    $c.Cells.Item($intRow, 1) = $strComputer.ToUpper()
    $c.Cells.Item($intRow, 2) = $objDisk.DeviceID
    $c.Cells.Item($intRow, 3) = “{0:N0}” -f ($objDisk.Size/1GB)
    $c.Cells.Item($intRow, 4) = “{0:N0}” -f ($objDisk.FreeSpace/1GB)
    $c.Cells.Item($intRow, 5) = “{0:P0}” -f ([double]$objDisk.FreeSpace/[double]$objDisk.Size)
    $c.cells.item($introw, 6) = $objdisk.volumename
    $intRow = $intRow + 1
    $d.EntireColumn.AutoFit()
    $date=Get-Date -f yyyy-MM-dd
    $filename = "D:\test\"+$date+".xlsx"
    $b.SaveAs($filename)
    $a.Quit()
    Send-MailMessage -SmtpServer xxxxxxxxxx -To [email protected] -From [email protected] -Subject "test mail" -Body "file name is: $new_file" -attachment $filename
    For more detailed information about the cmdlet Send-MailMessage, please refer to this article:
    Send-MailMessage
    I hope this helps.

  • How export to csv work in safari browser? In my application export to csv open like a raw data in new tab. But other browsers working great!. Need to open in a csv file or save it as a csv file.

    How export to csv work in safari browser?
    In my application export to csv open like a raw data in new tab.
    But other browsers working great!.
    Need to open in a csv file or save it as a csv file.
    Please suggest me. Thank you in advance!.

    Hi Adrian,
    Why don't you try any another software for opening CSV files then Notepad ? According to my experience, you can use these softwares to open an CSV files and they are:-
    Microsoft Excel
    Open Office Calc
    Google Docs
    Also there is an additional tool available known as CSV viewer. You may try this, download it from here http://www.csvviewer.com/
    I've never used Notepad for opening CSV files, because sometimes it contains some symbols which are not not at all compatibile with Notepad.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • How i can to create a vi, which read from configuration file and i could modify this indicator and save the config data??

    Hi guys,
    I have in my application a subvi which i use to save the configuration of application. I create one file with the last saved configuration, and i would like to open this values and that i could to modify this indicator value, but i cant since to modify i need 'numeric control' and to read the data from file i need 'numeric indicator '...
    I thought, use a numeric control and use the values from file to the default values, but i didnt get to find the property node to adjust it. is it possible? or any different way to get it....??
    Also, i attached the capture file.. i would like the program DOESNT SHOW the question of
    replace the file!!. i would like directly replace the file when i push save.
    Thanks, i attached the vi.
    Attachments:
    options.vi ‏43 KB
    config.cnf ‏1 KB
    capture.GIF ‏43 KB

    Hi Dennis,
    Your 'write to sreadshhet mod' suprime the dialog of replace file or not!, i want when i push save, it show the dialog input name of file and show the default sim000 but when i push this sim000 and this file already exist, then show the dialog to replace or not, if i replace Ok not problem, but when i push cancel replace it shows error eof!!!.
    Your file, only remove this dialog and only replace the file directly.
    i put the capture, when i choose the file to save and the program say to me this file exist and it give me the option of replace or not,i want when i push cancel replace it continues running without get error.
    is it possible?.
    Thanks.
    Regards, Fonsi.
    Attachments:
    capture.GIF ‏71 KB
    example.vi ‏40 KB

  • Photoshop CS 5.5 - "Could not save [filename] because the file is locked..........."

    Hi,
    We have a few iMacs here all running 10.8.4 - we have PhotoShop CS 5.5 and all the artwork etc is saved on a shared server ( Windows 2008 r2)   and we are forever getting these problems......
    Only in photoshop we get the following error message......
    "Could not save [filename] because the file is locked or you do not have the necessary access privilege. Use the 'Get info' command in the finder to unlock the file or change permissions on the file or enclosing folders"
    Can't see this been an access issue so really don't know whats causing this other than the fact it's just server based...
    Please please please somebody help.

    I have been hqving this issue on windows after I upgraded to internet explorer 10 and using outlook (hotmail.com) to attach images to an email.
    After a file saved via photoshop (i assum any programe not just photoshop will cause this problem) is attached in outlook to an email, IE10 will not let go of that file.  meaning if you update the image in Photoshop and try and save over the existing jpg you previously attached it will give this error, file locked or file permissions needed etc.
    Just posting this info incase you are using email to attach files and then getting these permisssion problems.
    I work around it by closing the outlook browser tab (the email), so it lets go of the file, I can then save ontop of the file no problem, I then open outlook as needed.

  • CS6 Could Not Save "filename" Because File is Locked

    For many years I have been edit photo montages in Premiere Pro. When I would find a photo that needs retouching so I would open Photoshop, retouch the pic, save it, and the new image would magically appear on the PPro timeline. But in my CS6 suite, I get the error message "Could not save "filename" because file is locked, you do not have necessary access permissions, or another program is using the file".  And this only happens when PPro is still open, regardless of where the CTI is on the timeline, or which pic on the timeline is selected. I never had this problem with any other versions of PPro and Photoshop. I don't want to shut down PPro everytime I need to retouch a pic.

    That sounds like you've found a bug in PPro where it keeps the files open and locked when it shouldn't.
    Unfortunately, you posted in the Photoshop forum where we can't help much with Premiere.
    You probably want to post in the Premiere forum: http://forums.adobe.com/community/premiere/premierepro_current

  • When I send out mail from MS Outlook enterprise account in the office to my Mac at home they are received as "winmail.dat" files.  Even if I perform a "save as" to the correct file name the file format is still not recognized.  Why is this happening!?

    When I send out mail from MS Outlook enterprise account in the office to my Mac at home they are received as "winmail.dat" files.  Even if I perform a "save as" to the correct file name the file format is still not recognized.  Why is this happening!?

    http://www.joshjacob.com/mac-development/tnef.php

  • Adobe Reader XI did not save the form data (unlike previous versions). Any way to recover file?

    Adobe Reader XI did not save the form data (unlike previous versions). Any way to recover filled form with data from temp locations?
    I was not aware that ctrl+s no longer works in reader and closed the PDF after savign it(with ctrl+s). However ,the data is lost and there seems to be no way to recover it.
    I cannot find any temp files created by Reader on my system.
    Also to my surprize(and shock), the reader did not even show a warning before closing the PDF. Does anybody know if/where can I recover the file from?
    Guys, Please reply ASAP if you have got any sort of solution!

    Hi Pat,
    Are you using Adobe Reader XI? And not Acrobat. It does not ask me to save the form if there are unsaved changes.
    I have used previous versions of reader for saving this form data and it did allow me to save it with ctrl+s. And those versions did prompt me to save the changes before closing.
    I guess I should not have updated the reader.

  • How do I save a mutlitcolumn data to a text file?

    I am trying to save a multicolumn data to a text file without using Report Generation VIs. Here is the detail scenario...
    I have data in the following format.
    Time Voltage
    1 2
    2 3
    3 6 ...
    and
    Power
    1
    and
    Peaks
    x-axis y-axis
    Peak1 1 4
    Peak2 5 11
    If I have such data, how would I put them in a columnar format with their title and labels in a text file.
    Any example VIs would be nice to see.
    Thanks.

    Here is one solution, hope it helps. I would like to see this done using clusters and less shift arrays, I'm sure there are a few ways to do this with less wires but i guess that's what sub vi's are for...
    Attachments:
    data_to_col..vi ‏98 KB

  • How does my application save the raw data to binary file?

    Hi all,
    At first, please look at my attachment. There is the part of my code (it is inside of a while loop) which saves a raw data from my firewire camera. I am thinking how does this saving process work? How does it save the data in each while loop's iteration time (pixels, rows and columns)? For example if I use 100x1000 8-bit image. There is also Set File Position.vi which makes next line after iteration (at least I think so?). It is important to know when I'm processing the data later with Matlab.
    My second question:
    If I set height = 100 and width = 1000 as parameters, image indicator from IMAQdx Grab's image out says that the image is "only" 1000x96 8-bit image. Where are "missing" 4 bits?
    B R,
    Jick
    Attachments:
    binarysave.JPG ‏40 KB

    Hi again,
    Here is my whole CameraSoftware. It is a part of the bigger measurement program.
    I hope you can find the solution of "lost 4 bits"
    B R,
    Jick
    Attachments:
    camerasoft.JPG ‏162 KB
    save&grab.JPG ‏48 KB
    confcam.JPG ‏38 KB

  • Save Container into data file

    hii
    i have build very big VI that hold arry of container
    in which container it containe variables and arrys.
    i use it to configure the vi action (like controlling high of wave ,amplitude et cetera)
    until now i used "make Current values default" option to save
    variables and arry variables inside the arry container.
    i want to upgrade this technic to somting more advanced. like save this arry into data file.
    when i open the Vi it will read data file
    and when i will wont make change in the Vi i will press save button instead of "make Current values default".
    there is way to do it?
    just save arry of continers into file and read it after it?
    eyal
    Attachments:
    example.vi ‏8 KB

    there may be someting in 8.6 but for previous version I would suggest:
     Flatten to XML.vi
    would preserve the container(cluster) , and then  
    write to xml.vi
    and then when you start the mainvi you put a case t\f  and use
    first call.vi to select only when it start  and in this case true: read xml and  unflatten xml  etc....

  • Admin Services - Data Prep Editor: Save, Open, Open Data File - Hangs

    The problem is that whever I try to Open, Open Data File or Save while in Data Prep Editor, the Admin Console Hangs. It shows as Responding in the task manager, but the screen turns grey (hangs) and the admincon.exe process is constant at about 50% CPU.
    I don't know what is going on? Is there possibly some corrupt disk area on my PC? I checked everyone on forums, tried to find the answer, but no info is availabe? I re-installed to JRE 1.5, I checked the java environmental variables. I did so much, but nothing has worked.
    At first I thought it might have been some 9.3.1 bug, so I unistalled 9.3.1 and installed EPM System 11; still same problem!!
    Any help is greatly appreciated. Thanks

    I have a similar problem, when I try to open a data file, nothing happens.... app doesn't lock, just the file open dialog box never opens... I'm using 9.3.1, and the same problems happens, on EAS installed locally, Web client, and running EAS from the app server itself. The load rule works fine, I just can't see a data file in the prep editor. Any thoughts help are appreciated.
    Chad

  • EVDRE: refresh dimension cache files each time user saves or refreshes data

    Hi experts,
    We're facing a performance trouble with our input schedules, so we pretend to decrease response times.
    We've noticed an unexpected issue when users work with input schedules. Each time they save or refresh data into any input schedule, it seems to execute a dimension files refresh. Since they push Save buton till standard success message appears, we see diferent text messages in excel messages bar, in the bottom of excel window. And for a while, we can see a message where we can read "Load dimension cache".
    Does anyone know if this is an standar behaviour? Is there any way to avoid that, so we can decrease response time regarding input schedule performance?? Is there any dimension files refresh while we save data from an input schedule?
    Thanks in advance.

    I see these, too, running Fx12 on Windows 7. They are described in the (extremely voluminous!) about:cache interface as page thumbnails. I've attached some screen shots.
    The text is extremely difficult to see, so I don't know whether it is a serious privacy/security risk. I would be curious to know how long they linger.
    I think these support the Windows feature of showing a preview of a window or tab when you float over a taskbar button. (No idea whether there is a similar preview feature on Mac.) This feature is not enabled by default; users need to enable it in about:config. However, add-ons may be able to use the thumbnails because they have privileged access to the cache.
    (Note: This feature was added pursuant to [https://bugzilla.mozilla.org/show_bug.cgi?id=497543 497543 – Provide a thumbnail service]. It "landed" on or about Jan. 28, 2012, so its first appearance in a released version of Firefox might have been Fx12.)

  • Save filename in application server

    i am uploading multiples files from desktop to application server and its working good. But user can upload same file name more than 4 or 5 times together.And i have to write the file on server by appending _2 _2 _2 for every new file. Right now i am able to do for one file name(.i.e. the file if already exsist its appending _2 with the new file name). but if i am uploading the same file third or fourth time its not writting the file on server. I have to just append _2 _2 with file that already exsist.
    here is the code that i had built up...
    DATA: BEGIN OF t_itab OCCURS 0,
    soldto(10) TYPE c,
    enumber(10) TYPE c,
    ename(35) TYPE c,
    land1(35) TYPE c,
    name2(35) TYPE c,
    matnr(18) TYPE c,
    quantity(13) TYPE c,
    shipdate like sy-datum,
    invoiceno(35) TYPE c,
    scost(13) TYPE c,"DECIMALS 2,
    ucost(13) TYPE c,"DECIMALS 2,
    dlno(10) TYPE c,
    END OF t_itab.
    DATA DECLARATION *
    DATA :file TYPE string.
    DATA :in_file(150) TYPE c.
    DATA: stripped TYPE rlgrap-filename.
    DATA: file_path TYPE rlgrap-filename.
    DATA: new_file_name TYPE rlgrap-filename.
    DATA :l_date(10) TYPE c,
    x_date TYPE d.
    DATA: xtitle1(132),
    xtitle2 LIKE xtitle1,
    xtitle3 LIKE xtitle1,
    xtitle4 LIKE xtitle1.
    CONSTANTS:EMAIL_KEY(20) TYPE c VALUE 'DISTY_POS_ERRORS'.
    P A R A M E T E R S *
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS s_uload FOR rlgrap-filename VISIBLE LENGTH 128
    NO INTERVALS.
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_uload-low.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    program_name = 'ZSR00340'
    dynpro_number = syst-dynnr
    field_name = ' '
    IMPORTING
    file_name = s_uload-low.
    AT SELECTION-SCREEN ON BLOCK b1.
    IF s_uload IS INITIAL.
    MESSAGE e000(0k) WITH 'Please enter the file path'.
    ENDIF.
    TOP-OF-PAGE.
    CALL FUNCTION 'Z_REPORT_HEADERS'
    EXPORTING
    columns = 140
    period = space
    rpt_name = 'ZSR00340'
    rpt_title1 = sy-title
    RPT_TITLE2 =
    RPT_TITLE3 =
    COMP_CODE =
    IMPORTING
    text01 = xtitle1
    text02 = xtitle2
    text03 = xtitle3
    text04 = xtitle4.
    WRITE: / xtitle1,
    / xtitle2,
    / xtitle3.
    IF NOT xtitle4 = space.
    WRITE: / xtitle4.
    ENDIF.
    ULINE.
    FORMAT COLOR COL_HEADING ON INTENSIFIED OFF .
    START-OF-SELECTION *
    START-OF-SELECTION.
    LOOP AT s_uload.
    CALL FUNCTION 'WS_UPLOAD'
    EXPORTING
    filename = s_uload-low
    filetype = 'DAT'
    HEADLEN = ' '
    LINE_EXIT = ' '
    TRUNCLEN = ' '
    USER_FORM = ' '
    USER_PROG = ' '
    DAT_D_FORMAT = ' '
    IMPORTING
    FILELENGTH =
    TABLES
    data_tab = t_itab
    EXCEPTIONS
    conversion_error = 1
    file_open_error = 2
    file_read_error = 3
    invalid_type = 4
    no_batch = 5
    unknown_error = 6
    invalid_table_width = 7
    gui_refuse_filetransfer = 8
    customer_error = 9
    no_authority = 10
    OTHERS = 11
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    PERFORM sub_send_mail." using g_text.
    EXIT.
    ENDIF.
    *function to get customer name as ten digit
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
    input = t_itab-soldto
    IMPORTING
    output = t_itab-soldto.
    Function to prefix the Filename
    CALL FUNCTION 'SO_SPLIT_FILE_AND_PATH'
    EXPORTING
    full_name = s_uload-low
    IMPORTING
    stripped_name = stripped
    file_path = file_path.
    *format date as mmddyyyy from yyyymmdd
    x_date = sy-datum.
    CONCATENATE x_date4(2) x_date6(2) x_date+0(4) INTO l_date.
    CLEAR new_file_name.
    *conactenated the directory with system and with the path name
    CONCATENATE '/xapp' sy-sysid 'disti/pos/' INTO in_file
    SEPARATED BY '/'.
    CONCATENATE in_file 'POS' l_date t_itab-soldto
    INTO new_file_name SEPARATED BY '_'.
    REPLACE FIRST OCCURRENCE OF '_' IN new_file_name WITH ''.
    *check for exsistency of file
    OPEN DATASET new_file_name FOR UPDATE IN LEGACY TEXT MODE.
    IF sy-subrc = 0.
    *if exists then append '2' again with the new filename
    CONCATENATE new_file_name '2' INTO new_file_name
    SEPARATED BY '_'.
    CLOSE DATASET new_file_name.
    ENDIF.
    *to write data on server
    OPEN DATASET new_file_name FOR OUTPUT IN LEGACY TEXT MODE.
    *looping on Internal table to write all data
    LOOP AT t_itab.
    TRANSFER t_itab TO new_file_name .
    ENDLOOP.
    *if successfully uploaded then success message
    IF sy-subrc EQ 0.
    WRITE:/ 'Files are uploaded'.
    ENDIF.
    CLOSE DATASET new_file_name.
    so cananyone plz suggest what should i do for appending _2 with the file that is already there on server...

    Hi
    I don't understand your problem well:
    If there is a file on server: should you insert a new file with the data of old file and new data?
    if it's so:
    DATA: WA(1000),
          last_file(100).
    CLEAR LAST_FILE.
    DO.
    OPEN DATASET new_file_name FOR UPDATE IN LEGACY TEXT MODE.
    IF sy-subrc = 0.
    Save the name of last file:
    last_file = new_file_name.
      CLOSE DATASET new_file_name.
    ELSE.
    EXIT.
    ENDIF.
    CONCATENATE new_file_name '2' INTO new_file_name
    SEPARATED BY '_'.
    ENDDO.
    Now before downloading new data, you should transfer old data:
    OPEN DATASET new_file_name FOR OUTPUT IN LEGACY TEXT MODE.
    IF NOT LAST_FILE IS INITIAL.
    OPEN DATASET LAST_FILE FOR UPDATE IN LEGACY TEXT MODE.
    DO.
    READ DATASET LAST_FILE INTO WA.
    IF SY-SUBRC <> 0. EXIT. ENDIF.
    TRANSFER WA TO new_file_name.
    ENDDO.
    CLOSE DATASET LAST_FILE.
    ENDIF.
    *looping on Internal table to write all data
    LOOP AT t_itab.
    TRANSFER t_itab TO new_file_name .
    ENDLOOP.
    *if successfully uploaded then success message
    IF sy-subrc EQ 0.
    WRITE:/ 'Files are uploaded'.
    ENDIF.
    CLOSE DATASET new_file_name.
    Max
    Message was edited by: max bianchi
    Message was edited by: max bianchi

Maybe you are looking for

  • Trying to switch from JDBC URL - JDBC DataSource

    I have built and run a JHeadstart 10.1.2 application using JDBC URL defined database connections. I am now trying to switch to use JDBC DataSource definitions to make the database connection independant from the application so that the same ear file

  • Can I use my persponal Photoshop CC license at work?

    I've subscribed to the Photoshop and Flash Creative Cloud and I was wondering if I could use them at work. I have a workstation to which only I have acces at work. I never have my private machine and my workstation turned on at the same time, am I le

  • Zen MX 16Gb - Song Playback Order

    Hello. I've got all my MP3 files meticulously catalogued with ID3v. tags using MP3tag. They play in the correct track order in everything I've ever played them on, PC or MP3 player. So, I get myself a Zen MX because I want something with a larger scr

  • Converting takes up too much memory

    When I convert a clip in I-movie to make it faster why does it take up a lot of memory?

  • Error occurred in step post_index_customization_step for sync task

    Hi, We have faced this below error with staging index process. Could anyone help me understand under what condition this RemovedItemException will show up? Not sure if any BCC project have tried to remove any item while the index was running. Kindly