Applescript উপ-পদ্ধতি সমস্যা


0

আমি একটি কমা-সীমিত তালিকা মান একটি প্রদর্শন করতে চাই List। দুর্ভাগ্যবশত, আমি পড়তে একটি ত্রুটি পেতে Microsoft Outlook got an error: Can’t continue joinList. আমি যোগদান সঞ্চালিত উপ-পদ্ধতি ব্যবহার করার চেষ্টা করার সময়:

tell application "Microsoft Outlook"
  ...
  set addressList to {}
  repeat with theAddress in the theAddresses
    if addressList does not contain (address of theAddress) then
      set addressList to addressList & (address of theAddress)
    end if
  end repeat

  display dialog joinList(addressList, ";") <-- error here
  ...
end tell

on joinList(aList, delimiter)
    set retVal to ""
    set prevDelimiter to AppleScript's text item delimiters
    set AppleScript's text item delimiters to delimiter
    set retVal to aList as string
    set AppleScript's text item delimiters to prevDelimiter
    return retVal
end joinList

আমি কি ভুল করছি?

উত্তর:


1

কোডটি হওয়া উচিত ছিল:

display dialog my joinList(addressList, ";") 
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.