Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




CMS Text Editor?



Hey everyone,

I'm looking for a solid tool that will allow me to set up access for clients to update content on their own. I want them to literally be able to login to the site and make a change using an interface and saving the changes on the fly. I've seen a few text editors out there, but i want to know what everyone uses to get a feel for which is the best and most reliable. Please let me know. Thank you all in advance.



FlashKit > Flash Help > Flash General Help
Posted on: 03-09-2004, 11:21 AM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Show Text Created In Javascript Text Editor And Saved In Xml File
Hi all

I am currently investigating how to show text in flash that is created using a javascript text editor in a CMS. The text is imported from an XML file and you can see an example of the data below.

My problem is that the current version of the text display component I've created for flash has no room for "weird" symbols. This means that a lot of characters are not displayed and somtimes only half the content is displayed.
Preferably, the component should be as good at showing html content as if ws displayed on a normal html webpage.

I also want to be able to load images into the text component. They should be specified in the XML code as simple <img> tags.

Do you have a good idea of a solution or do you know a super solution already made? Preferably a solution that can be used for commercial purposes.


Here is an example of content that should be imported into flash:
<data>
<paragraph id="paragraph1">
<heading><![CDATA[test]]></heading>
<image></image>
<imagedescription><![CDATA[]]></imagedescription>
<body><![CDATA[<h1><font size="3">…Tekstmodul </font></h1>
<p>
<font size="3">Vinens udseende</font>
</p>
<p>
<font size="3">&nbsp;</font>
</p>
<p>
<font size="3">Vinens udseende har stor betydning for, hvilke forventninger vi har til vinen, allerede inden vi dufter til eller smager på vinen. </font>
</p>
<p>
<font size="3">&nbsp;</font>
</p>
<h2>
<u>
<font size="3">Iagttag vinen</font>
</u>
</h2>
<p>
<font size="3">Det er lettest at iagttage vinens farve, når man holder glasset på</font>
</p>
<p>
<font size="3">sdfdsfs</font>
</p>
<ol>
<li>
<div>
<font size="3">dsfdsfdsfs</font>
</div>
</li>
<li>
<div>
<font size="3">sdfdsfs</font>
</div>
</li>
<li>
<div>
<font size="3">dsfds</font>
</div>
</li>
</ol>
<p>
<font size="3">s…</font>
</p>
<p>sdfdsfds&nbsp;</p>
<p>dfsxcvxcvxc</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>asdsa</p><p>&nbsp;</p>]]></body>
<file internal="false">
<linkname></linkname>
<resource></resource>
</file>
</paragraph>
</data>

::help::text:editor::
hello ,
I have a text editor component and a dynamic text field on my main timeline. What i can't figure out is when i type in the text editor i want it to display in real time on the dynamic text fied. doe s anyone know what action script could be used for this?thanks.

Text Editor 2.0
Just wanted to let everyone know that I have updated my Text Editor, to version 2.0. New features include...

Save
Load
Delete
setSize Method
span classes instead of font classes (for true HTML output)
Color Picker
Fixed Font Sorting

You can find it here.

Text Editor
I know this has been asked about before, but I couldn't find it on the site...

Let's say you have an input text box and you want a user to be able to select part of their input, click a button and have that part of the text bold. Is there a way to do this?

The eventual goal would be the ability to fully customize the text with colors, links, bold, italic, etc, but if someone could get me started with bold, that would be great.

Text Editor
does anyone know hwo to create a text editor which allows a user tochange the size style and allignment....please help anyturoial or source files out there

j

Text Editor (HELP)
Hi,

I´ve created an text editor, that saves the data provided by the user. My question is: Did someone know a way to create a button, that makes the text selected by the user on the text area, become to be Bold, Italic, etc?

TKS

Text Editor
I am trying to make a nifty text editor that sports common, expected features like bold, italics, underline, bullets, links etc...

The problem I am having is getting text states (setting is no problem). There is no inherent "getBold" or "getItalics" to know what state the text is in.

