# Problem with numbers in text field

**URL:** https://forum.kirupa.com/t/problem-with-numbers-in-text-field/287271
**Category:** Uncategorized
**Created:** [April 29, 2009, 12:29am UTC](https://forum.kirupa.com/t/problem-with-numbers-in-text-field/287271 "2009-04-29T00:29:25Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Mak\_Valley](https://avatars.discourse-cdn.com/v4/letter/m/c4cdca/32.png) [@Mak\_Valley](https://forum.kirupa.com/u/Mak_Valley)
#### Post date: [April 29, 2009, 12:29am UTC](https://forum.kirupa.com/t/problem-with-numbers-in-text-field/287271/1 "2009-04-29T00:29:25Z")

</div>

I’m making a video player and i’m having some trouble displaying ns.time in a textbox:

```auto

// Scrub
var scrub_btn:scrubBtn = new scrubBtn();
loader_mc.addChild(scrub_btn);
scrub_btn.y = -8;

var amountLoaded:Number;
var timeInt = setInterval(vS, 100);

function vS(){
	amountLoaded = ns.bytesLoaded / ns.bytesTotal;
	scrub_btn.x = ns.time / duration * 296;
	controls_mc.text_txt.text = ns.time;
}

```

the last line is pretty much what i’m trying to do, and this is the error i get:  
1067: Implicit coercion of a value of type Number to an unrelated type String.
