Free webinar series from roundpeg inc.

roundpeg hosts roughly 60 minute free webinars on the 1st and 3rd Thursday of each month.They provide an overview of the technology, rather than the hands-on training experience of our classroom and e-learning training.These webinars are a great way to introduce new folks to base concepts or help with approvals for training budgets.Jump to registration for InDesign and Image Masking

Webinar Recordings and Schedule

 

View Recording

Adobe FrameMaker Workflow and FrameMaker 9 Interface

Join Matt Sullivan, Adobe Certified Instructor and Adobe conference representative as he explains why FrameMaker has such a loyal fan base in this 90 minute webinar.

View Recording

Introducing Topic-based Authoring with Adobe RoboHelp

Adobe RoboHelp is the industry standard for help authoring. It is both easy to use and powerful, scaling as large as needed, and supporting all major “flavors” of output.

Join Matt Sullivan, Adobe Certified Instructor and Adobe conference representative as he shows you how to get started with RoboHelp in this 90 minute webinar.

View Recording

Basics of TCS2 Integration

Join Matt Sullivan, Adobe Certified Instructor and Adobe conference representative as he shows you the basics of linking your FrameMaker books into RoboHelp projects in this 90 minute webinar

View Recording

Creating Computer Demonstrations with Adobe Captivate 5

Join Matt Sullivan, Adobe Certified Instructor and Adobe conference representative as he shows you the difference between recorded demonstrations and interactive simulations. Quizzing, soft skills, and new Captivate 5 features also discussed.

View Recording

Application Frameworks for Adobe Flex 4

If you are a Flex developer, you need more than a list of what Flex frameworks are available. You need to know which are actually viable.

Join Darryl West, our director of engineering as he discusses the state of today’s most popular Flex Frameworks.

View Recording

Ready to hit the big-time with Dreamweaver CS5?

You know Dreamweaver is a vital tool for web pro’s. But even if you’re a pro, it’s tough to stay up on all the new features in a new Adobe release.

Join Steve Farwell, roundpeg’s chief code monkey for a 90 minute walkthrough of new features in Dreamweaver CS5. With new and improved features like these, we dare you to say “Been there, done that”!

View Recording

Captivate and Presenter Grudge Match!

Ok, we couldn’t pull that one off, but would you settle for a detailed discourse on the relative merits of these two crucial Adobe eLearning tools?

Join roundpeg’s Matt Sullivan to see why it’s not a question of either Captivate or Presenter, but of how to use both these great tools to their full potential.

View Recording

Real-World Flex 3 to Flex 4 Conversion

Join roundpeg engineers Darryl West and Steve Farwell as they outline their recent experiences in migrating an existing Flex 3 application to Flex 4.

If you’re coming up to speed on Flex 4, or if you haven’t done extensive migrations yet, this one is a “must-see”!

March 31, 2011 Register now for the InDesign Image Masking webinar

Real-World Flex 3 to Flex 4 Conversion

Get a quick overview of how to produce solid image masks in Photoshop, and how to control visibility of Photoshop and Illustrator layers.

Join roundpeg’s Matt Sullivan as he shares some of the tips and tricks he’s developed over his 20+years of Photoshop and Illustrator experience.

 Be sure to also see our clinics; short, targeted, quality training at reasonable rates.

Posted in Captivate, ColdFusion, Dreamweaver, e-learning, Flex, FrameMaker, Free Webinars, RoboHelp, TCS Integration, Technical Communication | Tagged , , , , | 7 Comments

Deciding on eLearning technology

Today I had a conversation with a client interested in developing Flash content. Here’s a quick excerpt”

The target audience is in various locations, typically with limited/older technology and related skills. The content would likely be delivered online via emailed links. It’s possible that the content would also be delivered at some future point on CD, along with other materials. They simply need easy access to the information.

The modules will typically consist primarily of progressive bullet- point "slides," animated with fades, similar to a Powerpoint presentation. There will also be a video and a voice-over, and links to PDF documents at the end of the animation.

Based on the client’s criteria, I immediately thought of Adobe Presenter. Here are the reasons:

  • ·It runs as a plug-in for PowerPoint, leveraging existing PPT content and skills
  • Presenter allows for easy embedding of video (with easily customizable player controls)
  • Because you’re working in PowerPoint, you’ll have access to all of the bulleting, fades, etc. you’re used to
  • Presenter is ridiculously simple to add audio in addition to audio in your video clips
  • Easy publishing to many file formats and automated posting to web via Publish feature

You can see a recorded webinar I presented on  the differences and capabilities of Presenter and Captivate at
http://blogs.roundpeg.com/2010/10/captivate-vs-presenter/

We’d be glad to help with training in any of the technologies you’re considering in the event you choose to contact us.

 

-Matt

Posted in Captivate, Connect and Presenter, e-learning, Technical Communication | Leave a comment

Mapping bullets from FrameMaker to RoboHelp via TCS

ProjectSettingsThanks to Peter Grainge for pointing me toward an Adobe Forum post recently.

Like many, the user was having difficulty matching the RH formatting that they were so happy with in FM.

