Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Installation
»
macOS / Mac OS X
»
[SOLVED]Getting AppleScript output
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
Forum Rules
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
[ANN] fpGUI Toolkit v2.0....
by
cdbc
[
Today
at 04:09:12 pm]
Duplicate identifier erro...
by
Martin_fr
[
Today
at 04:03:10 pm]
Reporting a Bug? in Strin...
by
Bart
[
Today
at 03:22:59 pm]
Duplicated icon in the Wi...
by
dseligo
[
Today
at 03:14:50 pm]
LazSerial not found
by
coradi
[
Today
at 02:58:16 pm]
Status of FPC 3.4.0 or FP...
by
vfclists
[
Today
at 02:56:49 pm]
Frustrating Error When us...
by
TYDQ
[
Today
at 02:50:02 pm]
We are starting to use La...
by
marcov
[
Today
at 02:33:56 pm]
[AGGPas] Difference betwe...
by
wp
[
Today
at 02:15:23 pm]
[AGGPas] Usage of scale m...
by
Roland57
[
Today
at 11:33:08 am]
makefiles
by
valdir.marcos
[
Today
at 11:24:17 am]
ThorVG - test (lightweigh...
by
valdir.marcos
[
Today
at 11:19:41 am]
Problems in drawing an ar...
by
valdir.marcos
[
Today
at 11:18:39 am]
AI to port DBDesigner For...
by
Graeme
[
Today
at 10:26:15 am]
Select rectangle of the i...
by
valdir.marcos
[
Today
at 10:01:09 am]
DCPcrypt v2.0.6 — Cryptog...
by
valdir.marcos
[
Today
at 09:55:55 am]
[SOLVED] Lazarus recompil...
by
valdir.marcos
[
Today
at 09:53:34 am]
How to determine the unkn...
by
Roland57
[
Today
at 09:43:27 am]
Delphi Magazine issues 1-...
by
LeP
[
Today
at 09:17:41 am]
The Future of FPC
by
marcov
[
Today
at 09:05:14 am]
Does not go out of functi...
by
440bx
[
Today
at 08:49:08 am]
Questions from a Windows ...
by
Boleeman
[
Today
at 08:28:58 am]
[Solved] Help needed comp...
by
Zvoni
[
Today
at 08:08:04 am]
; after then
by
valdir.marcos
[
Today
at 07:49:22 am]
CPU-View
by
valdir.marcos
[
Today
at 06:45:25 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED]Getting AppleScript output (Read 4831 times)
bobix
Jr. Member
Posts: 71
[SOLVED]Getting AppleScript output
«
on:
April 21, 2017, 12:37:46 pm »
Does anyone knows how to get AppleScript's output? I am trying this way, but getting empty string:
Code: Pascal
[Select]
[+]
[-]
unit
Unit1
;
{$mode objfpc}{$H+}
interface
uses
Classes
,
SysUtils
,
FileUtil
,
Forms
,
Controls
,
Graphics
,
Dialogs
,
StdCtrls
,
process
;
type
{ TForm1 }
TForm1
=
class
(
TForm
)
Button1
:
TButton
;
procedure
Button1Click
(
Sender
:
TObject
)
;
private
{ private declarations }
public
{ public declarations }
end
;
var
Form1
:
TForm1
;
implementation
{$R *.lfm}
{ TForm1 }
procedure
TForm1
.
Button1Click
(
Sender
:
TObject
)
;
var
ss
:
string
;
begin
runcommand
(
'osascript '
'return "hello world"'
''
,
ss
)
;
showmessage
(
ss
)
;
end
;
end
.
«
Last Edit: April 26, 2017, 03:49:42 pm by bobix
»
Logged
Lazarus 1.8.4 r57972 FPC 3.0.4 i386-win32-win32/win64
Phil
Hero Member
Posts: 2737
Re: Getting AppleScript output
«
Reply #1 on:
April 21, 2017, 03:30:30 pm »
Quote from: bobix on April 21, 2017, 12:37:46 pm
Does anyone knows how to get AppleScript's output?
Perhaps RunCommand can't find the executable to run unless you include a path to it. See if what you're trying to do works with other command line programs, eg, ls.
osascript is probably in /usr/bin.
Note that the form of RunCommand you're using is deprecated. I usually just use TProcess instead of functions that attempt to simplify TProcess by wrapping it.
http://www.freepascal.org/docs-html/fcl/process/runcommand.html
Logged
bobix
Jr. Member
Posts: 71
Re: Getting AppleScript output
«
Reply #2 on:
April 21, 2017, 03:57:39 pm »
Thank you!
It think i have found a solution, but have to test it on Monday. I will give a feedback if it works
Logged
Lazarus 1.8.4 r57972 FPC 3.0.4 i386-win32-win32/win64
bobix
Jr. Member
Posts: 71
Re: Getting AppleScript output
«
Reply #3 on:
April 26, 2017, 03:49:15 pm »
Working code. Same as Linux one
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
Button1Click
(
Sender
:
TObject
)
;
var
AProcess
:
TProcess
;
AStringList
:
TStringList
;
begin
AProcess
:
=
TProcess
.
Create
(
nil
)
;
AProcess
.
Executable
:
=
'/bin/sh'
;
AProcess
.
Parameters
.
Add
(
'-c'
)
;
AProcess
.
Parameters
.
Add
(
'echo `ls`'
)
;
AProcess
.
Options
:
=
AProcess
.
Options
+
[
poWaitOnExit
,
poUsePipes
]
;
AProcess
.
Execute
;
AStringList
:
=
TStringList
.
Create
;
AStringList
.
LoadFromStream
(
AProcess
.
Output
)
;
showmessage
(
astringlist
.
Text
)
;
AStringList
.
Free
;
AProcess
.
Free
;
end
;
Logged
Lazarus 1.8.4 r57972 FPC 3.0.4 i386-win32-win32/win64
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Installation
»
macOS / Mac OS X
»
[SOLVED]Getting AppleScript output
TinyPortal
© 2005-2018