Date: Fri, 19 Mar 2004 08:14:26 -0800 ... Hi Mark, It's been almost a year so I decided to try to update my databases to FileMaker 7.0 again. I forgot that it...
PS: Here is the AppleScript that does what I want: tell application "FileMaker Pro" tell current record of layout "Data Entry View" set userID to cell "User...
Script Debugger is a fine tool to develop AppleScripts. Now I have tried to develop JavaScripts with Script Debugger with JavaScript OSA. It took me some...
... I don't have InDesign, so I can't test, but you might want to try the following: var myInDesign = MacOS.appBySignature("InDn"); myInDesign._strict = false;...
... I don't have FileMaker, so... what happens when you simply do this? fmp = MacOS.appBySignature( 'FMP7' ); fmp._strict = false; userID = fmp.layout[ 'Data...
... Thanks for the help. Here is the error I get... AppleScript Error TypeError: fmp.layout['Data Entry View'].current_record.cell has no properties The result...
... I have tried, but without success. ... Result: TypeError: myDoc.pages[1].textFrames has no properties "var myText= myDoc.stories[1].contents;" works. " var...
While, I try to figure out how to access a cell in a FileMaker 7.0 database, I figured I should try some work arounds. I can get the string data to a variable...
... Note to self - RTFM... While this is a long about way around to get and set field values in FM 7 - I'm embedding AppleScript inside of the JavaScript...,...
... Yes, it works both ways: set utc to run script "new Date().toUTCString()" in "JavaScript" -- --> "Thu, 10 Mar 2005 15:33:38 GMT" Cheers, Arthur J. Knapp...
Hi, I'm pretty new to MAC and JSOSA. I move to JSOS because after 10 years of C/C++/Java dev I got hard time to learn AppleScript. I testing JSOSA to pilote...
... I'm a little confused. I downloaded a demo, and I can't even find a dictionary for the app. Their website says its scriptable, but I can't figure out how...
I try the iView._strict = false and I got the same error. Exept that it told me 'MacOS.AEClass: can't convert to' without the stange characters at the end of...
I can't figure it out. It's simple enough in AppleScript: tell application "iView MediaPro" catalog 1's selection's item 1's name end tell but I can't get...
... In the string generated by the md.toString() I think that I locate the index of the image in the whole catalog, so I can parse that string waiting for a...
Hello- I am new to jsosa and am a little confused. I am an experienced JavaScripter with moderate Applescript knowledge trying to do something in BBEdit. My...
Sorry, my last email got cut off by a stray null character. ... I played around with this for a while, and couldn't get the object "recast", sorry. This is a...
Hi Folks, Well, its been a long while, but I'm once again moving forward with JavaScript OSA. I'm pleased to announce JavaScript 2.0a1 (that's Alpha!!!). ...
... Mark, this is fantastic! Thank you. :) ... Core.version; //-> "1.0b10" Alrighty, then. ;-) I'll give the component a workout this week. Cheers, Arthur...
Hi All, In JavaScript OSA 2.0, I've modernized all the file handing to use FSRefs. The advantage here is that JSOSA is now fully capable of handling long file ...
Hi Folks, I made some good headway over the weekend. JavaScript OSA 2.0a2 addresses two specific regressions in the 2.0a1 build: - opening existing scripts...
[My apologies if you receive this message more than once - I've been experiencing some problems with Yahoo Groups] Hi Folks, I made some good headway over the...
... Ohhh... there's a lot of good stuff here!!! :) MacOS.appByBundleID(bundleID, loadDict) MacOS.appByHFSPath(hfsPath, loadDict) MacOS.appByPath(posixPath,...
Hi, ... Thanks for the ideas. I'm no leaning towards changing the MacOS.FileSpec class so that it uses CFURLs internally rather than FSRefs. This allows ...