Cross-Platform Issues?

I am using contribute on a PC (I'm the administrator) and another office wants a copy of the software but they use a Mac. Am I going to have any issues with this?
Thanks.

If you go up two levels in the breadcrumb trailat the top of the thread to the main discussions page you'll find a little search widget on the right that searches only in the ID related forums.
That's the place to start looking for other threads that might have similar experience.

Similar Messages

  • Cross platform issues with InDesign CS5 or earlier

    Potential client would like me (designer on a Mac) to design print docs which they can then edit on their PCs. Would love to hear feedback from others about any cross-platform issues/best practices suggestions. Thanks!

    No problem at all, the only thing you have to do is make sure you both have the same fonts in a flavour (Opentype) that you can both read.  So when you send them a Indesign document using these fonts they should be able to open it up on a PC without getting a "missing fonts" warning.  Once you've got that sorted you're away, I do exactly this all the time.
    Oh and of course you must have the same version of Indesign!  You can save back one version (or from CS5.5 to CS4) but it's not recommended for this type of workflow.

  • Forms, digital signatures, cross platform issues

    I am trying to implement pdf forms in an educational environment to utilize digital signatures and reduce paper. The form data does not need to go anywhere. It just stays in the form at this point. Some people on campus have Windows machines, others have Macs. All the Windows machines have Acrobat Pro installed and not Reader. The Mac people are more likely to have Reader. There have been problems with emailing these forms between platforms. Does anyone have any ideas about how to solve this? My IT department will not support Reader on Windows machines, so the forms have to work in Acrobat and Reader! How should the orginal document I put online be saved to work in both programs and platforms? What direction should I give the users about how to save the forms they fill out and sign? I've looked all over for this kind of info, but can't seem to find it. Any and all help is greatly appreciated. FYI, I am not an IT person. Thanks!!!

    For Mac users, it will be important that they don't use the Preview application to work with the forms. Preview is the default Mac PDF viewer out of the box, and it corrupts PDF forms when it saves them, so it really needs to be avoided.
    In order for Reader to save a filled-in form and apply digital signatures, the forms need to be Reader-enabled, which can be done with Acrobat Pro. Acrobat Standard can Reader-enable documents too, but it doesn't apply the digital signature usage right.
    The problem with this is if you will be getting the forms returned to you, you can only use data from no more than 500 instances for the form, including hardcopies. This is an Acrobat License Agreement restriction. If they won't be returned, there won't be a problem. Also, the Acrobat users don't need to use a Reader-enabled version, so you can collect all the forms you want from them.
    Email will be most reliable if the user manually attaches the file to an email, as opposed to setting up a button on the forms to submit to an email address. You'll find many threads here discussing the emailing difficulties with forms that are set up this way. The problems can be minimized with user education, as the manual process is available in either case. A submit button provides convenience, unless it doesn't work, and it won't for some users.

  • Cross platform issues for Pro*C

    Hi!,
    Is it possible for me to use the C program I got using Pro*C in Win98(I have to use SQLCHECK=SEMANTICS) and make application in a unix(Solaris) machine? Is there any issue that I have to be aware of?(Everything except the SQL part in the .pc file are standard C).
    Thanks,
    Sreekumar

    If you go up two levels in the breadcrumb trailat the top of the thread to the main discussions page you'll find a little search widget on the right that searches only in the ID related forums.
    That's the place to start looking for other threads that might have similar experience.

  • Cross Platform issues working with an external hard drive

    Lightroom 4.0 on both machines -- Ok, I use MAC at school and Windows 7 at home.  I put all my files on an external hard drive named ALR which is mapped on my PC to drive L.  When I edit any photo at school and go back to the PC machine at home,  I get the cannot locate original picture in location //volumes//ALR// if I'm on the MAC after editing photo's at home on the PC, I get the message cannot locate L:\ALR .. etc.  It keeps looking for the drive designation from the other computer.  Weird to me is that all the files are located on my external hard drive and I do not move them from there, also my catalog is located on the external drive also (no lectures on this please, I back up and its for a lightroom class)  The professor has no idea why that is happening as he knows NOTHING about pc's..  Anyone else have an idea - in the big scope of things it is not a big deal, but it is just frustrating to have to remap my directory every time.

    Can we see a screenshot of the Folders panel please, before you remap it?  I just need to be clear on whether you're having to 'find missing folder' on a single folder (which is quite normal as Mac and Windows see the drive completely differently) or whether there's a different issue here.

  • XSLT Transformation Cross-platform issue

    Hi,
    Let's go straight to the point: the following code works fine on a Windows system, but gives me a ClassNotFoundException zibog.context.XSLAccessPoint when run on a Mac OS X system. The XSL Stylesheet uses Xalan to call static methods from this class.
    Here's the code:
             OutputManager.getInstance().writeWorkflowLog(System.currentTimeMillis(), WORKFLOW_MESSAGE);
        // Get a Transformer Factory
             TransformerFactory tFactory = TransformerFactory.newInstance();
             javax.xml.transform.Transformer transformer = null;
        // Get the extractor XSL script as a stream
             InputStream extractorAsStream = getClass().getClassLoader().getResourceAsStream(XSL_EXTRACTOR_PATH);
              File temp = null;
         // Create own FileOutputStream for the transformer to be able
         // to close it for file suppression.
              FileOutputStream outputStream = null;
              try {
         // Create the transformer with the extractor stream
                   transformer = tFactory.newTransformer(
                                            new StreamSource(extractorAsStream));
                   temp = new File(TEMP_FILE);
                   temp.createNewFile();
                   outputStream = new FileOutputStream(temp);
                   OutputManager.getInstance().writeDebugLog(System.currentTimeMillis(), transformer.getClass().toString() + " - " + transformer.toString());
         // Run the extractor script
                   transformer.transform(new StreamSource(xmlFilePath),
                                              new StreamResult(outputStream));
              } catch (TransformerConfigurationException e) {
                   throw new ExtractorException(TRANSFORMER_CREATION_ERROR_MESSAGE +
                                                      e.getMessage());
              } catch (IOException e) {
                   throw new ExtractorException(IO_ERROR_MESSAGE + e.getMessage());
              } catch (TransformerException e) {
                   throw new ExtractorException(TRANSFORMATION_ERROR_MESSAGE +
                                                      e.getMessage());
              } finally {
                   if(temp != null) {
                        if(outputStream != null) {
                             try {
                                  outputStream.close();
                             } catch (IOException e) {
                        temp.delete();
              }It fails at the transformation line, and I don't understand why it gives me this error on a mac. In fact, it works fine on a mac if a run it with an Ant script, for example, but it fails when I run it using the Eclipse plug-in I developped with. But I'm POSITIVELY sure that no code in my plug-in can cause that, so maybe the Mac Eclipse does things differently and messes up with the transformation...
    Any help?
    Thanks.

    After a big load of tests and things, we found that the Mac OS X Eclipse used a different Xalan.jar than the one that was given with my plug-in, and that it messed up with the transformation. With tried things, without success, then finally we installed the last stable release of Eclipse 3.2 for Mac OS X, and it worked fine, despite always using this different xalan.jar.
    I really hate it when problems solve themselves like that, because I can't guess what didn't work. I can only suppose that it was a wrong way of handling this Jar by the previous releases of Eclipse.
    Well, that was for your information, thanks for the suggestions!
    Thomas

  • Cross-platform issues with Initial View

    When I specify my Initial View setting on Acrobat Pro (10.1.9) on my Mac, they are not honoured when the PDF is opened on a Windows machine. I've noticed this specifically with the Page Layout view. Any help would be appreciated.
    Thanks.

    Hi Bill.
    I open the PDF in Acrobat Pro, then go to File > Properties (cmd + D), choose the Initial View tab and change the setting there. I then OK that and save the PDF. When I open the same PDF again on the Mac (in either Reader or Acrobat Pro) the settings I made are honoured. When I open the same PDF on a Windows machine, they're not.
    J

  • Cross-Platform issue

    Hi,
    I'm working on some application, with a small bit of GUI in it. At the beginning of the program, I call:
    try {
                   UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
              } catch (Exception e) { ...Then I use a class extending JFrame, and sometimes a JFileChooser.
    It works file on Windows XP, but when I try it on a Mac OS 10, it blocks at the frame or file chooser instanciation, like if it was stuck in an infinite loop.
    I tried without specifying the look and feel, to use the Java one, but it was the same.
    Can someone help me with this?
    Thank you in advance,
    Thomas

    Can anyone help? Or at least tell me that it's not normal and that it should work?
    Thanks.

  • Old Macromedia - Adobe cross platform font issues

    This message is more directed to Adobe.
    I am aware that currently OpenType fonts are cross platform compatible but only with Illustrator, Photoshop and InDesign.
    However, my primary workspace is Fireworks-Flash. There are serious cross platform issues with fonts - I have looked at truetype, postscript and opentype and they all have issues translating onto PC - many of the styles are not available.
    In our studio I design on Mac but our Flash developers are on PC - our final renders and review renders always need to happen on Mac as a result of this cross platform issue. This is a little inefficient.
    When is Adobe planning on resolving this issue?

    "I am aware that currently OpenType fonts are cross platform
    compatible but only with Illustrator, Photoshop and InDesign."
    No, they are fully cross-platform compatible. The Adobe products you
    mention, along with a very few others, are the only applications
    capable of taking full advantage of the advanced features available in
    some opentype fonts. And even the three products you mention don't all
    necessarily support open-type in the same way.
    "However, my primary workspace is Fireworks-Flash. There are serious
    cross platform issues with fonts - I have looked at truetype,
    postscript and opentype and they all have issues translating onto PC -
    many of the styles are not available."
    If you are using the same application version on both platforms, you
    should have identical functionality. If you're using an older version
    of Fireworks.
    The only cross-platform style issue with TT or T1 fonts is that
    Windows doesn't recognize any styles other than Regular, Bold, Italic,
    and Bold Italic. Also, there's a font menu difference between MacOS
    and Windows. Mac display all available styles, whereas Windows only
    displays the family name, and you have to select the variants from
    somewhere else (typically "B" "I" "U" buttons). SOME font families
    from some vendors use the style function to define such variants as
    Small Caps, Light, etc. MS products get ... confused.
    "In our studio I design on Mac but our Flash developers are on PC -
    our final renders and review renders always need to happen on Mac as a
    result of this cross platform issue. This is a little inefficient."
    If you're using different applications for design and rendering, and
    their functionality is different, then you have a cross-application
    compatibility issue. You didn't mention what applications or versions
    are involved.
    "When is Adobe planning on resolving this issue?"
    It may be more a Microsoft issue than an Adobe issue. In addition to
    the style limitations, There are no MS products that yet support
    open-type features.
    Although Adobe personnel do sometimes visit here, this is not a
    "talk-to-Adobe' forum. Since your problem is application related, I'd
    suggest taking it to the appropriate application forumsFireworks
    General Discussion looks right.
    And, as Bob said, you might also contact Adobe support directly with
    your concerns.

  • Loss of Edits in a non cross-platform InDesign/InCopy Workflow

    I have read, and understand, the cross-platform issues related to loss of edits in InCopy. We are experiencing the same issue on an all Windows network.  Some authors have experienced the following issue:
    Author checks out a story and edits the content
    Author checks the story in
    Later, the Author checks out the story , but the edited content is missing
    Author becomes frustrated ;-)
    The worst part of this issue is that it does not happen consistently, it is random.
    We are running InDesign on Window-7 64 bit machines, InCopy on Windows XP 32 bit machines, and the file server is a Windows 2003 server.  Or workflow is designed so that only one author and the InDesign designer has access to the  assignment file (We create assignments by author instead of by section).
    So my question is, has anyone else experieinced these problems? Any thoughts would be appreciated.

    Yes, we are using InDesign, InCopy, Illustrator, and Photoshop CS5. We were very excited about having the ability to mix 8.5x11 and 11x17 pages for the proposal we are in the process of creating and decided to be early adopters.  I hope they get the bugs fixed soon....I am confident that they will.
    Thanks!

  • Issues when a cross platform android app is run on Blackberry 10 alpha simulator

    I am facing problems in running a cross platform android App in blackberry 10 Alpha simulator.The App works fine when run in iphone,android devices.But when I run it in blackberry 10 it doesn't load the template files hence a blank screen.The project is based on backbone framework hence template files.Currently the files are local in my hard-disk. I am loading the templates using an ajax call. The logcat output generated of the same is listed below:- 02-08 05:30:51.861: D/CordovaLog(233525377): {"readyState":4,"responseText":"","status":404,"statusText":"error"}
    I have added in config.xml file . Is there anything else I am missing to make the app run on blackberry 10?? I had the same issue with nook HD which was avoided by using super.appView.getSettings().setAllowUniversalAccessFromFileURLs(true); in the onCreate method.But since blackberry uses 2.3.3 of Android,I am unable to add the same settings. Please let me know If I am missing any specific configuration related content for blackberry 10.Thanks

    Hey Steve_web,
    This issue can be caused when MAC address filtering is enabled on the Wi-Fi network, and the MAC address of the BlackBerry Playbook is not accepted. Try adding the MAC address of the BlackBerry Playbook to the accepted MAC address list for the Wi-Fi network and test.
    The following article may be helpful as well:
    Troubleshooting Wi-Fi and networking on the BlackBerry PlayBook
    http://btsc.webapps.blackberry.com/btsc/KB26096
    Also if you contact the BlackBerry PlayBook support team they can do log review to determine the cause; you can find the contact information here: http://us.blackberry.com/legal/blackberry-playbook-complimentary-support-plan-terms-and-conditions.h...
    Thanks.
    -HB
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Does anyone have issues sending pdf's or jpg's cross platform and the images do not come through as an attachment. iMac OS 10.8.2

    Issues with mailk.
    When I send an attachment, if I drag n drop or actualy use attach. When it is sent cross platform, especially outlook. The person says the image is embedded in email. I tell them to right click and they say it saves to small.
    Anyone have any ideas, I am strictly aa apple girl. Never had PC so I don't know what to tell my clients.
    Thanks for any help.

    Lion Mail: If Windows users have trouble with your attachments

  • Help!  Cross Platform Projector issue

    Hi all,
    I am sure this has been a hot topic for years and I did do
    various searches and was surprised not to find anything on it
    quickly. Sorry if this has been discussed a lot, as I imagine it
    has. We are able to make our functioning mac and win projector with
    our win version of flash 8, but everytime I burn the cd on win, the
    projector file does not know what to do with itself when trying to
    launch back on mac.
    Questions:
    1. Does cross platform burning have to be performed on a Mac?
    2. If so, does one need toast to do the cross platform
    burning to make the mac and win projectors groovy on their
    respective platforms? We have a brand new MacBook Pro - it seems
    like it should have these capabilities built in at this point, but
    not sure.
    Any pointers here or to a technote would be much appreciated.
    Thanks!
    We

    Read this
    http://board.flashkit.com/board/showthread.php?s=ffa1834a93ea5d8f5c4c8f9e97f34191&threadid =500326
    Regards
    FlashJester Support Team
    e. - [email protected]
    w. -
    http://www.flashjester.com
    There is a very fine line between "hobby" and
    "mental illness."

  • External Hard Drive won't appear on PC (want cross platform)

    I have an external USB Hard Drive. I formatted it using the Disk Utility, OS Format and Journaling. Did a small partition in case I needed a system boot drive. Now my sis needed to backup her laptop (Dell laptop), but the drive won't appear in My Computer, it recognizes there is a USB device on the lower task bar, but no drive anywhere.
    Do I have to reformat? what steps do I need to make this USB drive cross-platform friendly?
    Paul

    Hi, Paul.
    You may not want to reformat the drive as FAT-32 since there is a limit on the size of the partition, the maximum file size, and other issues, especially if her Dell's drive is formatted as NTFS (FAT-32 does not support NTFS extended attributes). FAT-32 is unsuitable for backing-up Mac OS X volumes as it cannot preserve the extended attributes (permissions, etc.) employed by Mac OS X.
    It's really best if you each have your own external hard drive for backup, as part of implementing a comprehensive Backup and Recovery solution, such as I use and detail in my "Backup and Recovery" FAQ. You also don't want one person inadvertently writing over another person's backups, which could happen if one is not careful. Furthermore, it is often easiest for recovery.
    How one handles backup in cross-platform environments is tricky and depends on the native formats employed by the different computers involved, and whether backup will be performed over a network or by directly connecting backup drives to the computers one is backing up.
    To enable her Dell to use the Mac-formatted drive, install Mediafour's MacDrive for Windows on the PC. MacDrive for Windows is probably the state-of-the-art application for enabling you to use Mac-formatted disks and hard drives on Windows-based PCs.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Steps to create Cross-Platform Transportable Tablespaces

    hi
    what is the steps to do Cross-Platform Transportable Tablespaces.
    i want to perform this in my pc, i have linux and windows in same PC, i want to migrate from linux to windows and vice versa.
    so can i know complete steps and commands to perform Cross-Platform Transportable Tablespaces. to get complete knowledge i am doing this so i can implement this in my office when any migrate issues comes. so once i do this i will get confidence so that i can do the same in my office which saves my time.
    veeresh s
    oracle-dba
    [email protected]

    Hi, also you can review the Note:413586.1 into metalink site.
    Good luck.
    Regards.

Maybe you are looking for

  • My ipod touch 4 is stuck in recovery mode and i do not know what to do help me

    my ipod touch 4 is stuck in recovery mode and i do not know what to do help me

  • Butons to close together

    I created a flash website everthing works as it should except for i have some buttons to close to each other that the "closer button" i created to close out of the dropdown is not being read because the button next to it is overlapping. Is there a wa

  • Not able to import metadata using BI Admin tool

    Hi folks, I've installed OBIEE 11g server(Version 11.1.1.6.0) in my local machine which is lying on Windows 7 environment. Tried importing metadata(Oracle Database) using BI Admin tool, it throws "The Connection has failed" error. I've copied TNSNAME

  • Tech Note on Comment Problems

    For what it's worth, Apple has issued a tech note on this issue: http://docs.info.apple.com/article.html?artnum=303779

  • Calendar, date and timezone

    Hi everybody, I'm using the CLLocation class and I cannot find any documentation on it in google. DO you know where it is ? I know how to get the timestamp for the date, but here are some questions about it : -Does this date include the timezone valu