Try this out (version 7 as 2):


Code:
this.createTextField("output_txt", this.getNextHighestDepth(), 0, 0, 300, 200);
output_txt.html = true;
output_txt.multiline = true;
output_txt.wordWrap = true;
output_txt.border = true;
output_txt.type = "input";
output_txt.htmlText = "Some very happy text for you to change. Select a portion of this text and right click and select "Bold"";
var my_cm:ContextMenu = new ContextMenu();
my_cm.customItems.push(new ContextMenuItem("Bold...", doBold));
my_cm.customItems.push(new ContextMenuItem("Uppercase...", doUpperCase));
function doUpperCase():Void {
var startIndex:Number = Selection.getBeginIndex();
var endIndex:Number = Selection.getEndIndex();
var stringToBold:String = output_txt.text.substring(startIndex, endIndex);
output_txt.replaceText(startIndex, endIndex, stringToBold.toUpperCase());
}
function doBold():Void {
var startIndex:Number = Selection.getBeginIndex();
var endIndex:Number = Selection.getEndIndex();
var stringToBold:String = output_txt.text.substring(startIndex, endIndex);
stringToReplace = setText(stringToBold);
output_txt.replaceText(startIndex, endIndex, stringToReplace);
var totalString:String = new String(output_txt.text);
output_txt.htmlText = totalString;
var totalString2:String = output_txt.htmlText;
debug(totalString);
}
output_txt.menu = my_cm;
//
function myOnKeyDown() {
if (Key.isDown(Key.CONTROL) && Key.isDown(Key.SHIFT) && Key.getCode() == 38) {
doBold();
}
}
var myListener:Object = new Object();
myListener.onKeyDown = myOnKeyDown;
Key.addListener(myListener);
//titleStyle = new TextFormat();
function setText(_s) {
__s = "<b>" + _s + "</b>";
return __s;
}
//
//
this.createTextField("debug_txt", this.getNextHighestDepth(), 0, 205, 300, 600);
debug_txt.multiline = true;
debug_txt.wordWrap = true;
function debug(_t) {
debug_txt.text = _t;
}
I apologize for the lack of comments in the code. Let me know if it needs more explanation.

Thanks,
John

AS Text Editor
can anyone recommend a good windows text editor for as3?


thanks.

Text Editor
i need a text editor with actionscript 2 like ...

http://www.bluecotton.com/studio.html?emb=&gchange=&designFile=design8.ini&target=91&garColor=1

see the text effect like shape change, text border. pls help me...





























Edited: 11/17/2007 at 06:52:29 AM by RAJ.RAJ_R

XML Text Editor
hi, i have an xml-flash website i'm working on. i have lots of texts to include dynamically. the question i have is: how can i save an rtf file (the only html tag i need is the color of the font) into an xml file without manually tag all words that have a different color? (export to txt with automatic color tags)

Text Editor
Hi!

I'm developing a flash text editor, using html formating tags, like <B>, <U>, etc...

The problem that bugs me is the <A HREF...> tag.
When the user select some text previously formated as a link (selection.url=...), releasing the mouse button has the same effect as clicking on that link, a window opens, the url loads, etc...

It's possible to let the user select the formated text without triggering that link?

There is any way to avoid this problem without the sacrifice of the link feature?

Help With Text Editor
HI,
Can Anyone give me any idea about making a text editor,Means Where should I start from or what should i study ? Please Help

Text Editor
Hi!

I'm developing a flash text editor, using html formating tags, like <B>, <U>, etc...

The problem that bugs me is the <A HREF...> tag.
When the user select some text previously formated as a link (selection.url=...), releasing the mouse button has the same effect as clicking on that link, a window opens, the url loads, etc...

It's possible to let the user select the formated text without triggering that link?

There is any way to avoid this problem without the sacrifice of the link feature?

Text Editor?
Hello everyone!

