Getting a parent folder WITHOUT IfsFileSystem

Hi,
We discovered that using the IfsFileSystem class drastically increases access times to iFS public objects. As a result we are considering phasing out use of this class in favour of other API calls, which appear to be faster.
Unfortunately we cannot find an easy way to get the parent folder of a document or folder. Please help, we definitely cannot use IfsFileSystem and need another way around.
It would be interesting to hear if anybody else has discovered problems with the IfsFileSystem class. Even just creating one instance seems to increase access times?!?
Thanks in advance,
Max

One way to do this is to use either of the following two methods on PublicObject:
public java.lang.String[] getAllFolderPaths()
public java.lang.String getAnyFolderPath()
The first will return every path to the PublicObject in question. (Remember that a PublicObject can have multiple parent folders, or none.) The second will return one of them.
Given a folder path, you can find a PublicObject. Here's some pseudocode (if you decide to use this, make sure to check for IfsExceptions and null values):
// get your folder and its path
LibrarySession sess = openLibrarySession();
Folder myFolder = getMyFolder();
String path = myFolder.getAnyFolderPath();
// get its parent folder
FolderPathResolver fpr =
new FolderPathResolver(sess);
PublicObject parent = fpr.findPublicObject(
path +
sess.getFolderPathDelimiter() +
FolderPathResolver.UP_DIRECTORY_TOKEN );
Another way to do this would be to search for all FolderPathRelationship objects whose RIGHTOBJECT attribute is your folder, and then get the LEFTOBJECT attribute from one of the FolderPathRelationship objects you find. The LEFTOBJECT would be the folder's parent.
Read the javadoc for more details.

