Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Has anyone successfully used the Transform SWF for Java library from [Flagstone Software][1]

[1]: http://www.flagstonesoftware.com/transform/index.html to edit an existing swf file. Mainly what I want to accomplish is load a swf file and replace images or texts dynamically. Thank you.

share|improve this question

1 Answer

I know it is a little bit late, but google searchers will still land here :-) This code will color the first text span of all text elements to red.

import java.io.File;
import java.io.IOException;
import java.net.MalformedURLException;
import java.util.zip.DataFormatException;

import com.flagstone.transform.Movie;
import com.flagstone.transform.MovieTag;
import com.flagstone.transform.datatype.Color;
import com.flagstone.transform.text.DefineText;

public class Flash {
    public static void main(String args[]) throws MalformedURLException, DataFormatException, IOException {
        Movie m = new Movie();
        m.decodeFromFile(new File("C:\\tmp\\Movie.swf"));

        for (MovieTag mt : m.getObjects()) {
            System.out.println(mt.getClass() + "  " + mt.toString());
            if (mt instanceof DefineText) {
                ((DefineText) mt).getSpans().get(0).setColor(new Color(255, 0, 0));
            }
        }

        m.encodeToFile(new File("C:\\tmp\\foo.swf"));
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.