Search the web
Sign In
New User? Sign Up
SubEthaEdit
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Extracting plain text from .seetext with Applescript   Message List  
Reply | Forward Message #187 of 212 |
Re: Extracting plain text from .seetext with Applescript

A simpler approach for saving from a script would be to just have SubEthaEdit
save the
document directly. For example, to save your file to the desktop, I'd do this:

tell application "SubEthaEdit" to save the front document in POSIX file
"/Users/mjb/Desktop/test.lua"

No idea if that would help with the zeros you mention, but I'd guess not --
looks more
like a file encoding issue. Try UTF-8 and see if the problem goes away.

--- In SubEthaEdit@yahoogroups.com, "Vaughan McAlley" <ockegheim@...> wrote:
>
> I've been happily coding with SubEtherEdit for years. I'm curious about the
> SubEther Text format, which I think would great for keeping track of changes
> over time.
>
> I want to be able to instantly save a plain text version of the file in a
> relevant place to compile or run. I wrote the following applescript (full
> source is at http://mcalley.net.au/see/SaveAsPlainText.zip )
>
> tell application "SubEthaEdit"
> set fileContents to plain text of the document of the front window
> end tell
>
> set commentMarker to "--" -- Lua comments
> set firstLine to first paragraph of fileContents
> set filePath to trim_line(firstLine, commentMarker, 0)
> my write_to_file(fileContents, filePath, false)
>
> ...the first line of the Lua file contains the path and filename I want to
> save to (commented):
>
> --Macintosh HD:test.lua
>
> The result ends up like this:
> http://mcalley.net.au/see/result.png
> ...with every data byte preceded by zero. Is there a fix for this, or a
> simpler way that I haven't been able to find?
>
> Thank you,
> Vaughan
>






Wed Aug 20, 2008 5:37 pm

michael_j_ba...
Offline Offline
Send Email Send Email

Forward
Message #187 of 212 |
Expand Messages Author Sort by Date

I've been happily coding with SubEtherEdit for years. I'm curious about the SubEther Text format, which I think would great for keeping track of changes over...
Vaughan McAlley
ockegheim
Offline Send Email
Aug 20, 2008
5:02 pm

... I just tried your script and it worked as intended on my machine. What encoding does your lua file usually have? Are you working on Tiger or Leopard? Intel...
Martin Pittenauer
martinpitten...
Offline Send Email
Aug 20, 2008
5:16 pm

... Aha, I tried making a symbolic link called test.lua that pointed to plain.txt and it works! As often seems to be the case, it has to be a symbolic link and...
ockegheim
Offline Send Email
Aug 20, 2008
11:13 pm

A simpler approach for saving from a script would be to just have SubEthaEdit save the document directly. For example, to save your file to the desktop, I'd do...
michael_j_barber
michael_j_ba...
Offline Send Email
Aug 20, 2008
5:52 pm
Advanced

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help