Question about a project.

Hi, I'm sorta new here so I'll appologise now if I make any mistakes in asking for help.
Ok so I am trying to make a tool used to make mods easily accesable for a game called Pirates of the caribbean that came out earlier this year. It works by modifying the script files that the game uses to do whatever the maker of the mod wants. It's split into two parts modeled after a previous incarnation made by another memeber of the community a while back, an installer and a toolkit for making the files that the installer uses.
Anyways, now that the background thing is done here's the first question, For the installer, I have a tree that uses another tree object modeled after a tutorial on the website(I think it's called dynamic tree or something) So that when you install a mod it will move it to another section of the tree. Well the problem is that I want the user to be able to click on the tree and then the information for the mod(contained in a serializable mod object) will show up on an area on the right, but for some reason the dynamic tree won't give the rest of the program the filename that has to be opened, but it will print it out as a string if I ask it to. So that's the first big problem I have and I can't really move on untill it's solved. If anyone has any idea's on a differant method of getting a nice list then I would be open to hearing those as well.
Sorry if i wrote too much, or not enouph. If anyone's interested in helping me, I can post a link to the code or something.

Well, unfortunatly I'm not sure where the problem is to post any code, but I'll try... Here's the listener I was trying(in the Installer File), I tried any listener I could find that dealt with JTree's and none of them seemed to work
          INSModTree.addTreeModelListener(new TreeModelListener()
               public void treeNodesChanged(TreeModelEvent e)
                    System.out.println("you selected " + e.getTreePath().getPathComponent(2));
                    try
                         FileInputStream fis = new FileInputStream(e.getTreePath().getPathComponent(2).toString());
                         ObjectInputStream ois = new ObjectInputStream(fis);
                         m = (Mod)ois.readObject();
                         INSDesc.setText(m.getModDesc());
                         INSTitle.setText(m.getModName());
                         //INSTempPath = e.getPath();
                         //CurrentFile = e.getPath().getPathComponent(2).toString();
                         //System.out.println(e.getPath().isDescendant());
                         //System.out.println("Current file is: " + CurrentFile);
                         ois.close();
                         //System.out.println("isInstalled: " + isInstalled);
                    catch(Exception oe)
                         System.err.println("I/O Error on Selection listener");
               public void treeNodesInserted(TreeModelEvent e){}
               public void treeNodesRemoved(TreeModelEvent e){}
               public void treeStructureChanged(TreeModelEvent e){}
I have alot of commenting out... sorry... Seriously though, I'm not sure this is even what i had planned anymore(it's been a while for this part) The idea though is that there is a listener on the JTree and when the user clicks on one of the files it will open it based on the title of the Jtree branch, which is gotten from a folder called Mods everytime it's ran. Opening it is where th eproblem is I think.
Here's where all the code is if you want to see it for yourself:
http://edtech.mcc.edu/~nkalush/POTC/POTCMDK/SourceCode/
Thanks in advance

