Applescript সমাধান:
ব্রাদার্সের "পি-স্পর্শ এডিটর" (v5.1) আপেলস্ক্রিপ্টকে সমর্থন করে না, তবে আপনি "সিস্টেম ইভেন্টস" অ্যাপ্লিকেশন ব্যবহার করতে পারেন এমন একটি প্রক্রিয়া বলার জন্য প্রক্রিয়াটি বলতে পারেন। এটি GUI ম্যানিপুলেট করে কাজ করে, ব্যক্তিগতভাবে আমি এই পদ্ধতিটি পছন্দ করি না, তবে এটি কাজ করে।
প্রশ্নটিতে যা বলা হয়েছে তা করার জন্য, আমি নিম্নলিখিত অ্যাপপ্লিট্রিপ্টটি লিখেছি (এটি শুধুমাত্র পি-স্পর্শ সম্পাদক v5.1 এবং অ্যাপলস্প্রিপ্ট v2 ব্যবহার করে ওএস এক্স 10.10.1 (জোসেমাইট) এর মোটামুটি নিয়ন্ত্রিত পরিবেশে পরীক্ষা করা হয়েছে। .4)।
# set the location of the 'database'
set prepareShipments to "/some/dir/list.csv"
# set variables to identify the label the needs to be printed and the list containing the dataset
set templateDir to "/some/other/dir"
set templateName to "someTemplate"
set templateExt to ".lbx"
# open the template, my default application for this filetype is "P-touch Editor"
do shell script "open " & templateDir & templateName & templateExt
# "System Events" will tell its process "P-touch Editor" to perform our desired tasks
tell application "System Events"
#hold-up while application is loading and set it to the 'frontmost' or active process
repeat until frontmost of process "P-touch Editor" is true
tell process "P-touch Editor" to set frontmost to true
end repeat
# actually start telling P-touch Editor what to do:
tell process "P-touch Editor"
# wait for template to open..
repeat until exists window templateName
end repeat
# 'connect...' to database, if already connected (then the menu item is not clickable), choose to 'change...' the database instead
click menu item "Connect..." of menu "Database" of menu item "Database" of menu "File" of menu bar item "File" of menu bar 1
click menu item "Change..." of menu "Database" of menu item "Database" of menu "File" of menu bar item "File" of menu bar 1
# hold-up until dialog window exists
repeat until exists window "Open Database"
end repeat
# enter the location of the new 'database'
set value of text field 1 of window "Open Database" to prepareShipments
# my csv file does not contain headers. So uncheck the 'Header Row Contains Field Names' box
if value of checkbox "Header Row Contains Field Names" of window "Open Database" is 1 then
click checkbox "Header Row Contains Field Names" of window "Open Database"
end if
# just keep swimming...
click button "Next" of window "Open Database"
click button "OK" of window "Open Database"
# database is connected to template; time to print
click menu item "Print..." of menu "File" of menu bar item "File" of menu bar 1
click button "Print" of sheet 1 of window templateName
# printjob has been issued, time to wrap up. Close the window
click menu item "Close" of menu "File" of menu bar item "File" of menu bar 1
# changes have been made, give some time for the 'save changes' dialog to pop up.
delay 0.5
# if it did pop up, tell it to not save the changes (using short-cut '[cmd] + [down arrow] + d')
if exists window 1 then
if name of window 1 = templateName then keystroke "d" using command down
end if
# do a regular quit, we do not know if any other unsaved windows are open, or whether we want to keep those changes, so do not force any 'do not save' actions.
click menu item "Quit P-touch Editor" of menu "P-touch Editor" of menu bar item "P-touch Editor" of menu bar 1
end tell
end tell
#now that printjob is finished and P-touch Editor is quit, add some additional script for cleaning the inventory, moving printed .csv files to archived folder.
এটি কি দেখতে উপরের স্ক্রিপ্ট মন্তব্য দেখুন। অবশ্যই আরো ক্ষেত্রে মামলা করার জন্য এটি উন্নত করা যেতে পারে তবে আমি ব্যক্তিগতভাবে এটি নিয়ন্ত্রিত পরিবেশে চালাব। সম্ভবত একটি হেডless ম্যাক মিনি যে প্রিন্টার সংযুক্ত করা হয়।
বিকল্প উত্তর (উইন্ডোজ ব্যবহারকারীদের জন্য আরো উপযুক্ত):
@ হানু উল্লিখিত হিসাবে, একটি 'লেবেলিং এসডিকে' পাওয়া যায় ভাইয়ের ওয়েবসাইট বলা হয় 'বি-প্যাক এসডিকে'। এটি টেকনিক্যালি বর্ণনা করা পদ্ধতিগুলির মধ্যে একটি ব্যবহার করে স্বয়ংক্রিয় ডাটাবেস সংযোগের জন্য অনুমতি দেবে এই নথীটি , কিন্তু একটি উইন্ডোজ পরিবেশ প্রয়োজন। যেহেতু আমার ওয়েবসার্ভার লিনাক্সে চালিত হয় এবং আমার ক্লায়েন্ট সমস্ত OS OS চালায়, আমি এই মুহুর্তে এটিকে আরও পরীক্ষা করতে অক্ষম।
এটি একটি আরো 'মার্জিত' সমাধান বলে মনে হয়, তবে। আমি GUI ম্যানিপুলেশন স্ক্রিপ্টিং পছন্দ করি না। এটা খুব অদক্ষ মনে হয়।