My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Earlier this year

  • Feb 01, 2010
    issue 8 (Annotations stops conversion) reported by alexander.schilpp   -   What steps will reproduce the problem? 1. Annotate a member variable (@Something) 2. 3. What is the expected output? What do you see instead? Annotations should not be converted (left out) Instead: Conversion of the file stopped What version of the product are you using? On what operating system? SVN version from 2010-Feb-01 Please provide any additional information below. Fast fix was to add "@" to the symbols list, so that the annotation is converted "as is", but the annotation should be left out from AS3 code
    What steps will reproduce the problem? 1. Annotate a member variable (@Something) 2. 3. What is the expected output? What do you see instead? Annotations should not be converted (left out) Instead: Conversion of the file stopped What version of the product are you using? On what operating system? SVN version from 2010-Feb-01 Please provide any additional information below. Fast fix was to add "@" to the symbols list, so that the annotation is converted "as is", but the annotation should be left out from AS3 code

Older

  • Oct 29, 2009
    issue 7 (Default Constructors with arguments contains 'var') commented on by premkr   -   Also the function keywork is missing!
    Also the function keywork is missing!
  • Oct 29, 2009
    issue 7 (Default Constructors with arguments contains 'var') reported by premkr   -   What steps will reproduce the problem? 1. Test java file with default constructor package test; public class DefaultConstructorTest { DefaultConstructorTest(String arg, String arg2) { //... } } 2. Converted as3 package test { public class DefaultConstructorTest { DefaultConstructorTest(var arg:String, var arg2:String) { //... } } } 3. No need of 'var' in before the arguments. What is the expected output? What do you see instead? package test { public class DefaultConstructorTest { DefaultConstructorTest(arg:String, arg2:String) { //... } } } What version of the product are you using? On what operating system? 1. J2AS3_v3.air 2. OS: Win & MAC OS X Please provide any additional information below.
    What steps will reproduce the problem? 1. Test java file with default constructor package test; public class DefaultConstructorTest { DefaultConstructorTest(String arg, String arg2) { //... } } 2. Converted as3 package test { public class DefaultConstructorTest { DefaultConstructorTest(var arg:String, var arg2:String) { //... } } } 3. No need of 'var' in before the arguments. What is the expected output? What do you see instead? package test { public class DefaultConstructorTest { DefaultConstructorTest(arg:String, arg2:String) { //... } } } What version of the product are you using? On what operating system? 1. J2AS3_v3.air 2. OS: Win & MAC OS X Please provide any additional information below.
  • Sep 02, 2009
    issue 6 (Hexidecimal ints problems) reported by misthalu   -   What steps will reproduce the problem? 1. In Java source, set int color = 0x77ff77; 2. Compiled AS source says: var color:int = 0x7777; Expected output is "var color:int = 0x77ff77;" but instead the "ff" part is removed, and I get "var color:int = 0x7777;" I'm using J2AS3 v3 on Ubuntu Linux
    What steps will reproduce the problem? 1. In Java source, set int color = 0x77ff77; 2. Compiled AS source says: var color:int = 0x7777; Expected output is "var color:int = 0x77ff77;" but instead the "ff" part is removed, and I get "var color:int = 0x7777;" I'm using J2AS3 v3 on Ubuntu Linux
  • Aug 25, 2009
    PageName (Java to ActionScript 3 ... because it's too useful not to ha...) Wiki page commented on by gilado   -   Answering my own question 1. Download Adobe AIR installer here http://get.adobe.com/air/ 2. Install Adobe AIR: on Linux you run ./AdobeAIRInstaller.bin 3. Run the "Adobe AIR Application Installer" (installed in #2) 4. In the installer select J2AS3_v3.air and install it; it will automatically run 5. It resides in /opt/J2AS3/bin/J2AS3
    Answering my own question 1. Download Adobe AIR installer here http://get.adobe.com/air/ 2. Install Adobe AIR: on Linux you run ./AdobeAIRInstaller.bin 3. Run the "Adobe AIR Application Installer" (installed in #2) 4. In the installer select J2AS3_v3.air and install it; it will automatically run 5. It resides in /opt/J2AS3/bin/J2AS3
  • Aug 25, 2009
    PageName (Java to ActionScript 3 ... because it's too useful not to ha...) Wiki page commented on by gilado   -   Answering my own question 1. Download Adobe AIR installer here http://get.adobe.com/air/ 2. Install Adobe AIR: on Linux you run ./AdobeAIRInstaller.bin 3. Run the "Adobe AIR Application Installer" (installed in #2) 4. In the installer select J2AS3_v3.air and install it; it will automatically run 5. It resides in /opt/J2AS3/bin/J2AS3
    Answering my own question 1. Download Adobe AIR installer here http://get.adobe.com/air/ 2. Install Adobe AIR: on Linux you run ./AdobeAIRInstaller.bin 3. Run the "Adobe AIR Application Installer" (installed in #2) 4. In the installer select J2AS3_v3.air and install it; it will automatically run 5. It resides in /opt/J2AS3/bin/J2AS3
  • Aug 24, 2009
    PageName (Java to ActionScript 3 ... because it's too useful not to ha...) Wiki page commented on by gilado   -   This looks like a great tool! and looks like quite a few people have used it to convert their projects. How do you use it though? I downloaded, unzipped, and tried to run J2AS3.swf in firefox, konqueror, but nothing happened. I looked inside flex sdk's runtime directory at air/win/Adobe\ AIR/Versions/1.0/Adobe\ AIR.dll but I don't know where to plug it?
    This looks like a great tool! and looks like quite a few people have used it to convert their projects. How do you use it though? I downloaded, unzipped, and tried to run J2AS3.swf in firefox, konqueror, but nothing happened. I looked inside flex sdk's runtime directory at air/win/Adobe\ AIR/Versions/1.0/Adobe\ AIR.dll but I don't know where to plug it?
  • Aug 23, 2009
    issue 5 (Escaped Quotes Cause Infinite Loop and Lockup) commented on by stupergenius   -   Actually, just took a look at the concerned parts of the code. The double quotes issue was fixed with a patch, but it seems the single quote was not. So, http://code.google.com/p/j2as3/source/browse/trunk/converter/src/com/j2as3/Tokenizer.as#142 should be skipUntilWithEsc("'");
    Actually, just took a look at the concerned parts of the code. The double quotes issue was fixed with a patch, but it seems the single quote was not. So, http://code.google.com/p/j2as3/source/browse/trunk/converter/src/com/j2as3/Tokenizer.as#142 should be skipUntilWithEsc("'");
  • Aug 23, 2009
    issue 5 (Escaped Quotes Cause Infinite Loop and Lockup) reported by stupergenius   -   What steps will reproduce the problem? Convert a directory with a java file in it with a string containing an escaped quote. I've only come across '\'' but I would imagine the string "\"" would reproduce as well. What is the expected output? What do you see instead? I expect it to leave the string unmodified, it is a valid AS3 string. Instead it hangs indefinitely searching for, I presume, the matching quote. What version of the product are you using? On what operating system? SVN checkout on 8/22/09. Vista x86.
    What steps will reproduce the problem? Convert a directory with a java file in it with a string containing an escaped quote. I've only come across '\'' but I would imagine the string "\"" would reproduce as well. What is the expected output? What do you see instead? I expect it to leave the string unmodified, it is a valid AS3 string. Instead it hangs indefinitely searching for, I presume, the matching quote. What version of the product are you using? On what operating system? SVN checkout on 8/22/09. Vista x86.
  • Jul 27, 2009
    ActionScript (ActionScript 3 Definition) Wiki page commented on by amitdream2000   -   kjh
    kjh
  • May 22, 2009
    issue 4 (Display progress, persist last used paths - patch) reported by bras.vic   -   I've been using your program and I needed 2 little features. I made them and I'd like to contribute them to the project. 1. Store last used paths so I don't have to re-enter them at next start. 2. Make the progress-bar and list really display the progress while working. In the hope they are useful, here is the patch - see attachment.
    I've been using your program and I needed 2 little features. I made them and I'd like to contribute them to the project. 1. Store last used paths so I don't have to re-enter them at next start. 2. Make the progress-bar and list really display the progress while working. In the hope they are useful, here is the patch - see attachment.
  • Mar 11, 2009
    issue 3 (Support typed arrays) reported by mslinn   -   Recognize types ArrayLists and convert using Vector (http://livedocs.adobe.com/flex/3/langref/Vector.html)
    Recognize types ArrayLists and convert using Vector (http://livedocs.adobe.com/flex/3/langref/Vector.html)
  • Mar 08, 2009
    issue 2 (Problems converting Java arrays) reported by mslinn   -   Java declarations like int[] xPositions = new int[5]; are converveted to actionscript code var xPositions:Array= new int[5]; but correct would be var xPositions:Array= new Array(5); or I believe this could also work var xPositions:Array= new int(5); Also when having a java method that returns an array like public int [] getXPoints() { it is translated to public int [] getXPoints() { but correct would be public function getXPoints():Array {
    Java declarations like int[] xPositions = new int[5]; are converveted to actionscript code var xPositions:Array= new int[5]; but correct would be var xPositions:Array= new Array(5); or I believe this could also work var xPositions:Array= new int(5); Also when having a java method that returns an array like public int [] getXPoints() { it is translated to public int [] getXPoints() { but correct would be public function getXPoints():Array {
  • Mar 08, 2009
    issue 1 (my windows complained about the version) changed by mslinn   -   The J2AS3 converter requires AIR v1.5
    Status: WontFix
    Labels: Type-Other Type-Defect
    The J2AS3 converter requires AIR v1.5
    Status: WontFix
    Labels: Type-Other Type-Defect
  • Mar 04, 2009
    r23 ([No log message]) committed by mslinn   -   [No log message]
    [No log message]
  • Mar 03, 2009
    r22 ([No log message]) committed by mslinn   -   [No log message]
    [No log message]
  • Mar 03, 2009
    r21 ([No log message]) committed by mslinn   -   [No log message]
    [No log message]
  • Mar 03, 2009
    r20 ([No log message]) committed by mslinn   -   [No log message]
    [No log message]
  • Mar 03, 2009
    J2AS3Collections.swc (Collection classes v1) file uploaded by mslinn
  • Mar 03, 2009
    r19 ([No log message]) committed by mslinn   -   [No log message]
    [No log message]
  • Mar 03, 2009
    r18 ([No log message]) committed by mslinn   -   [No log message]
    [No log message]
  • Mar 02, 2009
    ActionScript (ActionScript 3 Definition) Wiki page added by mslinn
  • Mar 02, 2009
    PageName (Java to ActionScript 3 ... because it's too useful not to ha...) Wiki page edited by mslinn
  • Mar 02, 2009
    r15 ([No log message]) committed by mslinn   -   [No log message]
    [No log message]
  • Mar 02, 2009
    r14 ([No log message]) committed by mslinn   -   [No log message]
    [No log message]
  • Mar 02, 2009
    r13 ([No log message]) committed by mslinn   -   [No log message]
    [No log message]
  • Mar 02, 2009
    r12 ([No log message]) committed by mslinn   -   [No log message]
    [No log message]
  • Mar 02, 2009
    r11 (Moving converter to a separate Flex Builder project so a new...) committed by mslinn   -   Moving converter to a separate Flex Builder project so a new project for collection classes can be added
    Moving converter to a separate Flex Builder project so a new project for collection classes can be added
  • Feb 22, 2009
    issue 1 (my windows complained about the version) reported by ozkan.pakdil   -   you should know this. I just downloaded J2AS3_v3.air and double click on it and it brings up a dialog which says: --------------------------- Adobe AIR --------------------------- This application requires a version of the Adobe Integrated Runtime (AIR) which is no longer supported. Please contact the application author for an updated version. --------------------------- OK --------------------------- then I downloaded AIR 1.5 installation and reinstalled it now it works.
    you should know this. I just downloaded J2AS3_v3.air and double click on it and it brings up a dialog which says: --------------------------- Adobe AIR --------------------------- This application requires a version of the Adobe Integrated Runtime (AIR) which is no longer supported. Please contact the application author for an updated version. --------------------------- OK --------------------------- then I downloaded AIR 1.5 installation and reinstalled it now it works.
  • Dec 28, 2008
    r10 (Now counts interfaces as classes) committed by mslinn   -   Now counts interfaces as classes
    Now counts interfaces as classes
  • Dec 28, 2008
    J2AS3_v3.air (Fixed bug that didn't reset class count properly) file uploaded by mslinn
  • Dec 28, 2008
    r9 ([No log message]) committed by mslinn   -   [No log message]
    [No log message]
  • Dec 26, 2008
    PageName (Java to ActionScript 3 ... because it's too useful not to ha...) Wiki page edited by mslinn
  • Dec 26, 2008
    J2AS3_v2.air (Enhanced AIR installation package) file uploaded by mslinn
  • Dec 26, 2008
    r7 ([No log message]) committed by mslinn   -   [No log message]
    [No log message]
  • Dec 26, 2008
    r6 ([No log message]) committed by mslinn   -   [No log message]
    [No log message]
  • Dec 25, 2008
    J2AS3.air (Initial AIR installation) file uploaded by mslinn
  • Dec 25, 2008
    J2AS3.zip (Initial source code) file uploaded by mslinn
  • Dec 25, 2008
    PageName (Java to ActionScript 3 ... because it's too useful not to ha...) Wiki page edited by mslinn
  • Dec 25, 2008
    PageName (Java to ActionScript 3 ... because it's too useful not to ha...) Wiki page edited by mslinn
  • Dec 25, 2008
    PageName (Java to ActionScript 3 ... because it's too useful not to ha...) Wiki page added by mslinn
  • Dec 25, 2008
    r2 ([No log message]) committed by mslinn   -   [No log message]
    [No log message]
  • Dec 25, 2008
    Project j2as3 created by mslinn   -   Java to ActionScript 3 converter
    Java to ActionScript 3 converter
 
Powered by Google Project Hosting