Mac WmWare and MS Project

Bought a new MacAir 256 GB. Using MS Office 2011. Want to use MS Project in connection with WmWare.
Do I also need to install Windows 8 ?

Hi
Please check this
http://www.pipelinesoftware.com/psi/news.jsp?page=20080105
And from Impress
http://www.impress.com/stuff/contentmgr/files/7e364d6f079722b5d13bb004e69649c2/misc/impress_for_epm_web_1007.pdf
Regards

Similar Messages

  • I recently got new mac air and transferred my old version garageband projects now when I open them in 10.0.2 I can add new tracks but then nothing can record, shows its receiving sound from software inst. but no sound. I checked audio preferences and

    i recently got new mac air and transferred my old version garageband projects now when I open them in 10.0.2 I can add new tracks but then nothing can record, shows its receiving sound from software inst. but no sound. I checked audio preferences and they are set as they should be. I tried it in all the other older projects and same issue anyone have any experience like this very frustrating.  Can one download old version still ? or can you run both versions on OS10.9.5 ?

    Ok, either my question was too long or nobody seems to have an answer. Sad, either way
    Here's something I found out in the meantime, maybe this is interesting for somebody or maybe - problem's not totally solved - enough info for any of you to give me further advice.
    When I start Logic Core Audio driver de-activated, I can open old songs. Then I save them in a new folder with all audio files and a new name. And I remove all EXS24 instruments as well as the Space Designer. I quit Logic, re-open with Core Audio activated and I can open the song.
    Problem no.1: EXS24 instruments don't find the appropriate samples, but EXSMananger Pro did help me with this. Same problem with Space Designer, which doesn't find the impulse responses, connected to a certain preset.
    Two questions, every idea would be great!
    - Is there any way to teach Space Designer Presets where to look for impulse respones. I can load IR samples directly and create a new preset, but I can't use my old ones.
    - Is it possible to install Logic from scratch over an existing version? Or how should I de-install everything connected with Logic and then install a fresh version from CD?
    Thank you again,
    Joern

  • I recently got new mac air and transfered my old version garageband projects now when I open them in 10.0.2 I can add new tracks but then nothing can record shows its recieving sound from software inst. but no sound. I checked audio preferences OK

    i recently got new mac air and transferred my old version garageband projects now when I open them in 10.0.2 I can add new tracks but then nothing can record, shows its receiving sound from software inst. but no sound. I checked audio preferences and they are set as they should be. I tried it in all the other older projects and same issue anyone have any experience like this very frustrating.  Can one download old version still ?
    thanks,

    Ok, either my question was too long or nobody seems to have an answer. Sad, either way
    Here's something I found out in the meantime, maybe this is interesting for somebody or maybe - problem's not totally solved - enough info for any of you to give me further advice.
    When I start Logic Core Audio driver de-activated, I can open old songs. Then I save them in a new folder with all audio files and a new name. And I remove all EXS24 instruments as well as the Space Designer. I quit Logic, re-open with Core Audio activated and I can open the song.
    Problem no.1: EXS24 instruments don't find the appropriate samples, but EXSMananger Pro did help me with this. Same problem with Space Designer, which doesn't find the impulse responses, connected to a certain preset.
    Two questions, every idea would be great!
    - Is there any way to teach Space Designer Presets where to look for impulse respones. I can load IR samples directly and create a new preset, but I can't use my old ones.
    - Is it possible to install Logic from scratch over an existing version? Or how should I de-install everything connected with Logic and then install a fresh version from CD?
    Thank you again,
    Joern

  • Published Project for MAC (.app) and will not open external PDF files

    I have two captivate (7.x) projects that I published as Win .exe apps, and they work fine.  Published the same two projects as MAC (.app) and when I run the app on the iMac, and click a click box to open an external PDF, nothing happens. The PDFs are located in the "root" folder with the .app file.
    Any suggestions?
    Thanks!
    JackL
    Windows 7
    Adobe Captivate 7

    Thanks for the feedback. I was able to open some PDF files on Acrobat 5 that I recently scanned at a Fed Ex office with no issue whatsoever. I could extract pages, delete pages, etc, the software Acrobat 5 worked fine.
    What I wonder is there a way I can make a change to a PDF file that will then allow me to open it in Acrobat 5? I have a gut feeling there is an adjustment that I can make in Adobe Reader after opening it that will then make the file accessible in Acrobat 5. I am playing with it but no luck thus far.

  • RSS and Xcode projects (Mac)

    Is it possible to generate a controller or any type of file in Xcode and receive an rss feed to the application? I've looked around for examples and nothing has come to my attention that could work for my application. The only thing I can seem to find are a ton of iPhone rss tutorials, unfortunately I can't find any on Mac OS X Xcode projects.

    Here's what I have so far. Pardon the twitter stuff, I found this through a twitter tutorial. ould this comply with any other xml type? Anybody?
    #import "AppController.h"
    @implementation AppController
    - (IBAction) getPublicTimeline:(id)sender
    [progress startAnimation:nil]; //Start progress animation spinner.
    //First we create the NSURLRequest that we're going to send to the server...
    NSString *urlString = @"http://twitter.com/statuses/public_timeline.xml"; //Create an NSString called urlString containing the URL we want to access.
    NSURL *url = [NSURL URLWithString:urlString]; //Create an NSURL containing (NSString)urlString
    NSURLRequest *urlRequest = [NSURLRequest requestWithURL:url //Create an NSURLRequest with (NSURL)url, by default this is a GET request, you can specify a POST request by adding an additional argument.
    cachePolicy:NSURLRequestReturnCacheDataElseLoad //If cached data exists, return that, otherwise fetch new data.
    timeoutInterval:30]; //Wait 30 seconds for response before giving up.
    NSData *urlData; //NSData object for containing data returned from Twitter server.
    NSURLResponse *response; //NSURLResponse object for containing response code from server.
    NSError *error; //NSError for containing error from NSURLConnection (i.e. unable to connect, etc.)
    //Now we're going to use NSURLConnection to send a request to the Twitter server...
    urlData = [NSURLConnection sendSynchronousRequest:urlRequest //Send a SynchronousRequest -- this means that the code stops executing until the data is returned from the server. Sending an unsynchronous request would allow code execution to continue.
    returningResponse:&response //Pass the returned response into (NSURLResponse)response
    error:&error]; //Pass the returned error into (NSError)error
    //Check to make sure data was loaded into (NSData)urlData, if not stop executing and display an error.
    if (!urlData) {
    NSAlert *alert = [NSAlert alertWithError:error];
    [alert runModal];
    return;
    [timelineXML release]; //Release previous (NSXMLDocument)timelineXML object from memory (if any existed).
    timelineXML = [[NSXMLDocument alloc] initWithData:urlData //Allocate memory for and initilize a new NSXMLDocument called timelineXML and parse (NSData)urlData into it.
    options:0
    error:&error];
    //Check to make sure data was loaded into (NSXMLDocument)timelineXML, if not stop executing and display an error.
    if (!timelineXML) {
    NSAlert *alert = [NSAlert alertWithError:error];
    [alert runModal];
    return;
    [statuses release]; //Release previous (NSArray)statuses object from memory (if any existed).
    statuses = [[timelineXML nodesForXPath:@"statuses/status" //Load nodes from the XPath "statuses/status" in (NSXMLDocument)timelineXML into (NSArray)statuses.
    error:&error] retain]; //Retain the object so it doesn't drop from memory until we tell it to.
    //Check to make sure data was loaded into (NSArray)statuses, if not stop executing and display an error.
    if (!statuses) {
    NSAlert *alert = [NSAlert alertWithError:error];
    [alert runModal];
    return;
    [timelineView reloadData]; //Refresh (NSTableView)timelineView.
    [progress stopAnimation:nil]; //Stop the progress spinner.
    - (NSString *)stringForPath:(NSString *)xp ofNode:(NSXMLNode *)n //We will use this function to get the stringValue for a specific node in (NSArray)statuses
    NSError *error; //Create NSError object named error.
    NSArray *nodes = [n nodesForXPath:xp error:&error]; //Get the nodes from one of the status objects in (NSArray)statuses for the XPath specified by xp and load them into (NSArray)nodes.
    if (!nodes) { //If (NSArray)nodes does not exist (wasn't created)...
    NSAlert *alert = [NSAlert alertWithError:error]; //Create an alert with the error.
    [alert runModal]; //Display that allert.
    return nil; //Return nil for this function.
    if ([nodes count] == 0) { //If (NSArray)nodes is empty...
    return nil; //Return nil for this function.
    } else { //Otherwise...
    return [[nodes objectAtIndex:0] stringValue]; //Return the stringValue for the node from the status object from (NSArray)statuses.
    #pragma mark TableView data source methods
    //These data source methods are required when assigning an object as a dataSource for an NSTableView
    -(int) numberOfRowsInTableView:(NSTableView*)tv //Returns the number of rows that need to be in the table view.
    return [statuses count]; //Return the number of objects in (NSArray)statuses.
    - (id)tableView:(NSTableView *)tv objectValueForTableColumn:(NSTableColumn *)tableColumn row:(int)row //Called by NSTableView when loading data, returns the value at (NSTableColumn)tableColumn and (int)row.
    NSXMLNode *node = [statuses objectAtIndex:row]; //Load the status object from (NSArray)statuses that corresponds to the row that the NSTableView is requesting into (NSXMLNode)node
    NSString *xPath = [tableColumn identifier]; //Load the identifier value for the tableColumn requested by the NSTableView into (NSString)xPath.
    return [self stringForPath:xPath ofNode:node]; //Return the value returned by the stringForPath: ofNode: method.
    @end

  • Recently switched from powermac to mac pro5 2x2.66GHz 6 -core xeon   running FCP 7 on OS 10.6.8  exporting qt files and rendering project files now takes longer than my old machine   looking at activity mon and % of user is aroun 6 and % of idle around 42

    recently switched from powermac to mac pro5 2x2.66GHz 6 -core xeon   running FCP 7 on OS 10.6.8  exporting qt files and rendering project files now takes longer than my old machine   looking at activity mon and % of user is aroun 6 and % of idle around 42  are all the cores being used with FCP7?

    johnnyapplesod wrote:
    exporting qt files and rendering project files now takes longer than my old machine
    It's because the PowerMac G5 had HUGE bandwidth with a fat BUS on each processsor so they could run hard, hot and heavy.
    It's not so with the Intel processors which are multi-core and share a common bus thus bottleneck.
    The newer Intel processors can do more work on the CPU, but when it comes to in/out they are s-l-o-w.
    I've had a wickedly fast dual processor (not dual core) G5, RAID 0 pair of 10,000 RPM drives as boot and a fast video card, I could do a lot very very fast.
    You'll likely have to upgrade to Final Cut X to get more cores utilized, prepare to cry a little bit, Apple is working on the features they stripped out of it to make amends to pro users who complained loudly. (all over TV too)
    http://www.loopinsight.com/2011/09/20/apple-releases-major-update-to-final-cut-p ro-x-release-demo-version/

  • Can I use my apple wireless mouse and keyboard with my Mac Mini and Windows PC?

    Hello, I recently dug up a windows PC computer for side projects, and I was able to get by using my wireless apple keyboard and mouse for my Mac mini, and then using a usb mouse for my PC, I want to eliminate the usb keyboard and mouse and just use the bluetooth keyboard. Both computers are usually on all the time, and the windows PC uses a bluetooth adapter. I can get my keyboard and mouse to work on both, but I have to sync them to whatever system I would like everytime I want to use it. Is there any solution that when I choose the Mac Mini my keyboard and mouse will work for the Mac mini, and when I choose my windows pc, the keyboard will only be used on windows without having to resync?

    To my knowledge, no.
    Barry

  • Alternating mac face and question mark after i tried to install OS X 10.3

    I have a Powerbook G4 and I tried to update my operating sytem from 10.2.8 to 10.3 but it froze. After I restarted it I got an alternating mac face and question mark. It just ejects the CDs I try to put into it except for the installation disk for OS X 10.1.3. When I put that one in a smiling mac computer come up then all this type comes across the screen, something about kernels and panic.
    Please help me, I've got a project due soon.

    Could someone please help me,
    when i open my power book g4, an alternating Mac face and question mark appears, and no matter what I do it is still there.
    it only changes when I insert the installtion CD of MAC OS X 10.3, but after the Apple logo appears, the screen went white and sometimes just blue, and it just won't work. Then after restarting, the alternating Mac face and question mark still appear.
    i also tried the hardware test, after doing both of the tests, the result is consistently "passed". But after restarting, the same problem happens.
    what should i do?
    please help me
    thanx in advanced

  • FCP crashes, and opening and saving projects take too much time

    Since my upgrade to FCP 5.0.4 I’m having trouble on several aspects of FCP.
    I am using an Xserve raid storage, connected via fiberchannel to an Xserve with 10.4.4.
    The editing computers are connected via fiberchannel and Xsan to the central storage.
    FCP runs on an Apple G5, and my projects run from an external disk described as above. Al the other FCP scratch disk settings are also set on the external disks.
    Example:
    I’m using the FCP 5.0.4 with the multi-clip mode, and one of the consequences is, that my projects become relatively large. The larger they become, the longer it takes to open (up to 10 minutes) it and to save it (up to 2 minutes). Together with these problems, FCP crashes a lot.
    I set my “auto-save” at an interval of 15 minutes, to prevent to loose a lot of work, but when it takes 2 minutes to “auto-save” each time, I loose a lot of time.
    So when my project was 224 MB, I made a copy of my project, and opened it from a local drive. Opening the project took also 10 minutes. But when it was open, “saving” the project took only 15 seconds, instead of 2 minutes. The “auto-save” was still on the external scratch disk. “Auto-saving” still took 2 minutes. So I set the “auto-save” on a local scratch disk, and after that, it took only 15 seconds. Opening the project still took 10 minutes. And the FCP didn’t crash frequently.
    My conclusion would be that the problems have something to do with the size of the project in combination with the connection with the external scratch disks. Is this correct? If yes, how do I solve this.
    And if not, what else could it be?
    Out of memory
    Another problem occurred when my project was 327 MB. I had a multi-clip sequence of 100 minutes, with 4 camera angles and a lot of cuts and effects in it. When I tried to “nest” the sequence, it didn’t work and got the message: “out of memory” . Then FCP crashed.
    When I opened the project again (it took 10 minutes), I could not save it anymore: ”out of memory”. So now I cannot work with this project anymore.
    How do I solve this?
    Is my project or sequence too big?
    Another crash example
    FCP crashed sometimes, when I switch my “Ëxternal Video” setting from “Blackmagic 8 bit” to “Firewire PAL”. Could this have something to do with it the problems I previously described?
    Can anyone help me with these problems?
    G5   Mac OS X (10.4.4)  

    I've run into a simliar problem and I believe I traced the issue down to the number of files on the drive. A drive I was using had over 600,000 files on it. Opening projects took 5+ minutes, saving took 2+, for a 15 minute simple project.
    See if that is your issue.
    Edit: 600,000 files on the scratch/capture disk.

  • Why do some black-and-white photos disappear in Mac Preview and Safari?

    I sent a PDF to a colleague recently only to discover that he uses Mac Preview to view PDFs and not Adobe Reader. The unfortunate part is that, although full-color photos all appeared, small black-and-whites were inconsistent: some appeared and others did not.
    Moreover, the same problem turns up when using Safari, though Google Chrome displays the PDF perfectly.
    One reference point is that a full version of the PDF appears just fine in Preview and Safari. It's when the original is reduced or optimized that some of the small black-and-white photos disappear. Of course all photos appear in Reader, even when they PDF is reduced or optimized.
    I have examined the small photos and have been unable to find any consistent trait among those that appear and among those that do not. I have experimented with them: layered and flat, with and without alpha channels, with and without profiles, as RGB and grayscale, with byte order for IBM PC and Mac, as TIFFs and JPEGs — in other words in every variation I could think of. I have used both Acrobat Pro 8.3.1 and Acrobat XI. Nothing I have tried has varied the outcome.
    The obvious solution is to avoid Mac Preview and Safari, but I am planning to distribute a complicated project to a large audience and can't control what viewers they use.
    Does anyone know what the problem is?

    As I reported and you confirm, the things I tried had no effect.
    You point to the compression and image settings, but that leaves the question why some photos and not others showed up: presumably they were all subjected to the same compression and image settings.
    There are a great many possible permutations of compression and image settings, and I'm on deadline. Is there perhpas a combination of compression and image settings you recommend?
    Thanks!

  • Sharing display and internet connection between a 13inch Mac Book and G4

    Does anyone know whether it is possible to connect a Mac Book and a G4 Powermac with an ethernet cable and then hook them both up to the same display and ethernet internet connection?

    Usually you use a router to share an internet connection and to make a local network between the computers over Ethernet or WiFi. I think it is possible to directly connect the computers without a router, but you might have to use a cross-over cable, I'm not sure how to set up a direct connection. Using a wireless router with wired ports would allow you the flexibility of using the MacBook wirelessly and the PowerMac with a wired connection. I have an Apple Airport Extreme Base Station, and it was pretty easy to set up, it plugs into my cable modem to share the internet connection.
    They make hardware devices that allow you to share a docking station between more than one computer, called a KVM switch, so you can have one keyboard, video display, and mouse and switch between two active computers.
    Alternately, using the network connection, you can use Chicken of the VNC, which is a virtual network computer, this opens a window, or full-screen mode, of a computer so you can operate it from another computer.
    http://sourceforge.net/projects/cotvnc/
    You can also control a PC from the Mac using Microsoft Remote Desktop Connection.
    http://www.microsoft.com/mac/otherproducts/otherproducts.aspx?pid=remotedesktopc lient
    Some monitors have multiple inputs, so you wouldn't need to use a KVM switch, if for example your monitor has both DVI and VGA inputs, the front panel can select the source, so you could use a DVI adapter for the MacBook and a VGA for the PowerMac. You could still use the KM portion of a KVM switch if you wanted to use a single full-size keyboard and mouse with both computers.
    http://iogear.com/main.php?loc=product&Item=GCS632U

  • Using FCE 4 to edit mov file, inserted 8 chapter markers by double tap M, enter title, click add chapter marker.  Rendered and half of the chapter markers unrecognized or not functional.  Delete FCE prefs and redo project did not help.  How to fix?

    Using FCE 4 to edit mov file.  Added 8 chapter markers by double tap M, enter title, click add chapter marker.  Rendered and 4 of the chapter markers are skipped or not functioning.  Deleting FCE prefs and rebuild project did not solve.  Solution anyone? 

    Thanks for taking a look, I am pretty new on a Mac, is this the data you need?

  • Photostream question (Mavericks, ML, MBP, Mac Pro and iPhone)

    hi all,
    i am posting the dialogs from Aperture enabling various aspects of Photostream/iCloud (mac pro and ML at the top and MBP and Mavericks at the bottom) and i am having a devil of a time figuring out how to manage all of this. i take a /ton/ of pictures on my iPhone and i seem to have a multiplicity of issues i can't solve by googling. i have read what i can find in the help and faq sections.
    i should also say that while i SYNC my phone via iTunes on my MBP i /import/ photos into Aperture on my desktop machine which is a Mac Pro. i keep a small library in Aperture on the MBP and do check some of the folders to sync to the iPhone. i find this easiest since i am have a big Aperture database that i keep on the large HD on the Mac Pro but for customizing Apps, synced images, music etc i find it easier to manage on the laptop.
    anyway, i have the following problems/questions:
    1. do i need to SYNC my iphone to my Mac Pro with some frequency and physically import photos into Aperture in order to not LOSE the photos off the phone after some period of time? i mean, i /don't/ do this with an discipline and i have been assuming that they all remain there in a "monthly dated photostream" folder /until/ i do a physical import from the phone but something i read recently caused me to think that there is a 1000 image limit and that anything NOT IMPORTED by a certain timeframe means photos will basically get bumped off the phone never to be seen again if they are not physically imported.
    2. can i leave images in a monthly dated photostream folder (on both the laptop and desktop machines) and basically never touch them - assuming that i am also IMPORTING these images into projects into Aperture?
    3. i have an "iPhone Sync" folder in Aperture and i have selected this folder to sync via iTunes with my iPhone. however, when this folder gets to the iPhone the images in here always seem to be mixed up with other images that i took ON THE PHONE. so if i have images on the laptop that i dropped into a folder and synced /to/ the phone - is there a way to keep these separate from what i am seeing on the phone in terms of photos i took on the phone? when they get mixed together it is so confusing i can't figure out what is happening and i can't find anything. i would like to keep the synced images independent of the images shot on the phone.
    4. is there a Idiots Guide to Photostream on the iPhone that someone can give me?
    A. i am seeing a "Photos" icon and when i hit this it seems to show me a YEARLY list and then in the yearly list there are DATED groups. my most recent dated group shows /locations/ as well and i am not sure if this is an option or what. ALSO, why are images that i synced in a folder on my is there a way to delete these images? is it possible images that were synced from my laptop are showing up in here and if so is there a way to prevent this?
    B. Albums are showing "Camera Roll" "My Photo Stream" as well as "Events (from my mac)". Event (from my mac) is supposed to show Images in Projects that were SYNCED from my laptop and Camera Roll (390 images) is supposed to show images taken on my iPhone since the last import if i deleted everything on the last import? Does My Photo Stream (1000 images) somehow show all the images in Camera Roll (taken on the iPhone) AND somehow /some/ of the images synced from my laptop in some way? i mean, this is what i think i am seeing but it is uber confusing.
    THANKS for any help on this,
    jonathan

    Other manufactures do not mention software for booting from their PCIe SSDs
    http://www.sonnettech.com/product/tempossd.html?tab=1
    http://eshop.macsales.com/shop/SSD/PCIe/OWC/Mercury_Accelsior/RAID
    http://www.apricorn.com/vel-solox1.html

  • MAC OS and LDAP and Samba Server

    How can I make my Mac OS authenticate against LDAP and automatically map shared by a Samba server folders? (samba domain)? The idea is that any person who is registered in the database of LDAP can log into any Mac machine and automatically access the folders stored on the Samba server.

    Are you using TopLink 11g or TopLink Essentials?
    You seem to be wanting to use TopLink 11g, but you have the provider set to Essentials in your persistence.xml.
    <provider>oracle.toplink.essentials.PersistenceProvider</provider>
    Change this to,
    <provider>oracle.toplink.PersistenceProvider</provider>
    The sessions-xml properties are only supported with TopLink 11g.
    Note that currently in 11g when using a sessions-xml it must contain a project xml that completely defines the mappings. It will not merge with annotations nor defaults.

  • Which video card to buy for Mac Pro and AE CS3

    I am about to purchase a new Mac Pro and am curious which video card to buy - particularly when it comes to rendering speed.
    Apple offers the ATI Radeon HD 2600 XT with 256MB of GDDR3 as a standard option, with the NVIDIA GeForce 8800 GT with 512MB of GDDR3 as a $150 BTO option.
    I primarily use AE CS3 using adaptive resolution in lieu of Open GL. The projects are very 3d intensive. My initial thought is that the NVIDIA card has more VRAM and would be a better pick - but would my $$$ be better off toward more RAM? Does using CS4 make a difference?
    Any thoughts would be appreciated. And yes, I have searched the forums but have not found anything definitive.

    Personally, I'd buy more RAM. The standard display card supplied with the Mac Pro will have perfectly good specs for AE and Prem Pro.
    Yes, CS4 should render faster than CS3.

Maybe you are looking for

  • How do I get MSN messenger to work on my MacBook Pro.

    I want to use MSN Messenger on my MacBook Pro.  All my friends use PCs and can chat easily, transfer files and can use the camera too.  I can't do any of that.  Hope someone can help.

  • Error during cache refresh

    Hi guys, In my scenario XI to R3 via ABAP Proxy. In cache R/3 side shows me two red triangles: unable to refresh content and an error during last update. The error id BUSINESS_SYSTEM and the message is: NO INTEGRATION SERVER. Yesterday admin team cha

  • Cancel batch management

    Hi,expert I maitained a material with batch management, I want to cancel batch managment now. But I have do the goods reciept and the batch number is already created. Even I cancel the goods reciept, MSC2N set the deletion flag for this batch number.

  • New developments in ABAP in ECC

    Hi All, Can you please provide me document or link fir the new developments in ABAP in ECC 6.0? Thanks

  • Is there a way to keep the apps on my Ipod after upgrading to IOS 5?

    I plugged my Ipod touch (4th generation) into my mac and itunes prompted me to upgrade to IOS 5 (which I would like to do).  However, it says that I'll lose all my apps... Is there are way to restore these apps after the IOS 5 has been downloaded/ins