# gotoURL returning false

**URL:** https://forum.kirupa.com/t/gotourl-returning-false/278190
**Category:** flash
**Created:** [December 23, 2008, 6:10pm UTC](https://forum.kirupa.com/t/gotourl-returning-false/278190 "2008-12-23T18:10:45Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![cFoo](https://avatars.discourse-cdn.com/v4/letter/c/edb3f5/32.png) [@cFoo](https://forum.kirupa.com/u/cFoo)
#### Post date: [December 23, 2008, 6:10pm UTC](https://forum.kirupa.com/t/gotourl-returning-false/278190/1 "2008-12-23T18:10:45Z")

</div>

I’m a little bit stuck as to why gotoURL would return false and does nothing. Does anyone know what could possibly cause gotoURL to return false?

submit is a MC. The trace works fine. It’s just the gotoURL doesn’t take you any where.

```auto
submit.onPress = function()
{
	trace( "site.php?keyword=" + keyword.text );
	if( !gotoURL("site.php?keyword=" + keyword.text, "_self") )
	{
		trace("error sending URL" );
	}
};

```