As I’ve said many times, RH maps content, not formatting. To get specific formatting in HTML, you will likely need to have some css knowledge and a little patience. CSS takes practice. Formatting for linked projects is a specific skill, just like css formatting for mass email, or for cross browser and cross format compatibility.

In this case, the forum participant had gotten most of the tough stuff out of the way. If we compare the css code with the html code that it formats, we see the relationship that exists between the two.

Examples of CSS and HTML representions

p.bullet2 will format <p class=”bullet2″>

and

li.p-Bullet2 will format <li class=”p-Bullet2>

Now you need to look at what your resulting html is after the content in FM is linked to RH and updated.

If you content is using the <p class=”Bullet2″> and <li class=”p-Bullet2> code, then your css should work fine. Now the question is whether your path to the graphic is correct. Try modifying a property like font color to see if you have control of the formatting. If so, then track down the actual path of your graphic. Then double and triple check your css for the graphic. It looks ok to me, but hey, I’m not on the clock here….

If your html is using different formatting than <p class=”Bullet2″> and <li class=”p-Bullet2> then you need to modify either your mapping or your css. If your code is using FM_Bullet2 then you don’t have it mapped. In fact, any code using FM_ is improperly mapped, and any attempts to format the FM_ tags in any css file will likely fail miserably.

mappingFinally, you also have the option to map your FM tags to html elements using the User Defined HTML Tag option.

This will allow you to map specifically to a CSS definition, rather than a p.classname definition.

Let me know if this works for you.

If you are still having problems, you may want to consider our online mentoring program. We can always have a short online session to fix your mapping and answer other q’s you may have. Not quite as satisfying as figuring it out yourself, but likely to be faster and more economical in the long run!

-Matt

Posted in Uncategorized | Leave a comment

Mapping bullets from FrameMaker to RoboHelp via TCS

ProjectSettingsThanks to Peter Grainge for pointing me toward an Adobe Forum post recently.

Like many, the user was having difficulty matching the RH formatting that they were so happy with in FM.

As I’ve said many times, RH maps content, not formatting. To get specific formatting in HTML, you will likely need to have some css knowledge and a little patience. CSS takes practice. Formatting for linked projects is a specific skill, just like css formatting for mass email, or for cross browser and cross format compatibility.

In this case, the forum participant had gotten most of the tough stuff out of the way. If we compare the css code with the html code that it formats, we see the relationship that exists between the two.

Examples of CSS and HTML representions

p.bullet2 will format <p class="bullet2">

and

li.p-Bullet2 will format <li class="p-Bullet2>

Now you need to look at what your resulting html is after the content in FM is linked to RH and updated.

If you content is using the <p class="Bullet2"> and <li class="p-Bullet2> code, then your css should work fine. Now the question is whether your path to the graphic is correct. Try modifying a property like font color to see if you have control of the formatting. If so, then track down the actual path of your graphic. Then double and triple check your css for the graphic. It looks ok to me, but hey, I’m not on the clock here….

If your html is using different formatting than <p class="Bullet2"> and <li class="p-Bullet2> then you need to modify either your mapping or your css. If your code is using FM_Bullet2 then you don’t have it mapped. In fact, any code using FM_ is improperly mapped, and any attempts to format the FM_ tags in any css file will likely fail miserably.

mappingFinally, you also have the option to map your FM tags to html elements using the User Defined HTML Tag option.

This will allow you to map specifically to a CSS definition, rather than a p.classname definition.

Let me know if this works for you.

If you are still having problems, you may want to consider our online mentoring program. We can always have a short online session to fix your mapping and answer other q’s you may have. Not quite as satisfying as figuring it out yourself, but likely to be faster and more economical in the long run!

-Matt

Posted in FrameMaker, RoboHelp, TCS Integration | Leave a comment

roundpeg blog named to Top 50 Blogs and Feeds for Technical Communicators for 2011

top50blogsThanks to indoition.com for naming roundpeg to another “Top Blogs” list! As with the Mindtouch list, we’re humbled to be included in such fine company, and hope you continue to find our content useful.You can find their full list on their blog.One thing I like about this list: They’ve supplied links to individual sites, as well as in OPML format, which means I now need to figure out how to load the set of addresses onto iPad and/or Kindle.Anybody have any suggestions?

Posted in roundpeg | Leave a comment

Finding and fixing paragraph overrides in FrameMaker 10

Locating overrides

While teaching a FrameMaker 10 class today, I was reminded that the Find/Change feature now includes the option to search for Paragraph Character and Table format overrides. This is a great way to identify inconsistencies in your document’s formatting.The option to search for overrides is new to FrameMaker 10, but for those of you not yet using FrameMaker 10, you can still easily remove formatting inconsistencies in any version of FrameMaker (or at least back to Frame 5.0!)

Removing overrides from a document

