Does Flash IDE compiler follow symlinks?

I am using Flash CS4 10.0.2 on OS X 10.6.3.
I have a Flash project in a dir:
$ ll
-rw-r--r--@ 1  jfassett   jfassett   4.5K  8 Apr 18:04 Navigation.as
-rw-r--r--@ 1  jfassett   jfassett    59K  8 Apr 16:44 Navigation.fla
-rw-r--r--@ 1  jfassett   jfassett   547B  8 Apr 18:05 Navigation.swf
lrwxr-xr-x  1  jfassett  jfassett    29B  8 Apr 18:05 com -> /project/kiln/as3lib/src/com/
-rw-r--r--@ 1  jfassett   jfassett   563B  8 Apr 17:55 data.xml
You can see I have the directory com as a symlink to another location on my hd. If I try and import files from the com directory into Navigation.as the Flash IDE cannot find them saying:
1172: Definition com.zoogeny.resource:ResourceService could not be found.
It works using mxmlc:
$ mxmlc Navigation.as
Loading configuration file /Applications/Adobe Flash Builder Beta 2/sdks/3.4.1/frameworks/flex-config.xml
/Users/jfassett/Documents/_work/freelance/fdsdevelopments/Navigation.swf (4434 bytes)
Should the Flash IDE also be following the symlinks?

Suppose not.
Defect created: https://bugs.adobe.com/jira/browse/SDK-30475