Can anyone help or point me in the right direction?  I have a Flash application that displays text that it reads from a text file.  What I want is some way the user can edit the text file in the browser and then either replaces the text in the file or just replaces the whole file.

I can use ASP and ColdFusion, I just wasn't sure where to start as the text has to be compatible with being viewed in a textbox in Flash.

Thanks in advance,

Katherine

Text Editor Help Pls
Last edited by najeeb83 : 19 Hours Ago at 03:04.
























aaaaaaaaaaaaaaaaaaa

Text Editor
Hey guys, iam desperate. i need to know how can i submit changes to external swf's using a text editor!!

i type the changes in the text editor, chose the external.swf click submit, it passes the changes to that swf.

pleaseeeeeeeeee
Thanks,
NAJ

Text Editor
Hi all I'm creating a text editor in flash as part of a simple CMS.
I'd like to know how to append text to the start and end of a selected section of text. (God this is gonna get confusing)
I.e. if "this text" is selected in a text field and an event is triggered then that text would look like this "<headline>this text</headline>" (for instance). I'm sure this can be done with the "Selection.setSelection(); " method but I can't figure it out.

thanxInAdvance();

Text Editor In Flash
Dear Friends,

I need to make a text editor in flash to the extent possible, replicating the notepad of the windows. Could you please let me know if there is some place where i can find an fla which does atleast some functions.

With warm regards and thanks in advance,

Pavan

At The End Of My Rope - Text Editor...
ugh! i've been working on a text editor for (what feels like years) now...
can anybody help me figure out why, if i select some text and make it bold (or whatever) then i select new text and apply a new format to it (say, italic) it makes the text italic, but it also makes it bold?
i can't get it to stop applying the current & previous format.
you can check it out here:
http://www.bytestudios.com/lys/textedit5.html

and here's my <dread> code:
myTextFormat = new TextFormat();
myTextFormat.bold = false;
myTextFormat.italic = false;
myTextFormat.underline = false;
bold_button.setLabel("bold");
under_button.setLabel("underline");
italic_button.setLabel("italic");
left_button.setLabel("LEFT");
center_button.setLabel("center");
right_button.setLabel("right");
myfonts = TextField.getFontList();
fontList.setDataProvider(myfonts);
fontList.setSize(300);
fontList.setSelectedIndex(20);
fontSizes = new Array(6, 8, 10, 12, 14, 16, 18, 20, 24, 28, 32, 40, 48, 56, 64);
fontSize.setDataProvider(fontSizes);
fontList.setSelectedIndex(4);
fontList.setChangeHandler("myHandler");
function myHandler(component) {
myTextFormat.font = fontList.getSelectedItem().label;
myTextField.setTextFormat(myTextFormat);
}
fontSize.setChangeHandler("myHandler2");
function myHandler2(component) {
myTextFormat.size = fontSize.getSelectedItem().label;
myTextField.setTextFormat(myTextFormat);
}
bold_button.setClickHandler("makeBold");
function makeBold(component) {
myTextFormat.bold = true;
myTextField.setTextFormat(_level0.control.starttxt , _level0.control.endtxt, myTextFormat);
}
function makeBold() {
if (myTextFormat.bold) {
myTextFormat.bold = false;
bold_button.setLabel("bold");
} else {
myTextFormat.bold = true;
bold_button.setLabel("BOLD");
}
myTextField.setTextFormat(_level0.control.starttxt , _level0.control.endtxt, myTextFormat);
}
under_button.setClickHandler("makeUnder");
function makeUnder(component) {
myTextFormat.underline = true;
myTextField.setTextFormat(_level0.control.starttxt , _level0.control.endtxt, myTextFormat);
}
function makeUnder() {
if (myTextFormat.underline) {
myTextFormat.underline = false;
under_button.setLabel("underline");
} else {
myTextFormat.underline = true;
under_button.setLabel("UNDERLINE");
}
myTextField.setTextFormat(_level0.control.starttxt , _level0.control.endtxt, myTextFormat);
}
italic_button.setClickHandler("makeItalic");
function makeItalic(component) {
myTextFormat.italic = true;
myTextField.setTextFormat(_level0.control.starttxt , _level0.control.endtxt, myTextFormat);
}
function makeItalic() {
if (myTextFormat.italic) {
myTextFormat.italic = false;
italic_button.setLabel("italic");
} else {
myTextFormat.italic = true;
italic_button.setLabel("ITALIC");
}
myTextField.setTextFormat(_level0.control.starttxt , _level0.control.endtxt, myTextFormat);
}
left_button.setClickHandler("makeLeft");
function makeLeft(component) {
myTextFormat.align = "left";
left_button.setLabel("LEFT");
center_button.setLabel("center");
right_button.setLabel("right");
myTextField.setTextFormat(myTextFormat);
}
center_button.setClickHandler("makeCenter");
function makeCenter(component) {
myTextFormat.align = "center";
left_button.setLabel("left");
center_button.setLabel("CENTER");
right_button.setLabel("right");
myTextField.setTextFormat(myTextFormat);
}
right_button.setClickHandler("makeRight");
function makeRight(component) {
myTextFormat.align = "right";
left_button.setLabel("left");
center_button.setLabel("center");
right_button.setLabel("RIGHT");
myTextField.setTextFormat(myTextFormat);
}
and here's the code that's in my "control" mc:
woohoo = Selection.getFocus();
if (woohoo eq "_level0.myTextField") {
starttxt = Selection.getBeginIndex();
endtxt = Selection.getEndIndex();
cursor = Selection.getCaretIndex();
}
thanks for any and all help!!
lys

