Writing Extensions
JB
sundown at pacifier.com
Thu May 25 21:58:17 EDT 2017
Here is the Java code to test args;
public class Arguments {
public static void main(String[] args) {
for(int i = 0; i < args.length; i++) {
System.out.println(args[i]);
}
}
}
After it has been compiled as Arguments.class you
can call it in liveCode like this:
on mouseUp
put "Drink" into arg1
put "Hot" into arg2
put "Java" into arg3
put "/Users/THEUSER/Desktop/" & return & "java Arguments"into pFilePath
put "java Arguments" into pFileName
put shell( "cd" && pFilePath & return & pFileName) && arg1 && arg2 && arg3 into fld id YOURFIELD
beep 2
end mouseUp
JB
> On May 17, 2017, at 2:49 PM, Mark Wieder via use-livecode <use-livecode at lists.runrev.com> wrote:
>
> On 05/17/2017 02:30 PM, JB via use-livecode wrote:
>> It looks to me like a the easier stepping
>> stone to fill the gap is just write the code
>> in C/C++, compile it and call it using a
>> shell coimmand.
>
> Is that working for you in Android apps?
>
> --
> Mark Wieder
> ahsoftware at gmail.com
>
>
> _______________________________________________
> use-livecode mailing list
> use-livecode at lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
More information about the use-livecode
mailing list