Similar Messages

  • Given a SWF file, how would I know on what Flash IDE has it been compiled?

    Hi guys,
    I have a series of modules developed  overtime and so some of them are AS1, AS2 and AS3. Some where compiled  using FlashMX, 8, CS3, etc.
    Sometimes it would be very beneficial for me if I could know with what version of the Flash IDE it  was compiled and targeting what platform.
    Is this  possible? Perhaps using some decompiler? Perhaps opening the SWF on a  text editor and looking for some string that tells this details?
    Thanks  for any comment or link you may post.
    regards,
    Miguel.

    a decompiler would let you see what version of actionscript was used and what flash player was targeted (among other things).

  • Use compiled Box2D.swc from samples in Flash IDE?

    Hi,
    I downloaded Crossbridge and compiled the sample in Example_Box2D directory. I got HelloWorld.swf and Boxes.swf which work great, but how can I use Box2D.swc library in Flash IDE? It seems to be not working there.
    What I'm trying to do is get Box2D v2.2.1 flash port to use it in Flash IDE. I know there's an existing port made with old Alchemy, but those Box2D version is 2.2.0 and I need 2.2.1. Please help, I really get stuck with this problem.

    Hi,
    I downloaded Crossbridge and compiled the sample in Example_Box2D directory. I got HelloWorld.swf and Boxes.swf which work great, but how can I use Box2D.swc library in Flash IDE? It seems to be not working there.
    What I'm trying to do is get Box2D v2.2.1 flash port to use it in Flash IDE. I know there's an existing port made with old Alchemy, but those Box2D version is 2.2.0 and I need 2.2.1. Please help, I really get stuck with this problem.

  • Compile .fla files without Flash IDE

    i need to know whether this can be possible or not....
    My aim is to compile bulk FLA's (say 50). can we compile .FLA's without using Flash IDE using command Line?
    If so how it can be done. please provide with an example.
    I have used JSFL concept for publishing bulk FLA's. But it will work using Flash IDE. This is not what i need.
    I need to compile or publish the FLA's using CommandLine or Batch Files.
    Please reply to the post ASAP

    I've been looking fro the same answer for quite some time, I do not think compiling without the IDE is possible ( if you absolutely need the assets from your flas, that is), I have since changed my workflow to accomodate foe this shortcoming.

  • AMFPHP hanging in browser but not Flash IDE?

    Wrote a service that sends a bytearray to my Flash app that works perfectly fine when I test it in the Flash IDE (CS5), and when I compile the app and run it in a browser directly from my computer.
    When I load it on to the server to run in my browser, the same service hangs. Can anyone think what may be causing this?
    I tested the service in the service browser and it worked fine there as well.
    I'm really hitting a wall on this, any help would be appreciated!

    What is ncDB? Is it a remote object?
    Remote object don't have a connect method. Istead you should set the endpoint, source and destination properties.
    If you handle your requests through AS3, you could do the following. I use this code in a singleton class.
    in the constructor:
    ws.RemoteObject = new RemoteObject();
    ws.destination = "amfphp";
    ws.source = "nameOfYourService";
    ws.endPoint = "linkToYourGateway.php";
    ws.addEventListener(FaultEvent.FAULT, this.faultHandler);
    In a method named 'call':
    public function call(endPoint:String = null, serviceMethod:String, resultFunction:Function = null, ...args):void
              if (endPoint != null)
                   ws.endPoint = endPoint;
                if (resultFunction == null)
                    resultFunction = defaultResult;
                if (ws.operations.hasOwnProperty(serviceMethod))
                    ws[serviceMethod].removeEventListener(ResultEvent.RESULT, resultFunction);
                    ws[serviceMethod].removeEventListener(ResultEvent.RESULT, defaultResult);
                ws[serviceMethod].addEventListener(ResultEvent.RESULT, resultFunction);
                ws[serviceMethod].arguments = args;
                ws[serviceMethod].send();
    Does this help?
    Dany

  • [SOLVED] sed: unrecognized option '--follow-symlinks'

    I tried to build AUR package linuxcnc-sim and I got this error:
    sed: unrecognized option '--follow-symlinks'
    I thought that my sed command is outdated, so I tried to update it:
    [ziga@Ziga-laptop linuxcnc]$ sudo pacman -Syy
    :: Synchronizing package databases...
    core 120.1 KiB 125K/s 00:01 [##############################################] 100%
    extra 1793.4 KiB 191K/s 00:09 [##############################################] 100%
    community 2.5 MiB 384K/s 00:07 [##############################################] 100%
    multilib 123.9 KiB 1239K/s 00:00 [##############################################] 100%
    [ziga@Ziga-laptop linuxcnc]$ sudo pacman -S sed
    warning: sed-4.2.2-3 is up to date -- reinstalling
    resolving dependencies...
    looking for conflicting packages...
    Packages (1) sed-4.2.2-3
    Total Installed Size: 0.76 MiB
    Net Upgrade Size: 0.00 MiB
    :: Proceed with installation? [Y/n]
    What I discovered was, that my sed command already is the newest version... does anyone have an idea what is wrong?
    If I use man sed I get user manual where it says that unrecognized option '--follow-symlinks' is supported:
    SED(1) User Commands SED(1)
    NAME
    sed - stream editor for filtering and transforming text
    SYNOPSIS
    sed [OPTION]... {script-only-if-no-other-script} [input-file]...
    DESCRIPTION
    Sed is a stream editor. A stream editor is used to perform basic text transformations on an input stream (a file or input
    from a pipeline). While in some ways similar to an editor which permits scripted edits (such as ed), sed works by making
    only one pass over the input(s), and is consequently more efficient. But it is sed's ability to filter text in a pipeline
    which particularly distinguishes it from other types of editors.
    -n, --quiet, --silent
    suppress automatic printing of pattern space
    -e script, --expression=script
    add the script to the commands to be executed
    -f script-file, --file=script-file
    add the contents of script-file to the commands to be executed
    --follow-symlinks
    follow symlinks when processing in place
    Last edited by 71GA (2015-02-13 07:14:59)

    This could really be it. And my PATH is really weird - some inputs are doubled:
    PATH=/opt/ARM/eldk/usr/bin:/opt/ARM/eldk/bin:/opt/ARM/eldk/usr/bin:/opt/ARM/eldk/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/opt/opencascade/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/opt/ARM/cs_lite/bin:/opt/ARM/unsimgcr:/opt/ARM/ds/bin:/opt/ARM/cs_lite/bin:/opt/ARM/unsimgcr:/opt/ARM/ds/bin
    I modify my PATH at startup using ~/.bashrc
    # ~/.bashrc
    # If not running interactively, don't do anything
    [[ $- != *i* ]] && return
    alias ls='ls --color=auto'
    PS1='[\u@\h \W]\$ '
    export PATH=${PATH}:/opt/ARM/cs_lite/bin
    export PATH=${PATH}:/opt/ARM/unsimgcr
    export PATH=${PATH}:/opt/ARM/ds/bin
    source /opt/ARM/eldk/eldk_init arm
    What am I doing wrong in the .bashrc ?
    Last edited by 71GA (2015-02-13 06:21:23)

  • Facebook connection using Flash IDE

    Hi,
    Ok so for many months now I have still been trying to find a decent tutorial on how to make a connection with Facebook using AS3 and the Flash IDE.
    I must of tried over 50 tuts by now and none seem to work. Obviously the update of the API causes issues however I've yet to find one tutorial which actually works and can bring in profile info like name, friends list and profile pics.
    Does anyone know of any tutorials showing this and how to achieve it?
    p.s please don't point me to the Adobe docs or Flash API wiki as their information and documentation is out dated. I have gone through all their examples with no success.
    I can only find examples for Flash Builder and maybe Flex, but I work with Flash IDE (5.5).
    What I want to do is to be able to connect to FB through Adobe AIR on my iPhone. I'm pretty skilled in as3.0 and adobe air for mobile and have done several games, I just don't know how this FB works and no tutorial seems to work anymore etc.
    Please, if you know how this works, can you please tell me?
    Much much appreciated

    I can help better if you can write the steps you followed and the places where you got stucks or errors that you see.
    Here are the general steps that you need to perform.
    1. Add reference to the facebook API SWC library in your project.
    2. call FacebookMobile.init(APP_ID,callback);
    3. In callback of init the signature is of this form private function callback(session:Object, fail:Object):void . If you get a non-null session it is of type FacebookSession and you need to check if you already have a valid acces token. to do this check if you have a valid (non-empty non-null accessToken) and expiryDate is still not elapsed. Otherwise you will need to call login method.
    4. If you do not have a valid accessToken you should call FacebookMobile.login. Which will ask the end user for credentials and athunticate the user. an example call I have used is as follows
                    var swv:StageWebView = new StageWebView();
                    app.stage.addEventListener(Event.RESIZE,function(e:Event):void{swv.viewPort = new Rectangle(0,0,app.stage.stageWidth,app.stage.stageHeight);});   
                    FacebookMobile.login(handleLogin,app.stage,['user_photos','friends_photos','user_photo_video_tags','friends_photo_video_tags'],swv);
    5. in handleLogin (Signature is same as that of init callback) if session still happens to be null the login attempt is failed and you can start inspecting the fail object for reason.
    6. If you get a valid session. You are all set to call the API and get the data that you want for eg. you can use something like following to get all information about the logged in user.
                var p:Object = new Object();
                p.limit = 0;
                FacebookMobile.api("/me",function(result:Object, fail:Object):void{
                    if(null == fail){
                        // process result for eg. result.name, result.username, result.gender, result.first_name
                    }else{
                },p);
    For the different api calls (The way I have used "/me" you can visit Graph API explorer)
    Please revert back for any issues that you find.
    I am working on a tutorial that allows one to use the Facebook Single Sign-On Feature in order to authenticate and authorize. Read more about it here. I will release the tutorial ASAP on my blog.

  • Where does flash install to?

    I'm trying to get this script to work, but other than /Library/Internet Plug-ins, where does flash install?
    This the line of code I'm trying to use:
    /usr/sbin/installer -pkg /Volumes/Updates\ Player/Install\ Adobe\ Flash\ Player.app/Contents/Resources/Adobe\ Flash\ flashplayer.pkg -target / > /dev/null
    and I get the following error:
    Updating Flash player…
    ./flashupdate.sh: line 14: ${logfile}: ambiguous redirect
    ./flashupdate.sh: line 17: ${logfile}: ambiguous redirect
    installer: invalid option /Library/Internet Plug-Ins/Flash Player.plugin
    Usage: installer [-help] [-dominfo] [-volinfo] [-pkginfo] [-allowUntrusted] [-dumplog]
                     [-verbose | -verboseR] [-vers] [-config] [-plist]
                     [-file <pathToFile>] [-lang <ISOLanguageCode>] [-listiso]
                     [-showChoicesXML] [-applyChoiceChangesXML <pathToFile>]
                     [-showChoicesAfterApplyingChangesXML <pathtoFile>]
                     -pkg <pathToPackage>
                     -target <[DomainKey|MountPoint|DiskIdentifier|DeviceNode|UUID]>
    ./flashupdate.sh: line 20: ${logfile}: ambiguous redirect
    ./flashupdate.sh: line 27: ${logfile}: ambiguous redirect
    ./flashupdate.sh: line 28: ${logfile}: ambiguous redirect
    I'm not really concerned about the logfile error. I can get rid of that by just removing the pointer to the log file.
    Anyone with scripting knowledge have any idea what this means?

    cscs_panthers,
    the displayed error message is complaining about an option that isn’t present on the line of code in your post. Are you running /usr/sbin/installer somewhere else in your script? It seems as though it’s complaining about a different line of code.

  • Flash IDE Components in Flex 3 Design Mode. Can they be visible there?

    Hi,
    Im exploring Flex to get a grasp on its concepts and am currently looking into building components in the Flash IDE. Though i guess its likely that when you're more familiar with Flex you build your components in Flex, like said Im exploring its concepts and like to know where and how the Flash IDE fits in its workflow.
    I made a simple Flex Component in the Flex IDE, which shows up fine when I run the Flex project. But it does not show in Flex Design Mode.
    I have exported the component from Flash as an SWC and added the SWC to the Flex library path. The symbol in the Flash IDE extends UIMovieClip. Now I read in 'Using Adobe FlexBuilder 3' (p.67) that the Flex Components panel only lists visible components, according to the documentation 'components that extend UIComponent'.
    Note that my question is about being visible on the stage in Design Mode, not in the component panel. As UIMovieClip doesnt inherit from UIComponent (and the UIComponent class doesnt seem to be available in the Flash IDE), is this also the cause that the Flash IDE component is not visible on the Flex stage in Design Mode?
    Can someone confirm, or deny this?
    Regards,
    Marcel

    Hi Latha,
    thanks for your feedback. Reading it back though, Im still not sure whether Flex components build in the Flash IDE (using the Flex Component Kit for Flash CS3) can be visible in Flex 3 Design Mode.Maybe you can be a bit more specific and save a lot of Flex beginners a lot of headaches.
    I understand that MXML components can be used in Design Mode. I also understand that if your component is AS you have to create a Library and link that to your project to make them visible in Design Mode. I also understand that Flash Builder 4 does "support rendering of UIMovieClip objects which are in library (swc) and added to the project build path"
    This actually doesnt answer my question really. Does this mean there is no way to render Flex components build in the Flash IDE (using the Flex Component Kit for Flash CS3)  in Flex 3 Design Mode?
    Regards,
    Marcel

  • My iPhone 4 flashing Apple Symbol followed by low battery sign.

    Hi All,
    My 2 years old iPhone 4 fell down in water.I have taken my phone to a local techi to dry water inside.They said they cleaned it well and there is no water inside but my phone is not reacting, they said it's dead
    I got my phone back, soon after that I realized that My iPhone is flashing Apple Symbol followed by low battery sign.I tried some stuff by browsing in the internet and finally got a screen with  iTunes and charger plug Symbols.Now iTunes is able to detect my devide sometimes and I am  trying to restore iPhone by downloading sofware from apple restore server and I could't complete the operation becasue of many errors I am facing (Ex:An error throwed very first time redirected to this link http://support.apple.com/kb/ts4451, other error is iPhone software can't be downloaded becasue there is a problem with your network but I am having working internet in this case).
    What I wanted to know is is phone really dead..?? If that is the case, how I am able to see all the screens and how iTunes has detected my iPhone to restore..?
    Taking my iPhone to an authorized apple service center does really works in this case..????
    Thank you,
    Srinivas Kandukuri.

    Water and electronics do not mix. You have probably fried the circuit boards. Get a new phone.

  • Adobe Flash IDE: Migration/Compatibility issues between Adobe Flash Professional CS3 and CS5

    Hi,
    Adobe Flash IDE: Adobe Flash CS3 Professional and Adobe Flash Professional CS5
    I am facing some  migration/compatibility issues between Adobe Flash CS3 Professional and Adobe  Flash Professional CS5:
    I am working on a project that has  been completely developed in CS3 earlier. When I am using CS5 (Flash Player 9 /  Flash Player 10) to compile the FLA files, it is creating some new issues like  some customized radio buttons are getting disappeared while viewing the SWF on a  web page etc.
    So, I would like to  know:
    1) Is there any  migration/compatibility issue between Adobe Flash CS3 Professional and Adobe  Flash Professional CS5?
    2) If yes: Is there any patch  available from Adobe for it?
    3) If no: What could be the causes  and the best possible solutions for it?
    Any help and support would be highly  appreciated. Many thanks in advance!
    Thanks & Regards
    Amit

    Apparently some people have issues, but I don't think it is across the board.  Here's a link to another recent posting that may or may not prove helpful to you...
    http://forums.adobe.com/thread/776615?tstart=60

  • Change Flash IDE default player in OSX?

    Does anyone know if it's possible to change the flash player
    that Flash IDE uses? As far as I know, it uses the special
    debugging version of the player. For some reason this player runs
    much slower than the regular standalone player in OSX.
    So I'm trying to figure out if there's a configuration file I
    can edit or something to have it launch the standalone player when
    using the Flash IDE.
    There's a "players" folder Inside the main "Adobe Flash CS3"
    folder. I tried swapping out the player in there in the debug
    folder but it didn't seem to do anything.
    I know there's the nifty flash switcher app that does exactly
    what I need, but it's only available on the PC.
    Thanks for any help.
    -Ryan

    quote:
    Originally posted by:
    DeadCowboy
    I have still been having the same problem. I use Myspace for
    my band, and I continue to get the prompt that I do not have the
    current Flash installed and gives me the option to go to the page.
    I have uninstalled and then installed the brand new updated version
    and when it finishes the installation it opens Safari and sends me
    to the 'adobe about' page and again I get :
    >>>The page “Macromedia - Flash Player”
    has content of MIME type
    “application/x-shockwave-flash”, but you don’t
    have a plug-in installed for this MIME type. A plug-in should be
    available on this page:https://www.macromedia.com/go/getflashplayer
    Do you want to open the page?<<<.
    Your problem is completely different than what we're talking
    about in this thread.
    Your problem is discussed in the thread '[ADOBE] Resolving
    Mac Flash Player install problems 9/2007'. Check that out and you
    should be able to resolve it via permission repair.

  • Running multiple instances of Flash IDE CS(6)

    I have a build machine compiling my fla files by running Flash.exe from command line and supplying a JSFL file as a parameter. I want to run multiple instances of Flash IDE in order to enable concurrent builds on that machine otherwise there's only one thread running on a build machine which is a resource waste.
    So, is it possible to run multiple instances of Flash IDE? Maybe there's a kind of command line switch? I have Flash CS6, but there shouldn't be that many differences with CC, isn't it?

    I dont think you can run multiple instances of flash both in CS6 and CC.
    -Sujai

  • Why does Flash install Google Toolbar?

    Why does Flash install Google Toolbar? Honestly, do you have ANY idea how annoying that behaviour is? I had no option at all to not download it, I could not stop downloading it. I was taking from a "you need to install flash" button on Facebook to the download.
    Honestly things like this make me rage, installing things automatically without an option.
    Until now, I used to think that it was annoying that Apple wouldn't allow flash on some of their devices. Now Adobe pulls **** like this, I'm not surprised. To hell with Flash I say.

    This is a user-to-user forum, and you're "preaching to the choir" here. IT ISN'T going to change, and NO ONE from Adobe management ever sees or reads these pages. Employees are here from time to time but no one who makes these decisions participates in these forums, per company policy. (I used to work for Intuit, and we were strictly prohibitied from posting in their forums. A team leader I worked with was fired for it).
    Links to the FULL installers are posted literally HUNDREDS of times each week throughout these pages by myself, and at least three others I know of, who volunteer in these pages daily.
    Flash Player for ActiveX (Internet Explorer)
    Flash Player Plug-in (All other browsers)
    http://get.adobe.com/reader/enterprise/
    I DON'T run Adobe and no one here does, so I won't even beging to discuss business ethics.
    The solutions have been offered, and I recommend you update NOTHING, including your OS, automatically. I don't because I don't want junk like Ask Toolbar, Yahoo Toolbar, Bing Toolbar, Bing Desktop, Norton or McAfee on any of my nine systems.

  • URLLoader not working in any browsers but fine in the Flash IDE

    I have a problem that seems very strange. A flash script is using URLLoader to update some records and send back a message.
    In the flash IDE there is no problem. However, when I upload to the server, or viewing the swf file locally in any browser, the browser just hangs and does not show anything.
    I have also added a IOErrorEvent.IO_ERROR handler which does not give me any information.
    The URLloader is communicating with a php script. I have found out that it works with a .txt file.
    Is the anything that needs to be included in the php script?
    Thanks in advance.

    Hi Everyone
    I have managed to find the answer.
    The PHP script had a comment line after the echo statement. Once this was removed the application started the work fine in all the browsers.

Maybe you are looking for