Record in the source Parent folder

Hello, I am fairly new to After Effects scripting, and I'm doing a script to import files, and then save the project source files for the parent folder.

But I think that my last line, save path, is not the right wording...

Unfortunately, I try a lot of things but I can't find the solution. If you can help me, I thank very you much...

TOM


This is my code:

Import folder

targetFolder var = Folder.selectDialog ('import files in the folder');

If (targetFolder) {}

var files = targetFolder.getFiles ();

for (var i = 0; i < files.length; i ++)

{

try {}

importOptions var = new ImportOptions (files [i]);

app.project.importFile (importOptions);

} catch (error) {/ * alert (error.toString ()); * /}

}

}

find my way from the sources

var PAthProject = targetFolder.parent;

find sources of myparent path

var PAthProject = targetFolder.parent;

Record in the parent folder

var myNewFile = new queue (PAthProject + "/" + "myNewFile.aep");

App.Project.Save (myNewFile);

var PAthProject = targetFolder.parent;  Returns a folder not one object string...

f is targetFolder.parent;

f.fsName or maybe. toString() would give a string that you can use to build a path.

Also be aware of the universal access using slashes... is offered by Adobe with "/" through the platform, but if you use something

like fsName, who is originally from Windows will give any backslashes. Discover the guide tools for files and the section of folder.

Tags: After Effects

