View unanswered posts | View active topics


Reply to topic  [ 141 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6, 7 ... 10  Next
Build SWC from FD! "ExportSWC" plugin [beta] 
Author Message
Member

Joined: Wed Mar 19, 2008 10:15 pm
Posts: 36
Location: Sydney, Australia
Post Re: Build SWC from FD! "ExportSWC" plugin [beta]
SVN repository now available at http://www.sourceforge.net/projects/exportswc.
No binary available yet (just need some spare time soon), so you'll have to build the source.
There's an explanation of how to do so here: https://sourceforge.net/forum/forum.php?thread_id=3175363&forum_id=915376

Will update here again asap. Cheers!


Wed Apr 22, 2009 2:05 am
Profile
Member

Joined: Tue Jun 05, 2007 11:00 pm
Posts: 12
Post Re: Build SWC from FD! "ExportSWC" plugin [beta]
dragonworx: It tells me I don't have permission to view that page when I go to check it out.


Thu Apr 23, 2009 6:49 pm
Profile
Member

Joined: Wed Jun 20, 2007 8:09 am
Posts: 248
Post Re: Build SWC from FD! "ExportSWC" plugin [beta]
Try checking out from exactly this url (https):
https://exportswc.svn.sourceforge.net/s ... tswc/trunk

This works with no authorization (worked 1min ago).

_________________
Practice always defeats theory


Thu Apr 23, 2009 7:41 pm
Profile WWW
Member

Joined: Tue Jun 05, 2007 11:00 pm
Posts: 12
Post Re: Build SWC from FD! "ExportSWC" plugin [beta]
My fault.. I meant the building instructions.


Thu Apr 23, 2009 7:57 pm
Profile
Member

Joined: Wed Jun 20, 2007 8:09 am
Posts: 248
Post Re: Build SWC from FD! "ExportSWC" plugin [beta]
Here are they:

Quote:
First you'll need:

1. [TortoiseSVN] - http://tortoisesvn.net/downloads
2. [FlashDevelop Source] - http://svn1.cvsdude.com/osflash/flashdevelop/Trunk/FD3/
3. [ExportSWC Source] - https://exportswc.svn.sourceforge.net/s ... tswc/trunk
4. [Visual Studio C#.NET 2008 Express] - http://www.microsoft.com/exPress/download/


Then follow these steps:

1. Download the FlashDevelop source to a location on your PC (referred to as {FD})
2. Create a new folder in "{FD}\External\Plugins" called "ExportSWC" ie. {FD}\External\Plugins\ExportSWC"
3. Download ExportSWC source trunk into the new "ExportSWC" folder
4. Within Visual Studio, "Add Existing Project..." and select ".proj" file within "ExportSWC" folder
5. Build and run

You'll need to check that your project output for ExportSWC is building to "{FD}\FlashDevelop\Bin\Debug\Plugins" - this is where the application will run from. Otherwise your builds for ExportSWC will not be integrated into the FlashDevelop you are running from Visual Studio.


By the way: the project folder contains now all references needed. Just checkout and compile ;)

_________________
Practice always defeats theory


Thu Apr 23, 2009 9:51 pm
Profile WWW
Member

Joined: Wed Mar 19, 2008 10:15 pm
Posts: 36
Location: Sydney, Australia
Post Re: Build SWC from FD! "ExportSWC" plugin [beta]
urbansquall, my bad. The Developer forum was private, I have set it to public (hardly top secret). 8)

The forum link now works for public viewing.
http://sourceforge.net/forum/forum.php? ... _id=915376


Fri Apr 24, 2009 1:46 am
Profile
Member

Joined: Tue Jun 05, 2007 11:00 pm
Posts: 12
Post Re: Build SWC from FD! "ExportSWC" plugin [beta]
Any chance we can just get a binary? :)


Fri Apr 24, 2009 2:04 am
Profile
Member

Joined: Tue Jun 05, 2007 11:00 pm
Posts: 12
Post Re: Build SWC from FD! "ExportSWC" plugin [beta]
Followed the above steps and got the following errors:

