Link to home
Start Free TrialLog in
Avatar of madasczik
madasczik

asked on

CF CONVERSION OF JPG TO SFW

I have seen methods to convert JPGs to SWFs with PHP http://www.stefanschuessler.de/flash/02.php and MING http://www.productbeta.com/tutorials/show.php?goomba=3, is there a full A-Z example out there to do it with Cold Fusion?

Any help would greatly be appreciated and 500 points to the expert with the solution.
ASKER CERTIFIED SOLUTION
Avatar of rstorey2079
rstorey2079

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of madasczik
madasczik

ASKER

That's most of the work done right there, that's awesome!  Unfortunetly, I'm very new to Cold Fusion, can you help out with an example rstorey2079?  https://www.experts-exchange.com/questions/20781236/Call-a-JAVA-Class-From-ColdFusion-to-Convert-JPG-to-SWF.html
This is for ColdFusion MX.
You instantiate the object like this:

<CFOBJECT type=”java” class=”MyClass” name=”myObj”>

You call the constructor like this:

<CFSET ret = myObj.init(arg1, arg2) >

You can access methods and properties of the object like this:

 <CFSET obj.property = “somevalue”>
<CFSET value = obj.property>
<CFSET retval = obj.Method1()>
<CFSET retval = obj.Method2(x,y,”hello”)>

I got all of these examples from http://www.macromedia.com/devnet/mx/coldfusion/articles/java.html