Creating workers in library projects?

I'm trying to move a worker I created on Flash Builder 4.7 / AIR 3.4 from a stand-alone project to a library. I've tried using the new "ActionScript Library Project" wizard, which uses the correct AIR 3.4 SDK, but it does not inclue any of the facilities for creating and managing workers that exist in applications created with the "ActionScript Project" wizard.
When I attempt to create a worker in the ActionScript library, I get a pop-up that says "Selected Project is not Flex or ActionScript: You must create a Flex or ActionScript project to hold this file."
Is this something that's slated for support in a future release of the 4.7 beta, or is there some fundamental reason workers can't live in library projects?
Thanks in advance for any help with this.

You are both partially right,
I fixed it by creating a new workspace (just deleted the
metadata folder) and re-importing my projects..
Then i removed the libraries and it worked, i started to add
the libraries one by one and the library that breaks it is
'FlexUnitOptional.swc'...
Thanks a lot..
I still have one problem open with the new flex builder, i
cannot debug in modules, i also posted it on the forum. Which is
over here:
http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=72&catid=651&threadid =1303879&enterthread=y
Thanks a lot

Similar Messages

  • Cannot compile Library project in Flash builder 4: Unable to locate specified base class

    I am migrating from Flex builder 3 to Flash builder 4, during that process I found that Flash builder could'nt compile Flex Library projects which contains components in the form of mxml files. Compiler throws "Unable to locate specified base class".
    I have narrowed it down to by creating a flex library project named test library, below its screenshot with its package structure
    ControlA is based on componentA
    when i compile this project, mxml compiler throws this error
    Unable to locate specified base class 'components.componentA' for component class 'ControlA'.
    I cannot upload project code because file uploads are disabled on this forum so I am going to paste the code for both componentA and controlA
    componentA
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:local="*" width="400" height="300">
    </mx:Canvas>
    ControlA
    <?xml version="1.0" encoding="utf-8"?>
    <components:componentA xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:components="components.*" width="400" height="300">
    </components:componentA>
    To further test it, I have made another library project with same package structure using pure AS3, and it compiled without errors

    It might be this happens and other errors if you forget to Run Flash Builder 4.5 Buritto and startup the other version FB4.
    It uses the same project listings and that can be confusing since you're not expecting the old version to be aware of new Buritto (MobileApplications) projects you added (thinking) only to the BETA version installed elseware no doubt.
    Well it might not be your problem but worthy of noting for other's I'm sure.
    Otherwise you've double checked you're using SDK 4.5 Hero with it too! right?

  • Flex Library Project(SWC) with css and image assets

    HI,
    I want to create a flex library project with images and css. I shall use that swc with other flex applications. I wand to use those css and images from the swc. Is it possible? Can you please explain in detail.
    Thanks
    Nirmal

    Right... but how do I reference that CSS outside of the
    Libray Project?
    All I want my library project to be is a CSS and images
    Then I want to include that library project in my main
    project, and have the main project call the CSS file inside the
    library project

  • Netbeans - Why do I need to make separate library projects and import?

    I'm running through some of the some of the tutorials for netbeans like [acrostic example|http://www.netbeans.org/kb/60/java/javase-intro.html] and I can't seem to grasp the organization.
    When and why do I need to create a separate library project and import when the MyApp project I created has a node for libraries?
    When and why would I just create another class in MyApp source packages node as opposed to importing the class from a separate library project?
    Java's organization seemed simple until I tried the IDE. Help.

    Thanks so much for the response, I really have been having problems with this.
    georgemc wrote:
    Well, for starters, a lib project can be shared amongst many other projects. For another, you won't be deploying your app alongside NetBeans, so you'll need to provide all the libraries as well as your app when you do deploy. Having them all kept in a lib project makes this very simpleAfter pondering it I'm comfortable with the idea that MyApp's Library node shows what classes I have imported and that those classes, being custom classes, should be in a separate project.
    >
    When and why would I just create another class in MyApp source packages node as opposed to importing the class from a separate library project?I don't know. Not really sure what's prompted you to ask this one, to be honest. What do you mean?Ok, bear with me as I try to explain my confusion... If I right click on the Source Packages node of MyApp it presents me with the option to create a new java class. So why not just put all my custom classes and packages in the Source Package node of MyApp instead of putting them in library projects and importing them?
    I tried this, assuming all classes within a package would have knowledge of each other, thus obviating import, but that doesn't seem to be the case. Is that it?
    >
    Java's organization seemed simple until I tried the IDE. Help.Maybe you started using an IDE to soon? They're there to make your life easier. If that's not happening, you don't need it yetI might seem quite green, but I have to dive in to this because the application I am attempting to make requires the nice GUI editing of netbeans and will grow in complexity with time.

  • Creating a static library with XCode cross-project references.

    I have a project and am trying to move a lot of the code into a static shared library, and added a cross project reference to this library in my app.
    However, when I moved a file from my app to the library (removing the reference in my app and moving the file to the library's project directory), and try building my app, I get compiler error messages as if the file I have moved doesn't exist.
    When I build my library project, it says the build has succeeded, but the library.a file remains red. It is also red in the my referencing app project.
    If anybody has any experience setting up cross-project references in XCode, I'd appreciate any help.
    If it helps identify where the problem is, I've performed the following steps to setup the library and cross-project reference:
    1. I created a new Cocoa Touch static library project in XCode which would house the shared code.
    2. I changed the global settings in XCode to place the build products in a shared build directory (rather that the project directory), and made sure the intermediate build files are placed with the build products.
    I changed this using the Preferences menu, but have also gone into the project info for both my app project and the library project and made made sure it is set to place the build projects in the custom shared build directory.
    3. I then added a Source Tree, and made sure that the Path of the project directory of the library project.
    4. I added a project reference to the library project's .xcodeproj file in my application project. I changed the library project reference so that it was relative to JIGSAW24LIBRARY.
    5. I configured the library dependencies by going to my app's target's info, and adding a direct dependency to the library project.
    6. In my app's info build tab, I changed the user header search paths so that it uses the search tree I setup (I used the $(SEARCHTREE_NAME) notation, but checked that this resolves to a valid path). I also made sure that the Always Search User Paths checkbox is checked, and that the Library Search Paths is blank.
    7. I click-dragged the library.a file under the library project so that it was under the Link Binary With Library sub folder of my app's target.
    For step 5, I've also tried adding the reference to the other project as a linked library, rather than a direct dependency, but this doesn't seem to work either.

    I managed to fix the problem. The steps above seem to be correct. The problem seems to be related to the source trees that are defined...
    I was previously using an absolute path for the source tree which pointed at the folder containing the library project. I changed this to a relative path to the same folder (relative from the calling project) and this seems to fix it.
    I'd double checked that the absolute path specified was correct, so it looks like the user header search paths specified must be relative to the current project.

  • Create library (swc) in Flash Builder 4 / Flex Project (not in a Library Project)

    I want to create a swc file to use it in an other project. I can't use the Flash 4 Library Project to do this, because in a Library Project I
    haven't the possibility to use data/services, which I need for my library. After click on "data / services" I get the message "This view is only for Flex-Projects available".
    Has anyone a solution for my problem?
    Thanks for your help.

    Connect to PHP in FB4 is used when you have a PHP Class and you want to use that in FB, for example Employee.php and it has a Employee class and various methods in that like create, update, get, delete.
    However, if you have exposed your functionality in PHP as a HTTP URL (i.e. it is not a class), then you should be using HTTPService from the data menu.
    So if your file is login.php and is accessible as a URL, then using the HTTPService and enter the URL.
    Does this help?
    -Sunil

  • How do I apply programmatic skins for completely custom drawn components of a Flex library project?

    Hello folks,
    I am looking for best practices advice when (1) creating
    custom components and (2) styling and skinning.
    I already know how to skin a component part of the Flex
    framework. I can make a class extending ProgrammaticSkin and have
    my component skinned using CSS to link the component with the
    reference to my custom class.
    However what about those cases when you are completely
    creating a component from scratch?
    Imagine a "Freehand Drawing Canvas" component that allows the
    user to draw on it and has some buttons to set color styles, line
    styles, etc., or imagine a "Screen Flow Gallery" component that
    displays visual objects in a fashion similar to Cover Flow in the
    Mac.
    In many components I am aware you may reuse other components
    part of the Flex framework but I am trying to picture an scenario
    where you would need to draw everything yourself because there just
    isn't something to base it upon so you will end up drawing it from
    scratch.
    To learn how instead of building one of those components I
    mentioned previously I decided to start with something simple that
    would illustrate this like a LiteButton component that will behave
    just like the Flex mx.controls.Button but will extend UIComponent
    and be completely custom drawn.
    The component will have a default look and will also be
    style-able and skin-able. I will provide styles for users of the
    component to modify and regarding skinning anyone can create a
    custom ProgrammaticSkin adding its own drawing logic and link it to
    the component via CSS with the ClassReference applied to the skin
    selector.
    So far so good and it's clear what I want to achieve. I
    actually know how to do most of the stuff here but I have one
    single problem.
    Here is my question, where should I put my custom drawing
    logic? If I do it in the updateDisplayList inside the class
    extending UIComponent it works, however I thought that it would be
    a better practice to do it using programmatic skins, that way I
    could provide different skin themes for my component set.
    The problem is that I can't make the programmatic work in
    this scenario. I tried instantiating the custom programmatic skin
    during the updateDisplayList of the LiteButton component and adding
    it to my display object via addChild but that didn't do anything. I
    also tried creating a "default.css" stylesheet and tried to use
    ClassReference as I would normally do to skin an already existing
    component (or composite component as well) but that didn't do
    anything either.
    So how do I apply programmatic skins for completely custom
    drawn components of my Flex library project?
    I could do it inside the updateDisplayList of the LiteButton
    class extending UIComponent but again I would like to provide
    different theme sets for my components so it makes sense using
    programmatic skins.

    "jbucaran" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hello folks,
    >
    > I am looking for best practices advice when (1) creating
    custom components
    > and
    > (2) styling and skinning.
    >
    > I already know how to skin a component part of the Flex
    framework. I can
    > make
    > a class extending ProgrammaticSkin and have my component
    skinned using CSS
    > to
    > link the component with the reference to my custom
    class.
    >
    > However what about those cases when you are completely
    creating a
    > component
    > from scratch?
    >
    > Imagine a "Freehand Drawing Canvas" component that
    allows the user to draw
    > on
    > it and has some buttons to set color styles, line
    styles, etc., or imagine
    > a
    > "Screen Flow Gallery" component that displays visual
    objects in a fashion
    > similar to Cover Flow in the Mac.
    >
    > In many components I am aware you may reuse other
    components part of the
    > Flex
    > framework but I am trying to picture an scenario where
    you would need to
    > draw
    > everything yourself because there just isn't something
    to base it upon so
    > you
    > will end up drawing it from scratch.
    This may help with that
    http://livedocs.adobe.com/flex/3/html/help.html?content=skinstyle_3.html
    > To learn how instead of building one of those components
    I mentioned
    > previously I decided to start with something simple that
    would illustrate
    > this
    > like a LiteButton component that will behave just like
    the Flex
    > mx.controls.Button but will extend UIComponent and be
    completely custom
    > drawn.
    >
    > The component will have a default look and will also be
    style-able and
    > skin-able. I will provide styles for users of the
    component to modify and
    > regarding skinning anyone can create a custom
    ProgrammaticSkin adding its
    > own
    > drawing logic and link it to the component via CSS with
    the ClassReference
    > applied to the skin selector.
    >
    > So far so good and it's clear what I want to achieve.
    Actually after
    > playing
    > with the weekend and today I know how to do most of the
    stuff but I have
    > one
    > single problem. So here is my question, where should I
    provide my custom
    > drawing logic? If I do it in the updateDisplayList
    inside the class
    > extending
    > UIComponent it works, however I thought that it would be
    a better practice
    > to
    > do it using programmatic skins, that way I could provide
    different skin
    > themes
    > for my component set.
    These aren't mutually exclusive. When you provide a skin with
    a
    TypeSelector, you have to add it to the display list
    somewhere, and this is
    typically done in updateDisplayList or addChildren. I prefer
    to do it in
    updateDisplayList, because you can then change it if the
    style changes.
    > The problem is that I can't make the programmatic work
    in this scenario. I
    > tried instantiating the custom programmatic skin during
    the
    > updateDisplayList
    > of the LiteButton component and adding it to my display
    object via
    > addChild but
    > that didn't do anything.
    Exactly what did you do?
    > I also tried creating a "default.css" stylesheet and
    > tried to use ClassReference as I would normally do to
    skin an already
    > existing
    > component (or composite component as well) but that
    didn't do anything
    > either.
    I've never had any problem using an approach similar to
    this...but I will
    say that I couldn't see any advantage in creating a
    default.css style sheet,
    since it's not really default in the way that the one that
    comes with Flex
    is. It's much more obvious to anyone using your component
    what's going on
    there if you create a style sheet where they're likely to
    spot it.
    > So how do I apply programmatic skins with the default
    look for custom
    > drawn
    > components?
    It seems like your approach is fine, but maybe you've made a
    mistake in your
    implementation.
    > I could do it inside the updateDisplayList of the
    LiteButton class
    > extending
    > UIComponent but again I would like to provide different
    theme sets for my
    > components so it makes sense using programmatic skins.
    You might want to consider also adding an instance of
    HaloBorder to your
    component. That brings a lot of functionality with it.
    HTH;
    Amy

  • How do I import folders from one library to another? My original library has become to large and I want to split it. There is not enough memory to select all the folders I want to move to create a new library.

    I also created a new library and tried file-import but cannot see / access any files in the original aperture library with that command.

    If you use the Command to Export Project as New Library, then such a Library can be imported into another Library with the command to  Import Library/Project.  The first such export as New Library can be the"seed' Library for starting the process.
    But the most important point is there is no performance gain from small Libraries where you think one has become too large, if the new Library is to be on the same disk drive as the original.  My primary library is 1 TB in size, and works as well as tiny test libraries.
    Ernie

  • Create a new library out of a huge mess?

    I was looking at the iTunes library that my wife has on her PC which is made up of a few hundred tracks all of which she has on her machine & all of which were copied from her CD's & thus don't have any DRM problems associated with them.
    Her file is a mess what with artists names spelled incorrectly, tracks from one album sometimes being displayed as coming from 2 different albums etc. I know that it would take a long time to correct all of the errors so I'm looking for an easier way.
    What would happen if I were to delete her old library & start a new one then Just tell the program to search for MP3 file only in locations that I nominate or else just do a cut from the same locations & then just paste the tracks into automatically add track to library folder. Would this work, or would I just end up in the same place again? Would doing this cause other problems like loosing cover art etc?Create a new library out of a mess
    Any other ideas?

    I had the same problem for a few days... really really annoying. I did three things and ONE of them fixed the problem.
    1. I created a new event. added video to the event. right clicked on the video and clicked add to timeline. this allowed me to edit and export, but it did not save my project because there was no project.
    2. I moved final cut studio to the trash (I did not have 7, I had final cut pro 6)
    3. there are THREE places to create a new project. I tried 2 of them a hundred times... but when I tried the third hidden one, it worked.
    a. under file... no good
    b. the big "create new project button.... nope
    c. in the very lower left... there is a picture of a reel of tape... clicked that, and everything worked.
    it is actually the "show the project library" button.
    Go into the library, right click, and select create new project. NOW A, B, and C all work

  • Library project errors and imports of projects using them

    So this is something that I have put up with in FB for a long time now, but I decided to try doing some research today to see if there is a workaround as it is very annoying. Unfortunately I couldn't find anything.
    I attempted to file a bug/feature request, but it turns out that for some unknown reason FB is the only Adobe application that gives a link to another url (http://bugs.adobe.com/flex/) and, today at least, the link is dead so I have to post here instead.
    The problem is with library projects (which I love by the way). I use them a great deal and for more than just creating standalone APIs. As do many others, I like to have the core of many of my cross-platform projects in a library so that I can create other ‘harness’ projects for different runtimes and use the same bulk code. This way I can just write code in each master project that is particular to that runtime be it air or web or whatever - this is a great bit of functionality that I would really miss were it not there.
    As a result of this workflow however, I am often working in the library project directly in order to update all versions of a project. The problem arises when there is an error in the library project. When this happens, all the projects reading from the library lose all linkages to the swc and as a result the problem tab fills up with hundreds of problems that don’t exist, because as far as those projects are now concerned the swc no longer exists.
    Now I understand why this happens but surely FB could be made to understand what is going on and override (what I assume is) the compiler’s behaviour, and just not display these errors.
    This whole thing is exacerbated by (and may not even be that big a problem where it not for) the fact that I am forced to turn off 'build automatically' due to the 4.7 crash bug that has been reported here numerous times. Because of this I tend to write large chunks of code between each compile so I don't instantly know what has broken.
    Please save the feature that I enjoy so much by either getting FB to deal with the situation better or by fixing the crash bug so I can use ‘build automatically’ again… or god forbid… fix both!! I can dream. J
    If anyone has any good tips regarding this please let me know.
    Many thanks,
    James

    Can I then delete the project from the hard drive (as it's now in the library?) or will that delete the whole thing forever?
    That depends on how you did import the projects.  If your images are referenced they might still be stored in the previous projects, but if your library is managed, then it will be save to delete the projects you already imported.

  • How can i change the class in the Class Library project to be static or public so i can use it from the windows application project ?

    First i know that when i make any changes to the class library project i need to rebuild the project then to remove the Capture.dll from the TestScreenshot project and then to add again the updated Capture.dll
    The problem for example in this case i'm trying to use a public static variable i add in the DXHookD3D9.
    In the DXHookD3D9 i added this public static variable:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    //using SlimDX.Direct3D9;
    using EasyHook;
    using System.Runtime.InteropServices;
    using System.IO;
    using System.Threading;
    using System.Drawing;
    using Capture.Interface;
    using SharpDX.Direct3D9;
    namespace Capture.Hook
    internal class DXHookD3D9: BaseDXHook
    public DXHookD3D9(CaptureInterface ssInterface)
    : base(ssInterface)
    LocalHook Direct3DDevice_EndSceneHook = null;
    LocalHook Direct3DDevice_ResetHook = null;
    LocalHook Direct3DDevice_PresentHook = null;
    LocalHook Direct3DDeviceEx_PresentExHook = null;
    object _lockRenderTarget = new object();
    Surface _renderTarget;
    public static decimal framesperhourtodisplay = 0;
    protected override string HookName
    get
    return "DXHookD3D9";
    List<IntPtr> id3dDeviceFunctionAddresses = new List<IntPtr>(
    framesperhourtodisplay
    The problem is i can't even get to the Capture.Hook namespace and not to the DXHookD3D9 from the TestScreenshot application window project.
    This is a screenshot:
    For example fro the FramesPerSecond class i can use it get to it from the windows forms application.
    namespace Capture.Hook
    /// <summary>
    /// Used to determine the FPS
    /// </summary>
    public class FramesPerSecond
    int _frames = 0;
    int _lastTickCount = 0;
    float _lastFrameRate = 0;
    Since it's public i guess.
    But if i will change the DXHookD3D9 class from internal to public:
    public class DXHookD3D9: BaseDXHook
    I will get error on the DXHookD3D9: 
    Error 1
    Inconsistent accessibility: base class 'Capture.Hook.BaseDXHook' is less accessible than class 'Capture.Hook.DXHookD3D9'
    And the BaseDXHook class:
    namespace Capture.Hook
    internal abstract class BaseDXHook: IDXHook
    protected readonly ClientCaptureInterfaceEventProxy InterfaceEventProxy = new ClientCaptureInterfaceEventProxy();
    public BaseDXHook(CaptureInterface ssInterface)
    this.Interface = ssInterface;
    this.Timer = new Stopwatch();
    this.Timer.Start();
    this.FPS = new FramesPerSecond();
    Interface.ScreenshotRequested += InterfaceEventProxy.ScreenshotRequestedProxyHandler;
    Interface.DisplayText += InterfaceEventProxy.DisplayTextProxyHandler;
    InterfaceEventProxy.ScreenshotRequested += new ScreenshotRequestedEvent(InterfaceEventProxy_ScreenshotRequested);
    InterfaceEventProxy.DisplayText += new DisplayTextEvent(InterfaceEventProxy_DisplayText);
    ~BaseDXHook()
    Dispose(false);
    How can i solve it so i can use the variable framesperhourtodisplay in the DXHookD3D9 class with the TestScreenshot windows forms application ?

    Hi,
    I dont know if it will work here, since I dont know the complete structure, but the base call must be public, if the derived class is public, so the base class is at least as accessible as the derived class.
    Try make the base class public. (And maybe the base-class IDXHook of the base also...)
    Or use a different approach and make only the properties public that are needed to be public by adding an extra class...
    A structure could look like:(you need to create a class thats public in your dll and expose a property, and set this property in the internal class...)
    In the Accessing class (here Form1)
    public partial class Form1 : Form
    public Form1()
    InitializeComponent();
    private void Form1_Load(object sender, EventArgs e)
    C c = new C();
    MessageBox.Show(B.F.ToString());
    and in the class Lib:
    internal class A
    public A()
    B.F = DateTime.Now.Millisecond;
    public class B
    public static int F { get; set; }
    public class C
    public C()
    A a = new A();
    (add a referenc to the class lib from the accessing project)
    Regards,
      Thorsten

  • Sharing code between Flex and AIR versions using library project

    Hello everyone,
    I'm developing an application that has both Flex and AIR versions. In order to share code between these apps, I created a library project and added all my code there. Now I've set the library project as a dependency for both Flex and AIR projects. Since there are some components that use the DataService object, I've added fds.swc and fds_rb.swc and fiber_rb.swc modules to the libs directory of the library project. No compile errors. Now, if I try to run my Flex application, I'm getting this error:
    Variable mx.data::LocalStoreFactory is not defined.
    I know that this error comes up when playerfds.swc is not present in the path. But that is not the case here. I have added playerfds.swc, fds.swc and related lib files to the build path.
    If I go back and add the playerfds.swc file to the original library project, the error no longer appears. This is not a proper solution for me, since I need to share this project with AIR version also, and I cannot have both playerfds.swc and airfds.swc in the same project.. Has anyone faced an issue like this before?? What am I doing wrong??

    Hello everyone,
    I'm developing an application that has both Flex and AIR versions. In order to share code between these apps, I created a library project and added all my code there. Now I've set the library project as a dependency for both Flex and AIR projects. Since there are some components that use the DataService object, I've added fds.swc and fds_rb.swc and fiber_rb.swc modules to the libs directory of the library project. No compile errors. Now, if I try to run my Flex application, I'm getting this error:
    Variable mx.data::LocalStoreFactory is not defined.
    I know that this error comes up when playerfds.swc is not present in the path. But that is not the case here. I have added playerfds.swc, fds.swc and related lib files to the build path.
    If I go back and add the playerfds.swc file to the original library project, the error no longer appears. This is not a proper solution for me, since I need to share this project with AIR version also, and I cannot have both playerfds.swc and airfds.swc in the same project.. Has anyone faced an issue like this before?? What am I doing wrong??

  • Get the ID of a dynamically created symbol from library, INSIDE another symbol.

    Hi everyone,
    I'm trying to get the id from a dynamic created symbol from library.
    When dynamically creating the symbol directly on the stage (or composition level), there's no problem.
    But I just can't get it to work when creating the symbol inside another symbol. 
    Below some examples using both "getChildSymbols()" and "aSymbolInstances" 
    // USING "getChildSymbols()" ///////////////////////////////////////////////////////////////////////// 
    // ON THE STAGE 
    var m_item = sym.createChildSymbol("m_item","Stage");
    var symbolChildren = sym.getChildSymbols(); 
    console.log(symbolChildren[0].getSymbolElement().attr('id')); // ok eid_1391853893203
    // INSIDE ANOTHER SYMBOL
    var m_item = sym.createChildSymbol("m_item", sym.getSymbol("holder").getSymbolElement()); 
    var symbolChildren = sym.getSymbol("holder").getChildSymbols(); // Am i using this wrong maybe?
    console.log(symbolChildren.length) // returns 0 so can't get no ID either
    // USING "aSymbolInstances"" ////////////////////////////////////////////////////////////////////////// 
    // ON THE STAGE
    var m_item = sym.createChildSymbol("m_item","Stage"); 
    console.log(sym.aSymbolInstances[0]); // ok (i guess) x.fn.x.init[1] 0: div#eid_1391854141436
    // INSIDE ANOTHER SYMBOL
    var m_item = sym.createChildSymbol("m_item", sym.getSymbol("holder").getSymbolElement());
    console.log(sym.getSymbol("holder").aSymbolInstances[0]); // Javascript error in event handler! Event Type = element 
    In this post http://forums.adobe.com/message/5691824 is written: "mySym.aSymbolInstances will give you an array with all "names" when you create symbols"
    Could it be this only works on the stage/ composition level only and not inside a symbol? 
    The following methods to achieve the same are indeed possible, but i simply DON'T want to use them in this case:
    1) Storing a reference of the created symbol in an array and call it later by index.
    2) Giving the items an ID manually on creation and use document.getElementById() afterwards.
    I can't believe this isn't possible. I am probably missing something here.
    Forgive me I am a newbie using Adobe Edge!
    I really hope someone can help me out here.
    Anyway, thnx in advance people!
    Kind Regards,
    Lester.

    Hi,
    Thanks for the quick response!
    True this is also a possibility. But this method is almost the same of "Giving the items an ID manually on creation and use document.getElementById() afterwards".
    In this way (correct me if i'm wrong) you have to give it an unique ID yourself. In a (very) big project this isn't the most practical way.
    Although I know it is possible.
    Now when Edge creates a symbol dynamically on the Stage (or composition level) or inside another symbol it always gives the symbol an ID like "eid_1391853893203".
    I want to reuse this (unique) ID given by Edge after creation.
    If created on the stage directly you can get this ID very easy. Like this;
    var m_item = sym.createChildSymbol("m_item","Stage");
    var symbolChildren = sym.getChildSymbols(); 
    console.log(symbolChildren[0].getSymbolElement().attr('id')); // ok eid_1391853893203
    I want to do exactly the same when created INSIDE another symbol.
    var m_item = sym.createChildSymbol("m_item", sym.getSymbol("holder").getSymbolElement());
    Now how can I accomplish this? How can I get the Id of a dynamically created symbol INSIDE another symbol instead of created directly on the stage?
    This is what i'm after.
    Thnx in advance!

  • "Library" Projects vs "Projects & Albums" Projects

    Hello all,
    I have been using Aperture for about three years. I have Aperture 3 on three different Macs.
    Prevously I have been using Windows XP and have been storing photos in directories on the hard drive the old fashioned way.
    I have some questions about the storage structure of Aperture and I cannot find the answer in the Manual nor online.
    Here we go.
    1. When I import photo's into Aperture, it creates a "Project" both under "Library" Projects and under "Projects & Albums."
    Q: If I delete a project under "Library" do the photo's contained in that project get deleted from Aperture's Library?
    Q: If I delete a project under "Projects & Albums" do the photo's contained in that project get deleted from Aperture's Library?
    2. I have been a user of Mobile Me gallery since it came out, even before I bought Aperture.  I have synced the Mobile Me galleries with my copy of Aperture 3 on each of the mac's so I have redundant copies.  I understand that Aperture will automatically sync changed photos so I am pretty sure all the image files for each mobile me gallery now exists on my hard drives.
    Q: As Mobile Me Gallery will not longer be supported in June, if I delete a Moble Me Gallery via Aperture, will the images in my Aperture Library still be there?
    I know this question seems odd, but the manual is not really clear on this issue.
    3. While I am here asking the pro's this is a question I think I have figured out.
    Q: The Vault list shows a Bar for each vault.  It has a caption that says something like
    The Bar has hashes on the right side and solid color on the left. I assume this shows The total Drive side, and the total amount of free space availble at that moment, yet it does not show the size of the actual vault. And Green means plenty of room left, red means getting close to full.  Dum quesiton but I need varification.
    Thank you very much for your patients with a relatively new Aperture User.
    Mike

    Hello Mike,
    All images (and all versions of an image) are stored in one and only one project. All versions of the same image are always part of the same project.
    The "Photos" view shows you all versions of all of your images for quick access and filtering and searching, but it does not store the images - it is not a container like the projects, it's more like a smart album.
    Then that new "Project" would contain "Versions" of the orginal files in the "Photos" section??
    If you drag an image by accessing it from the Photos View, you will not drag it from the Photos View but move it from its original project to a the new project - this does not create new versions in the new project. The Photos View is just a neat feature to select all your images in one place, independent of the project they are stored in, like having a file of index cards to all your images.
    If so, then if I delete that new "Project" under "Projects and Albums" it should just delete the "Versions" in that project??? and not the originals under "Library?"
    Oh yes, deleting any project will certainly delete your original images. The only originals you see under "library" are projects in the "Projects" view, and that are exactly the same projects as under "Projects and  Albums" - just different ways to access the same content.
    What I was trying to find out is that if I delete a project, then that grouping created under that project would disappear but the original images would still be in the libary, just no longer assigned to that deleted project.
    If you delete a project, from whatever view you use, the images stored in that project are gone. And since each image - and all its versions - belongs to only one project, that image will be removed from the library for good, if its project is deleted!
    You really need to get a better understanding of the basic organizational structure of Aperture:
    If you not have found it already, here is the User Manual, really worth reading:
         Aperture 3 User Manual: http://documentation.apple.com/en/aperture/
    and here are well-polished, introductory posts by Kirby Krieger:
    Kirby Krieger: The Well-Trod Path:
    https://discussions.apple.com/message/16003277#16003277
    Kirby Krieger: Re: Organizing in Aperture, concise long version:
    https://discussions.apple.com/message/12616449#12616449
    Kirby: Krieger: Best way to managing libraries?
    Post back, if you need further clarification; I am sure someone else will drop in on this discussion.
    Regards
    Léonie

  • SAP Conversion Agent: HL7 library project could not be executed

    Hi experts
    I'm using SAP Conversion Agent version 4.3.0 on a PI 7.0. I'm trying to use a HL7 library project. On the Conversion Agent Studio side everythings works fine: the library project is created and a test of the service with a local HL7 file was successful. After that I make the project on the Conversion Agent Studio available and copy the project from the local \SAP\ConversionAgent\ServiceDB directory to the PI Conversion Agent ServiceDB directory.
    So far so good... but when I try to execute the CA project via File Sender Adapter the following error is thrown:
    "Invalid service 'TEST'. Check service name and service database"
    Module Exception 'com.sap.aii.af.mp.module.ModuleException: <Status><severity>4</severity><description>Invalid service 'TEST'. Check service name and service database.- for more information see file:///usr/sap/DXI/ConversionAgent/CMReports/Tmp/2009-12-23/nonexistent_U-_-63-4b17e36f-5e83/Events.cme</description><log_file>file:///usr/sap/DXI/ConversionAgent/CMReports/Tmp/2009-12-23/nonexistent_U-_-63-4b17e36f-5e83/Events.cme</log_file><Event error_code="401024" severity="error_fatal">
    <description>Invalid service 'TEST'. Check service name and service database.- for more information see file:///usr/sap/DXI/ConversionAgent/CMReports/Tmp/2009-12-23/nonexistent_U-_-63-4b17e36f-5e83/Events.cme</description>
    <time>N/A</time>
    </Event>
    </Status> caused by: com.itemfield.contentmaster.CMException' found, cause: com.itemfield.contentmaster.CMException
    I also created another parser project, without HL7 libraries, this works also on Conversion Agent Studio and on PI side without any problems.
    Do you have any ideas?
    Thx,
    manuku

    Hi Conversion Agent experts,
    Do you have any ideas?
    Thx
    manuku

Maybe you are looking for