Script editor ? Brackets + Buildsys extension

Not feeling comfortable with ESTK's editor, and much more with Brackets (Edge Code) I was feeling constrained by the constant back and forth between both to just launch a script.
That was before i was led to buildsys build by David Deraedt. This one isn't in the bracket's extensions list, and it requires a couple of tricks to get it to work, but it's avoided me to open ESTK for the last couple of days.
You'll have to :
download from the github address https://github.com/davidderaedt/brackets-buildsys directly into brackets (install from URL),
"edit config" to move the Ps/Ai/inD json in the "not disabled",
do a chmod 755 in the terminal from the Brackets extensions folder / buildsys / scripts / execextendscript.sh
launch once Illustrator-script (in file menu)
Next time it says Build (Illustrator script) and gives you cmd-B, your scripts launches from Brackets directly into Ai.
Oh, if there's an error in your script, it might throw an error at you, so you have to be good

Select one of the files you can't open in the Finder, choose Get Info from the File menu, and choose NeoOffice under Open With, clicking on Change All if desired.
(35451)

Similar Messages

  • Problem opening a sheet music file on Script Editor

    I have sone sheet music files but when I try to open them I get an error message saying that the dictionary of the extension or application is not scriptable and then I get another message saying that the Script Editor cannot open files in the Script Editor Document format. I have no idea what that means. I think they're MUS files, if that helps at all. Thanks.

    Hi tracy,
    This forum is for discussion qnd questions regarding Apple's productivity application AppleWorks.
    Your question will have a better chance of a knowledgeable response in one of the other forums on this site, or on a forum elsewhere for the application that was used to create these files.
    The filename extension .mus is usually a Finale Music Score, created by one of the Finale Music family of applications. You can find out more about Finale using the link in this post.
    Regards,
    Barry

  • Apps open in Script Editor after Security Update 2006-001 Mac OS X 10.4.5

    Several applications, notably "MathGo 2.2", no longer open when double clicked. Instead they open in a Script Editor window (after informing me they are not scriptable).
    It is as if Finder no longer recognizes them as applications! "Get Info" shows them as still being apps however.
    I can work around this by using AppleScript to launch them: "tell application "HD:Applications:MathGo 2.2:MathGo 2.2" to activate" but that's kind of a pain.
    Anyone else having problems like this? I'm certain it is tied to security update because I have an another start-up drive without the latest security update. These apps still run correctly when double clicked on that system.

    The Finder gets easily confused, who knows why, by applications whose name ends in a "." and something other than the extension "app"--it manages to get confused even without the latest Security update. There are those who have one account where "GreatApp 2.1" launches without a hitch, and another account where it doesn't. The easiest thing to do is do GetInfo on the application, and rename it to "GreatApp21.app"--it should then work fine.
    Francine
    Schwieder

  • Apple Script Editor

    Hi Everyone,
    I was just wondering that if I have created a script using Apple script recorder button and it does what I have wanted. Now I was just wandering that how would I save it so that when I click on it, script will run and do what it suppose to do?
    Thanks,

    Hi Colin,
    Thanks for your reply. I was able to record some of the action and when I have tried to execute that using apple script editor and it works fine. But once I saved that script using .scpt extension and then tried to click on it then it just opened the script editor but did not run without click execute. Do you know why?
    Thanks,

  • Installer launches Script Editor

    I am trying to reinstall After Effects and the installer only launches Script Editor. same thing happened when I tried to install a printer package.
    This is really frustrating, any help would be gladly received.

    I am not familiar with this software. Is the installer an installer package (ie. does it have an icon that looks like an open cardboard box)?
    If not, the installer for this software may be a self contained application which may have incorrectly become associated with "Script Editor.app". Unsetting this association can be accomplished by resetting the "Launch Services" database one way or another, but as a short term workaround, try adding the extension ".app" to the installer to see if it will run.
    If the installer has the icon as described above, ignore the previous paragraph.

  • Length of if statement in script editor is more than two lines

    dear friends
           when i am modifying the purchase order with new purchase organisations in script editor , i found that the line continued to both left and right pages, if i want to extend the line there is no 3 rd page. how can i extend the if statement.
    regards,
    k.srinivas.

    Hi,
    After complete of line , Please Enter Shift+F8.
    Regards
    jana

  • [newbie qn] script runs under Script Editor but not as application

    I have a simple script that runs successfully under the Script Editor. The script is:
    tell application "Safari"
    activate
    tell (make new document) to set URL to "http://www.google.com"
    end tell
    However, when I tried to run it as an application, I encountered the error 'Can't set document "Untitled" of application "Safari" to "http://www.google.com".'
    How should I rewrite the script so that it would run as an application? Thanks!

    Hi PointZero01
    Your script compiles and works fine saved as an application and tested under 10.5.6.
    slightly different but does exactly the same
    tell application "Safari"
    activate
    make new document
    set URL of document 1 to "http://www.google.com"
    end tell
    Budgie

  • Script Editor does not work. Panel blue and empty.

    Hi
    I installed Oracle Database XE yesterday on
    Acer TravelMate C300, Microsoft XP SP2 Tablet Edition
    and ..
    I cannot read SQL scripts
    I cannot access to the editing panel of Scripts Editor when I want to create a new script.
    I used System and HR login.
    The panel is blue and empty.
    Thank you for any information
    Best regards
    JRD120

    I cannot read SQL scriptsWhere you want to read SQL scripts?
    I cannot access to the editing panel of Scripts
    Editor when I want to create a new script.About which "Scripts Editor" you talking about? From TOAD?
    The panel is blue and empty.Panel??

  • How to define variables in toad sql script editor - newbie

    I have just pull out the script of a Function and want to run it on toad SQL editor.
    I am little bit confused how to define the VARIABLEs here in toad SQL editor to run my script.
    SELECT
    NVL(SUM(debit), 0) - NVL(SUM(credit), 0)
    INTO l_accountBalance
    FROM
    GLP_VoucherMaster vm
    INNER JOIN GLP_VoucherDetail vd ON vm.GLP_VoucherMaster_ID = vd.GLP_VoucherMaster_ID
    INNER JOIN GLP_ChartOFAccounts coa ON vd.GLP_ChartOfAccounts_ID = coa.GLP_ChartOfAccounts_ID
    WHERE
    vm.isActive = 'Y' AND vd.isActive = 'Y'
    -- *** how to define variables in toad sql script editor ***
    AND vm.voucherDate < p_cDate
    AND coa.AccountCode LIKE p_accountCode || '%';
    Thanks
    w\

    Just prefix with a colon (:)
    SELECT   NVL (SUM (Debit), 0) - NVL (SUM (Credit), 0)
      INTO   L_accountbalance
      FROM           Glp_vouchermaster Vm
                 INNER JOIN
                     Glp_voucherdetail Vd
                 ON Vm.Glp_vouchermaster_id = Vd.Glp_vouchermaster_id
             INNER JOIN
                 Glp_chartofaccounts Coa
             ON Vd.Glp_chartofaccounts_id = Coa.Glp_chartofaccounts_id
    WHERE       Vm.Isactive = 'Y'
             AND Vd.Isactive = 'Y'
             AND Vm.Voucherdate < :P_cdate
             AND Coa.Accountcode LIKE :P_accountcode || '%';
    /:p

  • Data access error while running  the script in fdm workbench script editor

    Hello Experts,
    I have been getting the error when i run the script in script editor of fdqm workbench client.this is the error
                              -2147467259 Data access error and it is navigating the error at line 30 about this script "Set rsAppend = DW.DataAccess.farsTable(strWorkTableName)"
    Please revert me asap where i should load the data from peoplesoft to one of my planning database through fdm.
    Thanks in advance...

    Hi,
    Thanks for your suggestion's here i am going to run the datapump script so while i am running in workbench it is throwing data access error.So as you guy's suggested i created one import format and added this script to that import format which is added to one of my location even it is throwing the same error.I am getting the error at this sentence   "strWorkTableName" I want to know what is this where it reflect's?So my question is Is there any difference while running data pump or integration script.Please let me know a detailed navigation steps to run this script's with out data access error to run these kind of scripts.
    Note:Again my target is to load the data to planning database through fdqm which i am doing through sql statement's.
    Suggest your valuable suggestion's
    Thanks in advance...
    I am getting the error at this sentence   "strWorkTableName" I want to know what is this where it reflect's?

  • Script works in Script Editor, when saved as app, no longer works

    I've been playing around with AppleScript trying to learn a little. I wrote an app to fullscreen the current application. First I wrote one to full screen a specific app:
    tell application "Safari"
    set the bounds of the first window to {0, 0, 1440, 894}
    activate
    end tell
    This worked without any problems and I set a keyboard shortcut to activate it.
    Then I decided to make it work for the current app:
    tell current application
    set the bounds of the first window to {0, 0, 1440, 894}
    end tell
    When I ran it in Script Editor, it worked fine and set the bounds of the Script Editor window to what I asked. When I save it as an application the same way I did the first app, it doesn't work. I get the error message "Can't set the bounds of window 1 to {0, 0, 1440, 894}." I tried it on the same Script Editor window it worked on when I simply clicked run, but I keep getting the error message.

    try something like this saved as an app
    tell application "AppleScript Editor"
    activate
    make new document
    set the bounds of the first window to {0, 0, 1440, 894}
    make new paragraph at beginning of document 1 with data "hello world"
    end tell
    tell application "TextEdit"
    activate
    make new document
    set the bounds of the first window to {0, 0, 1440, 894}
    make new paragraph at beginning of document 1 with data "hello world"
    end tell
    Budgie

  • Links to launch Script Editor no longer work

    Links to launch Script Editor no longer work.

    I don't know, I just use a very simple Applescript to enclose the clipboard in tags that allow the user to launch Script Editor from the browser:
    set the clipboard to "<a href=applescript://com.apple.scripteditor?action=new>Click here to launch Script Editor</a>.
    <pre class=COMMAND>" & return & (the clipboard) & return & "</pre>"
    And it wraps the script on the clipboard on PRE tags so the structure is preserved. Neither of those work now.

  • A program which used to open in Classic now opens in Script Editor

    I am using an old web design program by Symantec called Visual Page 1.1.1. It has worked fine for several years, but yesterday I opened it and instead of opening in Classic, it tried to open in "Script Editor" in OSX. Classic never opened at all. I have tried reinstalling it but the same problem occured. I tried using "Open with" Classic on the Info page, but Classic is greyed out. Can anyone help? I am starting to import the pages into a new program (Freeway) but this will take forever. I would like to still be able to work with this program. Thanks for any assistance. (I called Symantec and the program is too old for them to help with.)

    And Get Info shows it as a Script Editor document ? rather than Classic Application ?
    I had this about a year ago, but for the life of me, I can't remember what I did to fix it. I may have posted here when I got desperate. A search in discussions for Script Editor and Classic may come up with something.
    Edit:
    ===
    http://discussions.apple.com/thread.jspa?messageID=4762745&#4762745

  • Create a counter for the rows in a table using script editor?

    Hi ,
    I want to add afield in a particular table  with first field is its serial number . How to use scripting editor to fill the serial number ?
    How to create a counter ?
    Edited by: Rajan.Dexter9 on Jan 30, 2012 9:40 PM

    Hello Rajan,
    Create a field in the table and name it as 'SERIAL'.  Create a variable called 'count' with default value as 0.  Now in script editor, for javascript language and calculate event, write the following script.
    var fields = xfa.layout.pageContent(xfa.layout.page(this)-1, "field", 0);
    for (var i=0; i <= fields.length-1; i++)
         if (fields.item(i).name == "SERIAL")
              count.value = count.value + 1;
                     this.rawValue = count.value;     

  • Can not open script editor in HDS

    Hi everybody,
    When we open Script Editor, we see the notice: "cannot connect to distributor, script editor will now exit"
    Can you help me to resovle it?
    We use ICM 7.1
    Thanks you so much!

    You might also see this message if the services are running, but you are using Windows Remote Desktop (RDP), and are not logged in with console mode.
    Try this:  mstsc aaa.bbb.ccc.ddd /admin
    where aaa.bbb.ccc.ddd is the IP address or hostname of your HDS.  The /admin switch gets you in with console mode. 
    Net-net, you should see the ICM process' console windows on the taskbar.  If you don't, then either the service isn't running, or you're not in /console mode.
    fyi - ICM 7.1 is long-since end-of-life.  You should seriously consider upgrading to a more recent, supported release.