Similar Messages

  • Question about dependent projects (and their libraries) in 11g-Oracle team?

    Hello everyone,
    I have a question about dependent projects. An example:
    In JDeveloper 10.1.3.x if you had for instance 2 projects (in a workspace): project 1 has one project library (for instance a log4j library) and project 2 is a very simple webapplication which is dependent on project 1. Project 2 has one class which makes use of log4j.
    This compiles fine, you can run project 2 in oc4j, and the libraries of project 1 (log4j) are added on the classpath and everything works fine. This is great for rapid testing as well as keeping management of libraries to a minimum (only one project where you would update a library e.g.)
    However in 11g this approach seems not to work at all anymore now that weblogic is used, not even when 'export library' is checked in project 1. The library is simply never exported at all - with a noclassdeffound error as result. Is this approach still possible (without having to define multiple deployment profiles), or is this a bug?
    Thanks!
    Martijn
    Edited by: MartijnR on Oct 27, 2008 7:57 AM

    Hi Ron,
    I've tried what you said, indeed in that .beabuild.txt when 'deploy by default' is checked it adds a line like: C:/JDeveloper/mywork/test2/lib/log4j-1.2.14.jar = test2-view-webapp/WEB-INF/lib/log4j-1.2.14.jar
    Which looks fine, except that /web-inf/lib/ is empty. I presume its a sort of mapping to say: Load it like it in WEB-INF/lib? This line is not there when the deploy by default is not checked.
    I modified the TestBean as follows (the method that references Log4j does it thru a Class.forName() now only):
    public String getHelloWorld() {
    try {
    Class clazz = Class.forName("org.apache.log4j.Logger");
    System.out.println(clazz.getName());
    catch(Exception e) {
    e.printStackTrace();
    return "Hello World";
    In both cases with or without line, it throws:
    java.lang.ClassNotFoundException: org.apache.log4j.Logger
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:283)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:256)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:54)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:176)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.loadClass(ChangeAwareClassLoader.java:42)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:169)
         at nl.test.TestBean.getHelloWorld(TestBean.java:15)
    Secondly I added weblogic.xml with your suggested code, in the exploded war this results in a weblogic.xml which looks like:
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <weblogic-web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/ns/weblogic/weblogic-web-app.xsd" xmlns="http://www.bea.com/ns/weblogic/weblogic-web-app">
    <container-descriptor>
    <prefer-web-inf-classes>true</prefer-web-inf-classes>
    </container-descriptor>
    <jsp-descriptor>
    <debug>true</debug>
    <working-dir>/C:/JDeveloper/mywork/test2/view/classes/.jsps</working-dir>
    <keepgenerated>true</keepgenerated>
    </jsp-descriptor>
    <library-ref>
    <library-name>jstl</library-name>
    <specification-version>1.2</specification-version>
    </library-ref>
    <library-ref>
    <library-name>jsf</library-name>
    <specification-version>1.2</specification-version>
    </library-ref>
    </weblogic-web-app>
    The only thing from me is that container-descriptor tag, the rest is added to it during the deployment. Unfortunately, it still produces the same error. :/ Any clue?

  • Two quick questions about the project and timing panes

    1) Is there a hotkey for toggling between the project and timing panes?
    I can't seem to find this anywhere. I know F5 and F6 open and close them, but I'd like to be able to simply activate then without having to click on them. I'd like to be able to simply toggle between them and navigate using the arrow keys
    2) Is there a way to lock together the project and timing views so that when you open a group in one that group is also opened in the other?

    Sure, play/stop SHOULD work, but it doesn't always. And the up/down arrows only work to move layers in some instances. Try this. In a normal project, select a layer in either the layers pane or the canvas. Use the up/down arrows and you'll find Motion cycles between layers. Now close the layers pane (F5) and open it again. Now try to use the up/down arrows. It no longer cycles on my machine (and probably yours).
    In fact, Motion 4 broke a LOT of the keyboard shortcuts that used to work seemlessly in Motion 3.
    For example: I create a text object and start typing my text. About 30 percent of the time hitting the spacebar while typing text will cause playback to start. Pure annoyance.
    I used to be able to Hit HOME and END to go to the start and end of the project when the layer's pane is active, now I can't.
    About 25 percent of the time when I'm in the layers pane and I hit spacebar, instead of playing the project, I turn off the layer that was currently selected.
    Those are just a few of my pet peeves. There are definitely some real issues with shortcuts in Motion 4.
    Andy

  • J2ME Questions about School Project

    Hello,
    Before graduating college, I must complete a senior project with a team. For our project we would like to developed some embedded devices(hopefully using j2me).
    I'm not sure if it will be possible to do so. We have 2 different devices that must communicate wireless.
    One device with have a screen, small key pad(3-4 buttons). The other device will have neither a keypad nor a screen. The second device will simply send and receive signals.
    I was thinking of using CLDC with MIDP for the first device. The second device has me puzzled though, what should I use for it? Just CLDC?
    Also, I have no idea what kind of hardware I need, some specs would be really helpful.
    And finally, do I need an operating system on the device to use j2me?
    Thanks for the help.

    If you have no hardware, it's prety useless to get into the j2me stuff already.
    First get together what hardware you're using, and then check how you can programme it. Most likely J2me will not work, unless you port it to your hardware platform.

  • Question about opening project in newer version of flash

    I have a few FLA files I made under Flash 10. When I try to open them in CS5, I get an error message saying it's incompatible because CS5 doesn't support sliders or documents. My guess is that the FLAs have a slider or two in them.
    Has anyone run into this type of problem? Do I have to any options other than rewrite the projects?? 

    See this:
    opening After Effects projects from previous versions and saving back to previous versions

  • Question about idvd project with multiple movies

    Is there a way to drop in multiple movies and have each movie play right away when it is clicked? Right now the first movie plays on one click but the rest go to another menu where you have to click play movie. I just want my main menu to show the 4 movies I have and then immediately play them when they are clicked.

    You can put them in an iDVD slideshow and they will play consecutively.  But don't assign a transition in the slideshow:
    Click to view full size
    It won't matter what slide duration you select.
    OT

  • Question about subclips in a long project

    Hello all;
       I am editing a 1 hour long documentary in full HD with a lot of clips and so forth in it.  What I have been doing is for some segments creating a sequence in another project, rendering it and saving it as a H264 Full HD format, the same as the main project.  Then importing that rendered version into the main project instead of all the component parts.  This makes it harder if I want to change anything in that segment, but it cuts down on the load time of the main project, and seems to work OK.
      My question is - when I finally render the whole 1 hour project, will these included clips get degraded because they will be (I guess) rerendered?  Is there a better strategy for this?  Also, I'm doing the project in three 20 minute sections that I intend to simply run back to back in Encore when I'm done.  Is that likely to be a problem.
    Thanks in advance for any advice on this.
    Jim G.

    Hello again.
    I hope you don't mind if I ask you a follow up question about this issue of consolidating complex sequences into a rendered video file and then using that in a longer sequence.   On CS5 within the Export screen there is a button labeled, "Match Sequence Settings"  if I render a segment with that selected and import that into a longer sequence is that a problem too?  Or do I have to select something like AVI lossless?  Or should I avoid that as well? 
    Finally, for After Effects segments that I want to incorporate into Premier, I can use the Dynamic LInk thing, but it seems to mess with the color when I see it in Premiere.  Would it be OK to use the lossless renders from AE in the CS5 timeline?
    I apologize for pestering you with these questions.
    Thanks,  Jim Greeson

  • Question about elearning - OKP SAP Commercial Project Management

    Hi Gurus,
    i have a question about an e learning course which SAP offers-
    Course Name- OCPM10-
    OCPM10 - OKP SAP Commercial Project Management 1.0 | SAP Training and Certification Shop
    It's an e learning course for 20 hours, below are my questions-
    Since its an e-learning course, is it to be completed in a specified time (within 2-3 days) or we can have access to it throughout the year but duration of course is 20 hrs
    What kind of documentation is provided to me as part of this course.  

    1. C_TPLM22_05 - SAP Certified Solution Consultant PLM - Project Management with SAP ERP 2005   
    It includes SAP PLM 235 course material along with PLM 200, 210 220, 230,
    2. C_TPLM22_60 - SAP Certified Application Associate - Project Management with SAP ERP 6.0
    It is not including the PLM 235 course.
    This is the basic difference between  it.  IN Certification there are  6 -7 areas , in each of them you have to score more than 70 % , there many few multiple answer questions as well. Finally over score will come it should be higher than 70 %.  So, I ideally weight all the topics equally,
    With Regards
    Nitin P.

  • Getting Started with CFBuilder - A Question About Project Settings

    Hello All,
    I'm just getting my feet wet with CFBuilder and giving it a spin after over a decade's worth of experience with Dreamweaver and I have a question about setting up my work environment.
    First of all, I have two computers that I mainly work from.  My home desktop computer, and a laptop for when I'm on the road.  I keep all of my web site project files syncronized between the two computers using Dropbox.
    I've noticed that when I create a new project in CFBuilder it stores a few files in my project root like ".project" and "settings.xml".  It looks like "settings.xml" stores information about which CFBuilder web server should be used for the project.  Unfortunately this messes things up for me a bit because on my desktop a web site project url might be:  http://desktop/myProject/ and on my laptop the project url could be http://laptop/myProject.
    The reason this isn't a problem in Dreamweaver is because dreamwevaer stores its configuration/preferences outside of my project folders so I can essentially define any testing server I want for both the desktop and laptop.
    Is there a way to configure CFBuilder to store project settings outside of the project folder?  Or does anyone have a suggestion for someone like me who syncronizes their project files from their laptop to their desktop?
    Thanks in advance for helping out a CFBuilder noob.

    I would recommend using a distributed version control system (DVCS) with a hosted service, such as using Git/Mercurial and Github/BitBucket/UnFuddle.  With Git, you can use a .ignore file to specify files/folders that you want to exclude from being stored in version control (I also exclude my CFBuilder project files from my repositories).  You would then sync your local Git repositories with your service of choice, and they would be accessible from any machine. 
    There are many advantages of using Git and a hosted service over just Dropbox:
    Each computer has a complete copy of the code repository, including all code changes over the history of your project.
    You store code modifications in "commits", or small entries in the DVCS.
    Commits can contain user-defined descriptions that help you identify what you did at each step of your development process
    You can roll back commits if you break something in your code.
    You can create "branches" of your code when you want to work on a specific feature of your application, and that branch is kept in isolation from other branches until you are ready to merge it back into the main production code branch.
    You can have public or private hosted repositories on the various services, enabling you to work with a team or participate in open-source development.
    There are Eclipse plugins available for CFBuilder that provide GUI tools for working with Git and hosted repositories (unless you are comfortable with using the command-line to do all your Git interactions).
    I don't think you can separate the project settings from the project in CFBuilder.

  • Question about Project Lockdown

    I've been reading through Arup Nanda's "Project Lockdown". I understand all of his rationals and procedures, but a few things leave me feeling a bit uneasy. Maybe it's just fear of the "unknown unknowns". In particular is the discussion on changing the unix access profiles for the oracle binaries. I have this uneasy feeling that if I were to implement those particular suggestions, it would end up biting me somewhere down the road.
    Has anyone implemented all of the suggestions in this document? If so, what have been your experiences?

    Arup Nanda_2 wrote:
    Hi Ed,
    Thanks Mark for pointing me out to this.
    I have been using that for more than 8 or 9 years now, without any side effects. But as Emre Baransel reported that although he has been following that without any untoward effects, you should take every advise in the specific context of your environment. I have tried to put all caveats there; but there is no way for me to check all possible comobinations.
    For instance, one of the advises is to remove executable permissions from extjob executable. If you are not using extrnal jobs from the database (99% of people don't), heeding that advise does nothing to your activities. But if you do external jobs, they are broken now. I have made that clear in the article; but I can't be sure if the reader will pay attention to that. But if you don't use external jobs, by changing the permissions you just closed a major vulnerability without applying the CPU patch, which may or may not close all the vulnerabilities.
    Another is the case of nmb and nmo executables. If you are using Enterprise Manager to manage the O/S as well, then changing those executables will no longer allow you to do that. But if you don't do that particular activity (most don't), you again closed a major vulnerabillity without affecting your functionality.
    For anyone who has ever authored anything, one thing is clear - the work is like broadcast, not point to point transmission. Even point-to-point. "If you explain something so clearly that no one can misunderstand, someone will".
    It's not consulting which is situation specific. So, any work which is not prepared in context of a specific situation must be taken with that disclaimer - your mileage may vary. Understanding and testing is a must before committing the work.
    Hope this helps.
    ArupThanks for the response. Besides worrying about the "unknown unknowns" I also have a question about applying patches, especially the quarterly CPUs. Since, at some level, applying a patch is simply overlaying a specific file with a newer version, will this cause permissions to revert to default? Would we have to go through the process after applying a patch? I'll go back and re-read the original doc several more times to make sure I have a good grasp of what's going on here.

  • Super noob questions about cs6 and air project

    Hi, I'm trying to pass a complicated game I developed few months ago with CS5.0 for desktop and I wanted to try, at least, how it worked in a android/ios simulator... but it's becoming something harder than I though.
    1) How I know if I'm developing in flash or flex? I only see "flash" or "air"; should I try with flash builder instead? is it better for games development?
    2) Why do we have the option to publish as swc if it's a mobile app? If it's IOS is supposed to created a IOS compilated file... so... swc??
    3) I'm having really bad times with all the swf and swc I had before. Seems like it doesn't read the sfw in runtime, publish them as swc and add them in the as3 project's configuration doesn't work either. Any sort of known issue?
    4) Can I ask you about tutorials or any sort of information? not about creating animations and launch them in the simulator, that's fine. About managing project and this sort of "more advanced" stuff. I don't find any sort of information anywhere!
    thank you!!!

    Sorry, I misinterpreted that part of the qustion. Yes, Colin is of course correct. Apple won't allow you to run any non-compiled code (C compiled, not AS-compiled) on IOS. So you can neither bundle a swf with the ipa nor call to a server to load a swf, if that swf contains any code whatsoever (even something as simple as a stop() action or a linkage identifier).
    What you can do is embed a swf into your project, or link to your swc and use its assets in that way. This results in a single swf that gets compiled into your ipa, thus satisfying Apple's requirement.
    Oh, and a little more on #1: You asked if you should use Flash Builder, and if it's better for games development. The answer is: "it depends". Most every "serious" dev I know develops in some sort of dedicated coding environment: FB, FDT (this is what I use principally), IntelliJ, FlashDevelop, emacs, etc. That said, I worked quite successfully in Flash for many years and its coding tools are adequate (arguably). If you start building large systems, though, you will probably rapidly get tired of the limited toolset and want to graduate to something with a bit more firepower.
    <edit>
    BTW...I'm talking about my experience, not passing judgement. Anyone who considers themselves a serious dev and yet codes in the Flash IDE, I respect your preference. If you consider yourself a serious dev and haven't *tried* working in another environment, I still respect you; but I also suggest you look at the advantages of other work environments.
    </edit>

  • Questions about using a PDF form online

    I have a client who wants to create an online version of a PDF form that they are currently using. I am currently trying to explain to them that this would be best done as an HTML web form, but I may not win this argument. I have only used PDFs for printed forms (either hand-written or using form fields) so I am not familiar with any problems that converting the form for use online would entail.
    When the 'Submit' button is pressed on the form, is there a way to redirect to another web page after the data is submitted? (i.e. does the PDF have access to it's outer 'environment'?)
    Are there any security issues submitting data using the PDF form as opposed to using a standard web form? (There may be sensitive data being submitted)
    I'm not sure how they plan to handle the data that is submitted, but there are several options in the submitForm parameters - I am assuming that using the HTML option would submit the data in the same format as a web form would. Am I correct here?
    Can the PDF be prevented from being downloaded or printed? This form should only be used to submit data to their server, not as a printed form.
    Are there any other 'gotchas' that I need to look out for? Does anyone have a recommendation for a site which contains any tutorials or guidelines for using PDF forms online?

    Thanks for the information.
    Yes, I agree that there is less reason for it to be a PDF form (Actually, no real reason other than the original form already exists in PDF), but I am unfortunately in the position that my input in this project is not necessarily being considered (my company is following direct -and inconsistent- directions from the client, and I have no contact with the client to ask questions about what their actual needs are). I have been told to give the client the 'Tomato' that they are asking for, even though they are describing an 'Apple'.
    The reason this form is not meant to be printed is that we have replaced the 'Signature' fields from the original form with checkboxes that the user must check to confirm they have 'signed' the document. If they are to print/fax/whatever the document, they should use the original form, not this one. And I am still trying to explain to them that this would be better served with an HTML web form, but I fear I am losing that battle.
    I have brought up the fact that it is not 100% guaranteed that Acrobat will be available in the browser, although I can only guess that it is less than likely that anyone will not have some sort of PDF viewer available to their browser.
    I will also mention that issues may arise if the file is not submitted from within the browser.

  • Some questions about the integration between BIEE and EBS

    Hi, dear,
    I'm a new bie of BIEE. In these days, have a look about BIEE architecture and the BIEE components. In the next project, there are some work about BIEE development based on EBS application. I have some questions about the integration :
    1) generally, is the BIEE database and application server decentralized with EBS database and application? Both BIEE 10g and 11g version can be integrated with EBS R12?
    2) In BIEE administrator tool, the first step is to create physical tables. if the source appliation is EBS, is it still needed to create the physical tables?
    3) if the physical tables creation is needed, how to complete the data transfer from the EBS source tables to BIEE physical tables? which ETL tool is prefer for most developers? warehouse builder or Oracle Data Integration?
    4) During data transfer phase, if there are many many large volume data needs to transfer, how to keep the completeness? for example, it needs to transfer 1 million rows from source database to BIEE physical tables, when 50%is completed, the users try to open the BIEE report, can they see the new 50% data on the reports? is there some transaction control in ETL phase?
    could anyone give some guide for me? I'm very appreciated if you can also give any other information.
    Thanks in advance.

    1) generally, is the BIEE database and application server decentralized with EBS database and application? Both BIEE 10g and 11g version can be integrated with EBS R12?You, shud consider OBI Application here which uses OBIEE as a reporting tool with different pre-built modules. Both 10g & 11g comes with different versions of BI apps which supports sources like Siebel CRM, EBS, Peoplesoft, JD Edwards etc..
    2) In BIEE administrator tool, the first step is to create physical tables. if the source appliation is EBS, is it still needed to create the physical tables?Its independent of any soure. This is OBIEE modeling to create RPD with all the layers. If you build it from scratch then you will require to create all the layers else if BI Apps is used then you will get pre-built RPD along with other pre-built components.
    3) if the physical tables creation is needed, how to complete the data transfer from the EBS source tables to BIEE physical tables? which ETL tool is prefer for most developers? warehouse builder or Oracle Data Integration?BI apps comes with pre-built ETL mapping to use with the tools majorly with Informatica. Only BI Apps 7.9.5.2 comes with ODI but oracle has plans to have only ODI for any further releases.
    4) During data transfer phase, if there are many many large volume data needs to transfer, how to keep the completeness? for example, it needs to transfer 1 million rows from source database to BIEE physical tables, when 50%is completed, the users try to open the BIEE report, can they see the new 50% data on the reports? is there some transaction control in ETL phase?User will still see old data because its good to turn on Cache and purge it after every load.
    Refer..http://www.oracle.com/us/solutions/ent-performance-bi/bi-applications-066544.html
    and many more docs on google
    Hope this helps

  • Questions about editing with io HD or Kona 3 cards

    My production company is switching from Avid to Final Cut Pro. I have a few editing system questions (not ingesting and outputting, just questions about systems for the actual editors - we will have mac pros with either kona 3 or io HD for ingest and outputs)
    1) Our editors work from home so they most likely will be using MacBook Pros - Intel Core 2 Duo 2.6GHz 4GB computers with eSata drives to work on uncompressed HD, will they be able to work more quickly in FCP if they are using the new Mac Pro 8-Core (2 Quad-Core 2.8GHz Intel Xeon) or will the mac book pro's be able to hold their own with editing hour long documentaries, uncompressed HD
    2) Will having an AJA Kona 3 (if we get the editors mac pros) or io HD (for the mac book pros) connected be a significant help to the editor's and their process, will it speed up their work, will it allow them to edit sequences without having to render clips of different formats? Or will they be just as well off without editing with the io HD?
    I'm just trying to get a better understanding of the necessity of the AJA hardware in terms of working with the editors to help them do what they have to do with projects that have been shot on many formats- DVCPro tapes, Aiptek cameras that create QTs and P2 footage.
    Thanks

    1. with the IoHD, laptops become OK working with ProRes and simply eSata setups. Without the Io, they can't view externally on a video monitor (a must in my book). It will not speed up rendering a ton, nor will it save renders of mixed formats. The idea is to get all source footage to ProRes with the Io, and then the Io also lifts the CPU from having to convert ProRes to something you can monitor externally on a video monitor, and record back to any tape format you want... all in real time.
    2. Kona 3's on Towers would run circles around render times on a Laptop... no matter what the codec, but the Kona does not really speed renders up. That's a function of the CPU and just how fast is it. (lots of CPU's at faster speeds will speed up render times).
    I'd recommend you capture to ProRes with Io's or the Kona 3 and don't work in uncompressed HD. You gain nothing doing it quality wise at all. And you only use up a ton of disk space (6 times the size in fact) capturing and working in uncompressed HD, which from your post, you're not shooting anyway. The lovely thing about ProRes is that it's visually lossless, efficient, and speeds up the editing process. Mixing formats can be done, but it's better to go to ProRes for all source footage, and edit that way.
    With either the Kona or the Io, you then can output to uncompressed HD tape... that's what they do for you no matter what codec you've edited in. ProRes is designed to be the codec of choice for all HD projects when you're shooting different formats especially... Get them all singing the same tune in your editing stations, and you'll be a much happier camper. Only reason to buy laptops is portability... otherwise you're much better off with towers and the Kona 3 speed wise.
    Jerry
    Message was edited by: Jerry Hofmann

  • A few questions about Patone colors

    I have a few questions about patone colors since this is the first time I use them. I want to use them to create a letterhead and business cards in two colors.
    1)
    I do understand that the uncoated is more washed out than the coated patone colors. I heard that this is because the way paper absorbs the inkt. This is why the same inkt results in different colors on different paper (right?). My question is why is the patone uncoated black so much different than normal black (c=0 m=0 y=0 k=100) or rich black:
    When I print a normal document with cmyk, I can get pretty dark black colors. Why is it that I cannot have that dark black color with patone colors? Even text documents printed on a cheap printer can get a darker color than the Patone color. It just looks way too grey for me.
    2) For a first mockup, I want to print the patone colors as cmyk (since I put like 10 different colors on a page for fast comparison). I know that these cmyk colors differ from the patone colors and that I cannot get a 100% representation. But is there a way to convert patone to cmyk values?
    I hope that some of you can help me out with my questions.
    Thanks.

    You can get Pantone's CMYK tints in Illustrator, (Swatches Panel > Open Swatch Library > Color Books > PANTONE+ Color Bridge Coated or Uncoated) but in my view, what's the point?  If you're printing to a digital printer, just use RGB (HSB) or CMYK. Personally, I never use Pantone's CMYK so-called "equivalents."
    Pantone colors are all mixed pigmented inks, many of which fluoresce beyond the gamut limits of RGB and especially CMYK. The original Pantone Matching System (PMS) was created for the printing industry. It outlined pigmented ink formulations for each of its colors.
    Most digital printers (laser or inkjet) use CMYK. The CMYK color gamut is MUCH SMALLER than what many mixed inks, printed on either coated or uncoated papers can deliver. When you specify non-coated Pantone ink in AI, according to Pantone's conversion tables, AI tries to "approximate" what that color will look like on an uncoated sheet, using CMYK. -- In my opinion, this has little relevance to real-world conditions, and is to be avoided in most situations.
    If your project is going to be printed on a printing press with spot Pantone inks, then by all means, use Pantone colors. But don't trust the screen colors; rather get a Pantone swatch book and look at the actual inks on both coated and uncoated papers, according to the stock you will use on the press.
    With the printing industry rapidly dwindling in favor of the web and inkjet printers, Pantone has attempted to extend its relevance beyond the pull-date by publishing (in books and in software alliances, with such as Adobe) its old PMS inks, and their supposed LAB and CMYK equivalents. I say "supposed" because again, RGB monitors and CMYK inks can never be literally equivalent to many Pantone inks. But if you're going to print your project on a printing press, Pantone inks are still very relevant as "spot colors."
    I also set my AI Preferences > Appearance of Black to both Display All Blacks Accurately, and Output All Blacks Accurately. The only exception to this might be when printing on a digital printer, where there should be no registration issues.
    Rich black in AI is a screen phenomenon, unless in Prefs > Appearance of Black, you also specify "Output All Inks As Rich Black," -- something I would NEVER do if outputting for an actual printing press. I always set my blacks in AI to "Output All Blacks Acurately" when outputting for a press. If you fail to do this, then on the press you will see any minor registration problems, with C, M, and Y peeking out, especially around black type.  UGH!
    Good luck!  :+)

