replace text menu item (functioonality not implemented, yet)

This commit is contained in:
honfika@gmail.com
2014-12-21 18:52:49 +01:00
parent 3cf464a78f
commit 8cf907e3b8
15 changed files with 218 additions and 24 deletions

View File

@@ -155,9 +155,18 @@ public abstract class MainFrameMenu {
mainFrame.getPanel().exportFla(swf);
}
protected boolean search(boolean searhInText) {
protected boolean search(boolean searchInText) {
if (swf != null) {
mainFrame.getPanel().searchInActionScriptOrText(searhInText);
mainFrame.getPanel().searchInActionScriptOrText(searchInText);
return true;
}
return false;
}
protected boolean replace() {
if (swf != null) {
mainFrame.getPanel().replaceText();
return true;
}