Maybe you are looking for

  • Error in begining a session when using UTF16 mode in OCIEnvNlsCtreate

    I wrote this code : OCIEnv* envhp; OCIError* errhp; OCIServer* srvhp; OCISvcCtx* svchp; OCISession* usrhp; envhp = (OCIEnv *) 0; errhp = (OCIError *) 0; srvhp = (OCIServer *) 0; svchp = (OCISvcCtx *) 0; usrhp = (OCISession *) 0; int mode = OCI_DEFAUL

  • Hi, my ipod has been not allowing me to touch the screen. Also the volume buttons are locking the ipod instead of turning up the music.

    Hi! Yesterday I was at the gym, and i wass going to get my iPod touch and it wasnt allowing me to unlock the screen. I let it go for awhile then I went to go look at it again and still wasnt able to unlock my iPod. Then I did;t really bother with it,

  • Norton anti virus

    I just got the new imac with OS X 10.4.8. I moved my stuff from my old mac running OS X 10.3.9 via the firewire as asked during set up. The problem I am having is the Norton Anti Virus I was running in 10.3.9 will not run in 10.4.8. I removed the Nor

  • Error launching Query Builder

    Immediately after supplying userid/password/database parameters when launching the Oracle Query Builder, the following error message is displayed: OBE-15952: User privilege table not loaded OBE-15950: No Query Builder tables--Database open/save is di

  • Building i686 under x86_64 error

    Have tried arch wiki guide on building i686 under x86_64 but am getting this error --2014-08-26 17:01:13-- https://aur.archlinux.org/packages/br/broadcom-wl/broadcom-wl.tar.gz Resolving aur.archlinux.org (aur.archlinux.org)... 5.9.250.164, 2a01:4f8:1