So, tried this in 4.1.3 and it worked fine except that the CKEditor CSS was quite messed up with vb's CSS. I figured once vb had integrated CKEditor they probably would fix all the CSS issues. I was right.
Under 4.1.3, I had only uploaded CKEditor to a forum sub-folder, and done 2 simple changes to the vbcms_content_staticpage_inline template.
First was, changing, at the top of the template:
PHP Code:
<div class="fullwidth">
{vb:raw editbar}
</div>
to:
PHP Code:
<div class="fullwidth">
{vb:raw editbar}
<script type="text/javascript" src="/testvb/ckeditor/ckeditor.js"></script>
</div>
and changing:
PHP Code:
<div class="blockrow">
<label class="quarter" for="pagetext">{vb:rawphrase content}: </label>
<div class="threequarters"><textarea name="pagetext" cols="80" rows="20">{vb:raw pagetext}</textarea>
</div>
</div>
to:
PHP Code:
<div class="blockrow">
<label class="quarter" for="pagetext">{vb:rawphrase content}: </label>
<div class="threequarters"><textarea class="ckeditor" name="pagetext" cols="80" rows="20">{vb:raw pagetext}</textarea>
</div>
</div>
So today I upgraded my test site to 4.1.4 to see what would happen.
CSS is fixed, but toolbar icons are missing. Toolbar functions all work, but are missing the proper icon.
Any suggestions on what to do to fix this?

Thanks!
-Andy.