Hi, I think you are referring to Ant shortcut keys in Eclipse? Press Ctrl-Shift-L twice to go into the Preferences's key page.
Look for the Command area, and in the Category drop-down menu, look for Run/Debug. In the Command drop-down menu, look for Run Ant build. After you've got your shortcut key, change your buildfile to include the sequence of builds. eg. <project ... default="default-seq"> ... <target name="default-seq" depends="compileMySwfs, displayThem"/> ... </project> Change the target names in the "depends" attribute of the default-seq target. Now, when you run your ant build, it will use the default target (default-seq) and execute the targets in the sequence found in the "depends" attribute. Have fun! On 6/4/06, Weldon MacDonald <[EMAIL PROTECTED]> wrote: > Thank you Simon, this was exactly the problem. > Thank you Ray, your not kidding when you say verbose > Thank you Andre the file should save steps once I figure out what > exactly it's doing. > I have the logger working, now to get something to display in the swf viewer. > Are there any tutorials on workflow? It would be nice to build and > display the swf with a key stroke. > > Thanks all > > Weldon > > On 6/3/06, Ray Chuan <[EMAIL PROTECTED]> wrote: > > Hi, > > you can check this by running Ant in debug or verbose mode. > > > > To do this, > > > > 1. In your Ant view, right-click your buildfile (drag it to the view > > if it is not already there) > > > > 2. Run As --> External Tools > > > > 3. Under Ant Build in the left pane, add your build if not already > > there using the New button at the bottom left corner. > > > > 4. On the right pane, look for the Arguments text area. > > > > 5. Add the string, > > > > -d <and/or> -v > > > > On 6/3/06, Simon Wacker <[EMAIL PROTECTED]> wrote: > > > Hi Weldon, > > > > > > does the src directory of the used as2ant version contain the compiled > > > source files (*.class)? If not, point the classpath to the as2ant.jar > > > file. > > > > > > > > > Greetings, > > > Simon > > > > > > Weldon MacDonald wrote: > > > > > > >I'm trying to get an Ant build set up in Eclipse. I'm using the > > > >logging tutorial on osflash. > > > ><taskdef name="mtasc" classname="org.as2lib.ant.Mtasc" > > > >classpath="C:\com\stonepooch\as2ant\src" /> > > > >In the def above, the name and path point to the java source in > > > >as2ant, just as the tutorial has it, but Eclipse gives a can't be > > > >found error for the class. I've checked the path a dozen times and > > > >can't find the problem. Any ideas waht I'm missing? > > > > > > > >Weldon MacDonald > > > > > > > >_______________________________________________ > > > >osflash mailing list > > > >[email protected] > > > >http://osflash.org/mailman/listinfo/osflash_osflash.org > > > > > > > > > > > > > > > > > > > > > > -- > > > Simon Wacker > > > www.simonwacker.com > > > www.as2lib.org > > > www.hq-heilbronn.de > > > www.flik-flak.de > > > > > > > > > _______________________________________________ > > > osflash mailing list > > > [email protected] > > > http://osflash.org/mailman/listinfo/osflash_osflash.org > > > > > > > > > -- > > Ray Chuan > > > > _______________________________________________ > > osflash mailing list > > [email protected] > > http://osflash.org/mailman/listinfo/osflash_osflash.org > > > > > -- > Weldon MacDonald > > _______________________________________________ > osflash mailing list > [email protected] > http://osflash.org/mailman/listinfo/osflash_osflash.org > -- Ray Chuan _______________________________________________ osflash mailing list [email protected] http://osflash.org/mailman/listinfo/osflash_osflash.org
