Hey Stray,
As far as the configname argument goes, all ToolTasks (basically anything in Sprouts that wraps up a command line tool), have a prepended_args and appended_args property.
These will insert whatever string you set them to as the first or last command line argument, respectively.
Anytime you find a configuration option that hasn't yet been added, you can set them with one of these like:
mxmlc 'bin/SomeProject.swf' do |t|
t.prepended_args = "-configname=foo"
end
In the case of MXMLC, it expects the input class to be the final argument, so you'll probably want to use prepended_args there.
As I said, it's been quite awhile since I've been in those AIR tasks, does the ADL task launch FDB? Is that what you're referring to with having to continue?
If that's the case, we could look at putting the FDBTask into it's inheritance chain which would let you specify FDB commands that will be executed 'interactively' within rake like:
adl :run do |t|
t.run
t.continue
t.continue
end
Thanks,
Luke