<!-- l --><a class="postlink-local" href="http://japan.nucleuscms.org/bb/viewtopic.php?t=3949">viewtopic.php?t=3949</a><!-- l -->
NP_TinyMCE3.3.4リリースします。主にIEまわりのバグ対応です。
http://tinymce.moxiecode.com/punbb/view ... p?id=21314
http://tinymce.moxiecode.com/js/tinymce/changelog.txt
Version 3.3.4 (2010-04-27)
Fixed bug where fullscreen plugin would add two editor instances to EditorManager collection.
Fixed bug where it was difficult to enter text on non western languages such as Japanese on IE.
Fixed bug where removing contents from nodes could result in an exception when using undo/redo.
Fixed bug with selection of images inside layers or other resizable containers on IE.
Fixed so editors isn't initialized on iPhone/iPad devices since they don't have caret support.
オフライン
IEでツールバーが表示されるのですが、2行中の1行目しか表示されません。
アイコンとアイコンの間がやたらと広かったり、フォント選ぶコンボボックスも1文字分くらいの幅しかないなど、表示もおかしな状況です。
使用しているのはIE7です。
過去ログでの現象どおりFirefoxでは通常どおり使用できています。
Nucleus CMS v3.51 NP_TinyMCE334.zipを使用しています。
プラグインは"SkinFiles"のみです。
サーバーにアップした状態とローカルテスト両方共おなじ現象です。
Nucleusの使用自体がまだ間もないので、いろいろと調べてはいるのですが解決策が見つからずにいます。
何か疑わしい原因等ありましたらご教授ください。
オフライン
ご迷惑をおかけしております。
popups.cssとNP_TinyMCEの相性です。
2/3リリース予定のNucleusCMS3.62日本版では修正されてますので
今しばらくお待ち下さいませ。
オフライン
NucleusCMS3.62日本版をさっそく導入しました!
おっしゃるとおり、IEでも無事にNP_TinyMCEのツールバーが使用できるようになりました。
ありがとうございました。
オフライン
https://github.com/yama/NP_TinyMCE
最新の v3.4.2をこちらに置いておきます
オフライン
Yama,
Somewhere between version 3.2.7 and version 3.3.4, NP_ImageManager stopped working with NP_TinyMCE. We have a user that figured out how to get it working again. I believe he made some comments on the thread in the english forum (czevak). I'm going to publish a v1.01 of NP_ImageManager that gracefully has his proposed changes included.
Could you consider a 3.4.2.01 or something for NP_TinyMCE that would allow NP_ImageManager to work with it. Below are the changes needed to NP_TinyMCE.php (in UNIX diff style)
100c100,115
<
---
>
> /**
> * Check NP_ImageManager
> */
> function _checkImageManager()
> {
> global $manager,$member;
> if (!$manager->pluginInstalled('NP_ImageManager'))
> {
> return false;
> }
> $imageManager =& $manager->getPlugin('NP_ImageManager');
> if ($imageManager->getMemberOption($member->memberid, 'use_imagemanager') == 'yes' && $imageManager->getVersion() > 1.00) return $imageManager;
> return false;
> }
>
369c384,391
< $param['file_browser_callback'] = 'callFileBrowser';
---
>
> if ($imagemanager = $this->_checkImageManager())
> {
> $param['file_browser_callback'] = 'myCustomFileBrowser';
> }
> else {
> $param['file_browser_callback'] = 'callFileBrowser';
> }Basically, you are making a check for NP_ImageManager (v1.01 or better) being installed and enabled for the current user and then
setting the file_browser_callback parameter differently for ImageManager users.
Thanks.
オフライン
Hello, Frank.
OK, I merged it. It changes a little, and try, please.
オフライン
That work's fine. Thanks. This will work with NP_ImageManager v1.01 available here: http://kgblog.de/download/nucleus/NP_Im … r_1.01.zip
オフライン
Windows7のIE9で正常動作せずに困っています。
同じような動作で困っている方はおられないでしょうか。
Nucleusとしては見つからなかったので、投稿してみます。
太字、文字カラー変更などが動作しません。
文字装飾が変わらない代わりに、
この操作時には、「mceinline」といったdivタグが挿入されます。
FirefoxやGoogleChromeでも動作しなかったのですが、
NP_TinyMCEをVerisionUPすることで、改善されました。
(プラグイン設定のプラグイン項目からsafariを削除など)
NP_TinyMCEバージョン: 3.2.4.1
Nucleus CMS v3.64
PHP 5.24 + MySQL 4系
プラグイン:Customized URL /SkinFiles /ItemFormmail Alpha /Captcha
/ShowBlogs /NP_PageSwitch /ShowDraft /NP_SEOSitemaps
/mediatocu /TinyMCE /RemoveToDraft /znCustomAdmin
オフライン