Rich Text Editor
can anyone tell me if it is possible to build an online rich text editor in flash ?
like the one HOTMAIL and YAHOO have only then created in flash 5 with actionscript ...

if anyone has ever built one can you give me a link or an fla so I can check it out ?

thanks & take care !

Text Editor Component
Below you can find a link to my Text Editor component, which I am giving away for free! Hope you all like it, let me know what you think.

http://www.joshdura.com/archives/000108.html

Josh Dura

Unicode Text Editor
I'm looking for a free text editor, like Notepad for Windows 2000, which can encode in unicode UTF-8 for Mac OS X. I need it to link a text file to a SWF. Many thanks.

Looiking For Text Editor
Hi.
I made a flash oly site using Flash MX. There are 5 text fields where the info is loading from external .txt files. I am looking for a text editor that can be either online or offline, but changes the .txt files on the site. It needs multidocument support. How can I do this or find 1 with it?

Jason

Help Installing Text Editor
Hi Folks,

I could use your input! I am very new beginner with Flash MX – Trying to put together a web site using a Flash template “Lichen” that I purchased from the Internet.

I came across a tool named text editor 2.0 by Josh Dura for editing text and have the following questions.



My challenge is to format text i.e. Bold, Italicize, font size, Bullets and general layout with various scrollable text fields within my template. When I attempt this within Flash, I can see most of the format types of activities on the work stage but they do not carry over when I run test movie. Next, I have downloaded a free text editor that claims to support my formatting needs by Josh Dura but have no clue as to how to get it running, he refers to various codes that must be entered and it looks like it’s geared for folks that have lots of knowledge with Flash (that’s clearly not me) – Again I’m not a programmer and have minimal experience with Flash.

Within Flash MX I opened texteditor.fla after running Flash Extension manager expecting to find a button or reference to run the editor against my template but none found. It appears that a number of settings need to be made which are pasted
below. Not sure how to accomplish that or what this tool will look like once operational.

Any help will be greatly appreciated and if some knowledgeable person is up to it I would be happy to call long distance to spend a few minutes getting up to speed if you would care to do that.

I did purchase a couple of books and I went through the MM tutorials so far that hasn’t helped me with this issue very much.

I've included the only info that came with this tool below.

Looking forward to your response

Regards, REN



Name: text editor 2.0
Version: 2.0
Author: Josh ( profile )

