Find and replace text in Illustrator using Apple script - replace

I am using the current version of Illustrator CC. I would like the ability to find and replace 5 instances/frames of text within an Illustrator or EPS file. Maybe a drag and drop type of script that executes a prompt for a find and replace field?
Is this possible? Any suggestions would be much appreciated!

SO's for getting help with your own code. For requesting scripts, try Adobe's Illustrator Scripting forum.

Related

use cpp.vim to chage the highlight (vim of ubuntu)

I fell that the highlight in vim is not as powerful as I want. such as "&&","||" these can not be highlighted. I know it can be changed by cpp.vim but I don not know how to do it. Can someone tell me how to do it? Thank you
If default highlight options does not suits you, try some custom plug-in before trying to write your own, most of plug-ins are located on github e.g.
https://github.com/octol/vim-cpp-enhanced-highlight
Maybe you should start with one on vim plug-in managers first e.g.
https://github.com/VundleVim/Vundle.vim

Sublime: previosuly searched/replaced items

I am a Sublime's newbie and I am trying to use the cool Find/replace tab.
Is there a way (package or shortcut) to have a scroll-down menu that shows items I previously searched/replaced? This feature is available for example in Notepad++. This would be particularly helpful hen working with regex's variations.
I searched and found question about running a series of search-replaces in a row but what I need is just the possibility to go back to items I looked for in the past.
Thanks a lot
In Sublime 3, this feature is available. Below is a screenshot (underneath the window you see on the right is a drop-down arrow). Are you using Sublime 2 or 3? Sublime Text 3 can be downloaded here.

Find and Replace/Update links like Dreamweaver in other editors

I've been slowly weening myself off of Dreamweaver and using other editors like SublimeText and Espresso. But there are two features that are lacking in those editors that I still find the need to use Dreamweaver for:
1.) Find and Replace within entire current local site.
2.) Update links when a page is saved within another directory. For example, if you rename, or re-save a file that is open within another directory, Dreamweaver will ask you to update the links. This will then make sure that if the file is moved or saved to another directory it will update any links within the HTML for stylesheets, images, navigation, etc.
Does any know of any other apps or tools that might be able to accomplish those actions without having to crack open Dreamweaver?
Any input is greatly appreciated. Thanks!
The Sublime Text plugin 'Side Bar Enhancements' has Search/Replace entire project functionality. Doesn't handle update links across files (that i've found)
PHPStorm may handle the second question.

Office Template - Embedded VB Script Inactive/Unspported?

First off, this might be the simplest questions on this site depending on the answer.
Question: Is Embedded VB scripts supported in Office Word templates (.dot/.dotx)?
If not, thank you!
If it is, why is this not working:
http://postimage.org/image/2uubobv38/
It works flawlessly in a .doc format but not when i try to save it as a template.
I'm running Office 2007 but 2003 doesn't work either, is there something special you need to enable for using embedded scripts in a .dot file?
I don't know if this is the proper forum for questions like this, but i really don't know anywhere else to turn regarding programming in general so.. help?
Ok so after some logical debugging (read: days), i found out that it IS supported, just not in the "traditional" way of thinking.
In a normal document, you apparently use the Open() function to load things when opening the document, because that's what you do, you open the document.
When using embedded scripts in a .dot file, you're not opening the file.. you are creating a new instance of the .dot file so the function you should be using is New():
Private Sub Document_New()
UserForm1.Show
End Sub
This should show you form from "opening" a .dot file.

Exporting to Powerpoint from Coldfusion

I was interested in being able to export data from Coldfusion to Powerpoint. I saw this section on StackOverflow
Generating Powerpoint PPT with ColdFusion?
which was posted almost 3 years ago. I was hoping there would be something more relevent since then instead of using the Apache POI.
I have tried using the cfcontent tag similar to how you would export to excel, I am able to get ppt to open, but a blank template opens up when I use cfcontent type="application/vnd.ms-powerpoint". Ultimately, I will be using this to try to export charts to a ppt slide. I believe cfcharts with the jpg option is the best solution, although I am currently using FusionCharts on my site itself.
Sorry I'm such a noob, but any suggestions or advice would be greatly appreciated.
Thanks!
Have you looked into the <cfpresentation /> family of tags? It does exactly what you are looking for, allows you to generate PowerPoint files on the server. http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7910.html