Dynamic Text  drive by ASP

Hi
I have figured out how to load dynamic text from an external
text file.
I need to do the same with an ASP file that pulls its data
from a database.
How is this done with Flash CS4? I can't find any tutorials
anywhere and Adobe's documentation is non-existent.
Can you tell me how? Or show me where there is a (useful)
tutorial?
Thanks!

>> The dynamic text instance name is "loadText"
Then you need to use the text property of the instance:
this.loadText.text = Math.round(getPercent*100)+"%";
Dave -
Adobe Community Expert
www.blurredistinction.com
http://www.adobe.com/communities/experts/

Similar Messages

  • Help with delivering dynamic text through an external file, through XML?

    I'm struggling to find the best way to deliver dynamic text
    from an external file, through XML, to a Flash file.
    I use small Flash pieces to deliver multiple sets of content
    through a single .swf file. An example is here:
    http://www.esi-intl.com/public/government/federal.asp
    In the .swf file at the bottom, I'm using a three-scene .fla
    file. I'm putting the actionScript in the Actions layer atop each
    frame. Example:
    stop ();
    loadVarsText = new LoadVars();
    loadVarsText.load("fedNews.txt");
    //assign a function which fires when the data is loaded:
    loadVarsText.onLoad = function(success) {
    if (success) {
    trace("done loading");
    //Now that we know the data is loaded,
    //set the text content of the Text Field
    //with the instance name "scroller" equal to the
    //contents of the variable
    scroller.html=true;
    scroller.htmlText = this.var1;
    } else {
    trace("not loaded");
    In that .txt file, I'm putting the information like this:
    var1=<font face="tahoma,verdana,sans-serif" size="11px"
    color="#000000"><b><a href='
    http://www.esi-intl.com/public/classroomtraining/dau.asp'>DAU
    Grants ESI Course CON353
    Equivalency</a></b><br>Advanced Business Solution
    in Contracting (CON 353) is an equivalency for DAU's CON 3535
    course, Advanced Business Solutions for Mission Support. <a
    href='
    http://www.esi-intl.com/public/classroomtraining/dau.asp'><U><font
    color="#996633">Continue</font></U></a></font>
    So much of this is pick-ups from what I've researched in
    Google. I'm looking for a way I can feel more confident in my code,
    and also have that code follow CSS.
    Lastly, I recognize the problems in XML with using single
    quotes / double quotes, and the & symbol. This is one of my
    largest time sucks, and I'd like to find a better way to do this.
    Thank you

    Hi,
    Did you ever find a resolution to this? I'm having a similar
    issue that I can't seem to get multiline dynamic text working in
    CS3.
    The font is embedded but it just displays the first line, and
    then a blank. I'm sure this worked fine in Flash MX.
    Cheers, Ant

  • Dynamic Text - HTML

    I have created a Dynamic text box and selected the "Render
    text as HTML" option. Right now all I am trying to do is get the
    bold tag to work, so in my test text box I have the following:
    <b>Bold</b>
    Not Bold
    When I do a ctrl-enter I don't get an HTML representation I
    just get the text as it is pasted here. This is a new empty
    document and is using Flash CS3 Professional.

    I saw this tutorial, thouht it may help:
    http://www.smartwebby.com/Flash/html_textbox.asp
    Sean

  • Dynamic Text in Paragraph Form as in Database

    I am building a site for a church and am setting up a page
    for the pastor to input his on thoughts as he sees fit. In the
    database (access) it has spaces where spaces need to be and you can
    see where one paragraph ends and the other starts but when I pull
    it to a page as dynamic text, it all jumbles together in 1
    paragraph. can someone help me.
    Thanks

    I can tell you guys really want to help, but please consider
    me a beginner. I don't see "VbCr" or "Chr10" in my code anywhere.
    or what to actually replace. I appreciate everything that has been
    posted. Can you be a little more specific for adumb programmer.
    Thank you in advance
    Here is the code for the ASP page
    <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
    <%
    ' *** Logout the current user.
    MM_Logout = CStr(Request.ServerVariables("URL")) &
    "?MM_Logoutnow=1"
    If (CStr(Request("MM_Logoutnow")) = "1") Then
    Session.Contents.Remove("MM_Username")
    Session.Contents.Remove("MM_UserAuthorization")
    MM_logoutRedirectPage = "/login.asp"
    ' redirect with URL parameters (remove the "MM_Logoutnow"
    query param).
    if (MM_logoutRedirectPage = "") Then MM_logoutRedirectPage =
    CStr(Request.ServerVariables("URL"))
    If (InStr(1, UC_redirectPage, "?", vbTextCompare) = 0 And
    Request.QueryString <> "") Then
    MM_newQS = "?"
    For Each Item In Request.QueryString
    If (Item <> "MM_Logoutnow") Then
    If (Len(MM_newQS) > 1) Then MM_newQS = MM_newQS &
    MM_newQS = MM_newQS & Item & "=" &
    Server.URLencode(Request.QueryString(Item))
    End If
    Next
    if (Len(MM_newQS) > 1) Then MM_logoutRedirectPage =
    MM_logoutRedirectPage & MM_newQS
    End If
    Response.Redirect(MM_logoutRedirectPage)
    End If
    %>
    <!--#include file="Connections/thirtyfirst.asp" -->
    <%
    ' *** Restrict Access To Page: Grant or deny access to this
    page
    MM_authorizedUsers=""
    MM_authFailedURL="/login.asp"
    MM_grantAccess=false
    If Session("MM_Username") <> "" Then
    If (true Or CStr(Session("MM_UserAuthorization"))="") Or _
    (InStr(1,MM_authorizedUsers,Session("MM_UserAuthorization"))>=1)
    Then
    MM_grantAccess = true
    End If
    End If
    If Not MM_grantAccess Then
    MM_qsChar = "?"
    If (InStr(1,MM_authFailedURL,"?") >= 1) Then MM_qsChar =
    MM_referrer = Request.ServerVariables("URL")
    if (Len(Request.QueryString()) > 0) Then MM_referrer =
    MM_referrer & "?" & Request.QueryString()
    MM_authFailedURL = MM_authFailedURL & MM_qsChar &
    "accessdenied=" & Server.URLEncode(MM_referrer)
    Response.Redirect(MM_authFailedURL)
    End If
    %>
    <!--#include file="Connections/thirtyfirst.asp" -->
    <!--#include file="Connections/thirtyfirst.asp" -->
    <%
    Dim rs02__MMColParam
    rs02__MMColParam = "1"
    If (Request.QueryString("text") <> "") Then
    rs02__MMColParam = Request.QueryString("text")
    End If
    %>
    <%
    Dim rs02
    Dim rs02_numRows
    Set rs02 = Server.CreateObject("ADODB.Recordset")
    rs02.ActiveConnection = MM_thirtyfirst_STRING
    rs02.Source = "SELECT * FROM texts WHERE ID = " +
    Replace(rs02__MMColParam, "'", "''") + ""
    rs02.CursorType = 0
    rs02.CursorLocation = 2
    rs02.LockType = 1
    rs02.Open()
    rs02_numRows = 0
    %>
    <%
    Dim Repeat1__numRows
    Dim Repeat1__index
    Repeat1__numRows = 10
    Repeat1__index = 0
    rs02_numRows = rs02_numRows + Repeat1__numRows
    %>
    <%
    Dim MM_paramName
    %>
    <%
    ' *** Go To Record and Move To Record: create strings for
    maintaining URL and Form parameters
    Dim MM_keepNone
    Dim MM_keepURL
    Dim MM_keepForm
    Dim MM_keepBoth
    Dim MM_removeList
    Dim MM_item
    Dim MM_nextItem
    ' create the list of parameters which should not be
    maintained
    MM_removeList = "&index="
    If (MM_paramName <> "") Then
    MM_removeList = MM_removeList & "&" &
    MM_paramName & "="
    End If
    MM_keepURL=""
    MM_keepForm=""
    MM_keepBoth=""
    MM_keepNone=""
    ' add the URL parameters to the MM_keepURL string
    For Each MM_item In Request.QueryString
    MM_nextItem = "&" & MM_item & "="
    If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
    MM_keepURL = MM_keepURL & MM_nextItem &
    Server.URLencode(Request.QueryString(MM_item))
    End If
    Next
    ' add the Form variables to the MM_keepForm string
    For Each MM_item In Request.Form
    MM_nextItem = "&" & MM_item & "="
    If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then
    MM_keepForm = MM_keepForm & MM_nextItem &
    Server.URLencode(Request.Form(MM_item))
    End If
    Next
    ' create the Form + URL string and remove the intial '&'
    from each of the strings
    MM_keepBoth = MM_keepURL & MM_keepForm
    If (MM_keepBoth <> "") Then
    MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1)
    End If
    If (MM_keepURL <> "") Then
    MM_keepURL = Right(MM_keepURL, Len(MM_keepURL) - 1)
    End If
    If (MM_keepForm <> "") Then
    MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1)
    End If
    ' a utility function used for adding additional parameters to
    these strings
    Function MM_joinChar(firstItem)
    If (firstItem <> "") Then
    MM_joinChar = "&"
    Else
    MM_joinChar = ""
    End If
    End Function
    %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>Admin - Results</title>
    <style type="text/css">
    <!--
    .style1 { font-size: 24px;
    font-weight: bold;
    color: #990099;
    -->
    </style>
    </head>
    <body>
    <p align="center" class="style1">31st Avenue Missionary
    Baptist Church<br />
    Administration Page </p>
    <p
    align="center">_________________________________________________________</p>
    <p align="right"> <a href="<%= MM_Logout
    %>">Log out</a></p>
    <div align="center">
    <table width="442" border="0">
    <tr>
    <td width="442"><div
    align="left"></div></td>
    </tr>
    <% While ((Repeat1__numRows <> 0) AND (NOT
    rs02.EOF)) %>
    <tr>
    <td width="442"><div align="center">
    <p align="left">Message: - <A
    HREF="/detail.asp?<%= Server.HTMLEncode(MM_keepURL) &
    MM_joinChar(MM_keepURL) & "ID=" &
    rs02.Fields.Item("ID").Value %>">Edit</A></p>
    <div align="left">
    <p><%=(rs02.Fields.Item("ppage").Value)%></p>
    </div>
    </div></td>
    </tr>
    <%
    Repeat1__index=Repeat1__index+1
    Repeat1__numRows=Repeat1__numRows-1
    rs02.MoveNext()
    Wend
    %>
    </table>
    </div>
    <div align="center"></div></body>
    </html>
    <%
    rs02.Close()
    Set rs02 = Nothing
    %>
    I can tell you guys really want to help, but please consider me
    a beginner. I don't see "VbCr" or "Chr10" in my code anywhere. or
    what to actually replace. I appreciate everything that has been
    posted. Can you be a little more specific for adumb
    programmer.

  • Dynamic text resizes when loaded?

    I made sure to set the stage to noScale but I am still having
    a strange problem that is driving my nuts. If I make a static text
    box it will not resizing when I compile and preview or upload the
    swf. However, if I make a dynamic text box, the text size increases
    slightly when i complile the swf. This makes fine tuning the layout
    of web pages extremely difficult because what i see on the stage is
    not the same size as what i see when the swf is complied. Has any
    one else had this problem or know how to solve it because its
    really starting to drive me nuts?

    The only time you should see a size difference is when you
    take text out of a movie clip that has been scaled. Hit Crtl-t to
    get the Transform window and see if the object is %100

  • Dynamic Text - Basic Question

    I am using Dreamweaver MX and ASP.Net to create a data driven
    website. I have created a database connection and set-up a dataset
    with the relevant query, which returns a table of information. I
    now want to simply insert some dynamic text that references
    specific data items on different rows.
    By inserting Dynamic Text through Dreamweaver I can only seem
    to return the information in row 1 of a specific column (i.e. the
    first data item). How do I specify which row the data should be
    taken from? The code I have at the moment for inserting the dynamic
    text is shown below:
    <%# dsCampaigns.FieldValue("CampaignName", Container)%>
    This returns the first item in the CampaignName column of the
    dsCampaigns dataset. How do I return the item on row 3?
    Thanks for your help.

    hi Ned,
    you've helped me again. Thanks.
    Putting stop in the first frame makes it now work. I don't
    really understand why, though.
    I had a 'stop' in frame 2 of my actions layer. so, when i ran
    what I started out with, with 'stop' in frame 2, when the playhead
    reaches frame one why can't I assign a value to the dynamic text
    instance?
    thanks.

  • Dynamic text links

    Can anyone help with this? I'm trying to get text on a screen
    to link to documents (that will be on a CD, currently on my hard
    drive) such as pdf, txt etc. Using Flash 9.
    Thanks.

    Thanks again for your reply. Since my last posting, I have
    gotten mostly everything figured out except the main issue, which
    is creating a link to documents from text. In the following code I
    was able to load dynamic text from an external txt file and I
    inserted an html link in the txt file but I don't want to open a
    browser link, but rather a file on CD or hard drive:
    var textLoader:URLLoader = new URLLoader();
    var textReq:URLRequest = new URLRequest("test.txt");
    function textLoaded(event:Event):void
    getStart_txt.htmlText = textLoader.data;
    textLoader.load(textReq);
    textLoader.addEventListener(Event.COMPLETE, textLoaded);
    So everything looks good, except how do I get the html link
    in the text file to open a doc instead of a url? Or maybe something
    in your post will work.
    Regarding buttons and code, this is from a Flash website:
    "So you just started AS3.0 full of excitement and ready for
    some coding challenges, you start coding your first button and
    suddenly, horror, you end up with "WARNING: Actions on button or
    MovieClip instances are not supported in ActionScript 3.0. All
    scripts on object instances will be ignored." or "1119: Access of
    possibly undefined property onPress through a reference with static
    type flash.display:SimpleButton.", indeed the good old AS2.0 event
    system is not working anymore in AS3.0: onClipEvent, onPress,
    onRelease, onLoad, onMouseDown ..etc, have become things of the
    past!!!
    What happened? well basically the whole event handling system
    has been revamped in Actionscript 3.0 and we are going to have a
    quick look at it."
    When I select a button in Flash 9, the error message I get is
    "Current selection cannot have actions applied to it."
    Thanks.

  • Dynamic Text Tutorial

    I want to use the Dynamic Text function in Dreamweaver; the
    idea being to use a Word doc to generate the ever-changing
    announcements. Does anyone know of either a video or book tutorial
    that will walk me through this step by step. I would prefer C#.net
    but at this point anything goes.

    Lawrence *Adobe Community Expert* wrote:
    > Sorry, but in short... You can't get there from here.
    You can't update
    > a web site "dynamically" from a word doc.
    >
    > You "could" have a Word doc that you save out as an HTML
    doc and upload
    > it under the same name each time to apply the updates,
    but... Ewww!
    > Word HTML docs are just soooo wrong on so many levels.
    To truly have a
    > dynamically updated site you are going to go with a
    dynamic server
    > language such as CF or PHP. Again, C# isn't an realistic
    option on the web.
    He could create an XML file with the relevant fields and
    dynamically
    pull that into a CF, PHP or ASP/.NET page.
    If its just one announcement he could even create a plain
    text file and
    use the file system object to pull the data in.
    Dooza
    Posting Guidelines
    http://www.adobe.com/support/forums/guidelines.html
    How To Ask Smart Questions
    http://www.catb.org/esr/faqs/smart-questions.html

  • Displaying the result of a calculation in a dynamic text box

    Hi folks,
    I'm having a very minor issue here (operator error, I'm sure ). With the help of some folks here, I've created a series of calculations, and I've got that part down. Now, I just need it to show up in the movie.
    I've created the dynamic text box in Flash (CS3), but when I hit test, it won't show up.
    After all the calculations, I should have a figure that I call totalmoney. My dynamic text box is called total. The user doesn't need to hit anything for it to appear. It just appears as part of the movie.
    Here's my code:
    stop();
    var startDate:Date = new Date(2010,0,12);  // use your  startyear, startmonth, startdate in the new Date() parameters.
    var  currentDate:Date = new Date();  // assuming user's clock is correct and in your  timezone.  else use server date/time.
    var numberOfSeconds:Number =  (currentDate.getTime()-startDate.getTime())/1000;
    var interest:Number =  (numberOfSeconds*0.74356);
    var totalmoney:Number =  (interest+15,000,000);
    function displaytotal(evt:TextEvent):void {
         total.text = "totalmoney";
    Any thoughts?
    Thanks!
    Napo

    You didn't have to bury any of the calculations in the function--leaving it as you had it is better.  They could remain where they a=werew, and you'll probably find you want them outside it if you have other plans for using them.  If left inside, they only have scope inside.  In the programming world, it's good to think of functions as things that do one thing and one thing only (though it isn't often practiced that way)--it's called modular design.
    When you place an event as an argument for a function, it typically means that there is an event listener that initiates the call to the function.  If you work with buttons you'll see what I mean.  But if the plan is to create your own call to a function when you desire it as such, not have it driven by an event listener, then you don't need to pass any event to it, though you may pass some other type of variable to it if need be.
    For instance, what you have now will call the function without an argument because the function has the value built into its code....
    displaytotal();
    But you could also make the function a little more generic and set it up to recieve the value instead as an argument...
    function displaytotal(amt:Number):void {
         total.text = String(amt); // an earlier error of mine
    displaytotal(totalmoney);
    That would make your function a little more useful.  Now it could be used to display other Number variables as well.
    // my earlier error was that a textfield displays text, so you need to convert the Number value to s String.
    Hope I'm not confusing you.

  • Dynamic Text Field is not displaying foreign characters... HELP!

    I have a dynamic text field that is not displaying foreign characters properly. They appear as boxes.
    Here's what I've tried.
    Under properties for the text field, I clicked on the embed characters button. In there, I pasted all the special characters I would need and clicked okay. Shouldn't this be enough for the text to display properly? What am I missing? Please help...

    More info: I'm noticing that in the actual dynamic text field in my .FLA file, if I type a foreign character like é, it pops up as a block. My family font is set to New Caledonia... is it possible that New Caledonia doesn't have those particular glyphs? The thing that doesn't make sense to me though is, last year when I made this card, it worked fine with New Caledonia... Any help is greatly appreciated!!

  • EDGE and HTML dynamic text in a "box" with scroll bar

    I'm new to EDGE, a win7pro master collection cs5.5 suite owner. I'm mainly in the Film/Video post production field (mostly AE, PPro, Pshop, IA) but have been branching into web design the last couple of years.  I use Dreamweaver, Fireworks, Flash. While I'm a expert user with all the Film/video apps, I would say I only have intermediate ability with the web apps. While I understand a lot of programing logic bulding blocks I'm not a coder.
    So since we're told "flash is dead",  my interest in Edge is to try to do some of the things that I can currently do in flash in  EDGE. I was excited when Edge first came out but lost interest when it became obvious that Adobe was not going to offer Edge and Muse to "suite owners" but only in their force feeding of the "Cloud". Better known as the "golden goose" for adobe stockholders and a never ending perpetual hole in the pocket for users. Anyway....
    I spent the last couple of days doing some of the tuts and messing with the UI. It's matured a lot since I was here last.
    I've been working on a flash site for a sports team where one of the pages is a player profile page where college recuriters and other interested parties can view recuriting relavent info/stats about players. This is how it works. While on the "Team" page a users clicks on  a button labled "Player Profiles" . (Animation) A "page" flies in and unfurls from the upper right corner (3d page flips effect created in AE played by flash as a frame SEQ). Once it lands filling most of the center of the screen there is a bright flash. As the brightness fades we see the "page" is a bordered box with a BG image of a ball field(End). (Animation) from behind the border in fly small pictures (player head shots with name and jersey number). They stream in and form a circle like a wagon train and the team logo zooms up from infinity to the center of the circle(End). As the user mouses over a player's pic it zooms up a little and gets brighter (like mouseover image nav thumbs for a image slider). If the user clicks on a player's head shot it flips over and scales up to become a text box with a scrollbar. The content of the box is a mix of images, static and dynamic text fields populated from data in an "player info data base" XML file, and some hyperlinks. It's all kept updated dynamicaly with current stats, info and images from the XML file. There is also a "PDF" button that allows the user to open/save/print a PDF of the player's profile (the PDF's are static files for now but the choice of which pdf to retrive is dynamicaly supplied via the XML file.
    So.... Is Edge now able to do something like this?  Would it need to be a collection of small animations? could these be "assembled" and connected as an asset in dreamweaver ?
    I thought I would approach this from the end (ie click on an image and display a box with dynamic TEXT fileds. ) since that is the most important part, ie displaying the dynamicaly updated profile info.  Sooooo....
    Can Edge display a scrolling text box with Images, static text, and html dynamic text in it??
    Joel

    The code is in composition ready. Click the filled {}

  • How to use same dynamic text, multiple times in a Movie

    FLASH CS5.5
    How can a dynamic text field be used multiple times, on any
    frame, in any new layer during a Movie?
    ~~
    A number of unique dynamic text fields are being used.
    The intent is to use them each, many times during a Movie.
    (i.e. a users first name)
    They are successfully being "ExternalInterfaced" from a PDF form field.
    (the SWF is displayed within the PDF as a RMA)
    This all works well, IF I only use one instance of the dynamic text field.
    (one use of each unique text field)
    If I try and use that same dynamic text field, again, in a new layer, later in the SWF,
    all of that said, duplicate dynamic text fields do not display.
    ~~
    Stumped!!!
    Thanks in advance for your advice / comments!
    D-

    Thanks Ned,
    I always welcome learning something new.
    I did not know creating a new keyframe,
    creates a new instance.
    Yes, I had used the same dynamic text field instance name in
    numerous, new layers (great observation).
    With the objective to display the User's name throughout
    the timeline (on and off)...
    I'll attempt to paraphrase your solution;
    Use a single layer to display the dynamic text field.
    Extend this layer's timeline throughout the movie, or end use of the dynamic text field.
    Help with this one ??
    Set the visible properties to true or false as need through out the timeline.
    ( Does require an AS3 ? )
    I'll give that a try.....
    ~~
    Side of effect of using the above solution;
    The SWF in it's attempted state, uses the dynamic text field instance, in
    different places, different text sizes, on the stage, throughout the Movie.
    (i.e. the User's first name appears in different sentences...)
    Per the solution above,
    I believe I will be limited to One location, one format setting.
    Is this assumption correct?
    I can make this work from a display / Movie point of view.
    However, your first VAR concept, noted above, might be
    worth exploring should more flexibility be required.
    Thanks for making the time to coach...
    D-

  • How do I make dynamic text look static while the HMTL tagging is enabled?

    Hi all,
    I am using flash 8 with AS 2.0.
    I have a dynamic text field where I am setting it's text value through a variable. Now, I need this dynamic text field content to look like static font on runtime. I tried embedding the text field but that makes my file so heavy and most importantly, it disables the HTML tagging on the text field.
    Please suggest me on how to make a dynamic text field content look static on runtime while the HTML tagging is enabled and working fine.
    Thanks.

    I am sorry. But the attachment was not intended for what you
    thought my friend.
    It was there so that there are no confusions for what I mean by look of dynamic and static text fields.

  • How do I embed multiple font outlines in dynamic text field

    Can anyone tell me how I can embed multiple font outlines in
    Flash MX so I can get smooth text in a dynamic
    text frame? I want to use Regular, bold and italic in various
    parts of the text.
    I was using the Character button in the properties manager
    and tried to include all Characters. That does not work.
    In the Properties manager I can choose Bold and/or Italic.
    But it becomes a universal setting that overrides my HTML tags in
    my external txt file that I am importing. I dont want all my text
    to be bold.
    If I dont select them in the properties, however, Flash will
    not embed the font that it needs.
    Is there a different way to embed fonts other than under the
    Character Tab?
    I tried to import fonts to the library, but can not select
    them.
    Your help would really be appreciated.
    Sincerely,
    ggaarde

    ggaarde wrote:
    > Thanks Urami
    > Tried your method and it does not work for me.
    > I put 3 dynamic text fields in the first frame of the
    movie. Set them up to
    > where one is regular, one is bold and one is italic
    Helvetica.
    Weird, it works for me on first go, always had in fact :)
    Show you an example, try to compare to your file see if you
    missed anything accidentally.
    http://flashfugitive.com/stuff/font/text.swf
    text file
    http://flashfugitive.com/stuff/font/text.txt
    fla
    http://flashfugitive.com/stuff/font/text.fla
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Is there a way to list all the file names (automatically) in a folder to dynamic text box?

    Hi,
    I would like to know whether FLASH AS3 has some option to get all the files names from a folder specified and show it in a dynamic text box? Whenever some new files added to this folder it should update the list accordingly.
    Thanks for any information in this regard.

    Not particularly experienced in this field myself, but I've found its just easier to implement an XML file which lists the contents of the folder. It just means that when you upload a new file you have to add it to the list in the xml file also. No real hardship once you figure out the mechanics of it

Maybe you are looking for

  • Excel 2007 and Security warning

    i am generating excel version of a report and it is working ok in 2003 Now when we went to excel 2007 i get a warning message "The file you are trying to open, '[filename]', is in a different format than specified by the file extension. Verify that t

  • Deadlock issue in while inserting in oracle table.

    I have written a procedure which copy data in to oracle tables.Other user can also start inserting in that table so to prevent these intervention. i have applied locks on these two tables and assume that my procedure will wait for other users to fini

  • SIT Real-time data logging and passing data

    Hello all, I am pretty new to LabView real-time, so I just want to confirm a few things. I am also using the Simulation Interface Toolkit. Let's take the Sinewave.vi from the SIT examples. I have modified it to use sinewave.dll, and run on PXI-8101.

  • User exits for crosschecking from EBAN,ESLL, ESUH @ runtime

    Hi all @ SDN forums, question: i have to find an user exit to introduce a new check that has to be executed during the creation of a purchase request (me51n). The task must evaluate the data inserted so far in the request doing a check that involves

  • WSDL Problem - Bind Method to URL

    Hi Everybody! I have problem concerning WSDL. I have created a small webservice and used to Java2WSDL to generate the WSDL from the interfaces. Now I can call a specific method via "http://localhost/myWebservice?method=requestSummary/paramA=... What