Create CD with JPGs in Windows 7 to be read in Mac

I am aware that most advanced users would scoff at this, but yes, I am working in WIndows and my only hope is that the overwhelming amount of knowledge, professionalism and kindness, combined with inquiring minds I find on this forum, would help me find the solution. I am trying to create a CD with photos in JPG format. The CD must be red in a MAC. The only thing I know about Apple is that the O/S is different from Windows. The MAC user does not know much about her computer and tells me that usually, when you insert the CD, it will show on the desktop. The ones I created in Windows do not. Could anybody help? Many thanks in advance.

Well, I just answered my own question and am posting this just in case somebody else had the same problem. The new files format is universal, so, essentially, if you work in a newer Windows (Vista, 7) and the Mac is at least version 9.0, it would not have problems reading Windows disks. I was having a problem because the Mac machine I was trying to make read the Windows disk was ancient. If anybody is interested to find more about this, here is a link to a table explaing the O/S formats
http://en.wikipedia.org/wiki/Universal_Disk_Format

Similar Messages

  • Creating DB with DBCA on Windows

    I want to create DB with dbca on windows, what is the considrations i should do while creating it?
    I created DBs with dbca on linux boxes, how it differs on windows, How i will give the paths ? etc or any any suggestions.......

    suggestions......issue
    ms-dos>dbca
    enjoy the journey
    </suggestion>

  • HT4759 Create account with Icloud. Windows 7. Downloaded but can't get it to work

    have installed Icloud on my pc using windows7 ... try to log on and get message that my apple id is valid but not an icloud account   Went to www.icloud and tried logon there  and that didn't work either. getting instructions run around. How do I get an icloud account.

    You may not have noticed it but when you downloaded the iCloud control panel for Windows from http://support.apple.com/kb/DL1455, it does state:
    "Note: To create an iCloud account you need an iPhone, iPad, or iPod touch with iOS 5 or later, or a Mac with OS X Lion v10.7.5 or later."
    If you need to get your photos off your Verizon phone, the Verison store should be able to help you with that.  Just bring your phone and a usb memory stick and they should be able to transfer them for you.

  • Can I Windows format my iPod using a Mac?

    ...Might sound like a stupid question. I have an iPod with 5600 songs and a dead iMac with all my iTunes library on it. I need the iPod to be Windows formatted to work with the Blue&Me software in my car, but I want to buy a Macbook as my new computer.
    Is this doable?
    Thanks!

    If part of your question involves getting music off of your iPod onto a laptop or PC the article below was very helpful to me. It's a few years old, but I believe the basics are still the same.
    http://www.ilounge.com/index.php/articles/comments/copying-music-from-ipod-to-co mputer/P0/
    I'm not 100% sure, but I think if an Ipod is formatted for windows it will still synch to itunes on a Mac. It won't work the other way around....Windows PC will not read a Mac formatted iPod.
    Hopefully someone will correct me if I am wrong.
    M.

  • Missing scroll bar Windows 8.1 Adobe Reader XI?

    How can I add the scroll bar in Windows 8.1 Adobe Reader XI?

    Edit > Preferences (Windows) or Acrobat/Adobe Reader > Preferences (Mac OS).
    Under Categories, select General.
    In Basic Tools, choose the desired default setting from the Touch Mode menu. (You'll probably want to select "Never")

  • For the first time, I'm trying to use adobe premiere elements10 that came with my pc Windows 8. I created a single project, saved it but cannot open it. My pc shows the file I created but I get an error message that says this type file is not supported or

    For the first time, I'm trying to use adobe premiere elements 10 that came with my pc Windows 8. I created a single project, saved it but cannot open it. My pc shows the file I created but I get an error message that says this type file is not supported or the codex is not installed. As a test, I created another very small project and get the same error message, when I try to open it. Pls give me a simple answer, a refund or a phone

    mike frischenmeyer
    What computer operating system is your Premiere Elements 10 running on? And, what video card/graphics card does that computer use?
    Is this the first time you are using Premiere Elements 10 or have you worked with it before successfully? There is no easy solution until we
    know the details and troubleshoot to determined what caused the problem.
    1. Can you open a new project?
    2. After you saved/closed the problem project, did you move, delete, or rename any of the files/folder that were related to the source media
    for that project?
    3. Please review the Adobe document on troubleshooting damaged projects.
    Troubleshoot damaged projects | Adobe Premiere Elements
    4. What are the steps that you are using to reopen this saved closed project.
    a. File Menu/Open Project/Name of Project
    b. Other
    Please review and consider and then we can decide what next based on your further details and results..
    Thank you.
    ATR

  • How to create a window with its own window border other than the local system window border?

    How to create a window with its own window border other than the local system window border?
    For example, a border: a black line with a width 1 and then a transparent line with a width 5. Further inner, it is the content pane.
    In JavaSE, there seems to have the paintComponent() method for the JFrame to realize the effect.

    Not sure why your code is doing that. I usually use an ObjectProperty<Point2D> to hold the initial coordinates of the mouse press, and set it to null on a mouse release. That seems to avoid the dragging being confused by mouse interaction with other nodes.
    import javafx.application.Application;
    import javafx.application.Platform;
    import javafx.beans.property.ObjectProperty;
    import javafx.beans.property.SimpleObjectProperty;
    import javafx.collections.FXCollections;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.geometry.Point2D;
    import javafx.geometry.Pos;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.ChoiceBox;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.AnchorPane;
    import javafx.scene.layout.StackPane;
    import javafx.scene.layout.VBox;
    import javafx.scene.paint.Color;
    import javafx.stage.Stage;
    import javafx.stage.StageStyle;
    import javafx.stage.Window;
    public class CustomBorderExample extends Application {
      @Override
      public void start(Stage primaryStage) {
      AnchorPane root = new AnchorPane();
      root.setStyle("-fx-border-color: black; -fx-border-width: 1px; ");
      enableDragging(root);
      StackPane mainContainer = new StackPane();
        AnchorPane.setTopAnchor(mainContainer, 5.0);
        AnchorPane.setLeftAnchor(mainContainer, 5.0);
        AnchorPane.setRightAnchor(mainContainer, 5.0);
        AnchorPane.setBottomAnchor(mainContainer, 5.0);
      mainContainer.setStyle("-fx-background-color: aliceblue;");
      root.getChildren().add(mainContainer);
      primaryStage.initStyle(StageStyle.TRANSPARENT);
      final ChoiceBox<String> choiceBox = new ChoiceBox<>(FXCollections.observableArrayList("Item 1", "Item 2", "Item 3"));
      final Button closeButton = new Button("Close");
      VBox vbox = new VBox(10);
      vbox.setAlignment(Pos.CENTER);
      vbox.getChildren().addAll(choiceBox, closeButton);
      mainContainer.getChildren().add(vbox);
        closeButton.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            Platform.exit();
      primaryStage.setScene(new Scene(root,  300, 200, Color.TRANSPARENT));
      primaryStage.show();
      private void enableDragging(final Node n) {
       final ObjectProperty<Point2D> mouseAnchor = new SimpleObjectProperty<>(null);
       n.addEventHandler(MouseEvent.MOUSE_PRESSED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(new Point2D(event.getX(), event.getY()));
       n.addEventHandler(MouseEvent.MOUSE_RELEASED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(null);
       n.addEventHandler(MouseEvent.MOUSE_DRAGGED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            Point2D anchor = mouseAnchor.get();
            Scene scene = n.getScene();
            Window window = null ;
            if (scene != null) {
              window = scene.getWindow();
            if (anchor != null && window != null) {
              double deltaX = event.getX()-anchor.getX();
              double deltaY = event.getY()-anchor.getY();
              window.setX(window.getX()+deltaX);
              window.setY(window.getY()+deltaY);
      public static void main(String[] args) {
      launch(args);

  • I have created a PDF with mp3 audio clips, the file works on PC's with audio playback (WIndows 7, 8 ) however the audio does not play when hosted on a website or an ipad/tablet computer or smart phone when used with PDF reader

    I have created a PDF with mp3 audio clips, the file works on PC's with audio playback (WIndows 7, 8 ) however the audio does not play when hosted on a website or an ipad/tablet computer or smart phone when used with PDF reader

    adobe42135678 wrote:
    the audio does not play when hosted on a website...
    When viewing in what browser?

  • I installed the CC trial with an error window saying: Could not create the file '/Users/dranim/Library/Preferences/Adobe/After Effects/13.2/dummy'.  That was the first window.   Heres the second: After Effects can't continue: unexpected failure during app

    I installed the CC trial with an error window saying: Could not create the file '/Users/dranim/Library/Preferences/Adobe/After Effects/13.2/dummy'.  That was the first window.   Heres the second: After Effects can’t continue: unexpected failure during application startup  I paid for the month subscription of 29.99. It claims it is downloading again?! Am I missing something here? Why is this process so complicated? I need to get this resolved asap and start working.

    I originally had Adobe Photoshop Extended, then upgraded to the Production Suite. I ran the Adobe Cleaner, and that uninstalled most Adobe products, including my existing Adobe install, and then I re-installed everything with the same error code. Since CS4 came with CS5, I've installed AE CS4, but would really like to upgrade because I'm new to Creative Suite, and not sure how CS4 integrates with CS5...CS4 After Effects installed perfectly. I do have a 64 bit system, and installing to an OCZ Vertex 2....every other suite installs perfectly, except AE. And I think that is the coolest program in the Suite. I thank you all so much for taking the time to help, I really want to get AECS5 running...I did try to install after doing the recommended items Adobe suggests for Exit Codes 6 and 7, including turning off many startups...
    I'm baffled....
    Ben

  • Someone sent me photos taken by Windows phone, but I can't see them on iphone 4. It only shows a box with "JPG" in it. Any suggestions?

    Someone sent me photos via text message taken by a Windows phone, but I can't see them on iphone 4. It only shows a box with "JPG" in it. Any suggestions?

    Hi, disable network lock then try connecting your iPhone 3G to your network, re-enable Network Lock once it is connected.
    My Cisco Network Magic Configuration:
    Router: D-Link WBR-2310 A1 FW:1.04, connected to Comcast High Speed Internet
    Desktop, iMac: NM is on the Windows Partition, using Boot camp to access Windows, Windows 7 Pro 32-bit RTM, Broadcom Wireless N Card, McAfee Personal Firewall 2009,
    Mac Partition of the iMac is using Mac OS X 10.6.1 Snow Leopard
    Laptop: Windows XP Pro SP3, Intel PRO/Wireless 2200BG, McAfee Personal Firewall 2008
    Please note that though I am a beta tester for Network Magic, I am not a employee of Linksys/Cisco and am volunteering my time here to help other NM users.

  • Fdm, create app with enabling "Windows Integrated Security"

    currently, we need to enter UserID and Password each time we create a new fdm app on the web. we also cannot sign into the Workbench client.
    how do we configure the system, so that we can create applications WITH enabling "Windows Integrated Security", so that we can use the same password to sign into the Workbench client.
    thanks.
    Edited by: user642786 on Feb 7, 2011 9:35 PM
    Edited by: user642786 on Feb 8, 2011 11:54 AM

    os admin takes care of this.

  • HT1461 I created a partition and installed Windows through bootcamp. But I need to increase my partition size due to me needing more space on the windows side. Can I do this with bootcamp, and how do I do it?

    I created a partition and installed Windows through bootcamp. But I need to increase my partition size due to me needing more space on the windows side. Can I do this with bootcamp, and how do I do it?

    Welcome to Apple Communities
    You can delete the partition in Boot Camp Assistant or use Camptune to modify it

  • Photoshop writes a Corrupt JPG in Windows Vista

    Hello
    A very perplexing problem i have run into.
    I have created a panorama with CS5 (running Windows Vista).  This is from a number of RAW images that were stitched together using PS.  I flattened the image and saved it to a jpg format.  This jpg image can be read by Windows Photo Gallery application
    i want to create a larger image (72" long) to print out.  I went back to the PSD file and increased the image size in increments of 10% from ~49 in to 72 in long.  i then saved this image in jpg format (same jpg options).  This image comes back as corrupt when i try to view it in Vista (Windows Photo Gallery). 
    Photoshop can open the jpg image.
    ultimately, i need to send this image to get printed out but i am worried that it is corrupt.   I have tried 3 different Windows Vista computers (laptops to desktops) and the corrupt message is the same
    "Photo Gallery can't open this picture or video.  This file format is not supported, ..."
    i have also tried to open this with Microsoft Paint and it does not work.
    Thank you
    Perry Ralph

    Hello
    Thanks for the message
    What are the pixel dimensions of the JPG you're producing that can't be opened?  Saying it is 72" long isn't enough without also telling the DPI/PPI.  Also, another way to increase the print size of the image would be to merely change the DPI/PPI to something smaller. 
    21600 pixels x 5132 pixels
    300 PPI
    I suspect the Windows programs you refer to are running out of memory trying to open the image or they may have pixel-dimension limits.  Photoshop has tricks to working on large images that the simple Windows programs do not use.
    you might be right.  my desktop PC has 8GM of memory
    Are you working with an external printing service that cannot upsize an image in a way that looks reasonable and they require that you do it for them?
    I haven't asked the printing service about upsizing the image.  i wanted to look at the size first.  i have also sent them an email message asking a similar question

  • Does Lightroom create an extra JPG file?

    I'm new to Lightroom. When I import images from my camera and exit Lightroom, I notice that every JPG has been exactly duplicated with the addition of a _2 as a suffix.  The DNG files are not duplicated.  I'm quite certain my camera is not doing this, as it hasn't done this before.  This creates an extra cleanup task as I must delete all these extras.  What gives?

    Since I'm new to LR, I did an Import. One other person mentioned that maybe I imported into the same folder, thus creating dups.  I will watch carefully next time. I'm willing to give LR a chance as I know many people swear by it.  I guess if someone has tens of thousands if images, fast keyword searches can be helpful, but I "catalog" my images by discrete folders, so I know where everything is.  That might not be the case when I get many more images.
    T.N. Turner, www.TheArtfulToad.com
    Date: Sun, 11 Dec 2011 15:23:39 -0700
    From: [email protected]
    To: [email protected]
    Subject: Does Lightroom create an extra JPG file?
        Re: Does Lightroom create an extra JPG file?
        created by bobmeyerweb in Photoshop Lightroom - View the full discussion
    What is your workflow for importing images?  Do you use something other than LR to copy images from a memery card to the HD, and then import into LR?  What option (at the top of the import window are you using for import (Add, Copy, Move, etc.)?
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4077968#4077968
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4077968#4077968. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Photoshop Lightroom by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • How to create a VPN client for Windows Phone 8.1?

    We have our own VPN client for Windows and Android. I would like to create a VPN client  for Windows phone 8.1. After referring these site I found that there are some third
    party VPN plugins available for WP 8.1.
    I checked OpenVPN but it is also not available for WP 8.1.
    Is there any APIs available for creating a VPN client in WP 8.1 similar to
    VpnService provided by Android SDK ?

    The VPN APIs for WP8.1 are not open at this time.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

Maybe you are looking for

  • Retrieving empty values from multi value string in user profile custom properties

    Hi, I created a webpart to save and retrieve data from custom properties. I use the code below to get the stored data: for (int i = 0; i < profile[property].Count; i++) Item = profile[property][i] == null ? string.Empty : profile[property][i].ToStrin

  • INTERNAL ORDER FOR INVENTORY

    Can an internal Order be defined in Purchase order for inventoried materials.

  • Custom Tag won't display the attributes

    Quick summary: I can't refer to the attributes passed in to by custom tag. I have a .jsf page that is passing two strings. One is from the backingBean and the other is hardcoded. <%@page contentType="text/html"%> <%@page pageEncoding="UTF-8"%> <%@tag

  • APPCS5.5 Clip Marker Sync Question

    Very simple scenario: Within Adobe Premiere Pro CS5.5, I inport (1) single video, minus audio. I then import (1) audio track, completely not associated with the audioless video clip. (For sake of this scenario, (1)video of gun shot - no sound, (1)aud

  • Network issue

    Hi Guys, Any one can help please? I just install and configure a new sun SParc with Solaris10. As soon as I connect the sun on the network it crash the network. Anyone has a idea to solve this issue by a configuration way? Tks