Similar Messages

  • Getting path of parent folder of a file during a workflow execution

    How can I get the parent folder/directory of a file during the execution of a workflow? I cant't find any actions i Automator that will give me this.
    I want to make a general applicable automated workflow. The path can not be hardcoded in the workflow as different files and folders will be worked on each time the workflow is run.
    The input to the workflow is a file or list of files. I want to be able to retrieve the path of the parent folder of these files at runtime.
    Will I have to do this through AppleScript? If so, then how?
    (in case you have seen my first post on this; it seems I wasn't specific enough so people didn't understand what I want to do. Therefore this second post. Sorry for the iconvenience)

    Hi anilsen!
    If all selected files are within the same folder, it would be like this:
    For example:
    • Get Specified/Selected Finder Objects
    • Run AppleScript
    on run {input, parameters}
    tell application "Finder"
    set output to (container of item 1 of input) as alias
    end tell
    return output
    end run
    Spazek

  • Getting the path of the parent folder of a file?

    How can I get the parent folder/directory of a file? I cant't find any actions i Automator that will give me this.
    Will I have to do this through AppleScript? If so, then how?
    Anders

    Mine should work as a stand-alone applescript droplet (save it as an application) from Script Editor.
    This code will work in an Automator "Run Applescript" Action after a "Get Selected Finder Items" action:on run {input, parameters}
    set pathList to {}
    repeat with itemNum from 1 to count of input
    tell application "System Events"
    copy POSIX path of (container of (item itemNum of input)) to end of pathList
    end tell
    end repeat
    return pathList
    end run
    It returns an Applescript list of each path for all the selected finder items. I had to change (number of items of) to (count of) as it failed in the Automator workflow.
    If your workflow will only process one item at a time, then this will work in the workflow:on run {input, parameters}
    tell application "System Events"
    set thePath to POSIX path of (container of (item 1 of input))
    end tell
    return thePath
    end run

  • How to get the enclosing folder of an Application?

    Ok. re-visiting my Applescript to compare installed apps versus a list of predefined apps... here is my test code so far:
    set appsPath to (path to applications folder)
    tell application "Finder"
      set appList to name of every application file of entire contents of folder appsPath
    end tell
    set theApps to {"iMovie.app", "Microsoft Excel", "Microsoft Excel.app", "Adobe Acrobat 7.0 Professional.app", "Adobe After Effects CS4.app", "ColorEyes Display Pro.app", "Corel Painter X.app", "DiskTracker 2.3.2", "EPSON Scan.app", "Flash 8.app", "Product Ingest.app", "Product Tag.app", "Art Ingest.app", "TextWrangler.app", "Toast Titanium.app", "Suitcase Fusion 2.app", "Suitcase Fusion 3.app", "Fetch.app"}
    repeat with anApp in theApps
      set vers to version of (application anApp)
      -- get parent path of anApp!!!!
      if (parentFolder is equal to "Applications" or parentFolder is equal to "Utilities") then
      set parentFolder to ""
      end if
      display alert anApp & ": Version: " & vers & " " & parentFolder
    end repeat
    The only thing I'm stuck on is how to get the parent folder of anApp. Basically we use several versions of software here that are not easily identifiable by the version attribute. However their enclosing folder has all the versioning info I need (e.g.: MS Excel 04's vers would be 110113, but the enclosing folder is "Microsoft Office 2004", and some departments get Office 2008, Office 2011, etc., so I need a human-friendly way to get the right versions)
    I don't know if the "if" statement to check whether the parent is Applications or Utilities is correct as I haven't gotten that far in testing. I'm only interested in getting the parent of apps that have parent folder that is a sub-folder of Applications or Utilities.
    Basically what I am trying to do here is write a text file containing all departmental apps, homefolder sizes, relevant partition sizes, etc. and spit it out at the tech responsible for migrating a user to a new mac (display alert is just convenient for testing purposes). In the past we've had too many "missed" items in QC like wrong apps installed, or wrong versions, or data not copied over properly, etc. So this way they can run this on the old system beforehand and the new system after, line everything up and check off if it matches. This is just a snippet...
    TIA!
    Andrew

    Hi,
    Andrew Caldwell wrote:
    Is there a way to invoke these without the script opening each one?
    You must use the bundle identifier instead of the name
    Here a example :
    set theApps to {"com.microsoft.excel", "com.adobe.Acrobat.Pro", "com.barebones.textwrangler", "com.roxio.Toast", "com.fetchsoftworks.Fetch"}
    repeat with anApp in theApps
           tell application "Finder" to tell (application file id anApp)
                  set vers to version
                  set parentFolder to name of its container
           end tell
           if parentFolder is in {"Applications", "Utilities"} then set parentFolder to ""
           display alert anApp & ": Version: " & vers & " " & parentFolder
    end repeat

  • Update Approval Status of parent Folder based on approval status of folder items

    Hi,
    I have a SharePoint list which contains folders. Each folder contains one or more items. I wish to update the folder approval status to "Approved" when all the items inside the folder are approved.
    The workflow should trigger whenever the approval status of one or more items inside the folder is changed and is expected to check the approval status of all other items inside the folder. If all the items are approved the folder's approval status should
    be set to "approved".
    I am designing the workflow via SharePoint Designer 2013 and using SharePoint Online 2013 .
    Thanks a lot in advance.

    Hi,
    According to your post, my understanding is that you wanted to update Approval Status of parent Folder based on approval status of folder items.
    Per my knowledge,
    there is no out of the box way to accomplish this with SharePoint.
    Though we can loop the
    folder items to set the content approval status, we can not get the parent folder and then set the content approval status.
    As a workaround, I recoemend to create event reciever to get set the content approval status of the folder items.
    For more information, you can refer to:
    How to: Create a remote event receiver
    How to create a simple Remote Event Receiver for a Custom List in Office 365 SharePoint 2013 site
    Regarding SharePoint Online, for quick and accurate answers to your questions, it is recommended that you initial a new thread in Office 365 forum.
    Office 365 forum
    http://community.office365.com/en-us/forums/default.aspx
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • Getting back to folder

    When I'm in a msg, the folder doesn't appear at top (it used to) & can't get back into folder without scrolling thru all emails at the top, quite tedious. It didn't used to do this - I have to scroll to the left to finally find the folder I want to be in.

    Stop leaving all the tabs open after you read a message.
    Get in the habit of closing tabs after you read your messages.
    To get out of your situation now, right click one of the tabs and select Close Other Tabs. Then use the x on the last tab to close it.
    Better yet stop opening tabs to read your mail. Turn on the Message Pane by pressing F8 and read your mail there.

  • How to get path or parent folder

    Hello
    I'm overriding method extendedPreAddRelationship on class S_Relationship.
    My purpose is to check whether the document is being put in the correct path or not.
    I can get folder name and document name using following code:
    AttributeValue av;
    av = def.getAttribute(Relationship.LEFTOBJECT_ATTRIBUTE);
    S_PublicObject folder = (S_PublicObject) av.getPublicObject(this.getSession());
    av = def.getAttribute(Relationship.RIGHTOBJECT_ATTRIBUTE);
    S_PublicObject document = (S_PublicObject) av.getPublicObject(this.getSession());
    What I need is the whole path (or at least the parent folder). Can I get path somehow? Or should I try to search parent folders?
    Jaska

    My purpose is to check whether the document is being put in the correct path or not.Hi,
    I had a similar problem - I needed to compare the path of current folder with path from parameters. Because I wasn't be able to get the path of folder, I did it in reverse way, comparing the folders. To get folder from path I needed getRootFolder method, which wasn't in server-side classes, so I extend S_TieFolder class:
    * Analogy of LibrarySession.getRootFolder().
    public static S_Folder getRootFolder(S_LibrarySession session)
    throws IfsException
    S_Folder folder = null;
    try
    Collection c = session.getValueDefaultCollection();
    S_ValueDefault vd = (S_ValueDefault)c.getItems("RootFolder");
    AttributeValue av = vd.getPropertyValue();
    folder = (S_Folder)av.getPublicObject(session);
    catch(Exception e)
    throw new IfsException(21020, e, session);
    return folder;
    In extendedPreAddItem method of S_TieFolder:
    S_Folder paramFolder = (S_Folder)getRootFolder(session).findPublicObjectByPath(folderPath);
    if( this==paramFolder ) ...
    Radek
    [email protected]

  • How do I delete a folder without moving focus to parent folder?

    I posted this question in the Apple support forum and have concluded it is specific to Adobe Bridge.
    Is it possible to delete a folder and keep the focus in place instead of moving the focus to the parent folder?
    I sort my photos according to year then date as follows:
    2010
    2011
    2012
         01022012
         01032012
         01152012
         01252012
         02102012
         12202012
         12242012
         12302012
    2013
    The list of subfolders inside each year can be quite long. In order to manage my files/folder, I need to delete SUBFOLDERS (not just files) from the list. The problem is that when a subfolder is deleted, the focus moves to the parent folder, the year, instead of keeping its position and rolling the list of subfolders up.
    Any recommendations will be appreciated. I am hoping there is a short cut key that I can use to avoid the problem

    Any recommendations will be appreciated. I am hoping there is a short cut key that I can use to avoid the problem
    I see what you mean but is seems as designed to always focus on the parent folder when deleting a subfolder while Finder has the option to just point to a folder and with right mouse click menu choose trash without the OS focussing on the selected folder.
    Would be a nice Feature Request I would think.
    Meanwhile you might try your luck in the Bridge Scripting Forum, the folks around there have found the most impossible solutions so maybe they know a solution for you?
    http://forums.adobe.com/community/bridge/bridge_scripting

  • How do I create a new parent folder in my LR3.6 catalog?

    I am trying to follow the LR Queen's advice for simplifying my existing catalog, in order to move it to a new computer and to then upgrade to LR4. When I right  click on a top folder, and click "Add parent folder", I do not get a new visible parent folder, and my existing folder disappears from view. Help!

    The <Add parent Folder> feature is not for creating parent folders but for making parent folders visible, in case they are not visible.
    To crate a parent folder just create a new folder by clicking on the + sign in the header of the Folders Panel, just at the right edge of the black bar with the word "Folders".
    Then drag-and-drop the other folder(s) on top of this newly created folder.

  • How do I make this Applescript dig trough All subfolders of the Parent folder?

    Im using a script to batch convert a bunch of m4v´s to a set framesize, and im using this script with automator as a Finder Service. However, if theres a folder inside my parentfolder (Omkodning) with its own folder, it doesn't look inside that folder. Since my heriarchi is deeper then just one folder, this script isn't working all the way. How do I change it to search the entire content of my parent folder (Omkodning), subfolders and the missing part, sub-subfolders ?
    --on adding folder items to this_folder after receiving these_items with timeout of (720 * 60) seconds tell application "Finder" --Get all m4v files that have no label color yet, meaning it hasn’t been processed set allFiles to every file of entire contents of ("FIRSTHD:Users:jerry:Desktop:Omkodning" as alias) whose ((name extension is "m4v") and label index is 0) --Repeat for all files in above folder repeat with i from 1 to number of items in allFiles set currentFile to (item i of allFiles) try --Set to gray label to indicate processing set label index of currentFile to 7 --Assemble original
    and new file paths set origFilepath to quoted form of POSIX path of (currentFile as alias) set newFilepath to (characters 1 thru -5 of origFilepath as string) & "mp4'" --Start the conversion set shellCommand to "nice /Applications/HandBrakeCLI -i " & origFilepath & " -o " & newFilepath & " -e ffmpeg4 -b 1200 -a 1 -E faac -B 160 -R 29.97 -f mp4 –crop 0:0:0:0 crf 24 -w 640 -l 480 ;" do shell script shellCommand --Set the label to green in case file deletion fails set label index of currentFile to 6 --Remove the old file set shellCommand to "rm -f " & origFilepath do shell script shellCommand on error errmsg --Set the label to red to indicate failure set label index of currentFile to 2 end try end repeat end tell end timeout --end adding folder items to
    Message was edited by: Jayboys

    Telling the Finder to get the entire contents of a folder will also get the contents of subfolders (unless they are aliases).
    Note that the attached folder and the items that were added are passed to the adding folder items to handler in the this_folder and these_items parameters.

  • How can I add songs to itunes music folder without them being duplicated within the folder (not on my hard drive)?

    I have music files all over the place and want to put them all in itunes with no duplicates and get rid of all the rest. how can I do that? Some of my playlists are missing songs. I would like to move the playlist back to itunes from my ipod without having to put the songs in my media folder yet again! I have wasted so much time fooling with this. Really what I am trying to get at through all of this is to run the songs on the ipod through ivolume so they play equally.
    Can anyone make sense of this for me?

    It sounds like you have a few different problems.
    To find all your music, try using a spotlight search. Type "kind:music" in the spotlight search (the magnifying glass in the far upper-right corner ) then choose "show all in finder". You'll end up with a window that shows all your music files, regardless of where they are on your hard drive. But don't move any files, because that may confuse iTunes (it won't be able to find files that you move, because - d'oh! - you moved them and now they're not where iTunes left them. That's usually how people end up in the kind of situation that you're in.)
    If you want to let iTunes organize your music for you, make sure those options are turned on in the iTunes preferences (in the "advanced" section), then go to the "File" menu, choose "Library" and then choose "Organize library". That will put all your music in the iTunes Library folder (but leave copies of the originals wherever they were, all over your hard drive).
    To find duplicates in your iTunes Library, choose "display duplicates" (or hold down the option key and it changes to "display exact duplicates" which might help in some cases). You'll still have to manually go through them to delete one of each duplicate.
    Now you can start combining those three techniques - if you consolidate your music and let iTunes copy everything into the music folder, you'll know that iTunes safely has a copy of all your music in the iTunes Library folder. So you can do the spotlight search, and delete any duplicate files that are not in your iTunes library folder. Anything that's left over (that is, it's not a duplicate and it's not in the itunes music folder), you'll need to add to iTunes (try using the "automatically add to itunes" folder - spotlight search to find it -  anything you drop in there will get added to iTunes without leaving a duplicate file). Then you can use the itunes "duplicates" feature to find the duplicates in iTunes and fix those.

  • Automator and applescript to copy new files in a folder with same name as parent folder

    I have an iMac with a pictures folder (Finder folder) containing several subfolders with pictures. As per now, all these subfolders are imported into an iPhoto library (and the structure of the Finder pictures folder is thus maintained: The iPhoto events are named the same as the Finder subfolder). I.e. I have not created any albums in iPhoto.
    I have also set up a workflow, where new iPhone photos are automatically being synced to specified Finder folders within the iMac pictures folder. So what I want to do is to make a workflow to import potential new photos from week to week into the existing iPhoto structure. I know iPhoto has this Autoimport folder, so this one is unpacked and "mapped". So, this is what I´m hoping to do:
    Automator (iCal - want to do this on a weekly basis):
    - Get specified Finder items -- set to target folder = iMac pictures folder
    - Get folder content (with subfolders)
    - Filter Finder items
         - Items from the last 7 days (which then would be any new files created last week)
    - Applescript/shell script loop(?)
         - Get folder name for each file´s (from previous step) parent folder
         - Create new folder with same name as the file´s parent folder (if not already existing) under the iPhoto Autoimport folder
         - Copy the given file into the folder from above
    - Run iPhoto application (Automator task), which then should just auto import the new photos according to the Finder folder structure
    Whith the workflow above, I aim to maintain the existing iPhoto structure, and just import new photos into the existing structure. Creating folder names under the Autoimport, similar as the existing Finder folder names / iPhoto events should make it possible to have the new files imported under the existing event, right?

    Anyone?
    I have now switched to Aperture (from iPhoto) due to Aperture´s capability to handle Finder folder structure, and due to the possibility of having the pictures within Aperture as referenced files to the pictures within the Finder folders (i.e. possibility to delete pictures from both library and Finder folder at the same time).
    So I have a superior Finder folder called "Album". Within "Album" I have several subfolders (sub albums) containing pictures. The "Album" folder with subfolders are imported into Aperture as "Projects and albums", and the pictures are uploaded within the Aperture structure as referenced files. So for now the Aperture structure is more or less a direct mirror of the Finder folder structure, whereas "Album" is the project.
    And this is my current workflow in Automator, but I´m searching help with my Applescript:
    - Get specified Finder items (target folder = the superior Finder folder "Album")
    - Get Folder content
    - Filter Finder items (to look for potential new files to import into Aperture)
         - Kind is not folder
         - Date created last X days
    The output files from this task enters an Applescript
    on run {input, parameters}
           repeat with f in input (**Loop**)
                   tell application "Finder"
                          set fileName to name of (f)
                          set parentFolder to name of container of (f)
                          tell application "Aperture"
                                 tell library 1
                                        tell project "Album"
                                               if (exists album parentFolder) then
                                                 ** I then would like to check if fileName already exist within the existing album**
                                                 ** If not existing, I would like to import file f into the existing album as a referenced file**              
                                               else if not (exists album parentFolder) then
                                                       make new album with properties {name:parentFolder}
                                                ** I then would like to import file f into the new album as a referenced file**
                                               end if
                                        end tell
                                 end tell
                          end tell
                   end tell
           end repeat
    end run

  • I cannot install an application in the Applications folder without removing it first

    For some time now, I have noticed that I cannot install an application into the application folder without first removing it from the folder. If I try to install it by dragging the icon to the application folder, I get a warning that the application can't be moved because the folder "Applications" can't be modified. I click on authenticate and enter the root username and password. I am warned that the application already exists in the location. I am asked if I want to replace the item. The options presented are "Keep both files", "Stop", and "Replace". I choose "Replace". I am then prompted for an administrator's name and password. I enter "root" and the root password. I then get this lengthy error message:
    The operation can’t be completed because some items had to be skipped. For each item, choose File > Get Info, make sure “Locked” is deselected, and then check the Sharing & Permissions section. When you are sure the items are unlocked and not designated as Read Only or No Access, try again.
    I checked the permissions and "locked" was already deselected. The permissions grant my regular user read and write permissions, "staff" read-only, and "everyone" read-only. If I add "admin" with read and write permissions, nothing changes, i.e. I get the same error. If I try to enter my user credentials, they are rejected. My user is not an admin user. Previously, when I enterered the root username and password, the operation would complete successfully.
    Now if I first remove the application from the Applications folder, then drag the application to the folder, I am prompted for an administrator's name and password. When I enter it, the application is copied successfully.
    I have tried fixing file and directory permissions from the disk utility, but that doesn't fix the problem.

    When you say, "locked" was already deselected, I take it that you mean the small icon at the bottom right of the Get Info window displayed an open lock picture.
    Have you tried locking it, then unlocking it again?  I expect you will be able to lock it by simply clicking on the open lock icon, but to unlock it again you will need to supply an Admin password.
    Odd that DU didn't fix it.  That would be my first thought also.  Suggest trying it again, if you haven't already done so.
    Speaking of DU, have you verified your HDD?
    My Applications folder permissions read -
    System          Read and Write
    admin           Read and Write
    everyone      Read only
    Message was edited by: El Deanio

  • How can I exit a collection window and return to parent folder?

    I would "love" to have a place where I could ask the simple questions like this that come up and seem so simple to those who know, they don't mention the details I need like how to close a working collection window and move back to the parent folder of that collection.
    I've been stuck for two days (it happened before) in a window (library module) with a collection of 8 photos.  I cannot find any way to close that window or go back to the library collection of hundreds of photos from which it was chosen.  It's very frustrating to be stuck in this window, perhaps forever?
    How do I close these windows.  Isn't there a "back" button?
    I started in Photoshop 3, then 5, then 7, then stopped renewing due to difficulty learning PS until the Adobe CC became available with the many tutorials.  It was great learning how to make a collection, but the tutorials didn't mention how to get back to the main folder where the collection was chosen.  So again, I"m stuck at an even lower level of functioning than with photoshop alone.
    I had to copy a photo and open it separatly in Photoshop just to be able to work on it.  Yesterday I could "edit in Photoshop cc" with right click.  Today, it won't even do that.
    I suspect now two things are working to prevent me from working properly on my photos but have no clue how to fix this.

    In the library module, left-hand panel, there are different sections or tabs. Collections is one of those tabs near the bottom out that panel. If you scroll up in that panel you should see other sections, one of which is "Folders". If that isn't showing, then right-click on the Collections section heading and make sure there are checkmarks in the sections that you want to have displayed. To return to the folder you need to go to the folders section and find the folder in your list.
    Another way to return to a folder is to click in the area in this illustration:
    Doing so will present a list of folders that you have recently been inside of. You can click on one of those folders and return directly to it.

  • Is there a way to drag, copy, export parent folder shown in light room with multiple child folders to smug mug?

    I have a parent folder called FHS Dance Competition, that contains several folders (one per team).   I have this structure in my computer hard drive which I uploaded with one click to light room.    In the past I've had to manually create each folder, copy the name, drag in the photos, etc.  Very time consuming.    Is there a way to drag or copy, or export the parent folder shown in light room to the lower portion of the screen where the smug mug piece is?

    Ron,
    I too need to make "Real Copies" of images and hate doing anything directly from the OS because of the chance that my LR catalog gets out of Sync with the actual images on the computer.  So I make the copies inside LR with an export routine and then move the copies inside of LR with the normal drag and drop.  Once the export preset is created it can be executed from the Library Grid by right-clicking on the image (or selected images) to make the copies.  My settings are as follows in case you are interested:
    This is the first time I have posted an image before and I am not sure if you will be able to read it or not.  The contents from the export preset in the image above are as follows if that helps:
    s = {
    id = "3AF0E3D2-BC6A-4D53-A7BE-B7A6C4D673AC",
    internalName = "Make Real File Copy",
    title = "Real File Copy",
    type = "Export",
    value = {
    collisionHandling = "overwrite",
    exportFilters = {
    exportServiceProvider = "com.adobe.ag.export.file",
    exportServiceProviderTitle = "Hard Drive",
    export_colorSpace = "sRGB",
    export_destinationPathSuffix = "",
    export_destinationType = "sourceFolder",
    export_useSubfolder = false,
    extensionCase = "lowercase",
    format = "ORIGINAL",
    includeVideoFiles = false,
    initialSequenceNumber = 1,
    jpeg_limitSize = 100,
    jpeg_useLimitSize = false,
    metadata_keywordOptions = "lightroomHierarchical",
    minimizeEmbeddedMetadata = false,
    outputSharpeningLevel = 2,
    outputSharpeningMedia = "matte",
    outputSharpeningOn = false,
    reimportExportedPhoto = true,
    reimport_stackWithOriginal = true,
    reimport_stackWithOriginal_position = "below",
    renamingTokensOn = true,
    size_doConstrain = false,
    size_resolution = 300,
    size_resolutionUnits = "inch",
    tokenCustomString = "RC",
    tokens = "{{image_name}}_{{custom_token}}",
    tokensArchivedToString2 = "{{image_name}}_{{custom_token}}",
    useWatermark = false,
    watermarking_id = "<simpleCopyrightWatermark>",
    version = 0,
    Let me know if you have any questions.
    Jeff

Maybe you are looking for

  • ITunes Crashes and/or Can't see my files when iTunes is open

    Any and all help is very much appreciated! I recently updated my operating system to Snow Leopard (10.6.3) and my iTunes to 10.0 and now whenever I open iTunes it either automatically crashes or I can't see any of my files in the iTunes window whethe

  • Problem with Cross Disolve

    Several of my cross disolves between photos are "jittery."  The best way I can describe it is to say that the disolve starts then jumps back to the beginning of the transition and then completes the disolve into the next photo.  I have tried everythi

  • Call sql file from plsql

    Hello, I am stuck for many days in this issue. Hope someone helps me out. I am using Oracle 11. I am writing an utility of Purging the data from the database base on certain criteria. We don't have physical(actual) partitions present on our system(si

  • Pie chart wedge itemRollOver

    I need help with creating a custom pie chart class that will allow a function call on pie wedge rollOver. Right now I can get a function call on rollover using itemRollOver using; import mx.charts.events.ChartItemEvent; -in the <mx:PieChart>; itemRol

  • Byte Serving for pdf

    Hello, I make a servlet that sends pdf with byte serving. I have no problems with Windows Clients but with Macintosh clients (Explorer, Netscape 7 works) acrobat waits like expecting some data. Any idea if I must use some special header or do you hav