Trouble linking SWC file - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T15:43:33Zhttp://stackoverflow.com/feeds/question/288467http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/288467/trouble-linking-swc-file1Trouble linking SWC filetoby2008-11-13T21:49:51Z2008-11-14T20:30:26Z
<p>I am trying to link the as3corelib library to use their JSON functionality following <a href="http://www.mikechambers.com/blog/2006/03/28/tutorial-using-json-with-flex-2-and-actionscript-3/" rel="nofollow">this tutorial</a>. But am having trouble compiling it. My command looks like:</p>
<pre>
mxmlc --strict=true -library-path+=as3corelib.swc --file-specs myapp.mxml
</pre>
<p>But I am getting this error:</p>
<pre>
_divided_mx_managers_SystemManager.as(13): col: 14 Error: Interface method getVisibleApplicationRect in namespace mx.managers:ISystemManager not implemented by
class _divided_mx_managers_SystemManager.
public class _divided_mx_managers_SystemManager
</pre>
<p>What is the problem?</p>
<p><em>Update: Is this because I am using Flex 3? The tutorial seems to be for Flex 2. If so, what do I need to do for Flex 3?</em></p>
http://stackoverflow.com/questions/288467/trouble-linking-swc-file/288576#2885760Answer by jdoklovic for Trouble linking SWC filejdoklovic2008-11-13T22:31:23Z2008-11-13T22:31:23Z<p>Are you using the flex Gubmo sdk?
Looks like the method it's complaining about is in an interface that's part of Gumbo.
If so, then as3corelib probably won't work with it.</p>
http://stackoverflow.com/questions/288467/trouble-linking-swc-file/288765#2887651Answer by toby for Trouble linking SWC filetoby2008-11-13T23:34:44Z2008-11-13T23:34:44Z<p>I found an older version of the library bundled with some tutorial which worked. Submitted a bug report to as3corelib, of course I am not entirely sure how valid the bug is.</p>
http://stackoverflow.com/questions/288467/trouble-linking-swc-file/291307#2913071Answer by Ryan Guill for Trouble linking SWC fileRyan Guill2008-11-14T20:30:26Z2008-11-14T20:30:26Z<p>If you are using Flex Builder 3 you can actually just take the swc file and put it in the libs directory. This will automatically add it to your classpath and you should be able to use it from then on. You may need to subsequently do a clean on the project to make sure it takes it in though.</p>