Using AppleScript to rename file as current date

Hi, I created a script to record a radio show on a daily basis.
I would like apple script to set the name of the files as the day´s date.
any help would be appreciated,
Thank you very much

Once you've got a file name and path in the Finder, you can use this:
tell application "Finder"
set name of file "path:to:file" to (month of (current date)) & " " & day of (current date) & ", " & year of (current date) as string
end tell
(14444)

Similar Messages

  • Advanced applescript to rename files

    Hi Everybody,
    I am trying to do some applescript to rename files.
    I know some tips to do that, but I try to write an advanced script with many options
    For example : A file to rename :
    "project-test.info.jpg"
    1st :
    I would like the script to find every symbols in the name(without the extension), like here : "-" or "_"
    and repace these symbols with another one like "_"
    then the new name will be :
    "project_test_info.jpg"
    2nd :
    if the file is named in a "wrong way", like :
    test.jpg
    or
    "test-info.jpg"
    or
    "project.test.jpg"
    etc
    then the script will rename in the better way :
    "project_test_information.jpg"
    (information will be data I will enter by myself)
    And many other or examples with all the possibilities to rename...
    I succeed to rename some parts of the name, but I don't find the solution to replace symbols, and how to count the number of text parts and replace the good ones...
    I dont know even if it's a good way to do like that in fact, an maybe it's possible in another way ?
    Thank you very much for your answers !

    Hi Everybody,
    I am trying to do some applescript to rename files.
    I know some tips to do that, but I try to write an advanced script with many options
    For example : A file to rename :
    "project-test.info.jpg"
    1st :
    I would like the script to find every symbols in the name(without the extension), like here : "-" or "_"
    and repace these symbols with another one like "_"
    then the new name will be :
    "project_test_info.jpg"
    2nd :
    if the file is named in a "wrong way", like :
    test.jpg
    or
    "test-info.jpg"
    or
    "project.test.jpg"
    etc
    then the script will rename in the better way :
    "project_test_information.jpg"
    (information will be data I will enter by myself)
    And many other or examples with all the possibilities to rename...
    I succeed to rename some parts of the name, but I don't find the solution to replace symbols, and how to count the number of text parts and replace the good ones...
    I dont know even if it's a good way to do like that in fact, an maybe it's possible in another way ?
    Thank you very much for your answers !

  • Why can´t i change language inside PsCC from Danish to English? Instead of going into Program:Adobe. Locales: rename file from .tw10428.dat into tw10428.bat file??

    Why can´t i change language inside PsCC from Danish to English? Instead of going into Program:Adobe. Locales: rename file from .tw10428.dat into tw10428.bat file??

    Creative Cloud Help / Adjust the install language | Creative Cloud applications | CCM -
    http://helpx.adobe.com/creative-cloud/kb/change-installed-language.html

  • Bursting - Rename Files to current XML Data

    Folks, many thanks for the poster who has allowed me to rename files. This is working correctly using the following snippet.
    public void afterProcessDocument(int requestIndex, int documentIndex, Vector documentOutputs) {
    String outFileName = (String)documentOutputs.get(0);
    File newFile;
    File oldFile = new File(outFileName);
    newFile = new File(oldFile.getParent() + File.separator + "newfile" + oldFile.getName());
    oldFile.renameTo(newFile);
    documentOutputs.remove(0);
    documentOutputs.add(0, newFile.getPath());
    As you can see, its still somewhat "hard coded".
    My question relates to the API. I would like to rename my files to say the "TRX_NUMBER" so I can then insert the bursted invoice as an attachment to the actual invoice in the system. I therefore need to be able to extract and match the current XML record for the bursting. There seems to be no way to do this using the published API. The Vector doesn't seems to hold it in the bursting listener - it only holds the renamed file.
    This one might be for a BIP developer, we are using 5.6.2 under EBS, will 5.6.3 resolve this?

    Very ambitious!
    Here are ideas you may want to consider for your project:
    http://mthamilton.ucolick.org/hamcam/
    http://mthamilton.ucolick.org/hamcam/dailyStills/cam2/
    http://mthamilton.ucolick.org/hamcam/dailyMovies/cam2/HC2_daily.mpg
    I use hamcam everyday for my daily bicycle ride-weather station.
    Perhaps, you want to limit daily still to 08:00AM-06:00PM and also have a daily time lapse, you can use Quicktime to do the time lapse footage.

  • How to save file as "current date-current time"

    Hello,
    I'm trying to rename a file as from file.mov to "current date-current time"movie.mov, So the final product should be something along the lines of 08-18-08-12:59:08movie.mov (or whatever format the current date/time is in osx). Any ideas on how I would go about this? Thanks again!

    Hello Vb,
    This script *shows the created date of a file*. Maybe you can do something with it. With a small change it get the date from the finder add adds it to the file.
    set selectedFile to (choose file)
    tell application "Finder"
    set modDate to the modification date of selectedFile
    end tell
    display dialog "That file was last modified on: " & modDate
    This scripts shows *how long ago the file was created*:
    --Part 1:
    set selectedFile to (choose file)
    tell application "Finder"
    set modDate to the modification date of selectedFile
    --Part 2:
    set curDate to the current date
    --Part 3:
    if (the year of modDate) ≠ (the year of curDate) then
    set ageInYears to (the year of curDate) - (the year of modDate)
    display dialog "The file was changed " & ageInYears & " years ago."
    --Part 4:
    else
    if (the month of modDate) ≠ (the month of curDate) then
    set ageInMonths to (the month of curDate) - (the month of modDate)
    display dialog "The file was changed " & ageInMonths & "months ago."
    --Part 5
    else
    if (the day of modDate) ≠ (the day of curDate) then
    set ageInDays to (the day of curDate) - (the day of modDate)
    display dialog "The file is " & ageInDays & "days old."
    else
    display dialog "The file was changed today."
    end if
    end if
    end if
    end tell

  • Using Automator to Rename Files

    I can't figure out how to rename files so that the number in the name is in parentheses. For example Dog 1.jpg should be changed to Dog (1).jpg. How can I accomplish this in Automator?

    ok. the following should work. paste it into AppleScript Editor. select the files you want to rename in finder and press "run" in script editor. you might want to test it on a small number of files first.
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #ADD8E6;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    tell application "Finder"
    set selected_items to selection
    repeat with this_item in selected_items
    set current_name to name of this_item as text
    set current_extension to name extension of this_item
    set length_extension to length of current_extension
    set name_no_ext to text 1 thru (-length_extension - 2) of current_name
    set AppleScript's text item delimiters to " "
    if (number of text items of name_no_ext > 1) then
    set z to last text item of name_no_ext --get the number at the end of the name before the extension
    set name of this_item to do shell script "echo " & quoted form of current_name & "|sed 's/" & z & "." & current_extension & "/(" & z & ")." & current_extension & "/'"
    end if
    set AppleScript's text item delimiters to ""
    end repeat
    end tell</pre>

  • Rename files to the date & time?

    I am not sure if this is possible but...
    When a file is added to a particular folder, I need this file to be renamed. Either to the current time, creation time, or preferrably to the exif data (they are digital images).
    Does anyone have any suggestions? Thanks, in advance.
    Craig

    Very ambitious!
    Here are ideas you may want to consider for your project:
    http://mthamilton.ucolick.org/hamcam/
    http://mthamilton.ucolick.org/hamcam/dailyStills/cam2/
    http://mthamilton.ucolick.org/hamcam/dailyMovies/cam2/HC2_daily.mpg
    I use hamcam everyday for my daily bicycle ride-weather station.
    Perhaps, you want to limit daily still to 08:00AM-06:00PM and also have a daily time lapse, you can use Quicktime to do the time lapse footage.

  • Using AppleScript to sort files Into Specified Folders based on Extension

    Hi All!
    Here is what I am trying to figure out. I would love some help with this script if anyone can lend a helping hand. I am currently using Hazel to do this but I think AppleScript will be alot more effective.
    Situation:
    - I have a folder with 4 different file types inside - the extensions are (.cop, .cof, .cos, .cr2)
    - These files need to be organized in this folder structure  Captureone > Cache > Proxies
                                                                                                                  > Settings50
    - The .cop & .cof files both need to be put in the "Proxies" folder
    - The .cos needs to be put in the "Settings50" folder
    - The .cr2 can stay where it is.
    I'm already using an AppleScript application where it automatically creates the folder structure in the current finder location, which works great. I use a program named Hazel to sort the files automatically into the folders where they need to go. Unfortunately all my computers at work don't have Hazel and I would like help to make a script. Any thoughts to add to my existing script?
    #  define a list of folders - items will need to be quoted if they contain spaces, etc.
    property theFolders : {"Captureone/Cache/Proxies", "Captureone/Settings50"} -- can also nest, e.g. "Inside/One"
    try
              tell application "Finder" to set targetFolder to (target of the front window) as alias
    on error -- no window
              set targetFolder to (choose folder)
    end try
    # build a parameter string from the folder list
    set {tempTID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, space}
    set {theFolders, AppleScript's text item delimiters} to {theFolders as text, tempTID}
    do shell script "cd " & quoted form of POSIX path of targetFolder & "; mkdir -p " & theFolders

    Hi,
    applescript_problems wrote:
    for example:
    master folder name: 1
    sub folder path: 1>2>3>4>5
    insdie folder 5 theirs 3 folders: 5a, 5b, 5c
    i want to name my files like so: "name_5a" "name_5b" "name_5c
    i want the scrip to pick up all the files that ends with the name "_5a" and place them in folder 5a
    I presume that the files are in the master folder not in the subFolders, that the files has an name extension.
    This script take the first two characters after the last underscore.
    It will move the file in the subfolder, according to the two characters found.
    set targetFolder to (POSIX file "") as alias --<-- drop the master folder between the double quotes
    tell application "Finder"
          repeat with tFile in (get files of targetFolder)
                set tName to name of tFile
                set subname to my getChar_1_2AfterLastUnderscore(tName)
                -- example : subname = "5c" -->  folder "5c" of folder "5" of targetFolder
                if subname is not "" then
                      tell folder subname of folder (text 1 of subname) of folder targetFolder
                            if exists then move tFile to it -- if exists this folder then move this file
                      end tell
                end if
          end repeat
    end tell
    on getChar_1_2AfterLastUnderscore(t)
          if "_" is in t then try
                set oTID to text item delimiters
                set text item delimiters to "_"
                set t to text 1 thru 2 of last text item of t
                set text item delimiters to oTID
                return t
          on error
                set text item delimiters to oTID
          end try
          return ""
    end getChar_1_2AfterLastUnderscore
    To get the exact path of the master folder :
    Drag/drop the folder between the double quotes in the first line of the script.

  • How can i use automator to rename files erasing first 3 digits of their name?

    Actually in the files i am trying to rename the first 2 digits are numbers then space and then there is the file name i want to use. Hope this helps.

    Open the AppleScript Editor in the /Applications/Utilities/ folder and paste in the following text:
    tell application "Finder"
    set the_items to items of window 1
    repeat with this_item in the_items
    set name of this_item to (items 4 thru -1 of (get name of this_item)) as string
    end repeat
    end tell
    Navigate to the folder containing those files in the Finder and run the script.
    (65537)

  • Automator/Applescript to Rename files when dropped in folder based on parent folder name

    When a file is dropped in a folder ( ParentFolder/Folder/File.pdf )
    I want to rename the file to ParentFolder_Folder_01.pdf
        --Get folder
        --Get ParentFolder
        --Check for next available number and use it.
        If ParentFolder_Folder_01.pdf exists, try _02
    I automator, I have chosen folder action
    Added 'Get selected finder items'
    I have attempted to modify another sript I found here to no avail.
    on run {input, parameters}
        tell application "Finder"
            set theFolder to input as string
            set theNameOfFolder to name of folder theFolder
            set theFiles to every file in folder theFolder
            set theFolders to every folder in folder theFolder
            my ProcessFiles(theNameOfFolder, theFiles)
            my ProcessFolders(theFolders)
        end tell
    end run
    to ProcessFolders(theFolders)
        tell application "Finder"
            repeat with thisFolder in theFolders
                set theNameOfFolder to name of thisFolder
                set theFiles to every file in thisFolder
                set theFolders to every folder in thisFolder
                my ProcessFiles(theNameOfFolder, theFiles)
                my ProcessFolders(thisFolder)
            end repeat
        end tell
    end ProcessFolders
    to ProcessFiles(NameOfOuterFolder, theFiles)
        tell application "Finder"
            repeat with thisFile in theFiles
                set theSuffix to my grabSuffixOfFile(name of thisFile)
                set name of thisFile to NameOfOuterFolder & "_" & theSuffix
            end repeat
        end tell
    end ProcessFiles
    to grabSuffixOfFile(theFile)
        set text item delimiters to "_"
        return (text item 2 of theFile)
        set text item delimiters to ""
    end grabSuffixOfFile

    Normally it is a bad idea to do things with items that are in the attached folder (earlier OS versions will retrigger folder actions when an item is renamed, for example), and you don't need to use a Get Selected Finder Items action since the dropped items are already passed to your workflow (also note that the input items will be a list).
    It looks like you are trying to use multiple passes to add on the folder names, but you will have less of a headache if you build the base name and just deal with the number suffix.  If I understood your naming scheme correctly, the following script should do the trick - it isn't very fast, but should be OK for a few items at a time.
    on run {input, parameters} -- rename input Finder items (aliases) to name of containing folders
      set divider to "_" -- the divider character between name pieces
      set output to {} -- the result to pass on to the next action
      set counter to "01" -- start suffix at one
      repeat with anItem in the input -- step through each item in the input
      set anItem to contents of anItem -- dereference
      tell application "Finder" to if class of item anItem is document file then -- don't mess with folders or applications
      set {itemParent, itemExtension} to {container, name extension} of anItem
      if itemExtension is not "" then set itemExtension to "." & itemExtension
      set grandParentName to name of container of itemParent
      set parentName to name of itemParent
      set newName to grandParentName & divider & parentName & divider & counter
      set documentNames to my getExistingNames(itemParent)
      repeat while newName is in documentNames -- increment counter suffix as needed
                                            set counter to text -2 thru -1 of ("0" & (counter + 1))
      set newName to grandParentName & divider & parentName & divider & counter
      end repeat
      set name of anItem to (newName & itemExtension)
      set end of output to anItem -- alias still refers to the same file even after renaming
      end if
      end repeat
      return the output
    end run
    to getExistingNames(someFolder) -- get base document names (no extensions) from a folder
      set nameList to {}
      tell application "Finder" to repeat with aFile in (get document files of someFolder)
      set {fileName, fileExtension} to {name, name extension} of aFile
      if fileExtension is not "" then set fileExtension to "." & fileExtension
      set fileName to text 1 thru -((count fileExtension) + 1) of fileName -- just the name part
      set end of nameList to fileName
      end repeat
      return nameList
    end getExistingNames

  • Use Applescript to find files with certain conditions

    I am using a tool to batch convert audio files in APE format to MP3. I have thousands of files located in hundreds of folders and subfolders in my hard drive so I searched for all APE/FLAC files and then dragged and dropped them in the tool for conversion. The problem is I was not able to convert all the files successfully for a variety of reasons (original APE files are corrupt, etc.), as a result I was left with a situation where some of the folders have files convernted (both APE and MP3 in that folder) whereas others don't (APE only). Instead of manually go to each folder and subfolder to find which ones need me to convert is there an Applescript I can use to quickly list the APE files that have not been converted?

    Hello
    You may try the following shell script. Please specify DIR as the root directory to start searching. It will create output list named no_mp3_list.txt on desktop.
    #!/bin/bash
    #     list every *.ape file which has no corresponding *.mp3 file in the same directory
    #     * name matching is done in case-insensitive fashion
    DIR=~/Desktop/test                # root directory to start scanning
    OUT=~/Desktop/no_mp3_list.txt    # output file
    shopt -s nocasematch
    while read -d $'\0' f
    do
        [[ -e "${f:0:${#f}-3}mp3" ]] || echo "$f" >> "$OUT"
    done < <(find "$DIR" -iname '*.ape' -print0)
    And in case, here's a simple AppleScript wrapper for the above, which lets you choose the root directory.
    set f to (choose folder with prompt "choose root folder to start searching")'s POSIX path
    if f ends with "/" then set f to f's text 1 thru -2
    do shell script "/bin/bash -s <<'EOF' -- " & f's quoted form & "
    #     list every *.ape file which has no corresponding *.mp3 file in the same directory
    #     * name matching is done in case-insensitive fashion
    DIR=\"$1\"                        # root directory to start searching
    OUT=~/Desktop/no_mp3_list.txt    # output file
    shopt -s nocasematch
    while read -d $'\\0' f
    do
        [[ -e \"${f:0:${#f}-3}mp3\" ]] || echo \"$f\" >> \"$OUT\"
    done < <(find \"$DIR\" -iname '*.ape' -print0)
    EOF"
    Hope this may help,
    H

  • Using Express Write LabVIEW File to store data in subprogram doesn't overwrite.

    The main program is an Event Structure that controls four other subprograms. In the subprograms the data is stored in the express IV Write LabVIEW Measurement File set up to overwrite the collected data. When the subprogram is stopped with the main still open, then restarted, the file is appended not overwritten. It appends where the last time the previous file was stopped.

    There is an input to the Wrive LabVIEW Measurement File which is entitled 'reset.' Make sure that is set to true so that the file writing process starts over each time data enters the Express VI.
    John M

  • Daily backup file with the date in the filename

    Hello,
    I like to backup the same file every day of the week. And add the date in the copied filename (for example "meta09-O4-04.rtf") to automate and schedule I can use cronnix. But adding the date in the filename doesn't work for me.
    As you can see in the script the backup file must be copied in a directory (for example "vis")that is in the same directory as the main file.
    Can some one help me on this?
    backupFileToFolder("Macintosh HD:Users:gast:Documents:meta.rtf", "Macintosh HD:Users:gast:Documents:vis:")
    on backupFileToFolder(startFile, targetFolder)
    set startFile to startFile as alias
    set targetFolder to targetFolder as alias
    tell application "Finder"
    duplicate ("Macintosh HD:Users:gast:Documents:meta.rtf") to ("Macintosh HD:Users:gast:Documents:vis:")
    end tell
    end backupFileToFolder

    But adding the date in the filename doesn't work for me.
    Might help if you showed how you were trying to add the date.
    That said, it shouldn't be hard to do. There are several ways of getting the date in the format you want, either via AppleScript or a simple shell command:
    AppleScript:
    set curDate to (get current date)
    set dateStr to getYear(curDate) & "-" & getDay(curDate) & "-" & getMonth(curDate)
    on getMonth(theDate)
    set cM to month of theDate as integer
    return text -2 through -1 of ("0" & cM)
    end getMonth
    on getDay(theDate)
    set cD to day of theDate as text
    return text -2 through -1 of ("0" & cD)
    end getDay
    on getYear(theDate)
    set cY to year of theDate as text
    return text -2 through -1 of cY
    end getYear
    Note this is a little more verbose than it needs to be, but it has the flexibility of formatting each date element (year, month, day) as you like.
    If you want a shell version:
    set dateStr to do shell script "date +%y-%d-%m"
    Now you have the dateStr with the date you want, so it's easy to rename the file.
    Just replace your duplicate command with the following:
    set backupFile to duplicate startFile to folder targetFolder
    set n to name of backupFile -- get the current file name
    set nE to name extension of backupFile -- get its filename extension
    set baseName to text 1 through (-1 + (length of nE)) of n -- work out the name without the extension
    set newName to baseName & dateStr & "." & nE -- work out the new name using the dateStr
    set name of backupFile to newName -- and rename the file

  • How to use Applescript to print out a certain calendar at 7am every morning?

    Hey guys,
    I am trying to use AppleScript to print out one of my calendars each day at 7am every morning.
    I have come up with this so far:
    tell application "Calendar"
           view calendar "My Appointments" at (my (current date))
           switch view to day view
           activate
                        tell application "System Events"
                     keystroke "p" using command down
                     delay 1 -- (seconds)
                     tell process "Calendar"
                                                      tell window "Print"
                                                                     if value of checkbox "Calendar Keys" is not 0 then
                                      click checkbox "Calendar Keys"
                               end if
                                                      end tell
                                       end tell
                        end tell
    end tell
    The problem with this is that it will print out whatever calendars are currently viewable. I can't figure out how to tell it to deselect other calendars and just select the one I want. I also want to tell it to print this out at 7am every morning.
    Any help would be very appreciated!

    If you wanted to do the printout over multiple days, you would be best to loop through each day's events in the way the current script does, but to put a new loop around it that gets each new day's data:
    --opens a temporary file
    set fileRef to open for access ((path to desktop) as string) & "meetings.txt" with write permission
    --effectively empties the file
    set eof fileRef to 0
    tell application "Calendar"
              set dayCount to 9 --this will be the number of days to look forward (not including today)
              repeat with currentDay from 0 to dayCount
                        set startList to {}
      --get's today's date
      --set startRange to ((current date) + 12 * days) -- I used this for testing, to point to a day that had many appointments.  I've left it so you can use it, too.
                        set startRange to ((current date) + (currentDay * days))
      --set the start of the range to previous midnight
                        set hours of startRange to 0
                        set minutes of startRange to 0
                        set seconds of startRange to 0
      --set end of the range to next midnight
                        set endRange to (startRange + 1 * days)
      --get today's events
                        set todaysEvents to get (events of calendar "My Appointments" whose (start date is greater than startRange) and (end date is less than endRange))
      --make a new list with start time of the event for sort purposes
                        repeat with theEvent in todaysEvents
                                  set end of startList to {startdate:start date of theEvent, eventID:theEvent}
                        end repeat
      --sort using a bubble sort (suitable for short lists)
                        repeat with i from 1 to (count of startList) - 1
                                  repeat with j from i + 1 to count of startList
                                            if startdate of item j of startList < startdate of item i of startList then
                                                      set temp to item i of startList
                                                      set item i of startList to item j of startList
                                                      set item j of startList to temp
                                            end if
                                  end repeat
                        end repeat
      --empty the original list
                        set todaysEvents to {}
      --repopulate the list in correct chronological order
                        repeat with theEvent in startList
                                  set end of todaysEvents to eventID of theEvent
                        end repeat
      --write today's date to the file
      write (date string of startRange & return & return) to fileRef
      --if there are no events, write this to the file as well
                        if length of todaysEvents is 0 then
                                  write "No events" & return & return to fileRef
                        else
      --process each event into format: hh:mm-hh:mm/new line/event summary
                                  repeat with theEvent in todaysEvents
                                            set startdate to start date of theEvent
                                            set enddate to end date of theEvent
                                            set startHours to hours of startdate as string
                                            if length of startHours is 1 then set startHours to "0" & startHours
                                            set startMins to minutes of startdate as string
                                            if length of startMins is 1 then set startMins to "0" & startMins
                                            set starttime to startHours & ":" & startMins
                                            set endHours to hours of enddate as string
                                            if length of endHours is 1 then set endHours to "0" & endHours
                                            set endMins to minutes of enddate as string
                                            if length of endMins is 1 then set endMins to "0" & endMins
                                            set endTime to endHours & ":" & endMins
      --write the event to the file
                                            set theSummary to (starttime & "-" & endTime & return & summary of theEvent & return & return) as string
      write theSummary to fileRef
                                  end repeat
                        end if
      write return to fileRef
              end repeat
    end tell
    --close the file
    close access fileRef
    --print the file
    set theFile to (((path to desktop) as text) & "meetings.txt") as alias
    tell application "TextEdit"
              print theFile without print dialog
    end tell

  • Problem using read from spreadsheet file and polar plotting

    Hi to all labview users,
    i am a beginner in labview and i am trying to do a polar plot.
    i read the polar plotting example in labview and it was straightforward.
    I used "write to spreadsheet file" to gather data.
    and they are in the following format
    13  10
    4  20
    8 30
    ....etc
    now. i tried using "read from spreadfile" to get the data into a array, then using "array to cluster" to convert the array into cluster, so i could connect it to the polar plot block
    however, it kept saying i couldnt connect that way, because polar plot uses 1-d array with cluster of 2 element and my source is a cluster of 9 elements....
    but doesnt the "read from spreadfile" block give me a 1-d array? and where does that 9 come from? i only have 3 rows and 2 columns in my data file....
    any guidance would be greatly appreciated.
    thx alot
    Happy guy
    ~ currently final year undergraduate in Electrical Engr. Graduating soon! Yes!
    ~ currently looking for jobs : any position related to engineering, labview, programming, tech support would be great.
    ~ humber learner of LabVIEW lvl: beginner-intermediate

    Helllo,
    I've made an example to try to help you  with that question.
    Notes:
     - the file must have values separeted by tab
     - reading the values from file as you mentioned using "read from spreadfile" you'll get a 2D array and not 1D;
    Software developer
    www.mcm-electronics.com
    PS: Don't forget to rate a good anwser ; )
    Currently using Labview 2011
    PORTUGAL
    Attachments:
    Read Table and plot polar graph.vi ‏26 KB
    teste.txt ‏1 KB

Maybe you are looking for

  • Navigation Cannot Start from this location. ERROR ...

    Navigation used to work fine on my X6, but since having to do a hard reset of the phone (due to other problems!) I cannot use the Navigation. Everytime I get the error 'navigation cannot start at this location' and it doesn't seem like the phone can

  • Keyboard shortcut for context menu

    Hello all. I recently got a MacBook and it's the first Mac I've ever had. I'm a keyboard shortcut guy when I can be and one thing that's stumped me is using the keyboard to open up the context menu. Does anybody know a keyboard shortcut for opening t

  • Add multichannel audio ALAC files to iTunes

    Can anyone tell me if there's anyway of adding multichannel ALAC files to iTunes ?

  • Records fetch which not exist in both tables

    hi all i have 2 tables like zlease and zcust. the common field is zempno and i want to get the records which are no similar in both records eg: records of both the tables i_emp|zempno VMX020| 3      | 1      | 10     | 10522  | i_cust  empno 10522 3

  • User exit for controling header and item division

    Hi all, Currently there is restriction in sales document for header division and item division i.e. if header division is 10 then it is not accepting the products of division 20, 30, 40, 50 at item level. If the restriction is removed then it will al