Description:
Use this rich text editor to format text. Easy as that Features below:
1) Save/Load/Organize/Delete via Local Shared Objects.
2) Basic Options: Bold, Italics, Underline, Bullets, URL Linkage, Indent, Left, Center, and Right Align, Text Size, Text Color, and Font.
3) Skinning:


a) Set the Title - setTitle("Title goes here");
b) Set the Button Background Color - setButtonBackground(0xRRGGBB);
c) Set the Active Button Background Color - setButtonBackgroundActive(0xRRGGBB);
d) Set the BUtton Light Shadow Color - setButtonLightShadow(0xRRGGBB);
e) Set the BUtton Dark Shadow Color - setButtonDarkShadow(0xRRGGBB);
f) Set the Toolbar Text ColorsetTextColor(0xRRGGBB);
g) Set the Toolbar Background Color - setToolbarBackground(0xRRGGBB);
h) Set the Toolbar Border Color - setToolbarBorder(0xRRGGBB);
i) Set the Editor Background Color (Text Editable Area) - setEditorBackground(0xRRGGBB);
j) Set the Scrollbar Background Color - setScrollBackground(0xRRGGBB);


Drag an instance of the Text Editor to your stage, and then give it an instance of textEditor1, then put this code in the first frame...
textEditor1.setTitle("Text Editor");
textEditor1.setButtonBackground(0x5B84AD);
textEditor1.setButtonBackgroundActive(0x84A3C2);
textEditor1.setButtonContentColor(0xFFFFFF);
textEditor1.setButtonLightShadow(0xADC2D6);
textEditor1.setButtonDarkShadow(0x336699);
textEditor1.setTextColor(0xFFFFFF);
textEditor1.setToolbarBackground(0x5B84AD);
textEditor1.setToolbarBorder(0x666666);
textEditor1.setEditorBackground(0xADC2D6);
textEditor1.setScrollBackground(0xADC2D6);

Text Field Editor
Hi,

I have developed a text field editor with the use of components and AS.

I am almost thru with the font selection and making the selected text bold, italic & underline. The problem i am facing is that when i have selected some text from the text field and if i try scrolling to select the font or size of the font the selection index is lost, it works only if i use the mouse wheel to select the font.

pls. help me out as to how to maintain the selection so that on clicking the combo box the font size is changed. (i am using on(change) for the value of the combo & list box)

regards,
Manmeet

PHP Text Editor Or WYSIWYG ?
Where do I get a PHP text editor?

and or what program can I write code and then save it as a PHP file.

Ex. I've got PHP code for a sumbit button on my site..I need to upload.

Thanks again for your time.
Jared

Flash And PHP (text Editor)
I have a flash text editor and I am using it so a client can update text files that are being loaded into flash. everything is working fine except the code that is used for the links. In the text editor you can type your text, make it bold,italic, or underlined and also you can make hyperlinks. When you create your text and click submit, the text is sent to a PHP file that strips the text of html code that it doesn't need, opens a text file, and writes the text from flash into the text file.

For some reason the code that is within the flash is not working right for the hyperlinks. when you view the written text file it shows the variable for the link instead of the actual link. Here is the code from the flash:

_________________________________________________-

urlButton.onRelease = function(){
var linkText = textIns_txt.text.substring(begin,end);
urlDialog.linkText= linkText;
textIns_txt.selectable=false;
urlDialog.urlInput="http://";
if(linkText==null or linkText==""){
Selection.setFocus(urlDialog.linkTextField);
}else{
Selection.setFocus(urlDialog.urlInputField);
}
urlDialog._visible=true;
urlButton.gotoAndStop(2);
}