Savvy FrameMaker users and workgroups will have a template ready to update formatting (and thus have the chance to remove overrides in the process).So what if you haven’t gotten your template workflow established? You can still remove overrides automatically, resetting any paragraph and other formats back to the definitions in your current document’s catalogs.Choose File > Import > Formats, but instead of identifying a file from which to import, simply leave the Import from Document option set to Current.imageNext, select the While Updating, Remove checkboxes for both Manual Page Breaks and Other Format/Layout Overrides. Now, when you select Import, the net result is that the catalogs are “replaced” with themselves, but any overrides within the documents are automatically removed!What are your favorite FrameMaker “secret” techniques?


Posted in FrameMaker | Leave a comment

Having great success with app and ePub production using TCS3

Of course, the devil is in the details, but I’ve tackled many small issues in app and ePub production over the last few weekends. For a presentation containing all of my progress, see me at the STC Summit in Sacramento, where I’ll be presenting everything on behalf of Adobe.

Currently I have

  • FrameMaker 10 content
  • The FrameMaker content is linked into a RoboHelp 9 project
  • The RoboHelp project has the following outputs
    • Webhelp
      • with a publish server to the location of the files
    • AIR App
      • with web auto-update enabled (though I have to move the updated AIR files manually to the server). I plan on having moderated comments using the RoboHelp Server product soon
    • ePub
      • visible on my local PC using ADE and FireFox (covers not showing up for some reason)
      • moved over to the iPad via iTunes (looking for a way to automate the transfer to iTunes, then a slow sync to the iPad) Once there, the cover and content look great!
Posted in TCS Integration | Leave a comment

An overview of FrameMaker and RoboHelp integration

Recently I responded to a post on the LinkedIn Friends of FrameMaker group. The poster was inquiring on the state of the integration between RoboHelp and FrameMaker. Here’s the relevant part of that post:

I’ve used the conversion in all three versions of TCS. It’s definitely gotten better with each subsequent version.

For me, there are 2 main concepts to keep in mind:

1-Consistent content maps well into RoboHelp.Content should all be explicitly mapped to styles in RH, not trying to use the original FM formatting. Search for FM_ in your HTML; if found, you need to correct your mappings

2-Consider the difference between formatting and content. RoboHelp maps content, not formatting.Tables for warnings, notes and cautions, frames above and below paras, autonumbering are all examples of formatting. (A rule of thumb: If you define in ref pages or in the para designer, it’s formatting)

Much frustration can be avoided if you recognize that HTML formatting is a different skill than FM formatting.

Posted in Uncategorized | Leave a comment

Create iPhone, iPad and Android apps with Adobe Flash Professional

Posted in adobe, AIR, Flash, Free Webinars, Rich Internet Applications | Leave a comment

Matt Sullivan and roundpeg to represent Adobe Systems at STC Summit 2011

If you are fortunate enough to be attending the STC Summit in Sacramento this year, please stop by the Adobe booth to say “Hi”

I’ll also be presenting an STC conference session on using Adobe products to create ePub and apps from your FrameMaker and RoboHelp content.

Posted in Uncategorized | Tagged , , , , , , | Leave a comment

FrameMaker graphics issue with RoboHelp import

Thanks to Peter Grainge for pointing out an Adobe Forum post http://forums.adobe.com/message/3571031#3571031 to me the other
day:

Original Post

I am evaluating Robohelp HTML version 9, which I’m considering using for
single-sourcing FrameMaker 7.1 files.

I imported my FrameMaker files, and only 2 out of 75 graphics were imported.
The results window shows that all FM files were imported successfully.
However, in the Project Manager, only these two files appear.

The graphics are BMPs, the same as all the other graphics.
Everything about them seems to be the same as all the other graphics.

So I prepared a TEST FrameMaker file. I placed the two graphics that had
imported successfully first, along with a selection of the other graphics.
Guess what? All of the graphics imported successfully into RH.

Feeling optimistic, I imported my FrameMaker project into RH again, using
the same TEST RH project. Guess what? Only the two original graphics
appeared and no others.

Can anyone help me solve this mystery?

My reply

Sounds like an issue with an individual graphic, not with the process
itself. If the 2 successful graphics are the first or last in your project,
I’d start testing by importing the graphics in closest proximity…otherwise
you may have to import in batches to find the offending file.

If you have a graphic in a format other than that of the “successful”
graphics, you may want to test that format in particular.

One thing to consider: As I’m sure you know, any missing resources (fonts,
graphics, xrefs) and any errors in updating your book will keep FrameMaker
from operating smoothly. If you are sending FM info elsewhere (PDF, HTML,
Help) then these subtle deficiencies can cause problems with info sent out
of FM as well. “Fix” your FM files and you might solve seemingly unrelated
issues elsewhere.

*Note: You mentioned you’re testing single sourcing…FM7 files will require
import to RoboHelp. With an eval copy of TCS3, you’d be able to create a
link to FM10 files, allowing you update the RH9 via the FM10 files. It is a
similar process, but by linking, you’ll eliminate the importing and/or post
processing of the HTML and significantly reduce the time needed to update
your RH content.

Also, when purchasing Adobe product, consider Suite purchases and
maintenance contracts…I save tons of USD by doing this. See the math at
http://blogs.roundpeg.com/2009/12/strategies-for-purchasing-adobe-software/

-Matt

Posted in Posts in progress | Leave a comment