I want to track the frame number displayed in the camera and match it with the ID of the photo in Photoshop Elements

Since I may take photos of people and many in a row, I want to log the camera's frame number and have Photoshop Elements import that number or at least show it in the photo properties.  Any suggestions, please.  Thanks  I am using a Fuji Finepix HS 30 EXP digital camera.

The Sync command is on the Summary Page at the bottom right side:
in iTunes click the iPod icon at the top, then click the iPod in the left panel, it displays the Summary page.

Similar Messages

  • How to get the frame number of a label in a different scene.

    I am completely stumped on this.
    I have my project setup as the gameplay in one scene, and another scene for the outcome.
    The outcome scene, say called, GameDone, has 2 frames. The first frame for win, labeled it WON, the second frame for lost, labeled LOST.
    I could do the very simple thing and just gotoAndStop("GameDone", 1); but thats a bad practice, I believe.
    Ive gone through google and found the closest thing needing a MovieClip. I could not figure out what to give it? A random MovieClip? a new one? one from the next scene? one from the current scene?
    import flash.display.Scene; 
    for (var i:uint = 0; i < mc1.scenes.length; i++) {
         var scene:Scene = mc1.scenes[i];
         trace("scene " + scene.name + ": " + scene.numFrames + " frames");
    That was an adobe sample.
    So how could I, in the gameplay scene, the frame number for either WON or LOST in the "GameDone" scene?
    Thanks.

    Try doing the simple thing that you think is a bad practice.  I don't know why you think it is.  The only problem with it is that you appear to have it backwards for AS3... in AS3 it is gotoAndStop(frame,scene);
    Why don't you use the frame labels instead of frame numbers?  gotoAndStop("Won", "GameDone");

  • How can I include the Frame Number  when using "Export Frame"?

    Im using the button at the bottom right of the Playback Control Panel called "Export Frame".  This does exactly what I need but I have a lot of frames that need single frame exporting. How can I get the file name to automaticly include the frame number at the end of the file name? 
    For example, instead of it displaying "Sequence 01.Still001"  by default.  I would like for it to display "Sequence 01_0001"   Letting me know that is frame 0001.
    This is possible, correct?

    Well what about in the export option using CTRL + M?  I saw a coworker using this method in an older version of Premiere, but we can't enable it on CS5.5.  Being able to export a single frame as a bmp that has the frame number at the end of the file name.
    Example:
    Output Name: Sequence 01_0001.bmp
    Under Video Basic Setting is:
    Export As Sequence UNCHECKED
    Field Type: Progressive
    Frame number still doesn't show at end of file name.  What are we missing?

  • Find the frame number of a label?

    Is it possible to find out the first frame of a label without going there then put it in a variable in AS2 or AS3?
    Thanks for the help,

    I actually had the same question. I've worked out a way of doing it in AS3.
    So first you can get all the frame labels on the MovieClip in question by using the currentLabels property (http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/MovieClip.html). Then going through the array you can find your label as a FrameLabel object which has a frame property that will tell you the frame number (http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/FrameLabel.html).
    Hope that helps

  • How to adjust the frame number in this script?

    I have a timeline slider part to my animation which starts at frame 1089 and ends at frame 1173, I have a script which allows me to do this and works perfectly when I build it in a new flash file starting at frame 1, I need this code to work for the animation I have built at frame 1089, I dont know which number "1's" in the script relate to the frame number, I have tried changing them all to 1089 but that doesn't work! at the moment as soon as I click on this it jumps back to frame number 1 - which I believe as the code stands is exactly what it should be doing. Please could anyone edit this code so that it realises which frames I want it to work in?  Thank you in anticipation, Ellie x
    var numOfFrames:Number = 84; // number of frames in the timeline to scrub
    var widthOfScrubber:Number = 500; // width in pixels of scrubber bar
    var widthOfScrubberSlider:Number = 25; // width in pixels of scrubber slider
    var widthOfScrub:Number = widthOfScrubber - widthOfScrubberSlider;
    var stepValue:Number = Math.round(widthOfScrub / numOfFrames);
    var scrubX:Object = scrubber.scrubberSlider;
    var isPlaying:Number = 1;
    var home = this;
    scrubX._x = 0;
    onEnterFrame = function() {
    if (scrubber.activeNow == 1 && isPlaying == 0) {
    var frameNum = Math.round(scrubX._x / stepValue);
    gotoAndStop(frameNum);
    } else if (scrubber.activeNow == 1 && isPlaying == 1) {
    var frameNum = Math.round(scrubX._x / stepValue);
    gotoAndPlay(frameNum);
    } else if (scrubX._x <= widthOfScrub && scrubber.activeNow != 1 && isPlaying == 1) {
    scrubX._x = scrubX._x + stepValue;
    } else {
    isPlaying = 0;
    playBTN.onRelease = function() {
    scrubber.activeNow = 0;
    isPlaying = 1;
    home.play();
    pauseBTN.onRelease = function() {
    scrubber.activeNow = 0;
    isPlaying = 0;
    home.stop();

    try:
    var numOfFrames:Number = 84; // number of frames in the timeline to scrub
    var widthOfScrubber:Number = 500; // width in pixels of scrubber bar
    var widthOfScrubberSlider:Number = 25; // width in pixels of scrubber slider
    var startFrame:Number = 1089
    var widthOfScrub:Number = widthOfScrubber - widthOfScrubberSlider;
    var stepValue:Number = Math.round(widthOfScrub / numOfFrames);
    var scrubX:Object = scrubber.scrubberSlider;
    var isPlaying:Number = 1;
    var home = this;
    scrubX._x = 0;
    onEnterFrame = function() {
    if (scrubber.activeNow == 1 && isPlaying == 0) {
    var frameNum = startFrame-1+Math.round(scrubX._x / stepValue);
    gotoAndStop(frameNum);
    } else if (scrubber.activeNow == 1 && isPlaying == 1) {
    var frameNum = Math.round(scrubX._x / stepValue);
    gotoAndPlay(frameNum);
    } else if (scrubX._x <= widthOfScrub && scrubber.activeNow != 1 && isPlaying == 1) {
    scrubX._x = scrubX._x + stepValue;
    } else {
    isPlaying = 0;
    playBTN.onRelease = function() {
    scrubber.activeNow = 0;
    isPlaying = 1;
    home.play();
    pauseBTN.onRelease = function() {
    scrubber.activeNow = 0;
    isPlaying = 0;
    home.stop();

  • I have photoshop installed on this PC.  Itw as installed by my school and now I want to transfer it to my new MAC.  I have the serial number so how do I do this?  Cand I just copy the program file across?

    It was installed by my school and now I want to transfer it to my new MAC.  I have the serial number so how do I do this?  Cand I just copy the program file across?

    if that's ps cs6, Order product | Platform, language swap

  • How can I find the serial number for my stolen iPad that's associated with my apple ID ?

    How can I find the serial number for my stolen iPad that's associated with my apple ID ?

    If you registered it with Apple check your registered items at Your Support Profile for Registered Purchases. Also, see iOS- How to find the serial number, IMEI, MEID, CDN, and ICCID number.
    What To Do If Your iDevice Is Lost Or Stolen
    If you activated Find My Phone before it was lost or stolen, you can track it only if Wi-Fi is enabled on the device. What you cannot do is track your device using a serial number or other identifying number. You cannot expect Apple or anyone else to find your device for you. You cannot recover your loss unless you insure your device for such loss. It is not covered by your warranty.
    If your iPhone, iPod, iPod Touch, or iPad is lost or stolen what do you do? There are things you should have done in advance - before you lost it or it was stolen - and some things to do after the fact. Here are some suggestions:
    This link, Re: Help! I misplaced / lost my iPhone 5 today morning in delta Chelsea hotel downtown an I am not able to track it. Please help!, has some good advice regarding your options when your iDevice is lost or stolen.
      1. Reporting a lost or stolen Apple product
      2. Find my lost iPod Touch
      3. AT&T. Sprint, and Verizon can block stolen phones/tablets
      4. What-To-Do-When-Iphone-Is-Stolen
      5. What to do if your iOS device is lost or stolen
      6. 6 Ways to Track and Recover Your Lost/Stolen iPhone
      7. Find My iPhone
      8. Report Stolen iPad | Stolen Lost Found Online
    It pays to be proactive by following the advice on using Find My Phone before you lose your device:
      1. Find My iPhone
      2. Setup your iDevice on iCloud
      3. OS X Lion/Mountain Lion- About Find My Mac
      4. How To Set Up Free Find Your iPhone (Even on Unsupported Devices)

  • TS1398 I have the ipad retina display version - I have a BIG issue with this when out and about that on about 50% of the time will it see my HTC mobile WiFi hotspot - rebooting either, or both devices doesn't cure the problem it drives me MAD!!!!

    I have the ipad retina display version - I have a BIG issue with this when out and about, that only about 50% of the time will it see my HTC mobile WiFi hotspot - rebooting either, or both devices doesn't cure the problem it drives me MAD!!!!
    The HTC hotspot works fine with everything else I connect to it.
    Also - ipad will not connect to my HTC via bluetooth. Again, I can connect to everything else with my HTC other than my ipad.
    I have to say this is my first venture into Apple products and I have always wanted to get away from my windows based laptop to get a MacBook, the problems I have had (flash player etc) & continue to have (as above) are putting me right off swapping over. I HATE technology that doesn't work and my ipad has been hard work!

    I stated my ipad as being an ipad2, but I now think it is a 3??? It was new Jan this year and is the 64gb retina display version.
    I really would like to get to the bottom on this problem wit mobile hotspots as it is sitting on my desk next to me now and I cannot get it to connect to my HTC mobile hotspot!!!! It might be taking a flying lesson soon at this rate!!! Grrrrrrr...........

  • My subs look good in dvdsp but when I burn an example the subs are too high in the frame.All my offsets are 0 and the alignment button is bottom.

    My subs look good in dvdsp but when I burn an example the subs are too high in the frame.All my offsets are 0 and the alignment button is bottom.
    Any thoughts

    Try creating a new project, and bring in a short clip and one or 2 subtitles and see if you see the same behavior.  If you don't,  something's probably wonky in the project.  If the sample behavior has the same problem, if you want to send it to me with the associated media, I'll take a quick look.
    My email is [email protected]

  • I am trying to update a number of items which the software check brings up:      It runs and says it is installing but at the end I get this error message:    The update could not be expanded, and may have been corrupted during downloading. The update wil

    Hi,
    I am trying to update a number of items which the software check brings up:
    It runs and says it is installing but at the end I get this error message:
    BUT then I ge tthis:
    Can anyone help me to enable the software to update?
    Thanks

    Thanks.  Something isn't right as I just tried to download the iphoto update - it said it had competed the download but then when I clicked on the download item I get this:
    Think will have to take it into the store.....
    thanks for replying.

  • How do I do to use the same appleid on all my devices, I want to use the last one I have on my Ipad mini, do I deleta the one I have on my Iphone and reeinstall it with the Id I use on my Ipad..?

    how do I do to use the same appleid on all my devices, I want to use the last one I have on my Ipad mini, do I deleta the one I have on my Iphone and reeinstall it with the Id I use on my Ipad..?

    Hi john,
    Yes, you would sign out of iTunes & App Store: Settings>iTunes & App Store, click on the Apple ID, click on Sign Out. Then sign back on with the new Apple ID. Also, if you have an iCloud account with the other Apple ID, you would delete that iCloud account, and then sign on with your new ID: Settings>iCloud>Delete Account.
    Cheers,
    GB

  • I have a monthly subscription for PS and Lightroom. I upgraded to 5.7 this morning but not through CC as it wouldn't download. Now when Lightroom opens, it is asking whether I want to but or have a free 30 day trial and won't progress any further into the

    Help please? My first time on this forum so apologies if I boob in some way!
    I have a monthly subscription for PS and Lightroom.
    When I opened Lightroom this morning, it told me an upgrade was available through CC. I probably did something wrong, butI couldn't get it to download.
    I came on the forum and read a couple of discussions on your pages and found a reply that posted links to the pages where Lightroom 5.7 could be downloaded.
    I clicked the link and downloaded the update fine.
    However, now when Lightroom opens, it is asking whether I want to BUY or have a free 30 day trial and won't progress any further into the app.
    My CC icon reveals that my software is up to date but I can't get past this register screen, without selecting BUY or FREE 30 TRIAL .
    can anyone help please?

    Help please? My first time on this forum so apologies if I boob in some way!
    I have a monthly subscription for PS and Lightroom.
    When I opened Lightroom this morning, it told me an upgrade was available through CC. I probably did something wrong, butI couldn't get it to download.
    I came on the forum and read a couple of discussions on your pages and found a reply that posted links to the pages where Lightroom 5.7 could be downloaded.
    I clicked the link and downloaded the update fine.
    However, now when Lightroom opens, it is asking whether I want to BUY or have a free 30 day trial and won't progress any further into the app.
    My CC icon reveals that my software is up to date but I can't get past this register screen, without selecting BUY or FREE 30 TRIAL .
    can anyone help please?

  • I have just transferred my application file from an Imac to an identical Imac, both running OS 10.9.5. When I attempt to open Photoshop 6, I am prompted for the serial number. I enter the serial number provided by Adobe, which I have confirmed with my "pr

    I have just transferred my entire application file from an Imac to an identical Imac, both running OS 10.9.5. Everything works fine, excepting that when I attempt to open Photoshop 6, I am prompted for the serial number. I enter the serial number provided by Adobe, which I have confirmed with my "previous purchase" records kept by Adobe. It is demanding a "qualifying product", all of which is contained in the complete files I transferred. Why can't Adobe recognise my valid serial number for Photoshop 6?

    I have just transferred my entire application file from an Imac to an identical Imac,
    Say what?
    Please use the proper installer.
    Are you really talking about Photoshop 6 or about Photoshop CS6?

  • Ipod 4 is displaying blue frozen screen and black screen with apple logo. I try to turn power off but as soon as it goes out it automatically reboots. Plugged it into the usb port on my mac and it doesnt do anything. It doesnt appear in Itunes. Help?

    ipod 4 is displaying blue frozen screen and black screen with apple logo. I try to turn power off but as soon as it goes out it automatically reboots. Plugged it into the usb port on my mac and it doesnt do anything. It doesnt appear in Itunes. Help?

    Let the battery fully darain. After charging for an least an hour try a reset and restore. Use Recovery mode if necessary.
    If not successful, then time for an appointment at the Genius Bar of an Apple store.

  • I got iPhoto '11, version 9.2.3 and want to edit photos using Photoshop elements 10. I have put P'shop 10 as the preferred editor... but when I click on the photo in iPhoto the Adobe p'shop 10 program opens BUT the picture does not open for editing. Wha.

    I got iPhoto '11, version 9.2.3 and want to edit photos using Photoshop elements 10. I have put P'shop 10 as the preferred editor... but when I click on the photo in iPhoto the Adobe p'shop 10 program opens BUT the picture does not open for editing. What the heck... I did fine with the old iPhoto and "Shop elements 6... .

    Adobe now hides the editor - what looks like it is not - you want the editor hidden in the support folder - see http://forums.adobe.com/message/3955558#3955558 for details
    LN

Maybe you are looking for

  • XML transformation using XSLT and Resin 2.1.11

    I have the following problem: I'm using a servlet to transform the xml files in my web-app to html. The servlet caches the ones transformed results. For each request it checks if there exists a cached result and if the result is based on the most act

  • Grand Total sorting in Pivot Table

    Hi Everyone, I have 4cols taken in row and one in col with measure and i now i calculated the grand total and i want to sort the values in grand total., could anyone pls help me

  • Add segment to inbound idoc problem

    Hi , I want to insert a segment in the middle of the segements inside a inbound idoc processing module.The problem is i am able to pass the segmnet name and data but i don't now what should be populated to the segment number (SEGNUM). Its value is co

  • I've used windows to format my muvo nx. How do I fix th

    I've used windows to format my muvo nx, cause i didn't know i couldn't, now i can't play the files that I have uploaded into it what should I do to fix that?please help methank you all!

  • Can a 1.0 GHz (512mb RAM) machine run a ZFS (NAS) server?

    I'm looking to setup a NAS server on a spare machine I have but it's not very powerful... It's an AMD Athlon 1.0 GHz w/512 MB of RAM. I've been told that Solaris/ZFS really needs around 2 GB of RAM to operate decently and you should also have a 64bit