function urlOK(theURL, linkText){
// set the replacement boundries
var startReplace = begin;
var endReplace = end;
Selection.setFocus(textIns_txt);
// if the begin and end are the same we need to
// adjust the begin and end points
if(begin==end){
// set start and end replace to cursor position if
// begin is -1 (at the start of the editor)
if(begin==-1){
startReplace = Selection.getCaretIndex();
endReplace = startReplace;
}
// set end to begin + link text length for setting
// the URL
end=begin+linkText.length;
}
// replace selection with text from dialog
Selection.setSelection(startReplace,endReplace);
textIns_txt.replaceSel(linkText);
// select text and convert to hyperlink
Selection.setSelection(begin,begin+linkText.length );
myTextFormat = currentFormat;
myTextFormat.target = "_blank";
// the "asfunction:lookupURL" below is what is being written for the link instead of the actual http link
myTextFormat.url = "asfunction:lookupURL," + setURL(theURL) + "";
myTextFormat.color = "0x996600";
myTextFormat.underline = true;
textIns_txt.setTextFormat(begin, begin+linkText.length, myTextFormat);
var newFormat = getFormatByCSS("a");
if(newFormat!=null)
textIns_txt.setTextFormat(begin, begin+linkText.length, newFormat);
textIns_txt.selectable=true;
refreshEditorText();
urlDialog._visible=false;
urlButton.gotoAndStop(1);
}

function exitURLDialog(){
textIns_txt.selectable=true;
}

// function to store all urls to overcome 127 character url limitation
function setURL(theURL){
editorURLs[editorURLs.length]=theURL;
return(editorURLs.length-1);
}

// fucntion to launch URLs
function lookupURL(urlNumber){
getURL(editorURLs[urlNumber], "popWindow");
}

__________________________________________________ ____

This is an example of what gets written to the text file:

_______________

&whatsnew=Here is a <B>test</B> of the code that is written to the text file with the <A HREF="asfunction:lookupURL,0" TARGET="_blank"><U>link</U></A> error.

_______________

Also, is there any way to strip the html code but leave the link with the color? I have it so it leaves the link code right now but I can't figure out how to make it leave the link with the color. This is the PHP strip html code that I have:

__________________________________________________ _____


PHP Code:




$whatsnew = strip_tags($whatsnew, '<a><b><i><u>');







__________________________________________________ _____

Any help is greatly appreciated. I have been searching for answers on my own for a long time now... I need help.

Thanks,

-- K

Text Editor: How To Save?
Hi,
I installed the Text Editor Flash component from Igor:
http://www.ground.gr/play/index_en.php?p=20&more=1

Wonderfull thing !

I managed to load files externaly to it. That was easy. But I can't find it to save the same text externaly.
In my other text editor I can save the variables to a php file which creates the .html file.

But with the same function it doesn't work.

Can anybody give me a tip?
Is the textbox from an other level?
I don't know?

Is there a way to make the component like a normal flash movie? So I can edit the components normaly?

Rich Text Editor Example
Hi,

Does anyone have an AS2 Rich Text Editor (Bold, Italic, Underline, etc.) that they can share their source code? I'm looking to make one, but can't find any examples of where to start.

Thanks,
dege

Text Editor In Flash MX
How to Make The text Entered in the Input Box Edited by the Flash MX and to save to Other Frame

Flash Text Editor
Hi Friends,
I have a Text Editor..it works fine when i run it using Flash Player 6 but when i try to use it using Flash Player 7 it doesn't works ... can u plz help me that how can i use it in Flash Player 7 ???

Thanx,
IFFY

[F8] Flash Text Editor
I'm working on this site:
http://63.134.232.79/flash/

If you select information and then any of the menu options you will see that I'm loading text files from the server. What I need is a text editor for the admin part where I can load the text files in so that the user can edit them. I did google for flash text editors and found several but none that do what I need. The closest I came to a solution was obedit. I could not get it to work when I load it from flash and set the loadURL and saveURL. So, does anyone know of a similar editor?

thanks

Simple Text Editor
Can someone advise me on how I can click anywhere on the canvas/stage to create a text field where you can input text.

I have seen similar functionality at www.imagination3.com where you can see the function if you go to TOOLS > TYPE.

Any assistance will be appreciated.

