Create Scrolling Text Areas With Rich Text Format Content?

May 14, 2009

Noob question, I hope. I need to create scrolling text areas with rich text format content. I know I can use the textArea component and set the htmlText property but converting all of my RTF to HTML is gonna be a major pain in the @$$. I keep getting into trouble thinking what's mindlessly easy in Director/Lingo is gonna be reasonably simple in Flash/AS3, I hoping this is just my inexperience with Flash getting in the way. Is there an easier way? I thought of embedding a PDF document but apparently that's not an option in Flash either (note: I know how to link a PDF doc, I need this text to display and scroll within the application, not just pop a new window on top).

View 6 Replies


Similar Posts:


Flash :: Auto-scrolling Text Areas?

Nov 22, 2010

I'm creating a Flash game...blackjack, actually. It uses a back-end made from Java.Anyway, there's a basic chat in the game, where new messages are added to the bottom...pretty much your standard chat window.This is how I do it now:txtArea.verticalScrollPosition = txtArea.maxVerticalScrollPosition;However, that does not always work. Sometimes it does, sometimes it doesn't (oddly enough). I'm looking for a permanent solution. txtArea is the component TextArea (d'uh), and I'm using ActionScript 2.0.

View 2 Replies

ActionScript 3.0 :: Scrolling Text - Track Not Visible If The Content Is Smaller Than The Text Field?

Jan 20, 2010

I have a dynamic text filed scrolling with a drag button on a track or the mousewheel. What I am trying to do now is have the scroll button and track not visible if the content is smaller than the text field.

ActionScript Code:
//this if statement not working as should. button and track are always invisible.
//txt is text field name
if (txt.textHeight < txt.height){[code]......

View 8 Replies

ActionScript 2.0 :: Create Several Dynamic Text Areas And Have Different Paragraphs?

Aug 4, 2006

I am wanting to create several dynamic text areas and have different paragraphs to be loaded from a txt file. I am using;

loadVariables("message.txt", "");
stop();

to load the text. The problem I am having is that I want to use only one txt file to house all of my different paragraphs. I can only get the first message box to display the text. How can I can the others to display the text? I've included sample files.

View 1 Replies

ActionScript 3.0 :: Using A Rich Text Editor To Style A Flash Text Field?

Oct 6, 2010

I've been trying to build a user interface that would allow someone to change the content of a dynamic field (loaded from a text file) using a rich text editor. However the editor inserts inline css style tags like <span style="text-decoration: underline;"> which Flash aparently can't understand. If the editor were instead to insert the following: <span class="ul"> where the stylesheet defined it as:

[Code]...

View 1 Replies

Php :: Flex - Convert Actionscript Rich Text To Plain Text?

Jun 2, 2011

I have a flex (flash builder 4) application with a rich text editor control. I am storing this rich text output in a database via zend amf <--> php.

Now I want to display the first part of that text in a data grid. To do so it seems it might be easiest to get the plain text version.

I am hoping I can somehow convert it to plain text in PHP before I pass it back to flex?

View 1 Replies

ActionScript 2.0 :: Highlighting Specific Areas Of Text In A Dynamic Text Box?

Oct 20, 2007

I'm currently trying to work out a method to highlight specific areas of text within a dynamic text field at runtime. The method I've been toying with so far has been the use of CSS highlighting, but have not seemed to have any luck thusfar. What I'm attempting to do is to illustrate, to students, sections within a passage of text pertaining to correct methods of source referencing (source in terms of bibilographical references), and so am essentially trying to change the background colour of sections of text specified at runtime.Here's some code I've thrown together to test the CSS theory:

PHP Code:
var highlightstyle = 'span.highlight { background-color:yellow }';var txt = '<p><span class="highlight">highlighted text</span> no highlighted text<span class="highl

[code]....

View 2 Replies

ActionScript 3.0 :: Create A Custom Format For A TextField Text?

Aug 23, 2009

I've created a custom format for a TextField text as below:

Code:
var _format:TextFormat = new TextFormat();
var _font:Font = new VerdanaPlain();
_format.font = _font.fontName;
_format.size = 12;

and then I've applied it to a TextField like so:

Code:
var _text:TextField = new TextField();
_text.setTextFormat(_format);
_text.text = "Here is some text";

and for some strange reason, the format does not seem to have any effect on the text in the text field. It still shows using default settings. And yes I have exported the font for linkage.

View 8 Replies

ActionScript 2.0 :: Text Format Input Text Bold Without Selecting Text?

Feb 4, 2009

Trying to format input text fields using format buttons in Actionscript has been challenging. I've been able to put some pieces together, however I am still missing some things. Here's my code:


Code:
function selectText() {
startSelect = Selection.getBeginIndex();[code].........

I need the ability to click the Bold button and it bolds or unbolds at the cursor so if I hit the bold button what I type from that point on will be bold until I hit the button again and then it goes back to regular. I am able to change it to bold or unbold by selecting the text and clicking the button but I also need to do it without selecting.

View 3 Replies

IDE :: How To Create Scrolling Text

Jan 13, 2009

I need to learn how to create scrolling text. I�ve looked around on the web but I can�t seem to find a good tutorial on it. The text does not need to be dynamic, I must be able to choose different fonts and colors for the text, and most importantly create a custom scrolling bar.

View 2 Replies

Create A Scrolling Text Banner?

Oct 12, 2009

I need to create a Flash banner. Fairly straight-forward in terms of looks - a long list of services that scrolls from right to left and then loops continuously.

I'm using Flash MX 2004. So far I've created the text - it comes on from the right and leaves on the left. The problem I've got however is how to make this a continuous, seamless loop. When it goes off on the left I can't figure out how to make it come back on from the right.

View 1 Replies

ActionScript 2.0 :: Create A Scrolling Text In Flash MX?

Jun 16, 2003

I'm trying to create a scrolling text in Flash MX that will go horizontally from side to side of the stage, each scrolling text will be a number of words each separated of each other by a bullet or small circle. The scrolling text will be a Movie Clip with one single Dynamic text field that will load it's variables from a .txt document, that dynamic field will duplicate it self as many times as the amount of variables on the .txt document.

So I was thinking that if I created variables using a numbers like 1 = word, 2 = another word ect. To whatever numbers of words I want to be displayed on the scrolling text I could use a script on the first frame that could say something like this. (Dynamic text field has a variable called ticker)

loadVaraibles(TickerText.txt, this)
ticker = 1 + "."

Now comes the questions

Can flash read more than one variable in a single .txt file? Or it read on and assume that everything else within the file is just part of the first variable?

If this is possible how can I tell flash duplicate this dynamic text field as many times as the amount of variables on this particular .txt file?

I know this all sound really confusing but I hope that some one can understand me and give me some tips to get this to work or maybe make a simple sample of it and upload it on my server so I can see how can this be done.

[URL]

View 1 Replies

Professional :: Create Dynamic Scrolling Text In Flash CS5?

Sep 5, 2010

I am a complete newbie to Flash. I'm tyring to build a scrolling text box that automatically scrolls. On mouse over, I want the scrolling to stop so users can click on an item in the text box. All of the items will be tied to external hyperlinks. I want to populate the text box with an external file. I've done some searches on Adobe, but haven't found anything that takes me through the whole process.I have the complete Adobe Master Collection. So if this is easier in Flash Catalyst, let me know. I know how to buid a manual scroll box in Flash Catalyst. Could I export this to and add the auto-scrolling?

View 5 Replies

Flex 3 :: Get And Set The Rich Text?

Feb 18, 2010

I want to save the "rich" text to a database, and load it later.So how can I get and set the rich text?I looked at the API and there is a property called text which is only PLAIN text, not what I need. There is another property called textSnapshot which sounds like maybe thats what I need to use, but its READ-ONLY so I can't set it?It turns out I am only going to save it from a RichTextEditor, and I need to set it has htmlText on a Text control,so is there a way to get the rich text and convert it to hmtlText?

View 1 Replies

ActionScript 1/2 :: Create A Marquee Or Auto-scrolling Text Effect In Flash

Jun 21, 2009

i wan't to create a marquee or auto scrolling text effect in flash using AS 1.0.

View 1 Replies

ActionScript 2.0 :: Dynamic Text Box / Xml Content - Text Is Too Close To Border Of Text Box?

Nov 28, 2006

If you take a look at my flash movie you will see that I have draggable movie clips, which contain dynamic text fields. These text fields contain text drawn in from a simple xml document. The problem I have is that the text in the text fields is hedged right next to the border of the autosized text box. This makes them look untidy and in the worst case difficult to read. I wonder how I can add some margin to the left and right of the text to fill in some space.The code which formats the text boxes is:

with (main["dragAct"+i].dragActText) {
text = actText[i+1];
background = true;

[code]....

View 2 Replies

Actionscript 3 :: Rich Text In Flash TLF?

Oct 8, 2010

How does one apply rich text to Flash at runtime? Specifically, I need to dynamically create bullet-points and paragraphs with line breaks.

View 2 Replies

Flex :: AIR: <img> Tag In Rich Text Editor?

Mar 11, 2011

Is there is there a way(may be very complicated) to display images in the text area from htmlText property in AIR2?P.S. I know that AIR ignores img tags in HTML content due prevent possible phishing attacks.

View 1 Replies

Html :: Allow To Edit Rich Text With Images?

Jul 10, 2009

I am looking for a flex component that could allow me to edit rich text with images.

Something like the RichTextEditor from flex except it allows you to add and preview images too, and which can generate the HTML code too.

View 2 Replies

Flex - Paste Rich Text Into Flash?

Oct 8, 2010

Is it possible to capture rich text when pasting into Flash? Using a Flex TextEditArea, I can paste richly formatted text within Flash itself, but if I try to paste from an external source (say web page, microsoft word, etc) it comes in as plain text. Same for the reverse: if I copy rich text from within Flash, and paste to an external source, it goes out as plain text.

View 2 Replies

Flex :: Rich Text Editor That Provides Link?

Nov 25, 2010

I have built a rich Text Editor for Flex 4 using the instruction in the following link: [URL]

it works great. I want to be able to add link to it (user selecting text to link it to external web page). How do I do that?

implement Rich Text Editor with link support if you have any.

View 1 Replies

ActionScript 3.0 :: On Creating A Rich Text Editor?

Dec 13, 2009

I am creating a rich text editor -- and I have found many things convert from textformat to HTML like below marked 1. but then when I get to links and align of the editor -- I am not certain the best approach I am doing a search and replace string method on the html text field (the code is marked 2) but it is not that easy and I was wondering if there was a cleaner approach. And that is just the writing of it. Removing it is even harder but I won't get into that I am just trying to find a easer way.

1.ActionScript Code:
underlineBtn.addEventListener(MouseEvent.CLICK, makeUnderline);
function makeUnderline(event:MouseEvent):void {
if (section.underline == false){[code].........

View 0 Replies

ActionScript 2.0 :: Source: Rich Text Editor?

Mar 2, 2007

I've created an Rich Text Editor witch is free to download at [URL]

Some features:

Load / Edit / Save and Preview articlesAdd / Upload imagesUndo / RedoBasic layoutAdding linksTell me what you think of it.

View 1 Replies

Professional :: Applying Text Format To ComboBox Makes TextField Text Disappear?

Oct 25, 2010

When applying text formatting to a comboBox, the text formatting appears perfectly on the dropdown menu items but the textField text disappears.Removing the text formatting from the textField makes the textField text reappear but of course there is no text formatting.
Is there a trick to this.

View 9 Replies

ActionScript 2.0 :: Written Text Will Save On A Text Format File On Server

Nov 7, 2010

I need application with input text box and a button, user is able to write into the input text box, and when he press button, the written text will save on a text format file on server (like a notepad with .txt extension) and if this file exist before new information will over write!

View 2 Replies

ActionScript 3.0 :: Apply Text Format To Text Yet To Be Added In A Textfield?

May 10, 2011

I have a text field where user can type and few controls to customize the text properties like: font, size, color etc.If a user has typed say "Hello World", the caretindex is next to d of World. I want that if now the user makes some changes to the cusomization properties like: changes font size, then the text appearing next is of the font size set and not that of d. How can I do that?

View 1 Replies

Actionscript 2 :: Change Text Format Of Embed Text In Flash?

Jan 17, 2012

I have one dynamic text field in the instance name my_text. I have set the Embed option in that file. because i need to rotate the text field. Now I need to change the font format of dynamic text field.[code]...

View 1 Replies

ActionScript 3.0 :: Text Field Not Displaying Text File Format?

Jul 10, 2009

I'm reading text from a text file and displaying it into a text field. The problem is when i read it doesn't display the text as it is in a text file. For ex - See below imageNow , as you can see, second line in the text file starts right where first line ends.But flash doesn't display it like that. I have hundreds of lines and in most cases flash spaces consumes less space then a text file. The font in both text field in Flash and notpad is to Arial so the font shouldn't be a problem.

View 8 Replies

Mysql :: Can't Add Html Rich Text To Database From Flex

Aug 2, 2010

So I want to store richtext in my database created from Flex 3's rich text editor, but I am unable to.

for example this would need to be placed into the database:

<TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="Verdana" SIZE="10" COLOR="#0B333C" LETTERSPACING="0" KERNING="0">sdfsdfdsfsdfdsf</FONT></P></TEXTFORMAT>

Is it because of all the special characters?

Is it common practice to store formatted text in a database?

View 1 Replies

Flash :: Alternatives To Script Rich Text Editors?

Oct 8, 2010

I was wondering if there were techniques other than the HTML designMode to build an RTE and work around these in a clean manner.. Maybe in Flash, or as a Java Applet or something?[code]....

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved