Ok well here is my SEAF code:
All Fields Required<br><br>
{if logged_in}<p>Hey, {screen_name} </p>
{/if}
{exp:weblog:entry_form weblog="submisson" return="graphembed/fileplace" }
<p>Title<br />
<input type="text" name="title" id="title" value="{title}" size="50" maxlength="100" onkeyup="liveUrlTitle();" /></p>
<p>URL Title<br />
<input type="text" name="url_title" id='url_title' value="{url_title}" maxlength="75" size="50" /></p>
<p><Upload Art Work</p>
<br/>
<p>Photo</p>
<input type="text" name="myimage" value="{myimage}" />
<p><input type="submit" name="submit" value="Submit" /></p>
{/exp:weblog:entry_form}
And this is my Upload template
<div>
<h1>Upload you artwork</h1>
{exp:file_upload:upload_form form_name="entryform" destination="Graphtastic images" field_name="myimage" return="graphembed/fileplace" rename_duplicates="yes"}
<p><input type= "file" name="userfile" /></p>
<input type="submit" value="Upload"/>
{/exp:file_upload:upload_form}
</div>
And this is my placement template
{javascript}
</head>
<html>
<body>
{exp:file_upload:upload_confirm field_replace="replace"}
<p>File sucessfully uploaded!</p>
<input type="submit" value="Place Image and Close Window" onclick="fileplacer();window.close();" />
{/exp:file_upload:upload_confirm}
Everything seems correct but i may be wrong?