Conflict with folder names in Source Path

I'm trying to include two source folders, both named src - my Flash Builder project only allows one - doesn't show the second. One reference uses an absolute path on an external drive to my source and the other a relative path to the fl.motion classes. I can rename my source folder but it's referenced in a lot of projects and I was hoping there was another solution.

Thanks for the reply. I was able to accomplish the result based on your directions. There were a few minor things I had to adjust:
- File->New->File should read File->New->Folder
- also, I discovered when adding the new virtual folder to the source path there is no GUI file dialog to find and pick it - it requires that you enter the new file name.
However, great advice and thanks for the solve.
Chris

Similar Messages

  • The name of this class conflicts with the name of another class

    I had a problem when compiling my flash movie. I had made an
    instance from a class, but the output kept saying:
    "The name of this class, XXX, conflicts with the name of
    another class that was loaded XXX."
    I read a lot of developers have the same problems, when i
    looked it up:
    Google
    link on : "conflicts with the name of antother class that was
    loaded"
    Apparently it is some kind of bug caused by different times,
    between local/network machines and servers.
    Also when there is a time difference involved between 2
    computers, then this problem also occurs.
    Can't macromedia fix this bug? .....Because as a developer i
    don't want to adjust my time, everytime i want to test my flash
    movies or have to compile my movie 2 times. The other developers
    are getting tired of it also.
    We need to get this bug trough to macromedia or adobe!
    It needs to be fixed!

    Can anyone help?

  • Apple script to replace content in specific folders with folder names in csv

    Can anyone please help me with this scenario... It would greatly be appreciated!
    1. I have a list in csv containing 3 columns: Column 1 = Folder name • Column 2 = Entry A • Column 3 = Entry B
    2. I have 100 folders named the same as Column 1.  in each folder there is different files.
    This is what I need.
    I need the script to to find the folder based upon column 1.
    Then the script should search for place holder named "Entry A" and replace it's contents with data from Column 2.  There are several files with in the folder that contain place holder "Entry A" so it should replace it all but must remain with in that folder.
    Then same for column 3 find place holder named Entry B and replace.
    Then it should save all files.
    Any help is greatly appreciated!  Thank you!

    Can anyone please help me with this scenario... It would greatly be appreciated!
    1. I have a list in csv containing 3 columns: Column 1 = Folder name • Column 2 = Entry A • Column 3 = Entry B
    2. I have 100 folders named the same as Column 1.  in each folder there is different files.
    This is what I need.
    I need the script to to find the folder based upon column 1.
    Then the script should search for place holder named "Entry A" and replace it's contents with data from Column 2.  There are several files with in the folder that contain place holder "Entry A" so it should replace it all but must remain with in that folder.
    Then same for column 3 find place holder named Entry B and replace.
    Then it should save all files.
    Any help is greatly appreciated!  Thank you!

  • Applescript: prepend a string with folder name

    I’ve found this script that copies the names of multiple selected files in the Finder to clipboard:
    try
         set theNames to {}
         tell application "Finder"
              repeat with i in (get selection)
                   set end of theNames to name of i
              end repeat
           end tell
         set {TID, text item delimiters} to {text item delimiters, return}
         set the clipboard to theNames as text
         set text item delimiters to TID
    end try
    I need to prepend to each result a string like "www.domain-name.ext/folder", where “folder” is the parent folder relative to the files.
    How can I do it? Thanks in advance.

    You can do something like:
    try
       set theNames to {}
       tell application "Finder"
          repeat with i in (get selection)
              set parentName to name of container of i
              set end of theNames to "www.domain-name.ext/" & parentName & "/" & name of i
          end repeat
        end tell
        if theNames is not {} then
          set {TID, text item delimiters} to {text item delimiters, return}
          set the clipboard to theNames as text
          set text item delimiters to TID
        end if
    on error errmess
        log errmess
    end try

  • Conflict with the component names

    Hi everybody,
    I think I have a conflict with the names of the components. Let me explain to you.
    On the first window, I have a component described like this :
    Component Type -> Text Input Component
    Component Name -> ArgoLineClientV2R4_Text_1_txf
    On another window, I have this :
    Component Type -> Graphics Component
    Component Name -> ArgoLineClientV2R4_Text_1_txf
    As you see, these components have the same name but are different type. With the first, I manage to write the word in. With the second, I want to extract a word but I can't.
    So, I would like to know the reason. Is it because the components have the same name? Is it because the second component is a Graphics component ?
    Thanks for your time.
    Best regards.
    Romain.

    Hi Oliver, thanks for your answer.
    ArgoLineClientV2R4_Text_1_txf is the technical name, given by Jubula during the object mapping. In my program, I use different names of course.
    These two components have different functionalities. With one, I write a word in; and with the other the software gives me an information (a word). With the second, i can only read the information and I need to take this information to put it in a String variable. So I tried to extract this information but I (my program) failed. I wanted to make a clic and make a copy of the word. But when I try to clic, my test fails.
    I think it is because Jubula describes this component like a Graphics Component whereas in the software parameters, this component is a text field (in mode ReadOnly but a text field).
    Here is my situation.
    Regards.
    Romain

  • How to Rename a Topic ID in Map File to Avoid Conflict with Another Program?

    Robo 8 HTML:
    Can somebody assist me in understanding how to rename a topic ID in my map.h file?
    An application programmer informs me there are nine topic IDs (shown below) in my project map file which conflict with predefined names of constants/functions from the Visual Studio Libs program and, is requesting I change the names of the topics listed below to resolve topic ID conflict in order to enable F1 call for these topics.
    #define Open    59
    #define Save    60
    #define Print   63
    #define Cut     72
    #define Copy    73
    #define Paste   74
    #define Clear   75
    #define Status  81
    #define Substructure  139
    Can I simply alter the topic names and retain their associated map numbers in <Create/Edit Map ID> dialog to resolve the map file conflict with Visual Studio Libs program functions? Or, is there more work involved in changing a topic name in a map.h file?
    Any assistance with this question is greatly appreciated.
    Thanks,
    robert

    Hi,
    Simply renaming the TopicID's in the .h file won't work. The TopicID is used in the alias file (projectname.ali) to link a map number with a topic. Also, you can use either TopicID's or map numbers to call the help. (Using TopicID's only works for WebHelp afaik.)
    If you use map numbers to call the help, you can rename the TopicID using the mentioned dialog. No problem.
    If you want to change the ID from the files, you have to change both the .h file as the .ali file. No changes to topics needed.

  • Two soa domain with same name "TestSOADomain" sharing same SOA schema ?

    I tried creating two soa domain with same name "TestSOADomain" (different path) sharing same SOA schema .However one domain came UP to Running mode and other domain going to AdminMode and "soa-infra" application of that domain is not active.
    I do want to understand can this be possible with SOA ,ie. two soa domain sharing same SOA schema ?
    If possible what are all the problems might come
    1. While executing soa composites with asyncronous behaviour ?
    2. How the polling services will work ?
    3. will the XREF_DATA table ROW_NUMBER column inserted uniquely while inserting data from two different domain into same SOA schema ?
    4. Other issues ?
    Thanks

    Each domain is expected to refer to its own unique database schema. Same SOA schema should not be shared by multiple SOA clusters/domains. It is technically possible though, I suppose, and still can run fine any one SOA environment at any given time with the other SOA environments/domains (sharing the same SOA schema) shutdown. It is not the general/recommended practice to share SOA schema across domains and there could be potential implications and unexpected behavior, particularly when the SOA environments pointing to the same schema are all running at a time.

  • How to create directories with same name in different schemas

    I have two schemas on the same database.
    I am trying to create directories with same name, but different paths in both the schemas.
    When i created the directories in second schema, the directory paths of the first schema are automatically changed to the second path.
    Is there any solution to create directories with same name, but different path in two different schemas on the same database.
    Thanks,
    Sridhar.

    Hi,
    >>When i created the directories in second schema, the directory paths of the first schema are automatically changed to the second path.
    If you have removed the REPLACE clause of your create statement, then you would see that is not possible.
    SYSTEM> connect scott/tiger
    Connected.
    SCOTT> create directory mydir as '/tmp';
    Directory created.
    SCOTT> connect legatti/pwd
    Connected.
    LEGATTI> create directory mydir as '/tmp';
    create directory mydir as '/tmp'
    ERROR at line 1:
    ORA-00955: name is already used by an existing object
    LEGATTI> select owner,object_name,object_type,created
      2  from dba_objects where object_name='MYDIR';
    OWNER     OBJECT_NAME    OBJECT_TYPE         CREATED
    SYS       MYDIR          DIRECTORY           19/12/2007Cheers
    Legatti

  • How to create logical directories with same name on two databases

    Hi,
    OS: Windows
    Oracle Version : 10g
    I have to databases in one oracle home. I have created some logical directories in one database. When I am trying to create logical directories with same name in another database, it is overwriting the first database directory paths with the second one
    Can't we create directories with same name but different path in two databases on one machine?
    Pls suggest me on this
    Regards,
    Vijay

    I am trying to create logical directory using CREATE
    DIRECTORY statement. I am very much aware that the
    create directory statement doesn't create directory
    on OS. But we can attach the physical directory on OS
    to logical directory in oracle
    My requirement is to create logical directories in
    oracle mapping the OS directories. Both the
    databases, wil have same logical directory names but
    different OS directory mappingsIf I understand you correctly, you can do this:
    On DB 1
    CREATE OR REPLACE DIRECTORY same_dir_name as 'C:\myoracle\mydir1';
    On DB 2
    CREATE OR REPLACE DIRECTORY same_dir_name as 'D:\myoracle\mydir2';
    What stops you from doing that ?
    Note: If what you have is one database but different connections, then you are connecting to one database. The above second statement will drop and replace with the first one

  • CS4: conflict with third-party plugin

    Hi
    We face the issue that our plugin conflicts with an existing closed-source plugin. We use a unique developer ID and I believe that all declarations in our plugin are correct. My question; how can I get indesign to yield more informative error messages, than just the usual conflict dialog upon startup?
    -and can the conflict be caused by other issues than misdefined pmid's?
    Thanks!
    Kind regards Toke

    I never encountered conflicts other than the ID clash. You can verify if the culprit is your plugin iD or not by trying the plugin ID of some other plugin you had developed in this plugin just for a test to see if it resolves the problem.
    You could also try and comment out declerations from your plugin to zero down on the decleration that is causing the issues.
    Manan Joshi
      - Efficient InDesign Solutions -
    MetaDesign Solutions
    http://metadesignsolutions.com/services/indesign-development.php

  • FTP Activity - mget multiple files with dynamic names

    Hello All
    Hope all is well.
    I was wondering if there was a way to configure FTP activity to transfer multiple files with dynamic names from source location at daily intervals.
    For example, my source files are affixed with date values (source_filename_<mmddyyyy>_<hh>.txt):
    source_filename_12252009_00.txt
    source_filename_12252009_06.txt
    source_filename_12252009_12.txt
    source_filename_12252009_18.txt
    What I would like my process flow to do would be to download just these 4 files once daily based on a dynamic ftp script as follows:
    open ${Remote.Host}
    ${Remote.User}
    ${Remote.Password}
    cd ${Remote.RootPath}
    prompt off
    mget ????????
    quit
    In DOS batch script you would have the mget command with a wildcard as:
    mget source_filename_%DATE:~0,2%%DATE:~2,2%%DATE:~4,4%*.txt
    How does one go about implementing this in OWB? Does it require a user defined substitution varilable of some sort?
    FYI, I am using version 10gR2.
    Cheers.

    Hi ,
    If you are able to achieve your objective from a DOS batch script then you can call that script for an User Defined Activity in OWB process flow .
    Hope this helps.
    Thanks,
    Sutirtha

  • Folder name showing in the search result in SharePoint 2013

    Hello,
    In SharePoint 2013, when user search for a document within a folder, Search content along with Folder name and icon getting displayed in the search result. I am trying to hide Folder name from search result. Please suggest some way to achieve this.
    Thank you
    Jyotiraaditya

    Hi,
    As I understand, you want to search without folders in SharePoint 2013.
    You can do the steps to achieve your request:
    In search center in results page, click Edit page.
    In search results web part, click dropdown in the upper right corner -> click Edit Web Part.
    Click Change query -> in Property filter field -> choose contenttype, not contains, folder  -> click Add property filter -> ok.
    Thanks,
    Dean Wang

  • Source paths with same folder name ?

    Hello Forum
    I am using Flex Builder 3 to build an actionscript application.  I have added a few external packages that I use on a regular basis on a separate location on the harddrive so that in the future multiple apps ideally could reference to them.  Now the problem is that my current project sits in a 'com.projectname' folder and one of the external packages also has a 'com' folder.  FB seems to get confused and doesn't recognize the latter after I've added the source path in the project properties menu (under Actionscript Build Path).
    Any insight appreciated.
    Thank you.
    sk

    If you could replicate the issue with a "minimal" application and share the code, an answer should be fairly easy to provide.

  • Trying to write an Automator program to find files with same time created and change file names to matching source folder names

    I am failrly green when it comes to automator.
    I am trying to write an Automator program:
    Not sure where to post this
    trying to write an Automator program to find files and alter their names
    I have a source folder with correct named master files in it.
    eg. A0001_1234.mpeg
    time created 14:02:03
    date 07/07/2012
    Another folder where there will be copies of the master files in a different format with different names but created at the same time as a file in the source directory.
    they are created with a seperate device but they are
    A0000001.mp4
    time created 14:02:03
    date 07/07/2012
    I need it to then take the name from the source fies and apply the correct name to the matching file based on the time it was created.
    I can't seem to find actions in automator that reference time crated.
    Is this something I will be able to Do in automator?
    Any help would be great
    Thanks
    R

    Hi,
    It's impossible to do this without any script in Automator.
    Use this AppleScript script :
    set source to choose folder with prompt "Select the source folder"
    set anotherfolder to choose folder with prompt "Choose the another folder"
    tell application "Finder"
        repeat with tfile in (get files of source)
            set cDate to creation date of tfile
            set findFiles to (files of anotherfolder whose creation date is cDate)
            if findFiles is not {} then
                set tName to name of tfile
                set name of item 1 of findFiles to tName
            end if
        end repeat
    end tell

  • SharePoint 2007 Content deployment Error: 'A folder with the name already exists.

    Hi, In SharePoint 2007 one Content deployment job is failed with below error:
    Content deployment job 'Remote import job for job with sourceID = some id' failed.The exception thrown was 'Microsoft.SharePoint.SPException' : 'A folder with the name PublishingImages/AEI-2014/Blue already exists.'
    From last 3 days I am getting this error and previously this Job was running without any Error.
    In Import Log file getting message: "FatalError: A folder with the name PublishingImages/sg-2015/yellow already exists."
    Please tell me how to resolve the issue.

    Hello,
    It seems same folder exist in destination server that's why job is failing. You need to check destination server and remove the same name/GUID from site then try again.
    See this technet for more info: (see "Conflicting content on source and destination" section)
    http://technet.microsoft.com/en-us/library/dd795107%28v=office.12%29.aspx
    Hemendra:Yesterday is just a memory,Tomorrow we may never see<br/> Please remember to mark the replies as answers if they help and unmark them if they provide no help

Maybe you are looking for

  • Mega 180 Eject Button

    Hi, Just recently I am experiencing problems with the eject button on the Mega 180, when it is pressed sound (and when running live tv) pauses for 2secs and then continues-not a major issue but something which really is annoying!  Any ideas on how to

  • Secondary Index on Table having 0 record?

    Dear All, Currently one of the SAP table, BKORM, has 0 records. When we execute statement "select * from BKORM" it fetches 0 record and took more than a minute. When we create secondary index, the same statement provides result in a second. My questi

  • Mac Mini into TV

    is it possible to buy a new mac mini and use my tv as display, it only has scart, composite video and s-video connections? I wanted to use it as a media centre but im not sure if i can as my tv doesnt have great connections. any help is greatly appre

  • Deactivate all alarms from Calendar?

    Hi, I synchronize my new iPhone with my MacBook Pro without problem. And I work with my iPhone near my laptop. So now there is something that's not convenient: I get all alarms twice: from iCal + Calendars Is there a way to deactivate all alarms from

  • Adding a link in an e-mail

    How do you turn a site address into a link within an email? Does an html ending in the address effect how I do this? Power PC G4(3.3)   Mac OS X (10.3.9)