ApplescriptObjC [Hộp đầu ra]


0

Tôi muốn thêm một hộp vào ứng dụng applescriptobjc của tôi. Tôi muốn thêm một hộp hiển thị đầu ra của

    do shell script ""

vì vậy tôi nghĩ rằng tôi sẽ làm một cái gì đó như

    set a too (do shell script "")

Nhưng làm cách nào để hiển thị "a" trong hộp trên Giao diện người dùng?


Từ câu hỏi này và câu hỏi khác, bạn cần xem hướng dẫn hoặc sách về ObjC mái vòm
Đánh dấu

Câu trả lời:


1

Tôi tin rằng đây là những gì bạn muốn. Chạy mã trong mẫu applet Ca cao / AppleScript trong Script Editor và dùng thử.

set a to do shell script "echo monkey"
set window_rect to current application's NSMakeRect(40, 40, 500, 500)
set window_1 to current application's NSWindow's alloc's initWithContentRect:window_rect styleMask:15 backing:2 defer:false
set text_field to current application's NSTextField's new
text_field's setEditable:false
text_field's setDrawsBackground:false
text_field's setStringValue:a
window_1's setCollectionBehavior:(current application's NSWindowCollectionBehaviorFullScreenPrimary)
window_1's setContentView:text_field
window_1's setBackgroundColor:(current application's NSColor's blackColor)
window_1's makeKeyAndOrderFront:(current application's NSApp)
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.