Similar Questions

  • extract the child records of their specific parent folder

    Hi all

    The following query shows these records that I wanted to but I want to extract the child records with their specific parent folder for the new scenario. I want to choose which set of these documents that belong to store under inventory.

    Select rt.transaction_id, rt.parent_transaction_id parent_id, trunc (rt.transaction_date) receipt_date

    (, rsh.receipt_num, rsh.attribute13 grn_num,rt.subinventory,SYS_CONNECT_BY_PATH(rt.subinventory,'/') "road".

    of rcv_transactions rt

    rcv_shipment_headers rsh

    where rt.shipment_header_id = rsh.shipment_header_id

    start with rt.parent_transaction_id =-1

    connect prior rt.transaction_id = rt.parent_transaction_id

    Brothers and SŒURS of ORDER BY rt.subinventory

    .

    child-parent_records.jpg

    Please help to extract.

    Hello

    If all you want are the lines with sub_inventory = "STORE", and their ancestors, then you can simply do this:

    SELECT *.

    OF subinventory

    START WITH sub_inventroy = "STORE".

    CONNECTION BY transaction_id = parent_id PRIOR

    ORDER BY transaction_id;

    No need of subqueries or analytical functions.  You can even no need for the ORDER BY clause.

  • Cannot save a bookmark to NEW folder - FF wants me to rename the EXISTING parent folder

    I can't save a bookmark in a new folder. This is the way that I take from the main menu:
    Bookmarks | Bookmark this Page
    Click on the drop down arrow to the right of the folder
    Select Choose
    Navigate to the folder parent in which I would like a new subfolder
    Click new folder
    Then, rather than create a new folder, as it has always done in the past, it will highlight the folder parent for editing. If I type a new folder name, the parent folder is replaced by the new name. A new subfolder is created with the name of the new folder.

    Things, I already tried that does * not * solve the problem:
    -Remove and then restore bookmarks from a file backup saved favorites.
    -Execution of the add-on "housekeeping."
    -Rebuild the database of "places".

    I have not yet reset Firefox or created a new profile but may try it if you gurus think it would help.

    I use FF 32.0.2 on Win XP SP3.
    I have hundreds and hundreds of bookmarks, but what I've read, there is no maximum size limit.

    Thank you in advance!
    Carol

    I thought about it! I kept scratching my head... whenever I tried to update, move or save a new bookmark, it moved very, very slowly. Sometimes, if I waited long enough, he would perform the action I wanted. But if I tried to push it along, it would have hard work (as described in my first post above). While it does take so long to manipulate and save the bookmarks file? It dawned on me... I recently set up sync with my mobile phone. So whenever I was saving a bookmark, Favorites file was also updated in Google sync account. Work with bookmarks has slowed down for an analysis! And it has destroyed my bookmarks file. No thanks, I can do without it. I disconnected Sync and immediately, my bookmarks and bookmark behavior are back to normal! Yay!

    Of course, I don't have my synchronized Favorites in Firefox on my cell phone, no more, but I can live without this until the process is improved.

  • problem to find AS3 files in the source path folder

    Hi all
    I use:
    < mx:Script source = "MyFile.as" / >
    where MyFile.as is inside a source path.
    I defined the source path by:
    Project/Properties/Flex Build Path / Source Path / add a folder
    and added:
    c:\dev\myClasses

    the actual file is now located at c:\dev\myClasses\MyFile.as
    but I get the error:
    Problem finding the external file: MyFile.as

    Add the source path created a source file in the project folder, called "[source path] myClasses.
    I tried
    < mx:Script source="myClasses/MyFile.as"/ >-> failure
    < mx:Script source = "[source path] myClasses" / >--> is not (obviously, but hey... I'm stuck on it for 2 hours now :)))

    any help?
    Thank you

    It makes perfect sence, in OOP, you can just include a class and start to use it, so that there are import features.
    You can only include a flood a/s (no class files).
    Kind regards.

  • Is it possible to start a record from the source code?

    Hello world!

    I currently use JProfiler in combination with JUnit tests to collect metrics of resource consumption of features in our product.

    A runner for JUnit home starts and stops the recording of JProfiler and analyse recorded data. Then he compares the values to the pre-set limits, and fail the test if they are exceeded.

    Now, I want to change this option to use the flight recorder instead. I found an interesting article explaining how to parse files of .jfr here: using the flight recorder analyzers | Marcus Hirt

    Unfortunately I can not understand how to start and stop a robbery at the record from a JUnit runner, in addition to the use of the jcmd tool.

    Can someone help me?

    Thank you very much

    Tobias

    Hi Tobias,.

    It's pretty trivial in JDK 8 - just use the operations on com.sun.management:type = DiagnosticCommand MBean imitating the way you would use jcmd. Relying on the MBean JMC and corresponding APIs directly is not supported.

    That said, if you wish to register MBeans associated JMC, the following may be useful:

    Import java.lang.management.ManagementFactory;

    Import javax.management.MBeanServer;

    Import javax.management.MalformedObjectNameException;

    Import javax.management.ObjectName;

    public class {RegisterMe}

    private public static final String REGISTER_MBEANS_OPERATION = "registerMBeans"; NON-NLS-$1

    private public static final String CLASS_NAME = "com.sun.management.MissionControl"; NON-NLS-$1

    private public static final String MBEAN_NAME = "com.sun.management:type = MissionControl; NON-NLS-$1

    private public static final ObjectName OBJECT_NAME = createObjectName();

    private public static ObjectName {} createObjectName()

    try {

    return new ObjectName (MBEAN_NAME);

    } catch (MalformedObjectNameException e) {}

    throw new Error ("shouldn't be possible: could not take a new name of object" + MBEAN_NAME); NON-NLS-$1

    }

    }

    public public static void main (String [] args) bird Exception {}

    Ms MBeanServer is ManagementFactory. getPlatformMBeanServer ();

    ms.createMBean (CLASS_NAME, OBJECT_NAME);

    Ms. Invoke (OBJECT_NAME, REGISTER_MBEANS_OPERATION, new Object [0], new String [0]);

    System. .println ("Press enter to exit"); NON-NLS-$1

    System. in. read();

    }

    }

    Kind regards

    Marcus

  • Records in the ARCHIVELOG flash_recovery_area folder management

    I more than 520 files in my 'c:\oraclexe\app\oracle\flash_recovery_area\XE\ARCHIVELOG' folder in the YYYY_MM_DD form from January 2009 until this day. Can I delete these folders and leave only the 2011_12_29 folder? What is a recommended practice?

    "Recommended practice" is implemented in a separate partition / folder to contain the archivelog files and affecting LOG_ARCHIVE_DEST_1 and LOG_ARCHIVE_FORMAT which avoids creating folders to a location in the recovery area.

    Of course, you can delete these files. Unless you do a restore. There is always a catch ;)

  • External SWF looking for sounds in the root parent folder

    Hello

    I'm working on a new video player, involving the loading of pop-up flash. This particular flash announcement that I have a problem with is loaded from the same domain, only from several more deep folders.

    The ad is loaded into a SWFLoader object and works very well. It is provided by a company of creation through our client, so I'm not familiar with its code. So, we have a fact over and here's the deal:

    They gave us the SWF announcement as well as a number of .mp3-s. Logic suggest it will search the sound in relation to himself (http://domain.com/campaign/adtype), but rather the sounds are loaded from the file application root (http://domain.com). Imagine sounds for a number of advertising campaigns cluttering the root folder. Still, I don't know how the ad was encoded.

    So, who's in charge sounds? Our app/charger or the ad itself? Can fix us somehow sounds to load the folder root of the announcement, or does contact ad manufacturers to correct their references?

    Thank you.

    Unfortunately, Flash, relative paths are always compared to the first SWF loaded, not the SWF application.  In Flex, SWFLoader fixes relative paths for you, but pretty much everyone must do it themselves.

    The ad code must change or you must put the mp3s in the root.   Or do another area for ads and load them cross-domain.

    Alex Harui

    Flex SDK Developer

    Adobe Systems Inc..

    Blog: http://blogs.adobe.com/aharui

  • Generic procedure to load the data from the source to the table target

    Hi all

    I want to create a generic procedure to load data of X number of the source table to X number of the target table.

    such as:

    Source1-> Target1

    Source2-> Target2

    -> Target3 Source3

    Each target table has the same structure as the source table.

    The indexes are same as well. Constraint are not predefined in the source or target tables.there is no involved in loading the data from the business logic.

    It would simply add.

    This procedure will be scheduled during off hours and probably only once in a month.

    I created a procedure that does this, and not like:

    (1) make a contribution to the procedure as Source and target table.

    (2) find the index in the target table.

    (3) get the metadata of the target table indexes and pick up.

    (4) delete the index above.

    (5) load the data from the source to the target (Append).

    (6) Re-create the indexes on the target table by using the collection of meta data.

    (7) delete the records in the source table.

    sample proc as: (logging of errors is missing)

    CREATE or REPLACE PROCEDURE PP_LOAD_SOURCE_TARGET (p_source_table IN VARCHAR2,

    p_target_table IN VARCHAR2)

    IS

    V_varchar_tbl. ARRAY TYPE IS VARCHAR2 (32);

    l_varchar_tbl v_varchar_tbl;

    TYPE v_clob_tbl_ind IS TABLE OF VARCHAR2 (32767) INDEX OF PLS_INTEGER;

    l_clob_tbl_ind v_clob_tbl_ind;

    g_owner CONSTANT VARCHAR2 (10): = 'STG '.

    CONSTANT VARCHAR2 G_OBJECT (6): = 'INDEX ';

    BEGIN

    SELECT DISTINCT INDEX_NAME BULK COLLECT

    IN l_varchar_tbl

    OF ALL_INDEXES

    WHERE table_name = p_target_table

    AND the OWNER = g_owner;

    FOR k IN l_varchar_tbl. FIRST... l_varchar_tbl. LAST LOOP

    SELECT DBMS_METADATA. GET_DDL (g_object,

    l_varchar_tbl (k),

    g_owner)

    IN l_clob_tbl_ind (k)

    FROM DUAL;

    END LOOP;

    BECAUSE me IN l_varchar_tbl. FIRST... l_varchar_tbl. LAST LOOP

    RUN IMMEDIATELY "DROP INDEX ' |" l_varchar_tbl (i);

    DBMS_OUTPUT. PUT_LINE (' INDEXED DROPED AS :'|| l_varchar_tbl (i));

    END LOOP;

    RUN IMMEDIATELY ' INSERT / * + APPEND * / INTO ' | p_target_table |

    ' SELECT * FROM ' | '. p_source_table;

    COMMIT;

    FOR s IN l_clob_tbl_ind. FIRST... l_clob_tbl_ind LAST LOOP.

    EXECUTE IMMEDIATE l_clob_tbl_ind (s);

    END LOOP;

    RUN IMMEDIATELY 'TRUNCATE TABLE ' | p_source_table;

    END PP_LOAD_SOURCE_TARGET;

    I want to know:

    1 has anyone put up a similar solution if yes what kind of challenges have to face.

    2. it is a good approach.

    3. How can I minimize the failure of the data load.

    Why not just

    create table to check-in as

    Select "SOURCE1" source, targets "TARGET1", 'Y' union flag double all the

    Select "SOURCE2', 'TARGET2', 'Y' in all the double union

    Select "SOURCE3', 'Target3', 'Y' in all the double union

    Select "SOURCE4', 'TARGET4', 'Y' in all the double union

    Select 'Source.5', 'TARGET5', 'Y' in double

    SOURCE TARGET FLAG
    SOURCE1 TARGET1 THERE
    SOURCE2 TARGET2 THERE
    SOURCE3 TARGET3 THERE
    SOURCE4 TARGET4 THERE
    SOURCE.5 TARGET5 THERE

    declare

    the_command varchar2 (1000);

    Start

    for r in (select source, target of the archiving of the pavilion where = 'Y')

    loop

    the_command: = "insert / * + append * / into ' |" r.Target | ' Select * from ' | '. r.source;

    dbms_output.put_line (the_command);

    -execution immediate the_command;

    the_command: = 'truncate table ' | r.source | "drop storage."

    dbms_output.put_line (the_command);

    -execution immediate the_command;

    dbms_output.put_line(r.source ||) 'table transformed');

    end loop;

    end;

    Insert / * + append * / into select destination1 * source1

    truncate table SOURCE1 drop storage

    Treated SOURCE1 table

    Insert / * + append * / to select TARGET2 * in SOURCE2

    truncate table SOURCE2 drop storage

    Treated SOURCE2 table

    Insert / * + append * / into select target3 * of SOURCE3

    truncate table SOURCE3 drop storage

    Treated SOURCE3 table

    Insert / * + append * / into TARGET4 select * from SOURCE4

    truncate table SOURCE4 drop storage

    Table treated SOURCE4

    Insert / * + append * / into TARGET5 select * from source.5

    truncate table source.5 drop storage

    Treated source.5 table

    Concerning

    Etbin

  • Plan the work that runs according to max date in the source to create table

    Hi all

    I am trying to create an automation in my sql. Basically, I have a table I do reporting and analysis on which is a subset of records from a source table. For the purposes of this example, I called the source table "src_table" and my table as the target table, "tgt_table." Essentially the source table gets updated with a value again months from date (founded order_dt) and I have a procedure I call when the source table is updated to load the value of the new month of records in my target table. So let say June 2012 data is loaded in the source table, I call my procedure that has a date parameter and enter June 2012 as the point of departure date so that it looks for new records in the source table from June 1, 2012 and load it into my target table. For variety reasons I won't get in, my goal in a position is not a view, there must be a stand alone table. The problem is that the source never table gets updated at the same speed interval... sometimes they will load a new months of data at the beginning of the following month, sometimes medium of the month... sometimes I have to wait a few months to get another month of data. So, whenever I get a email notification telling me another month of data is loaded in the source table, I have a windows batch file that runs my setting... I just have to change the start date (based on the order_dt column) and run it. I want to do is automate the process so that I did not yet do. What do I think creates a task that runs every day or even at the end of each month, this work has basically seized the date of maximum order of the source table and if the date of the order is greater than the maximum order date in my target table, it runs my procedure that loads the new month with a value of data in my target table. Thus, for example, my maximum order of my target table date is May 31, 2012. The work runs at a certain period of time and check the maximum date on the source table, if the maximum date is May 31 nothing happens... new data has not been loaded so does not perform the procedure. If the maximum date on the source table is June 30, 2012, the maximum date is greater than the maximum in my table target date so that the procedure runs. I need also the procedure to insert records into the table in the source where the order date in the source table is > = at the time of maximum order in the target table.

    In a Word, this is what I need but I'm not sure how to put in place. The procedure works fine... all I need is an interim procedure that runs as a scheduled task every x number of days and the date of maximum order check on the source table if it exceeds the maximum order on my table of target date it runs my procedure. My procedure is called "insert_new_orders" and when I run it I run it like:

    execute insert_new_orders('01-jun-2012');

    If anyone can help me with what would be great :-)

    Thank you
    Ed

    To start:
    You must remove the EXECUTE keyword.

  • A persisted tables of stadium for the sources of the eBS

    Hi Experts,
    I am currently working on analytical HR and use OOB Informatica mappings for the loadings of OLAP data. The source is Oracle eBS (HRMS).
    I find that there are several mappings of PersistedStage to load the tables of persistent scene like W_ORA_WEVT_PERF_PS, W_ORA_WEVT_SAL_PS etc. These paintings fills in turn tables _FS (as usual for loads of data warehousing).
    Can someone help me understand why is - this stage friendly tables are used even when we have typical stage tables (* _FS) also?
    All document links will also be useful for my checklist.

    Thanks in advance.
    Anamika

    The reason for the staging as Persisted is not just to join the tables... as you said, this is done in SQ itself. set persistent staging are used for a number of reasons... one (as I've mentioned before)... is when there is no effective timestamp valid on the source... in compating table the new changes with the tables of the "persistent" scene, you can assess the actual start/end dates. Some other reasons can also make a few indicators or calculations... for example, in human resources, an 'event' can be a number of types such as 'Change of use' or 'Change of age band'... the scene as Persisted tables can capture these flags to be used downstream. In other cases, we need to "filter" the records of the source of changes unnecesssary. In BI applications, we use a kind of "date last updated" to capture incremental changes... but in the OLTP system, we couldn't have some incremental changes... Suppose you have a PROJECT dimension, and it has a date of update... and this update date is changed when the project manager changes... and you don't care to see this change... to avoid unnecessary variations in the increment, so you can have a persistent Stadium to check if gradual change is necessary or not. Here are some of the many reasons to persist.

    If it helps, please mark as correct.

  • How to share a specific subfolder located under the share main parent folder?

    Hi all

    My concern is as below:

    say there are the users "User1" and "user2". main parent folder say "finance" and finance has 3 subfolders 'accounts', 'buy' and 'delivery '.

    now that I have shared a folder main parent of finance both users user1 and user2.

    but 1 2 records must be consulted by user1 (accounts and purchase) and 2 last folder must be consulted by user2 (purchase and deliveries).

    Is there a way to allow this when I share the folder main parent at the same time user?

    conclusion: How can I restrict access to subfolders under main shared folder to the user?

    waiting for the answer and appreciate the prompt and perfect answer for my query.

    Thank you

    Sandesh

    There is no as good as now the two folders are inheriting the same authority as their parent folder, so all of the permissions that you apply to the top folder will be applied automatically to those below him. When you customize the subfolder permissions, they will be is be inheriting the same permissions and will have their own.

  • Don t parent folder indicates the number of photos after upgrade to LR 6

    When I switch from LR 5 to 6 LR and convert a catalog there is a problem in the new catalogue.

    I have all my photos in a tree of the catalog with records year, month and date ex BILDER 2105-> April 2014-> 2015-04-05.

    In the new catalog, there are 0 photos in the folder parent Bilder 2015. There are also 0 photos in each issue of month, but in the records of the date I self images of each date.

    If I go in the folder parent Bilder 2015 I can read in the main window, "there are no pictures in the contract file. \n\n underfolder doesn't show.  Why this message?

    If I look I have the catalogue witch Bilder 2015 is also imported into LR 5 I have pictures of 2835.

    It would be every photos of all dates in each issue of month and pictures of every month - and the date in the folder parent Bilder 2015. But he has isn´t. Why?

    I tried to synchronise the month and record of the year: it Don t work.

    I tried to update the location of the folder. It doesn't work.

    Please check the screenshot and try to tell me how to solve this problem

    In the catalog I have pictures from 2010 to 2015. More 11 000 photos, so it's a big job to import it all back. I rather Don t want to do.

    The same problem is an another catalogwith photos from 2004 to 2009.

    My computer is iMac with OS 10.10.3 Yosemite at the end of 2013

    Thank you that I advance for all advice

    You can here how LR 6 shows 0 photos in folder BILDER 2015. (there are more than 2800 pictures in this folder)

    If you look in the folder date 2015-06-05 (5 June 2015) you can see the number of photos. Why is there 0 photos in the juni 2015 folder and the folder parent BILDER 2015?

    Skärmavbild 2015-06-09 kl. 23.11.23.png

    Her you can see what the main window shows when I I standing on the folder parent Bilder 2015

    (My system is Swedish)

    Skärmavbild 2015-06-09 kl. 23.44.29.png

    Hi Gunnar,

    Please click the library menu and choose the "Show pictures in subfolders" option.

    With this option checked, you should be able to see the total number of images in the parent folders.

    Kind regards

    Claes

  • Write data to the Source folder

    I'm trying to change part of a script that I use for work he entered into the source of a file folder, run on rather than to a specific folder (in this case, the office).  Can someone help me understand how to change and/or by adding the code below?

    create the reference to the csv file

    var file = new file (Folder.desktop + "/ Data.csv");

    Open the csv file in Add mode

    leader. Open ("e", "TEXT", "?");

    jump to the operating system in use on the line set

    ($.os.search(/windows/i)! = -1 ? file.lineFeed = 'windows': file.lineFeed = "macintosh";

    at the end of the file

    leader. Seek (0.2)

    write all the information required for the csv file

    Name of the document, Date1, database2, donnees3, etc.

    file.writeln (decodeURI (activeDocument.Name) + ","Data1","Data2","data3"," + data4. ") ToString()', '+ Data5.toString ());

    Close the csv file

    leader. Close();

    Now, I'm assuming that the part to change here is Folder.Desktop.  And I think I will need to change this option to be Folder.getFolderName.  getFolderName is a variable used in other code that checks the source directory of the current file.  This code of source directory, it's what I do not know how.  The script itself would have to do the check whenever it is running as I want him to be able to work with included subfolder of batch runs, make a new file in the subfolder when working with these files.  Anyone has any ideas, how to proceed?  Any help is very appreciated!

    dgolberg

    Edit: I forgot to mention; It would be nice if it can also store the name of the folder in which the source file is in a variable, so it can be written to the file as .csv.  This is not as important as the code mentioned above, but it would be helpful none-the-less, if possible.

    No problem, I was able to solve it on my own all the time.  I thought it would be much harder than it actually was. but has been able to do by simply changing

    var foldLoc = new File ("C:\\Temp\\");

    var file = new file (foldLoc + "/ Data.csv");

    TO

    var foldLoc = app.activeDocument.path;

    var file = new file (foldLoc + "/ Data.csv");

    and now, it records the data and the .csv file in the same folder as the currently open project.  Thanks for trying to help; It is much appreciated.

    dgolberg

  • Bridge loses the cache folder tree window when I rename the parent folder

    I managed to Activate the changing the code name of the parent folder containing some images (I put underscore before the name of the parent folder).

    When I did it by hand, the folder and subfolders that I navigate were visible on the window of the folder (left side)

    But I lost the navigation of files in the window on the left when I do exactly the same code.

    (...)

    var newPath = decodeURI (Path.parent) + "/ __" + name;
    var bt = new BridgeTalk();
    BT. Target = "bridge."
    as access bridge contemporary 1. Colocacao do _ 2. Label 3. Organização back ficheiros por tipo
    BT. Body = "app.document.thumbnail = Folder('"+newPath+"').fsName;";
    BT. Send (8);
    BT. Pump();

    (...)

    ... and the left navigation desapears...

    Y at - he's hiding even lose the problem? If I can recreate the last window navigation file some how with the code?

    I can't believe, I found this, but it works and it's simple.

    At the same time, I spent 2 years using bridge in the wrong way and if I had a dev Adobe Bridge here, I wouldn't be very happy.

    Why Adobe cannot just give a straight and direct answers as in this case?

    When I rename an app.document.presentationPath, I usually returned his file parent on refresh() then first place it.

    Then, I would go back to the new folder renamed.

    Problem:

    "Content" Panel was OK and refreshed but the 'Files' Panel was not: the last folder is renamed not was still there and I still need to close her file parent panel 'Folder', click F5 and reopen making this ghost file to disappear.

    The solution is simple and logical, but unfortunately it took 2 years for me to solve.

    I only needed to start dealing with the chain of node that contains a full bridge (uniform resource identifier) URI.

    For example:

    var origin = Folder (app.document.presentationPath);

    var renamedFolderName is "v_" + folder (app.document.presentationPath) .name;.

    App.document.Thumbnail = new thumbnail (New Folder (app.document.presentationPath) .parent); return to the parent folder

    //

    Record (origin) .rename (renamedFolderName); change of name

    App.document.thumbnail.Refresh (); update the parent folder

    App.document.Thumbnail = new thumbnail (new thumbnail (folder (folder (origin) .parent + "/" + renamedFolderName) .fsName) .uri); the uri is the node (URI of full-bridge)

    And... the 'Files' Panel has been updated correctly, and the ghost file missing!

  • Thunderbird 38.01, when I created a new e-mail account, it does not take account the preferences of archive and records everything in a single folder, although the old accounts work well.

    I installed Thunderbird on a system different and migrated with success profile, but earlier today that Gmail wasn't picking up messages correctly, so I ended up using the new feature of Thunderbird. (I'm also spent POP IMAP for Gmail). The newly created has no trouble picking up the messages from the server, but when I try to archive, he pours everything into one folder. My settings call for records of the year and the month. Each account other archive correctly. The newly created is not in a row.

    While poking around, I can have answered my own question. Thunderbird was not ignoring the parameters month and year for archiving completely. He was pouring newly archived messages from the Gmail account in a single folder. However, it was also archiving each of them in the old Gmail account archives folder and putting them in the correct subfolders it. It's strange, but it is achievable. I guess that Thunderbird has recognized the same email address used to set up the old account (which wasn't downloading mail more for some reason any) and the new. I changed the folder on the new configuration settings to point to the folder of old archives, and now Thunderbird archives only one copy of each message, as it should.

Maybe you are looking for

  • How to disable smart connector on iPad Pro?

    I have an iPad with smart Keyboard Pro 12.9. I would use the smart keyboard without the keyboard. In the past, I simply covered the smart connector with tape. Is it possible to disable the keyboard or the smart connector so that I could use the cover

  • Cannot find synchronization on the home page settings

    I'm following the instructions on how to synchronize:"Do this in Firefox on a computer that already has your sync account, put in place. 1. Click the Home button (or type about:home in the location bar) to bring up the default Firefox home page. 2. A

  • Want want 7645: factory reset 7645

    The fax is disabled.  I can't find how to turn it on again.  How to do a factory reset that I can configure the printer/fax/scanner again?

  • 15 - f024wm: Question of specifications

    Operating system • Windows 8.1 1 • processor • processor speed Intel® Pentium® N3530 Processor(2b) (2 g) 2.16 GHz with Turbo Boost technology up to 2.58GHz (7) 4 GB of memory • DDR3L SDRAM (1 DIMM) memory available slots • 2 graphic video • Intel® HD

  • Pavilion g6 HDD space very quickly

    Hi, I bought a laptop Pavilion g6 a month ago. I love this computer and get used to the new system. But the only thing that concerns me is that hard drive space is used very quickly. That's scared me, eventhoug I have a 500 GB hard drive, that is 390