Maybe you are looking for

  • Can I use my iPod with BOTH a Mac and PC???

    Might be an odd question and forgive me if it is an obvious answer. I just got a 30 gigger and connnected it up and charged it with my Mac mini at home last night. I have lots of music on my iTunes on my home Mac mini and I have some music on my work

  • Mac mini internal hard drive not recognised during internet recovery

    mac mini 2.3GHz OS X Lion I turned on my comp and got the folder with the question mark. Went into recovery and am not able to do any of the proceedures. I can see something in the disk utility, but it is not mounted. I was able to recover an old int

  • Create a PO with the following conditions

    Hi guys,     I have given this scenario. can anyone pls guide me so that i coud move one with the following scenario. can any pls tell me how to proceed with the given queries?? Release procedure with classification              a.Create new PO docum

  • Can be passed Formula Column value to Procedure/Function?

    Below cf_value is return after some calculation by using main query. Can be directly passed formula column value to procedure without assinged to placeorder? as below.. f_convert(:cf_value,new_value); My Procedure is... PROCEDURE f_convert( val1 in n

  • Apple genius did an Archive & Install on my OS. Got home-no pics in iPhoto

    Hi, My iMac wouldn't start and nothing I did was helping, so I took it into the Apple store. After trying a few things, the genius did an Archive & Install of Tiger, and everything appeared to be fine. So, I happily went home. However, later in the d