Simple Text Editor
Can someone advise me on how I can click anywhere on the canvas/stage to create a text field where you can input text.

I have seen similar functionality at www.imagination3.com where you can see the function if you go to TOOLS > TYPE.

Any assistance will be appreciated.

Online Text Editor
I have a site that uses text files to update. Does anyone have any good tutorials that show how to create an online text editor.
I want it to display the contents of the current text file in the directory (news, links, ect.) and be editable and able to be saved once edited.
If possible, php as a middleman instead of asp.

Flash Text Editor
Hi,

I am looking for a Flash Text Editor (wysiwyg). I don't mind paying for it. It must work on both PCs and MACs using Safari, IE, and Firefox on the MAC.

I've found a few already, for instance flashtexteditor.com but these don't appear to be compatible with MAC browsers.

Any suggestions would be much appreciated.

Thanks in advance.

Rich Text Editor
I would like to know if there is a broswer text editor program that is
compatible with the html text that loads into flash? It needs to be
able to load and save several pages to and from a mysql database or xml
file.

charlie-imac

Flash Text Editor
I am looking for a free flash text editor. Please suggest one.

Thanks

Text Editor Problem
Hi, my editor auto format my code as below. How to reset the newline symbol and ">>>"?

http://i69.photobucket.com/albums/i59/ddlam2/why2.png

Dynamic Text Editor
I am making a dynamic text editor.
Some of the fonts do not embed well? I have imported the fonts, put a linkage name, assigned data to the label.
Some of the fonts change, but not on the server?
I am using the setTextFormat?

Does anyone have any ideas? It would be greatly appreciated,
Emma

Simple Text Editor
Can someone advise me on how I can click anywhere on the canvas/stage to create a text field where you can input text.

I have seen similar functionality at www.imagination3.com where you can see the function if you go to TOOLS > TYPE.

Any assistance will be appreciated.

Help On Making Text Editor
can any body help me with making a text editor with flash. all i need to type in some text, change its font,color,bold,underline,alignment and save it in form of xml. it would be great if any open source code is available. i m sure u guys know something about it.

Flash Text Editor
HI GURUS,

i am thinking to make a flash application which is you can edit and save dynamic text file into diferrent directory of HDD, but i am furtunate how to make it


regards,
Angst

Text Editor In FLASH?
Hi!
I have been searching and found the following text editor to FLASH:
http://play.ground.gr/?p=58
I have got the version 1 of this but it is using textformat leading which is not supported in FLASH. I really think it is cool and would like to know if someone has some kind of this text editor?

/Thanx for answering, Ayaz

Creating A Text Editor Is It Possible?
What I want to do is create a flash movie that will work as a update method for a news section on a website. Now Im not a big Actions scripter but I think its a preety cool idea. basicly I'm guess in It could be done using input text or something like that. But the idea is you can login to a webpage(with the text editing swf in it) and it would have say 3 input text boxes one that says date, subject, and then the news to be added. And using a submit button it would update a text file that is dynamicly loaded into the main website swf. Does that make sence??3 If anyone has anyidea on how I could acheive this I would really apriciate it. I am really excited about the consept lol I just dont really have the AS knowledge at the moment to do it.

Flash Text Editor
can somebody link me to a tutorial on how to make a flash text editor..
need help.

WYSIWYG Text Editor Where?
WYSIWYG for flash MX, the best version pleeeeeeeeeeeeeeeeeease

Text Editor Code?
I would like to know how to produce some code that would encapsulate a selection with tags. E.g. If i wanted bold text i would press a button and it would have <b>whatever_text</b>.

I know there are quite a few text editors out there but i would prefer not to use them. I would rather use a tutorial or a basis of code to start from.

Simple Text Editor
Just finished a 'bounch' of components for personal use.
Thought I share this one.

It is very easy to use and edits all textfields.
It's easy to grab flash html code aswell, so you can store it or whatever.

What ya think?

EXAMPLE

Copyright © 2005-08 www.BigResource.com, All rights reserved