how to highlight subtitle in a video when a necessary word is spelling - plugins

I need to write a program to interact with Adobe After Effect and that program should do highlight subtitle when necessary word is spelled when subtitle file is provided as a srt file. I just want to know is there any way to archive this

Related

How to: Go to file (#) Go to for symbol in the same dialog

I am missing this feature from Sublime Text so much. Go to Symbol in Workspace feels so close to it and yet so far away.This is very useful in the following examples:
You have many classes that have the same symbol/function name, Pre-filtering the file lets you jump to the exact definition very fast
You know the name of the file, but you are not sure about the exact symbol/function name. Fuzzy searching it is super fast
You want to quickly preview the available symbols/functions in a given file
Here is a sample video demonstrating this feature in Sublime Text:
https://youtu.be/48f3N0hCaBU?t=109
If this is not currently possible, is it possible to implement as extension?
This is being added in v1.44. See https://github.com/microsoft/vscode-docs/blob/vnext/release-notes/v1_44.md#navigate-from-files-into-symbols
You can now continue to navigate into symbols of a file result simply
by typing #. For the file that is currently selected, all symbols will
appear and the editor will open in the background to reveal the active
symbol.
I created an extension that provide similar functionality:
https://marketplace.visualstudio.com/items?itemName=Cmacu.gotoanything

How to add code snippets in Microsoft Word

I am trying to add code snippets in Microsoft Word for my final thesis.
The image below is the sample. I want to ask how to add these kind of code snippets in a word document.
I found the following here.
Here is the best way, for me, to add code inside word:
go to "insert" tab, click "object" button (it's on the right)
choose "OpenDocument Text" which will open a new embedded word document
copy and paste your code from Visual Studio / Eclipse inside this embedded word page
save and close
The result looks very nice. Here are the advantages of this method:
the code keeps its original layout and colors
the code is separated from the rest of the document, as if it was a picture or a chart
spelling errors won't be highlighted in the code (this is cool !)
And it takes only few seconds.
If you are simply looking to format text like your example apply the Block Text paragraph style. You may need to modify the style to add the background colour you want. Whilst modifying the style you can also tell Word not to check spelling or grammar for all instances of that style as shown below.

Is it possible for a corrupted .doc file to be viewable as a .jpg of the first page of a Word document?

I received a document with a ".doc" file extension. It appeared as a random smattering of symbols/characters when opened in Word as is, or in a text editor as a .rtf or .txt file.
When the file extension was changed to ".jpg" and opened in an image viewer it appeared as a low resolution screen capture of the first page of a Word document. Is it possible for a corrupted Word document to exhibit this behavior? Or is this a clear example of a renamed image file being passed off as a corrupted .doc file?
Thanks in advance for your help.
EDIT: I have done some more investigation and Mac OS X Lion tells me that the file is actually a Windows bitmap image (.bmp).
It's likely that it has been renamed, Word interprets binary files as random characters and symbols. The only way I can think that a valid word document would exhibit this behavior is if a thumbnail is embedded in the Word document and the image viewer finds the headers and displays it. Either way it seems like you wont be able to use the contents.

How to make a plist file from a Word file

I`m new to iPhone programming, and I'm trying to find my way around some books and sites for learning.
I have a word file with about 200 quotes from the author, and I want to make an "iPhone quote" APP. How can I create a plist from it?
Note that each quote has two fields: the quote itself and the source (book) from which the quote was selected. I want to add them to a table view in my App in a way that the beginning of the quote be the text, and the book source be the subtitle in the cell style.
I figured out how to do it. All I had to do is create a template plist files in my xcode project, with a few rows, then I click to view as source (the XML tree). Then I can copy the tags before and after each quote, and paste them in my word file.
Once this is ready I copied the contents of the word file to Text Edit, removed all format, and copied that to the plis as source. It worked fine!

writing a text into xml file on click of a button

can any one tell me the procedure to write a text on to the xml file from the text box ,on click of the button.As im new to the iphone applications,please help me out
Check out the following answers.
For "light-weight", plain text writing:
Writing and reading text files on the iPhone
A more elaborate approach:
Writing files on iPhone
Good luck!