How To Display Gif Image In Flash Textfield From Html File
Hi,
I have loaded an html file and displayed in textfield in flashMX2004, It is displaying every thing except the gif image. I am placing the sample code;
var my_lv=new LoadVars(); my_lv.onData=function(prm_data){ if (prm_data){ txt=prm_data; //this will be the raw content, exactly from the .html file img_txt.html=true img_txt.htmlText=_root.txt } else { trace("error in loading data"); } }; my_lv.load("ex.html");
if that html file contains gif it is not displaying . Any one can give any suggestions regarding this.
Thank you for your time and consideration.
Regards Advika
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Display Html Table In Html Enabled Textfield. Alternative?
hello!
i'm facing an issue due to the shortcomings of html tag support in flash.
The xml file containing the content to be displayed in a textfield (with html enabled) on the stage, contains a table. Right now, it displays each cell underneath each other, as if it were a paragraph. Any idea if there is a way to do this?
Also, is it possible to display an image inside a textfield (loading a img src="myimage.jpg" ) ?
thanks a lot!
alex
Can FLash Clear Image In HTML Textfield
Hi all.
When the image loaded into HTML textfield via <img> tag, say, aligned to the left, text floating it right. When i need the text to below the image, without floating it, i've used <br clear="all"> for browsers, and it worked well. Is there any way to simulate such behaviour in Flash HTML textfield?
Thanks.
Is It Possible To Display An Mc(image From Library) In A Textfield?
Hello!
I would like to display images (country flags) and text (country names) in a scrolling textfield. I found how to do it with externally loaded images, but nothing about how to do it with images available in the library. Better, I would prefer to load the images as mc's so I can detect when someone clicks on the flag.
Can anyone point to in the right direction please?
Than you very much.
Display Image File In Flash From Database
Flash/PHP question
I inserted the path to a image file into my database
image/myImage1000.jpg, image/myImage1010.jpg etc.
I wish to display this image(i.e myImage1000.jpg file in a Flash movie clip when a button is clicked.
Display A Flash File Within An Image Cell
I am Neeraj , a software engineer. I am basically into frontend kind of development.Could you tell me how to embed a flash file into an image cell.
I can explain it to via a scenario.
I have a flash file. And there is a JSP file which has an image cell tag. When i click on this image cell.A pop up comes up which has a browse option with which i select the flash file. And when i say ok then it should embed the flash file and display it in the image cell. I would be obliged if you could guide me or tell me how to do it.
Display A Html File From Website In Flash
Hi iam new to this forum and please help me!!
====
Is there any possible ways to display a website in a flash movie the easiest way??
I cant really understand how to do it so also could you please make an example swf if possible thank you for helping
How To Display Dynamic Text After Adding Flash File To Html
Please help - I have a dynamic text field in a movieclip inside a main movieclip - Within flash the dynamic text display properly but once I load the file to an html page the dynamic text no longer display - It loads undefined in text box. However when I remove the movieclip from main movieclip text display no problem.
Attach Code
myData = new LoadVars();
myData.onLoad = function() {
loadedtext.htmlText = this.info;
};
myData.load("about.txt");
Weird HTML Display With TextField.embedFonts = True
Ok, so at first this sounds very simple and perhaps even easy, but I have hit a wall which I have been unable to break through in the past 2 days. Calling all Flash [as] pros please.
Essentially, what I am trying to do is to load HTML content from an XML file and put it in a TextField object I create dynamically. After all this is done, clicking on a button fades the TextField object out and another TextField with new content appears.
I've got the whole process working fine, including the fading. And to get the fading to work, I've actually had to set my dynamic TextField objects' embedFonts property to TRUE.
Now here's the hiccup:
When embedFonts is FALSE, Flash displays the TextField's HTML content properly. The text flows properly and looks as expected. The only downside is that the fade effect doesn't work.
When embedFonts is TRUE, the fade effects works perfectly, but Flash displays the TextField's HTML content with a bunch of extra spaces between some of the letters. The line height seems to be different also.
The odd thing is that when I debug the code to look at the styles, in both instances of embedFonts set to TRUE or FALSE, the styles are exactly the same. But Flash is rendering the HTML with different kerning and line height in each of the scenarios.
Has anyone ran into this situation and if yes, have you managed to find a solution for it?
Any help is much appreciated.
P.S. Using Flash 8, AS 2
Image In An Html Textfield
hi,
i'm using the img tag to display an image in a html texfield with some text but the text doesn't flows around the image correctly unless i make it selectable and click on it which of course is not a solution...
does anyone know how to make the text appear correctly ?
here's my code in case you need it:
/// Flash on frame 1///
var imgXML:XML = new XML();
imgXML.ignoreWhite = true;
imgXML.onLoad = function(success){
if(success){
var root = this.firstChild;
_root.txt = root.firstChild.nodeValue;
T1.htmlText = txt;
}
}
///
I've put a dynamic textField named T1 on the first frame
imgXML.load("img.xml");
/// XML ///
<?xml version="1.0" ?>
<n>
<![CDATA[<img src="img.jpg"width="285"><br>Txt de description de l'image]]>
</n>
///////
HTML File Substitute And Image Instead Of Flash
HELP! I already uploaded the website and it contains flash for the header. I just found out that people who do not have flash it just shows a blank box. How do I detect the if the audience has flash and if they don't just have a picture show up.
PLEASE HELP!
Thanks,
Heather
Website: www.jacobusenergy.com
AS3: Bind Image In HTML TextField ?
Hi.
I can't fin a solution to my problem ... so i decided to try here
I have assets class with images like:
Code:
[Bindable]
[Embed("icons/smilies/icon_cool.gif")]
public static var COOL:Class;
I would like to bind an image in dynamic TextField using html tag IMG.
I was wondering if is it possible to bind resources ....
had tried <img src='{Assets.COOL}'/>, <img src='@imgAsset'/> ...
Anyone have any idea how to bind embeded images in html textfield?
Tnx in advance
HTML TextField Block Image?
I need to insert some images into a dynamic Textfield via the <img> tag. There are two problems I've encountered:
1) Flash seems to display it as inline, wrapping text around it. Is there a way to specify the image as being block?
2) If I have multiple images near each other, they overlap each other. Is there a way to avoid this?
Thanks for any advice.
Flex AS3: Bind Image In HTML TextField ?
Hi.
I can't fin a solution to my problem ... so i decided to try here
I have assets class with images like:
Code:
[Bindable]
[Embed("icons/smilies/icon_cool.gif")]
public static var COOL:Class;
I would like to bind an image in dynamic TextField using html tag IMG.
I was wondering if is it possible to bind resources ....
had tried <img src='{Assets.COOL}'/>, <img src='@imgAsset'/> ...
Anyone have any idea how to bind embeded images in html textfield?
Tnx in advance
Loading A .css File For A .html File In Textfield
I've done a bunch of tutorials and I managed to load a .html file into a textfield, which has the instance name of myTextField. Now, I am struggling to load a .css file in conjunction with it.
Can someone check out my code and help me?
AS3 code:
function textLoadComplete(event:Event):void
{
myTextField.htmlText = textLoader.data;
}
var textLoader:URLLoader = new URLLoader();
var textReq:URLRequest = new URLRequest("externalhtmlfile.html");
textLoader.load(textReq);
textLoader.addEventListener(Event.COMPLETE, textLoadComplete);
Image In Html Textfield Not Wrapping Text Properly
Greetings,
I have an external .jpg placed inline in an html textfield using an <img> tag with the alignment attribute set to "right". When the textfield first appears on the stage, the text does not wrap around the image and instead continues on behind the image. Once the textfield is clicked/selected or scrolled, then the text re-wraps itself around the image properly.
To hack around the issue I use the Selection methods to select the textfield after inserting the new html text string. This works but unfortunately crashes the player/browser consitantly after replacing the text a few times. Any better solutions out there?
my code:
Attach Code
textfield_txt.htmlText = "html string with inline image tag...";
Selection.setFocus(textfield_txt);
Selection.setSelection(0,0);
Textfield + HTML Hyperlink + Image = Selecting Text?
I have a curious predicament. I am placing html text content into a textfield. Everything shows up correctly. I have placed an image in the html text that has an <a> tag wrapped around it. The <a> taget has an "event:value" target value applied to it. When I click on the link it selects the text (starting from the first character to my image).
Here is the project test site:
http://www.guttaupr.com/testearea/Index.html <-- Click one of the press release items on the main page... when the press release appears, scroll to the bottom and try clicking on the button.
Here is the exact html code on the image: <a href="event:showList"><img src="img/PRBtn.jpg" align="right"/></a>
Thanks!
HTML In TextField ... Out Of An XML-file
I'm loading text from an xml-file (that contains html-tags) into a textfield.
If I use the regular html-tags in my xml-file, it will cause the text to be cut off at the point where it encounters the first special character '<'. If I use the corresponding html-code (< for the special char, my html will show just fine in my flash. BUT it's not me who is going to update the xml-file, and even if it were, the proces of replacing every special char with the html-code is too annoying.
Is there ANY way to keep using the regular html-tags in xml, so that the html will show just fine in my textfield? I thought about replacing the characters through actionscript (special char -> html-code) but that of course makes it display the corresponding character in the textfield, not parsing the html-tags.
Please help me out, it's driving me nuts! There has got to be a way to do this, right?
Display Data From Html File
How to display data from html file in a flash movie?
Suppose:
&name =<font color="#000000" ><b>some text goes here</b></font> <a href="#" ><font color="#0000FF"> Click here >></font></a>
I want to display in flash movie:
“Some text goes here Click here>>”
Using BitmapData To Display An Image Inside An XML File?
I posted about this already, but I thought I would make this more clear. I'm starting to come to the conclusion that this just can't be done in ActionScript 2.0.
I have a image lets say it's a JPG and I've been able to put it into an array. For example
Code:
import flash.display.BitmapData;
var str:String = "R0lGODlhDwAPAP..."; //Goes on and on
str = Base64.decode( str );
var mc:MovieClip = _root.createEmptyMovieClip( "myclip", 10 );
mc._x = 100;
mc._y = 100;
var bmap:BitmapData = BitmapData.loadBitmap( str );
mc.attachBitmap( bmap, 0 );
So Obviously BitmapData.loadBitmap( str ) Does not work. But is there a way to get otherwise loaded binary image data into a BitmapData object so that it can be used to attachBitmap and be shown?
Thanks,
Display Random Image From XML File With Associated Link
Here's the XML file I'm starting with:
<?xml version="1.0"?>
<images>
<pic> <image>image1.jpg</image> <link>http://www.nbc.com</link> </pic>
<pic> <image>image2.jpg</image> <link>http://www.abc.com</link> </pic>
<pic> <image>image3.jpg</image> <link>http://www.cbs.com</link> </pic>
</images>
I need some help figuring out the Actionscript to display a random image from this list in a movie clip in such a way that the user will be able to click on the image (for instance, image 3) and be taken to the associated URL (in this case, www.cbs.com).
Any help would be greatly appreciated.
Detect Flash / Display If Have / Display Image If Not.
Im using PHP so this is for "programmers" who use flash (or anyone who knows php enough to make a detection script).
I need to have a flash movie displayed on a page if it can determine whether or not the browser has the flash plugin. If it doesn't (ie can't tell what version, no plugin, etc) then I want it to display a GIF/jPg instead.
Using PHP and Flash 5
Help appreciated.
Display .swf File Size In HTML Page
Does anyone know if it's possible to generate the file size of a .swf and display it on the page?
For example, below "movie1.swf", you would see:
"Movie 1, 45K"
Dynamic Textfield, With External Html File
Hello all !
Great site btw
been browsing the forums for way to long not without finding the answer to my problem..
Soo..
well i have made a dynamic textfield with a few scroll buttons, the textfield pulls the info from a html.txt file.. work perfect with just text in the file,
But i can't seem to be able to use the <img> code to get a image with the text aswell..
The text kinda moves away to make room for the picture, but it nothing there..
only like a blank swf.. hmmm
well..
Thanks for any help...
Dragon
.txt File Does Not Display Text When SWF Movie Is Viewed In HTML
I hav a single line dynamic text field calling a external ".txt file sitting within a movie with the following script.....
onClipEvent (load) {
loadVariables("sample3.txt",this);
}
It loads the text fine when is previewed through flash player but when i put the movie into an HTML page it does not show the text......
what other ways can I approach this.....I have tried directing the file system properly and both files are in the same directory but that does not work either.......
any help please??
Converted MX File Won't Display HTML Text From Variable
I'm struggling with an MX movie that simply will not display html text unless you specify the actual text within the Actionscript.
In Flash 8 you can read HTML text from a variable that's specified on a web page. The example below shows the entire contents of the web page.
&thisVar=this<br>text
The textbox and Actionscript that I use for displaying this HTML text works fine as long as I create a new .fla file. However, my project involves a movie that was created in Flash MX. The movie is quite complex and it will not be easy to recreate it from scratch using Flash 8, although this would work.
I've tried many different techniques and approaches to get the htmlText to display but nothing appears in the textbox. The code in quesiton works fine in a new Flash 8 movie. I've tried opening the original movie in the original version of Flash but it still doesn't work.
To succeed with this project, I must be able to read the htmlText from an external source. I was hoping that someone would have a solution and would be happy to pay for it.
Has anyone run into this issue? Any suggestions?
Getting Html Text To Display From Xml File Usning CDATA
Hi
I am trying to get a link to work in the body text of a text block.
I am using CDATA but can not get this to translate to html in the flash. I have checked that the 'Render text as html' box is checked.
What is it that I am not doing? or not doing right?
Below is my AS and below that is my XML
========================
xml menu stripped down
======================
function CreateMenu(menu_xml) {
var items = menu_xml.firstChild.firstChild.childNodes;
for (var i = 0; i < items.length; i++)
{
if (items[i].attributes.type == "news")
{
var header = items[i].firstChild;
var article = items[i].childNodes[1];
var item_mc = menu_mc.attachMovie("menu_item", "item" + item_count, item_count);
item_mc._y = item_count * item_spacing;
item_count++;
item_mc.header_txt.text = header.firstChild.nodeValue; //
item_mc.main_mc.content_text = article.firstChild.nodeValue; // this is the content but is I use htmlText it throws an error
item_mc.main_mc.onRelease = DisplayInfo;
}
}
}
var news_xml = new XML();
news_xml.ignoreWhite = true;
news_xml.onLoad = function(success) {
if (success)
{
CreateMenu(this);
}
else
{
trace("Error loading XML file");
}
};
news_xml.load("news_url.xml");
===================
xml file below
==================
<?xml version="1.0" encoding="utf-8"?>
<menu>
<menuitems>
<item type="news">
<header>Heading</header>
<article><![CDATA[Some <br>text here<br><font size="16" color="#999999">And some text <a href="http://www.website.com" target="_blank"><b>here</b></a></font> <img src="any.jpg"/>]]></article>
</item>
</menuitems>
</menu>
Open HTML File Inside A Dinamic TextField
Hello I have been trying unsuccessfully to open a web site inside a Text Field with the HTML Tag Option enabled. Or even a single html file in the hard disk. is that possible? If not inside a Text Field, any other way to do that?
Thanks
Wilson
Load FLV File Into Component Display Window Via HTML Or Java
I have an assignment where I need to create a flash video player using the component display.
I want to place the flash object into an html document. I have multiple FLV files that I would like to play in this player. I would like to control the flash object with media controller.
I want to place a lot of buttons into the html document. Depending on which button you click on a different FLV file would load into the Flash Display component.
Please, let me know if you have any suggestion or if you need more information in order to better understand the assignment.
Please reply asap. Its very urgent. I'll desperately waiting for your reply.
Thank you so much for your help in advance.
How To Use HTML Link In Textfield To Open Swf File Within The Current Movie ?
Hi,
Is it possible to open a swf file, within the current movie using loadMovieNum, through the HTML link function in a HTML rendered dynamic textfield?
In other words I need to click linked words in a HTML textfield and instead of opening a html linked URL I need to open a swf file so it opens within the same movie just in another level.
Thank you.
Formatting External Text File As Html When Loading A TextField
I'm new to actionscript and I'm having trouble finding code examples of what I'm trying to do.
I'm loading a textField with addChild in a movieClip and want the external text file I am loading into this textField to render in the textField as HTML. I have attached the code I am using. If anyone can help or has some example code I would greatly appreciate it. Thanx
Attach Code
stop();
var plannerExt_txt:TextField = new TextField();
var plannerExtReq:URLRequest = new URLRequest("planner_Ext.txt");
var plannerExtLoad:URLLoader = new URLLoader();
var plannerUp_btn:MovieClip = new mc_upScroll
var plannerDown_btn:MovieClip = new mc_downScroll
plannerExtLoad.load(plannerExtReq);
plannerUp_btn.buttonMode = true;
plannerDown_btn.buttonMode = true;
plannerExtLoad.addEventListener(Event.COMPLETE, plannerExtReady);
plannerUp_btn.addEventListener(MouseEvent.MOUSE_DOWN, plannerScrollUp);
plannerDown_btn.addEventListener(MouseEvent.MOUSE_DOWN, plannerScrollDown);
plannerExt_txt.y = -272;
plannerExt_txt.x = -118;
plannerExt_txt.height = 537;
plannerExt_txt.width = 597;
plannerExt_txt.border = false;
plannerExt_txt.wordWrap = true;
addChild(plannerExt_txt);
function plannerExtReady(event:Event):void
{
plannerExt_txt.text = event.target.data;
plannerUp_btn.x = 470;
plannerUp_btn.y = -305;
addChild(plannerUp_btn);
plannerDown_btn.x = 470;
plannerDown_btn.y = 250;
addChild(plannerDown_btn);
}
function plannerScrollUp(event:MouseEvent):void
{
plannerExt_txt.scrollV --;
}
function plannerScrollDown(event:MouseEvent):void
{
plannerExt_txt.scrollV ++;
}
Flash 8 Textfield Scrolling Display Problem
Hi Everyone,
I have been working on a recent project and it requires a dynamic text scrolling horizontally like a marquee. When i use a small amount of text then it works smoothly. But then the text goes up to say around 800 characters or so. Flash 8 doesnt control the animation smoothly enough and it seems jumpy. Any feedback is welcome.
I have selected "Ani-alias for animation" and the scroll the movieclip in the OnEnterFrame event using _x-=2; equivalent to _x=_x-2;
Please guide me.
Many thanx in advance.
Flash 8 Textfield Scrolling Display Problem
Hi Everyone,
I have been working on a recent project and it requires a dynamic text scrolling horizontally like a marquee. When i use a small amount of text then it works smoothly. But then the text goes up to say around 800 characters or so. Flash 8 doesnt control the animation smoothly enough and it seems jumpy. Any feedback is welcome.
I have selected "Ani-alias for animation" and the scroll the movieclip in the OnEnterFrame event using _x-=2; equivalent to _x=_x-2;
Please guide me.
Many thanx in advance.
im pasting the code used in the movieclip and also the text that has been adjusted in the textfield within the movieclip for you reference.
//code in movieclip
//=======================
onClipEvent(enterFrame)
{
if (_root.animate==true)
{
_x=_x-2;
if (_x<(-_width+100))
{
_x=687.75;
}
}
}
//=======================
//code in frame adding the data
//=======================
scrollmov.textmov0.scrolltext.text="";
scrollmov.textmov0.scrolltext.autoSize=true;
scrollmov.textmov0.scrolltext.text="Tokyo~temp 73F/23C~20~High 85F/29C Low 75F/24C Isolated Thunderstorms~Seoul~temp 73F/23C~26~High 81F/27C Low 69F/21C Mostly Cloudy~Frankfurt/Main~temp 86F/30C~30~High 95F/35C Low 71F/22C Mostly Sunny~Mexico City~temp 57F/14C~26~High 72F/22C Low 57F/14C Scattered Thunderstorms~Beijing~temp 66F/19C~4~High 76F/24C Low 66F/19C Thunderstorms~Paris~temp 88F/31C~34~High 97F/36C Low 72F/22C Mostly Sunny~Milan~temp 91F/33C~34~High 89F/32C Low 71F/22C Mostly Sunny~Istanbul~temp 84F/29C~34~High 86F/30C Low 71F/22C Sunny~Vienna~temp 88F/31C~30~High 88F/31C Low 67F/19C PM Thunderstorms~Casablanca~temp 77F/25C~32~High 78F/26C Low 69F/21C Mostly Sunny~Munich~temp 84F/29C~34~High 88F/31C Low 64F/18C Mostly Sunny~Rome~temp 86F/30C~34~High 86F/30C Low 72F/22C PM Thunderstorms~Sao Paulo~temp 68F/20C~28~High 81F/27C Low 60F/16C Sunny~Athens~temp 90F/32C~34~High 90F/32C Low 76F/24C Sunny/Wind~Moscow~temp 75F/24C~34~High 76F/24C Low 55F/13C Partly Cloudy~London~temp 81F/27C~30~High 91F/33C Low 67F/19C Sunny~Taipei~temp 84F/29C~11~High 84F/29C Low 78F/26C Thunderstorms/Wind~Washington~temp 73F/23C~34~High 86F/30C Low 72F/22C Isolated Thunderstorms~Monterrey~temp 75F/24C~32~High 99F/37C Low 76F/24C Scattered Thunderstorms~Casablanca~temp 77F/25C~32~High 78F/26C Low 69F/21C Mostly Sunny~Madrid~temp 93F/34C~30~High 100F/38C Low 68F/20C Sunny";
//=======================
Ive tried using the code kindly sent by Joshua Jonah as
scrollmov.textmov0.cacheAsBitmap();
but it still doesnt seem to work. Please help!!!
Dynamic HTML Textbox Won't Display Flash Generated HTML?
I'll TRY to keep this simple... Keep in mind that the Hand Coded HTML works. It's the HTML that Flash writes that doesn't....
How I create the file:
------------------------
1st, I created a movie in Flash that has a HTML formated input box. So when I type things into that field, Flash automatically generates the HTML into the variable for the input box.
Next, I take that variable and display the HTML code in a dynamic text field. Then I copy and paste it into a text file, assign it a variable (myText=....), then I save it to my harddrive.
Got me so far?
The Problem
-------------------------
I have another movie that is just supposed to load the txt file and display the code in an Dynamic HTML text field. However... Flash can't seem to read the HTML that it creates? But it can read the HTML that I simplify and hand write. Does anyone know what I can do to use the Flash generated HTML?
Here is the code in the movie
----------------------------------------------
Code:
loadVarsText = new loadVars();
// load the text file
loadVarsText.load("scroller.txt");
// function which fires when the data is loaded:
loadVarsText.onLoad = function(success) {
if (success) {
// activate html
scroller.html = true;
// myText is var to put in the textfile
scroller.htmlText = this.myText;
} else {
trace("not loaded, try again!");
}
};
Below is what i'm loading into my movie. It's the HTML that Flash Generates from the input box, and below that is the HTML that I hand coded. HOWEVER I CAN'T GET THIS TO DISPLAY THE HTML CODE
FLASH CODE
-----------------------------
myText=<TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000"></FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000">* A hospital-acquired infection caused by methicillin-resistant Staphylococcus aureus or vancomycin-resistant Enterococcus can double the time a patient stays in the hospital</FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000"></FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000">* Infections in burn wounds account for 3 to 7of all infections in patients with burns, occurring most frequently in children, followed by the elderly</FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000"></FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000">* An analysis of post-surgical wound infections following head and neck surgery demonstrated an increase in the average hospitalization period from 14 days when wounds healed without complication, to 24 days when the wounds became infected.</FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000"></FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000">* In a survey of 96 English hospitals, surgical site infections led to an additional hospital stay of 6.5 days, and the hospital costs were doubled.</FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000"></FONT></P></TEXTFORMAT><TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="_sans" SIZE="12" COLOR="#000000">* About 59of diabetic lower extremity amputations are proceeded by an infected foot ulcer; among people with diabetes (150 million globally), 15will experience a foot ulcer in their lifetime</FONT></P></TEXTFORMAT>
MY CODE
----------------------------------------------
myText=* A hospital-acquired infection caused by methicillin-resistant Staphylococcus aureus or vancomycin-resistant Enterococcus can double the time a patient stays in the hospital<br><br>* Infections in burn wounds account for 3 to 7% of all infections in patients with burns, occurring most frequently in children, followed by the elderly<br><br>* An analysis of post-surgical wound infections following head and neck surgery demonstrated an increase in the average hospitalization period from 14 days when wounds healed without complication, to 24 days when the wounds became infected.<br><br>* In a survey of 96 English hospitals, surgical site infections led to an additional hospital stay of 6.5 days, and the hospital costs were doubled.<br><br>* About 59% of diabetic lower extremity amputations are proceeded by an infected foot ulcer; among people with diabetes (150 million globally), 15% will experience a foot ulcer in their lifetime
Thanks in advance for any help you can give
Frequent-C
http://www.Freq-Fest.com
[Edited by Frequentc on 06-10-2002 at 05:06 PM]
Image Display Bug In Flash 9?
hello all,
i'm having a strange image display problem where i load an external image onto the stage, then at runtime if i put a sprite over part of that image, say a pulldown menu covers the image temporarily, after the sprite goes away the image repaints with a 2 or 3 pixel offset from the uncovered part of the image.
this happens regardless of any dpi adjustment in the image or the image format (.jpg, .png, .gif). this happens regardless of whether i load from an external file or from the library.
any clues?
michael
Image Display Bug In Flash 9?
hello all,
i'm having a strange image display problem where i load an external image onto the stage, then at runtime if i put a sprite over part of that image, say a pulldown menu covers the image temporarily, after the sprite goes away the image repaints with a 2 or 3 pixel offset from the uncovered part of the image.
this happens regardless of any dpi adjustment in the image or the image format (.jpg, .png, .gif). this happens regardless of whether i load from an external file or from the library.
any clues?
michael
Image Display Bug In Flash 9?
hello all,
i'm having a strange image display problem where i load an external image onto the stage, then at runtime if i put a sprite over part of that image, say a pulldown menu covers the image temporarily, after the sprite goes away the image repaints with a 2 or 3 pixel offset from the uncovered part of the image.
this happens regardless of any dpi adjustment in the image or the image format (.jpg, .png, .gif). this happens regardless of whether i load from an external file or from the library.
any clues?
michael
HTML Display In Flash
Any method of displaying an external HTML file inside flash...???
or
Displaying basic HTML formatted text inside flashmovie??
Display Html In Flash
Is it possible to display an external html page inside my Flash file, similary the way you can display videos or images?
HTML Display In Flash
Any method of displaying an external HTML file inside flash...???
or
Displaying basic HTML formatted text inside flashmovie??
Display HTML In Flash
Is there a way to display external HTML pages inside of flash the same way as you would load in external SWFs / Images into a place holder.
Cheers
Loading Tex From External Txt Or Html File And Image Question - Please Help
I have a template from templatemonster, (a full flash template) and I wanted to know what do I do or what kind of tags do I use so the text loads from an external txt file and likewise so that the images load from an "image" folder?
I have never done this before so bear with me here. I am assuming that the text needs to be changed to dynamic, but thats where my educated guessing ends lol
HOW DO I DISPLAY AN IMAGE IF FLASH IS NOT INSTALLED
Hello All,
I have to create an ad to go on a major site and their requirments state:
* There should be a 'sniffer' program included in the flash file to check for the correct plug-in.
* If the user does not have the flash pug-in installed, a back up image should be provided and served in its place (all should be included whithin the flash file submitted)
Any help would be apriciated
Thanks
Andy
How Do You Display An External Image In Flash
Hi guys.
I have a real problem. I need to be able to display an image from outside my site in flash.
For example, I would like the flash document to download and display the image "http://www.google.co.uk/intl/en_uk/images/logo.gif"
I have seen scripts that allow you to do this with images inside your site folder, but how do you do it if its hosted somewhere else on the web
Thanks guys
Display Image When Flash Is Not Installed?
I want to create a header in flash for one of my sites. But I know that not everyone have flash installed. Is it possible to display a normal image for people who do not have flash installled?
Random Image Display In Flash
Hi there, i'm not a flash pro by any means so wonder if someone can help?
I want to display the logo in this swf (links below) randomly so they fade in and out. However it looks a bit stupid if there are two or more of the same logo displayed at any one time - can someone help?!
http://www.predicaments.com/newclient.swf
http://www.predicaments.com/CLIENTSPAGE.fla
Any help is most appreciated!
Kind regards
Justin
|