Page 4 of 4 FirstFirst ... 234
Results 31 to 40 of 40

Thread: HOWTO : developing flex with gvim

  1. #31
    Join Date
    Nov 2008
    Beans
    1

    Re: HOWTO : developing flex with gvim

    Hi,

    I've a problem with my FlexSDK installation on Linux Ubuntu Hardy and I don't find anything about it.

    So I installed Gvim, Flex SDK and Java JRE, I wrote un little code in actionscript and then I then I launch mxmlc and then... an error. THE error.

    Code:
    GC Warning: Out of Memory!  Returning NIL!
    mxmlc: line 47: 22014 Erreur de segmentation  java $VMARGS -jar "$FLEX_HOME/lib/mxmlc.jar" +flexlib="$FLEX_HOME/frameworks" "$@"
    So I require your help.

    Thanks

  2. #32
    Join Date
    May 2006
    Location
    Victoria, Australia
    Beans
    648
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOWTO : developing flex with gvim

    Quote Originally Posted by pepinot View Post
    Hi,

    I've a problem with my FlexSDK installation on Linux Ubuntu Hardy and I don't find anything about it.

    So I installed Gvim, Flex SDK and Java JRE, I wrote un little code in actionscript and then I then I launch mxmlc and then... an error. THE error.

    Code:
    GC Warning: Out of Memory!  Returning NIL!
    mxmlc: line 47: 22014 Erreur de segmentation  java $VMARGS -jar "$FLEX_HOME/lib/mxmlc.jar" +flexlib="$FLEX_HOME/frameworks" "$@"
    So I require your help.

    Thanks
    hmm, that's an interesting error.

    you too might want your own thread for that

    (though I suggest, this forum http://www.adobe.com/cfusion/webforu...d=60&catid=585)

    if u find some of my ideas weird...look at my avatar for the reason
    http://delfick.storage.googlepages.c...ycfuserbar.png

  3. #33
    Join Date
    Apr 2008
    Location
    Placelandia
    Beans
    91
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: HOWTO : developing flex with gvim

    hey! im back! a while ago i read this tutorial and it worked great. but i wanted to learn action script to make games. i soon quit because in every tutorial i found for as, it would say something like "create a new movie clip named..." and i didnt know how to do that with code. i just recently learned how so im gonna start learning again. but when i tried to compile it using mxmlc map.as and it said i didnt have that command. then i checked to see if i had it installed still, and i do. why wont it work?
    Code:
    ryland@ryland-desktop:~$ cd /home/ryland/Desktop
    ryland@ryland-desktop:~/Desktop$ mxmlc map.as
    bash: mxmlc: command not found
    ryland@ryland-desktop:~/Desktop$ cd /usr/local/flex/bin
    ryland@ryland-desktop:/usr/local/flex/bin$ ls
    aasdoc      adl.exe     asdoc       copylocale.exe  fdb         optimizer
    aasdoc.bat  adt         asdoc.exe   digest          fdb.exe     optimizer.exe
    acompc      adt.bat     compc       digest.exe      jvm.config
    acompc.bat  amxmlc      compc.exe   fcsh            mxmlc
    adl         amxmlc.bat  copylocale  fcsh.exe        mxmlc.exe
    ryland@ryland-desktop:/usr/local/flex/bin$
    Hey! You just found my signature!

  4. #34
    Join Date
    May 2006
    Location
    Victoria, Australia
    Beans
    648
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOWTO : developing flex with gvim

    Quote Originally Posted by rtoot3 View Post
    when i tried to compile it using mxmlc map.as and it said i didnt have that command. then i checked to see if i had it installed still, and i do. why wont it work?
    I would guess it's either not in your PATH or it doesn't have executable permissions.

    Firsty, executable permissions, try
    $sudo chmod +x /usr/local/flex/bin/mxmlc

    if that doesn't work, then open up /etc/bash.bashrc
    $gksudo gedit /etc/bash.bashrc

    and add
    export PATH=${PATH}:/usr/local/flex/bin

    near the top.

    then restart your terminal and theoretically it should work
    if u find some of my ideas weird...look at my avatar for the reason
    http://delfick.storage.googlepages.c...ycfuserbar.png

  5. #35
    Join Date
    Apr 2008
    Location
    Placelandia
    Beans
    91
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: HOWTO : developing flex with gvim

    thanx, it worked, by the way, what is bash.bashrc?
    Hey! You just found my signature!

  6. #36
    Join Date
    May 2006
    Location
    Victoria, Australia
    Beans
    648
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOWTO : developing flex with gvim

    Quote Originally Posted by rtoot3 View Post
    thanx
    no probs

    by the way, what is bash.bashrc?
    small possibility I'm wrong, but it's a file that contains system wide configuration settings for the bash shell

    http://en.wikipedia.org/wiki/Bash
    if u find some of my ideas weird...look at my avatar for the reason
    http://delfick.storage.googlepages.c...ycfuserbar.png

  7. #37
    Join Date
    Jan 2009
    Beans
    9

    Re: HOWTO : developing flex with gvim

    I hope you can help me because I'm about to go crazy over this. I did steps 1-3 and then I get stuck:
    Quote Originally Posted by delfick View Post
    Fourthly install the linux debugger flash player and the flashtracer extension so you can see trace statements

    first, download the debugger flash player from here http://download.macromedia.com/pub/f...nux_dev.tar.gz
    Simple enough...

    Quote Originally Posted by delfick View Post
    Unpack it to the desktop,
    ...so far so good...
    Quote Originally Posted by delfick View Post
    then unpack the archive found in the plugin/debugger folder,
    ...okay, I unpacked libflashplayer.so.tar.gz to libflashplayer.so.

    Quote Originally Posted by delfick View Post
    and run the flashplayer-installer file
    ...what flashplayer-installer file? the libflashplayer.so file? Ubuntu says there is no type associated with .so files, and from what I understand, so = Shared Object which doesn't sound like an executable file and there were no other files in that path. Me confused. Delfick explain.

  8. #38
    Join Date
    May 2006
    Location
    Victoria, Australia
    Beans
    648
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOWTO : developing flex with gvim

    Quote Originally Posted by OmegaWarrior View Post
    ...what flashplayer-installer file? the libflashplayer.so file? Ubuntu says there is no type associated with .so files, and from what I understand, so = Shared Object which doesn't sound like an executable file and there were no other files in that path. Me confused. Delfick explain.
    hmm, it seems they've changed it............

    just put it in ~/.mozilla/plugins and it should work
    if u find some of my ideas weird...look at my avatar for the reason
    http://delfick.storage.googlepages.c...ycfuserbar.png

  9. #39
    Join Date
    Jan 2009
    Beans
    9

    Re: HOWTO : developing flex with gvim

    Quote Originally Posted by delfick View Post
    hmm, it seems they've changed it............

    just put it in ~/.mozilla/plugins and it should work
    So it's not me? *whew* Thank You; and thank You for answering so quickly.

  10. #40
    Join Date
    May 2006
    Location
    Victoria, Australia
    Beans
    648
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOWTO : developing flex with gvim

    Quote Originally Posted by OmegaWarrior View Post
    hank You;
    no probs

    and thank You for answering so quickly.
    well, you seem to post when I'm at my computer
    (and gmail-notify means I know about emails as they come)
    if u find some of my ideas weird...look at my avatar for the reason
    http://delfick.storage.googlepages.c...ycfuserbar.png

Page 4 of 4 FirstFirst ... 234

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •