-
Flash Player 11.4 is available for download
The latest Flash Player version (11.4.402.265) is available. Please go to Adobe site to update Flash Player.
-
Flash Player 11.3 issues on Mozilla Firefox
A new version of Flash Player plug-in is available today (June 21st). The latest version is 11.3.300.262.
Go to http://get.adobe.com/flashplayer/ to get the latest version.This version is for Mozilla Firefox and Safari.
If you have any issues with Flash Player 11.3 on Mozilla Firefox, see Issues | Flash Player 11.3 | Mozilla Firefox.If you have issues with installing Flash Player, please post the issue @ http://forums.adobe.com/community/flashplayer/installing_flashplayer.
-
Fireworks CS6 What’s New
Here is the link: http://helpx.adobe.com/fireworks/using/whats-new-cs6.html
Help & support page: http://helpx.adobe.com/fireworks.html
Archive of old docs: http://helpx.adobe.com/fireworks/archive.html -
FrameMaker 10 ACE is live
Check your mastery by registering @ www.pearsonvue.com/adobe/exams/
-
ExtendScript to print the word count in an FM book file
Find the script here.
To test the script:- Create a book file with many chapters. Chapters must be added as files.
- Open the book file.
- Ensure that chapters are not opened.
- Run the script.
- Wait for the script to open all the chapters and then print the word count.
(Note that the script doesn’t include the words inserted in tables.)
-
Developing a document checklist using ExtendScript
I developed a script that can be used as a document checklist for a FrameMaker 10 book. You can add questions such as, “Have you updated variables?” Running the script captures the question and the answer to a .txt file. See the comments in the script to know more details.
Download the script here.
-
Disabling ActiveX filtering
-
Your Flash Player version
I see many comments from users about the Flash Player version they installed and the most updated version available from Adobe. The latest version of Flash Player is 11,0,1,152.
I have developed a Flash movie to help you. If you have Flash Player installed, it shows the Flash Player version installed on your machine and your operating system. It also displays a link to the Flash Player uninstaller for your operating system. Means, if you are on Mac, the link will point to the uninstaller for Mac.
Note that if you don’t have Flash Player installed, you see “plug-in not found” error.
Compare the version available in your machine and the latest version. If needed, uninstall the existing version and get the latest installer from Adobe.
-
Adobe Flash Player on Mac Lion with Safari
I found many comments from users that Flash Player is not getting downloaded on this OS-browser combination. Please note that the Download window in Safari is invisible till you click the Download icon on the top-left side.
-
Developing ExtendScripts – Part 3
Let me repeat, if you are very new to ExtendScripts, see the first two entries in this series. Here we are going to see a bit more complex example. This is what we are going to accomplish: If a book file is opened, running the script opens all FrameMaker files (chapters) added to it. Based on a property that we set in the script, it shows or hides a conditional text and then creates a pdf file of the book.
Before trying out this example, ensure that you do the following:
- Create a FrameMaker book, myBook.book. And, save it in a directory, FM_script, in your C: drive. (Feel free to change the name and location of the file. In that case, update the bookFile property value in the script.)
- Add two chapters to the book.
- Open the first chapter.
- Add some texts and apply the conditional text, Comment. (Comment is a default conditional text added in all the FrameMaker files. Don’t ask me how to apply a conditional text. Google is your friend.)
- Do step 3 to 4 for the second chapter.
Let us prepare a logical order for what we are going to accomplish:
- Open the book file. (Let us do it by ourselves; we will not seek help of the script. :))
- Open the first chapter.
- Hide the conditional text, Comment.
- Open the second chapter and hide the conditional text, Comment.
- Save the book as a pdf in a specific name.
Let us write functions to code step 2 to 4. First we will write a function that opens all chapters in the book.
bookFile=”C:\\FM_script\\myBook.book”
openedBook = app.ActiveBook
openBookFiles(openedBook)
savePdf(openedBook,bookFile + “.pdf”)
function openBookFiles(openedBook)
{
var bookChapter=openedBook.FirstComponentInBook
var chapterId = bookChapter.id
while(chapterId)
{
var chapterName = bookChapter.Name
chapterId = openFile(chapterName)
ShowHide(chapterId, “Comment”, 1)
bookChapter = bookChapter.NextComponentInBook
chapterId = bookChapter.id;
}
}The first line created an object of the active book. We decided to keep the book opened. We could have written a function to open the book by providing its path. This just a tutorial and I don’t want to complicate things!! OpenBookFiles() function is called by providing the book object. It detected the first chapter using the FirstComponentInBook property. It also detected the component ID. A while loop is added and it’s valid till we reach the last chapter in the book. We found the chapter name using the Name property and opened the chapter using the openFile() method. After each chapter is opened, it calls a function, showHide().
function openFile(chapterName)
{
openProp = GetOpenDefaultParams()
retParm = new PropVals()
fileOpen=Open(chapterName,openProp,retParm)
return fileOpen;
}You can open a FrameMaker file using the open() method. It needs three arguments: the file name, PropVal objects, and return parameters. PropVal objects is an array of values for various FrameMaker setting. We created the default ProPValue objects using the GetOpenDefaultParams() method. Return parameters are created using the new PropVals() method. The function opens the file and then calls the showHide() method:
function ShowHide(chapterId, condTextName, showOrHide)
{
CondFmtId = chapterId.GetNamedCondFmt (condTextName)
if (showOrHide)
CondFmtId.CondFmtIsShown = 1
else
CondFmtId.CondFmtIsShown = 0
chapterId.ShowAll = 0
}The showHide() function accepts the following parameters:
chapterId – The reference to the FM file that is opened.
condTextName – The name of the conditional text. That is Comment.
showOrHide – It can be 0 or 1. If it is 1, the conditional text is visible in the pdf. If it’s 0, conditional text is hidden.
Using the GetNamedCondFmt() function, it finds the conditional text ID of Comment, and based on showorHide value, it makes it visible or hidden by setting the CondFmtIsShown property to 1 or 0. After conditional texts are set, the script calls the savePdf() method to save the file as a pdf.function savePdf(openedBook,pdfName)
{
var params = GetSaveDefaultParams()
var returnParamsp =new PropVals()
var i = GetPropIndex(params, FS_FileType)
params[i].propVal.ival =FV_SaveFmtPdf
openedBook.Save(pdfName, params, returnParamsp)
return
}The function accepts reference to the book file and pdf name as the arguments. Using the GetSaveDefaultParams() method it gets all the default parameters of FrameMaker. It finds the File Type index, a unique value for FrameMaker using the GetPropIndex method. In the parameter’s array, it changes the file type to pdf using the params[i].propVal.ival =FV_SaveFmtPdf method. Then, it saves the file as a pdf using the Save() method.
You can also download the script here. Let me know if you find any issues.
Try to improve the code. For example, if you have a folder added to the book, you may notice that the files in the folder are not getting opened. As I mentioned earlier, my intention was to give you an overview!! It is yours now. All the best!!
How AI Is Transforming the Role of Product Managers
Artificial Intelligence is reshaping the product management discipline at an unprecedented pace. What was once a role dominated by intuition, customer feedback loops, and incremental decision-making is rapidly evolving into a function guided by data-driven intelligence, predictive insights, and automation. As AI becomes embedded in every layer of product development, the expectations from modern Product…
Queue Management App Launched: Share Your Feedback!
Just rolled out the Queue Management app with minimal testing (so be kind ).Check it out here: https://queue-manager-sunilbhaskaran.replit.app/ Give it a spin and let me know what you think!
Coding with Replit AI Agent: My Journey So Far
A lot has been happening lately with my Queue Management System (QMS), and I’m super excited to share the progress! 🚀 I’ve been spending about an hour every day for the past week, and honestly, Replit AI Agent has blown me away. After a certain point, it started understanding the context so well that I barely…