Warning 332 The field 'ExportSWC.PluginMain._running' is never used C:\Users\pany\Documents\other\flashdevelop\External\Plugins\ExportSWC\PluginMain.cs 59 22 ExportSWC
Warning 333 Could not resolve this reference. Could not locate the assembly "PluginCore". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. ProjectManager
Warning 334 The referenced component 'PluginCore' could not be found.
Warning 336 The referenced component 'ProjectManager' could not be found.


Fri Apr 24, 2009 5:06 pm
Profile
Member

Joined: Wed Jun 20, 2007 8:09 am
Posts: 248
Post Re: Build SWC from FD! "ExportSWC" plugin [beta]
urbansquall wrote:
Followed the above steps and got the following errors:

Warning 332 The field 'ExportSWC.PluginMain._running' is never used C:\Users\pany\Documents\other\flashdevelop\External\Plugins\ExportSWC\PluginMain.cs 59 22 ExportSWC
Warning 333 Could not resolve this reference. Could not locate the assembly "PluginCore". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. ProjectManager
Warning 334 The referenced component 'PluginCore' could not be found.
Warning 336 The referenced component 'ProjectManager' could not be found.

You just need to make a fresh checkout of the repository and compile.

All warnings (except the "_running" one) are gone and you get a DLL put in the {Projectfolder}\Bin\Debug folder named "ExportSWC.dll". The other DLLs are the ones you need to compile that you didn't have (therefore the warnings). These DLLs are now in place and taken from the latest build of FD (build 495).

_________________
Practice always defeats theory


Fri Apr 24, 2009 8:19 pm
Profile WWW
Member

Joined: Tue Jun 05, 2007 11:00 pm
Posts: 12
Post Re: Build SWC from FD! "ExportSWC" plugin [beta]
I don't think I understand. That was a fresh check out..


Fri Apr 24, 2009 9:26 pm
Profile
Member

Joined: Wed Aug 01, 2007 3:37 pm
Posts: 1134
Location: Roseville, CA
Post Re: Build SWC from FD! "ExportSWC" plugin [beta]
Warappa, why don't you include a copy of ExportSWC.dll in the repository? That way we could post a link like https://exportswc.svn.sourceforge.net/s ... ortSWC.dll and download it from the repository directly without compiling.


Fri Apr 24, 2009 9:32 pm
Profile WWW
Member

Joined: Wed Jun 20, 2007 8:09 am
Posts: 248
Post Re: Build SWC from FD! "ExportSWC" plugin [beta]
elyon wrote:
Warappa, why don't you include a copy of ExportSWC.dll in the repository? That way we could post a link like https://exportswc.svn.sourceforge.net/s ... ortSWC.dll and download it from the repository directly without compiling.

Done.

Goto https://sourceforge.net/projects/exportswc/ and download the file.

If you experience any problem report it!

Lg
warappa

_________________
Practice always defeats theory


Sat Apr 25, 2009 9:59 am
Profile WWW
Member

Joined: Tue Jul 15, 2008 3:36 am
Posts: 113
Post Re: Build SWC from FD! "ExportSWC" plugin [beta]
will this plugin also support creating/exporting SWC from haxe (the lateset version support swc output) ?


Sat Apr 25, 2009 1:50 pm
Profile
Member

Joined: Wed Mar 19, 2008 10:15 pm
Posts: 36
Location: Sydney, Australia
Post Re: Build SWC from FD! "ExportSWC" plugin [beta]
Thanks to Warappa for his excellent work in finalising the testing and release packaging of the plugin! 8)

Hi aaulia, there are no plans for Haxe support as far as I am aware, but if you or anyone else would like to make them, why not download the source and add it in? :D

When you are finished, you could contact myself, Warappa, or Ourben to merge the changes into the trunk...


Sun Apr 26, 2009 11:47 pm
Profile
Member

Joined: Wed May 21, 2008 9:55 am
Posts: 2
Post Re: Build SWC from FD! "ExportSWC" plugin [beta]
thanks guys,
it seems doesn't work for making a flash cs3 swc library. i can see the swc in flash cs3 component panel, but can't drag it to the scene or library to use. :(


Fri May 29, 2009 8:42 am
Profile
Display posts from previous:  Sort by  
Reply to topic   [ 141 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6, 7 ... 10  Next

Who is online

Users browsing this forum: No registered users and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group.
Designed by ST Software for PTF.