# Help with displaying text in a dynamic text box

**URL:** https://forum.kirupa.com/t/help-with-displaying-text-in-a-dynamic-text-box/198279
**Category:** flash
**Created:** [August 23, 2006, 6:52pm UTC](https://forum.kirupa.com/t/help-with-displaying-text-in-a-dynamic-text-box/198279 "2006-08-23T18:52:36Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![ltjlogic](https://avatars.discourse-cdn.com/v4/letter/l/858c86/32.png) [@ltjlogic](https://forum.kirupa.com/u/ltjlogic)
#### Post date: [August 23, 2006, 6:52pm UTC](https://forum.kirupa.com/t/help-with-displaying-text-in-a-dynamic-text-box/198279/1 "2006-08-23T18:52:36Z")

</div>

I am trying to do a tutorial with this book I have and I can’t get the “welcome message” to be displayed from my dynamic text box. I tried the “completed” .fla that they supplied and it doesn’t show up there either… here is the whole code, with the welcome message near the top. What would be the reason that it doesn’t display?

```auto

stop();
var logoScale:Number = 55;
logo_mc._xscale = logoScale;
logo_mc._yscale = logoScale;
var welcomeMessage:String = "Welcome to Science Now!";
welcomeMessage_txt.text = welcomeMessage;
homePage_btn.onRelease = function() {
    gotoAndStop("Home Page");
};
news_btn.onRelease = function() {
    gotoAndStop("News");
};
contactUs_btn.onRelease = function() {
    gotoAndStop("Contact Us");
};

```

Thanks in advance,

Evan
