How to use for loops with Multiple Initializers and Incrementers

I found that my for loop is printing out wrong, because I am using two for loops. I have searched but all I can find out is you can't use multiple inializers and increments, does anyone know how to get around this? How would I use an array for this?
Thanks very much for your help.
import java.util.Random;
import java.util.Arrays;
/** Generate numnodes value for random integers in the range 0..499. */
public final class RandomInteger {
public static final void main(String... aArgs){
log("Generating 6 random integers in range 0..499.");
int numnodes = 6;
//Randomly generate a number between 0 and 499 for the x and y coordinates for the nodes
Random randomGenerator = new Random();
for (int x = 0; x < numnodes; ++x) {
int randomInt = randomGenerator.nextInt(500);
Random randomGenerator2 = new Random();
for (int y = 0;y < numnodes; ++y) {
int randomInt2 = randomGenerator2.nextInt(500);
log("Generated : " + randomInt + " " + randomInt2);
log("Done.");
}

Sorry that code works, but I want to use both my x and y coordinates to get a random number from 0 to 499 in both of them, then I want to do some comparisons of the values, then return it to another function. As it stands now, I get the wrong results when I run it, as you can see at the bottom.
Thanks very much for your help. I have been stumped all mornign on this and have looked everywhere trying to find an example. I don't won't to use math random. I am on a tight deadline to finish and at the rate I am going, I will not complete it.
/** Generate numnodes value for random integers in
the range 0..499. */
public final class RandomInteger {
public static final void main(String... aArgs){
log("Generating 6 random integers in range
0..499.");
int numnodes = 6;
//Randomly generate a number between 0 and 499 for
the x and y coordinates for the nodes
Random randomGenerator = new Random();
for (int x = 0; x < numnodes; ++x) {
int randomInt = randomGenerator.nextInt(500);
Random randomGenerator2 = new Random();
for (int y = 0;y < numnodes; ++y) {
int randomInt2 = randomGenerator2.nextInt(500);
log("Generated : " + randomInt + " " + randomInt2);
log("Done.");
private static void log(String aMessage){
System.out.println(aMessage);
Output:
--------------------Configuration:
<Default>--------------------
Generating 6 random integers in range 0..499.
Generated : 98 254
Generated : 98 347
Generated : 98 359
Generated : 98 25
Generated : 98 277
Generated : 98 148
Generated : 416 401
Generated : 416 165
Generated : 416 354
Generated : 416 169
Generated : 416 144
Generated : 416 354
Generated : 295 158
Generated : 295 138
Generated : 295 349
Generated : 295 324
Generated : 295 18
Generated : 295 193
Generated : 197 451
Generated : 197 416
Generated : 197 480
Generated : 197 33
Generated : 197 490
Generated : 197 494
Generated : 324 412
Generated : 324 490
Generated : 324 213
Generated : 324 386
Generated : 324 467
Generated : 324 163
Generated : 379 180
Generated : 379 446
Generated : 379 314
Generated : 379 52
Generated : 379 113
Generated : 379 271
Done.
Process completed.

Similar Messages

  • Can bookmarks be protable for multiple computers? Is it an option to log on and use my bookmarks with multiple computers and locations? Thanks

    Can bookmarks be protable for multiple computers? Is it an option to log on and use my bookmarks with multiple computers and locations? Thanks

    Profile is a folder which store all your personal data in a safe place
    * https://support.mozilla.com/en-US/kb/Profiles
    You can use this button to go to the current Firefox profile folder:
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    here explain how to backup profile
    * https://support.mozilla.com/en-US/kb/Backing%20up%20your%20information
    Here explain how to restore it
    *https://support.mozilla.com/en-US/kb/Recovering%20important%20data%20from%20an%20old%20profile

  • How to use an Applet with multiple-jars

    Hi everybody,
    I would like to use an applet with multiple-jars.
    ex:
    <applet codebase="." archive="main.jar,Addon1.jar,Addon2.jar" code="Appl.class" id="MyTest" width="600" height="30">
         <param name = "MyParam" value = "1;2">
    </applet>
    An applet with :
    -> 1 Main JAR
    -> X Addon JARs (X : a parameter "PRM")
    My main part knows the parameter "PRM" -> knows which addon to use
    My question is, how do I use classes from addons, inside the main part (and vise-versa if possible) ?
    Thanks in advance
    Best regards

    I try what you say :
    === HTML ===
    <applet codebase="." archive="Main.jar,Addon1.jar" code="Test.Appli.class" id="MyTest"  width="600" height="30">
         <param name = "myPrm1" value = "1;2">
    </applet>=== MAIN JAR ===
    package retest;
    interface InterfAddOn1 {
        public void AfficheTest1(String sStrTest);
    public class Ctest {
        public Ctest() {}
        public void unTest(String sClassNameR) {
          String sClassName = "PackTestAddon.TestClass1";
          try {
              Object oObj = Class.forName(sClassName).newInstance();
              ((InterfAddOn1) oObj).AfficheTest1(" Hello World ");
          } catch (ClassNotFoundException ex1) {
              System.out.println("ERR Class not found");
          } catch (IllegalAccessException ex1) {
              System.out.println("ERR Illegal Access");
          } catch (InstantiationException ex1) {
              System.out.println("ERR Instantiation Exception");
    }=== ADDON JAR ===
    package PackTestAddon;
    public interface InterfAddOn1 {
        public void AfficheTest1(String sStrTest);
    package PackTestAddon;
    public class TestClass1 implements InterfAddOn1 {
        public TestClass1() {}
        public void AfficheTest1(String sStrTest) {
          System.out.println("Test :"+sStrTest);
    }I have this error :
    Exception in thread "AWT-EventQueue-2" java.lang.ClassCastException: PackTestAddon.TestClass1
         at retest.Ctest.unTest(Ctest.java:58)
         at retest.Appli.actionPerformed(Appli.java:442)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    I don't really know why ... =;o(
    Helppppp ... Thanks in advance.

  • How to use one PSE with multiple URLs?

    I need to hit my DMZ SAP Web Dispatcher with multiple unique URLs.  I am starting off using webdisp1.abc.com and webdisp2.vde.com.  DNS will resolve both the Web Dispatcher Host.  Following Tobias Winterhalter's Blog: Name-based virtual hosts and one SAP Web Dispatcher to access multiple SAP systems.
    My question is how do I go about generating the pse so I can store both webdisp1.abc.com and webdisp2.vde.com?  Do I just import the first request and initiate another certificate request using the same pse?
    Example
    sapgenpse gen_pse -s 2048 -p D:\<file path>\SAPSSLS.pse -r D:\<file path>\webdisp1.req CN=webdisp1.abc.com, OU=IT, O=XYZ Inc., C=US
    Cheers,
    Dan Mead

    Hi Daniel,
    what you are looking for are so called SAN certificates. As Martin said, with sapgenpse you are pretty out of luck. However you can create the certificates using openssl and then use sapgenpse to import them into a pse. There are a number of guides on how to create SAN certificates on the web, like the one mentioned by Martin from CAcert (which is one of the best imho) or this one. And there are also guides on the internet on how to convert OpenSSL keys to PSE.
    You should however keep in mind, that SAN certificates are more expensive than standard certificates. Therefor they only pay if the hostnames in there are stable for the lifetime of the certificate. If the hostnames need to change once a year, you already will be better off (from a cost perspective) by creating one pse per hostname an let the webdispatcher listen to different addresses, as each hostname requires a new certificate signed by the CA.
    Please also make sure, the systems and browsers connecting to your webservers are able to understand SAN certificates. For SAP systems this requires at least pl24 of the sapcryptolib.
    Kind regards,
    Patrick

  • How can use full app with multiple monitor

    in Lion and Mountain Lion
    when i use Multiple Monitors and move any app in full-screen mode
    its become in one monitor and other monitor become blank
    but it seems usefull that other monitor show another app in fullscreen mode
    how can i do this ?
    and sorry for my bad english!!

    Sorry to say, but it is designed to work that way.
    The only way around it that I know of is, not to use full-screen but just fill the screen with the application that you are using.
    A

  • How to use a loop with tokenizer

    I am working on an assignment where I need to use a loop to read input from a text file that contains grades. I'll use tokenizer (somehow) to read each line from the grade.txt file and then I need to output each test score, and calculate the average. So far this is my code:
    import java.io.*;
    import java.util.StringTokenizer;
      public class TestGrader
         public static void main (String[] args) throws FileNotFoundException,
                                                                     IOException
         BufferedReader keyboard = new
         BufferedReader(new InputStreamReader(System.in));
         BufferedReader inFile = new
         BufferedReader (new FileReader("c:java/homework/Assignment3/grades.txt"));
    /*******************Declare variables******************/
         int numOfTest, lowestScore, higestScore, avgScore;
         StringTokenizer tokenizer;
         tokenizer = new StringTokenizer(inFile.readLine());
         System.out.println("Enter the number of test you would like to grade: ");
         numOfTest = Integer.parseInt(keyboard.readLine());
         System.out.println("Press enter to continue...");
         keyboard.readLine();
         // Retrieve the test scores from the file grades.txtI'm stuck at the point where I need to create the loop to read the grades from the grades.txt file. Any help with the loop and tokenizer to read any number of grades would be appreciated.

    well i hope i am not too late to answer this.
    do u have any control on how to write the grades.txt file. If yes then follow:
    write the grades in following format:
    subject : marks separator(say ;) subject : marks separator(say ;)...... marksEOF(some new symbol)
    then try to process it using the following code
    while(!file.EOF()){
    StringTokenizer nk=new StringTokenizer(file.readLine(),separator);
    while(nk.hasMoreTokens()){
    //write code to display as nicely as you want...below is raw printing only....
    System.out.println(nk.nextToken());

  • How to use one application with multiple schema without copying application?

    Hi,
    Previously we are using oracle forms and by that we can manage by using a set of folders containing fmx and use different schema/database for different customers. so the source code comes from one individual file but used for different database users.
    is it possible to do this without copying application in apex?
    reason is because if applications are copied for each customer, and in a situation where a page has a bug, the developer must correct multiple pages across all the application. This would not be appropriate to manage.
    could this be done in apex? or is there any other approach?

    Hi,
    An application is tied to its parsing schema, so it is not possible to have one code base which you can then point to different schemas. I have seen some threads relating to dynamically setting the parsing schema, but I don't think it has worked to well, and would not be a supported configuration by Oracle.
    The normal way to do this is to have one schema and for each entity where it is logical you will have an extra key which is the customer id. I mention where it is logical, because not every entity needs its own data defined by customer. Some data will be common across all customers, such as lookup data and some entities will comprise child entities by which the data separation will be implied by the parent. You can then use Oracle's Virtual Private Database feature to implement a seperate view of the data through the application, based most likely on the customer who is logged on.
    Hope this helps.
    Regards
    Andre

  • How to share itunes library with multiple users, and keep organised

    Hi,
    I'm using iTunes (v12) on Windows 7 and am trying to set myself up so that multiple users on this PC are sharing the same library. I've followed the guidance mentioned on a couple of other threads, and put the library in the Users\Public\Music location, and on each user account have pointed iTunes to this location. This has worked OK, as both users can see all the music.
    However, problems arise when User A deletes a couple of files (duplicates for example) - User B logs in, and the song is still listed in the library, but with an alert stating the original file cannot be located. They then have to go through the library and also delete these entries. Equally, if User B adds some music files (as opposed to iTunes downloads), they are not visible to User A until they "Add file to library..."
    Are there any further steps that I can take to keep both users views of the library identical, without manual intervention by the second user whenever the first makes a change?
    Cheers,
    Matt

    The way you've set it up each user has a distinct library, but is accessing a common set of media files and folders.  To accomplish what you want, you need to have a complete iTunes library (database + media) in a common location - typically this would be C:\Users\Public\Music\iTunes.  See turingtest2's notes on Make a split library portable for the steps that may be needed to bring your library into a suitable structure.  Based on your description, you'll need to select one user's library (C:\Users\username\Music\iTunes\iTunes Library.itl) to act as the shared "master" and move this to the Public folders.
    Then, for each user, hold down SHIFT while starting iTunes - when you get this prompt:
    click on Choose Library..., navigate to C:\Users\Public\Music\iTunes, select the iTunes Library.itl file you'll find there, and click Open (you'll only need to do this once for each user account).
    Note, though, that iTunes is inherently a single-user application - any attempts to run iTunes at the same time will cause errors (and, in the worst case, possible corruption).  For this reason, its a good idea to disable fast user switching in Windows so that only one user can be logged in, and running iTunes, at the same time.

  • Is there a way to set up browse sequences for project with multiple TOCs and conditionalized modules

    I'm using RoboHelp 9 with WebHelp output.
    I've got five outputs, one of which contains Help for common functions, while the other four contain Help for licensed modules. When a user opens the Help for a licensed module, the user sees the core Help and the licensed Help. In addition, files are conditionalized so that searching for unlicensed content from a licensed Help module brings up nothing.
    I've been troubleshooting problems with the Previous Topic and Next Topic which, thanks to William, I learned are related to browse sequences. After trying assorted configurations, I've got a couple of questions:
    Does RH support only a single browse sequence in a project, even when the project has multiple outputs & TOCs?
    If RH supports only a single browse sequence, does that mean there is no way to create a unique browse sequence for each separate output?
    If RH supports multiple browse sequences, what is the workflow?
    I also maintain a 'master' TOC that contains all the modules, both common and unlicensed. What I've done for now is to autocreate a browse sequence based on the 'master TOC'. When I generate output for a licensed module, which is conditionalized, I only see the TOC for that module and, therefore, can only browse between books and subbooks in that module. I've also verified that topics that do not appear in the conditionalized module, such as for another licensed module, do not appear in the Search results list either.
    Carol

    Me again, Carol
    You also asked about the functional differences between WebHelp and WebHelp Pro, so let me elaborate.
    I'm aware of only two major differences (other than the extra benefits of feedback analytics reports and management of "Areas" with authentication in RoboHelp Server).
    The behavior of Browse Sequences as explained above
    The fact that Content Categories are not supported in WebHelp Pro for this latest version 9.
    As for the Browse Sequences you are trying to provide for different modules (licensed, etc.): Multiple Browse Sequences are included in a single .BRS file. The sequences are defined in the XML within the single file.
    As a workaround (for either WebHelp or WebHelp Pro) you could create a NGP Help.brs. which you have already created for one module; then backup and archive it. Then, create a modification for the different module before you generate again. The NGP Help.brs. will need to have the same name as your project so you will have to manage the desired .brs file into the project folder when you generate that version. All of your other choices (TOC, Index, Conditional Tags, etc.) would remain the same for the respective modules.
    Finally, I note that you are apparently generating WebHelp Pro right now even though you are not publishing it to the RH Server? This is really not the best practice. You should generate plain WebHelp for a web server that does not have RH Server on it (even though you may be getting away with it). As for your concern about "breaking" something; each output is placed in a different !SSL! folder automatically when you generate, so you should be able to generate WebHelp without interferring with the WebHelp Pro output. Then, you can re-publish to the RH Server using WebHelp Pro whenever the server is ready.
    John Daigle
    Adobe Certified RoboHelp and Captivate Instructor
    Evergreen, Colorado
    www.showmethedemo.com

  • Can you use wifi sync with multiple libraries and multiple devices

    Hi all
    Does anyone know if you can use wifi sync with 1 computer, 2 libraries and 2 devices?
    I have my wife's iPhone synced to 1 library and mine to another library but on the same computer. Will wifi sync work this way or do you need iTunes to be open to the correct library for it to work? As I know you can't have 2 instances of itunes open on the same computer.
    Anyway thanks for any help

    I have been looking more and more into this and it appears no.
    You need to have iTunes running on the computer to enable it to wifi sync. You can use 2 devices on 1 library but if you don't have all the right options ticked you will then end up with each others stuff on each others device.
    To enable wifi sync you need to have your iDevice connected to the same wifi network as your computer and iTunes open on that computer.
    With my library open it detected my wife's phone and started to sync. Hasty push of cancel sync button lol.
    There is a guide on here somewhere about multiple devices with 1 library which I can't find at the moment that tells you which options to tick so only your stuff stays on your device the the other half's on their device.
    Its basically tick 'sync only ticked songs and videos' under summary of your device
    Under apps take tick out of 'automatically sync new apps'
    Then under edit->preferences click device and click prevent i's from syncing automatically
    I think you should then be able to sync both devices to 1 library with mucking them up too much
    Hopefully please correct me if I'm wrong
    I have tried not doing the last step and asking it to open itunes automatically when phone is connected but this does not work with wifi sync
    Have fun hopefully someone else can give us a better answer

  • How to use Apply Pay with debit card and "NO" Touch ID?

    I set up Apple Pay with my bank and they said it was all verified. When I go into Passbook it now says "Verification required" and to contact the bank so is it set up or not??? I called the bank and set this up and got confirmation I was set up but it only tells me to verify when I go into passbook? Or don't I have to go back into Passbook now??? When I do go in there and click on the "i" in lower right corner shows my "debit" card device account number so should be all set, right??? If so, now how do I use it for sure...I don't have Touch ID set up because I use my hands a lot from work and it keeps not recognizing my thumbprint so just use a passcode. If I go to a store that uses this, what is the exact process I will use with a "debit" card and no Touch ID? Thanks for any and all help!

    ApplePay will only work with TouchID. It is a security feature.

  • How to use IE proxy with an applet and a socket ???

    Hello!
    I need to make an applet running with Internet Explorer.
    This applet uses socket and sends http request to a server (the server where the
    applet is).
    It's ok but it doesn't work when my IE uses a proxy.
    My question is: how my applet can makes a socket using the IE proxy ?
    My applet can be used by many users, so it has to work with or without proxy, and has
    no need no configuration.
    Thanks for your help.

    Check for the system environment variable for "ie.proxy" in your applet code, if it returns something then use the proxy server, if not then ignore it.
    However, as a rule of thumb unless your IE Security settings enable applets to access URLs, then it won't work. Next, speaking in general java - applets can only access resources (URLs) from the applet's originating server (i.e. the server where the applet exists).
    If IE uses a proxy, then your applet should automatically use it, unless as I metioned before, your IE Security does not allow permission for the applet to do so. Check Tools - Internet Options - Security - Java - Advanced options.

  • How to use Satellite P100 with MS Vista and MS Bluetooth stack?

    I'm using my Sat P100 for more than one year. I just reinstalled Windows Vista Ultimate from scratch, and because I'm really not so much satisfied with Toshiba's Bluetooth stack, I'm trying to use original Microsoft's Bluetooth stack, which comes with Vistas.
    After reinstall, Windows found BT device and installed MS BT stack. Everything worked well, but ufetr downloading and installing tons of updates including SP1, BT device completely disappeared. I found some articles about how to switch from Toshiba to Microsoft BT Stack, but it seems to be a XP sollutions, and mainly it always need to install "Bluetooth Monitor for MS Stack", but I cannout find this download for MS VIsta.
    Can anyone help? Thanx!

    I've got it!!!
    I have fond one sollution: maybe not excellent, but working!
    1. Check if you have latest Toshiba Bluetooth stack installed (here: http://aps2.toshiba-tro.de/bluetooth/?page=download)
    1.1 If you have older version, uninstall it, reboot, install latest one, reboot.
    1.2 If you don't have any version installed, install the latest one.
    2. Assuming you installed to default location, copy this folder to any backup location, including complete directory structure: c:\Program Files\Toshiba\Bluetooth Toshiba Stack\
    3. Go to Start/Control panel/Programs and Features and uninstall whole Toshiba Bluetooth stack, reboot
    4. After rebooting, there is again "Bluetooth devices" applet in Control panels (it was previously disabled by Toshiba's Bluetooth Stack), but you cannot see any HW Bluetooth device
    5. Go to backup location (into ..\Bluetooth Toshiba Stack\) and run AS.exe.
    6. It will start installing BT devices, BT icon will appear in Tray.
    7. Installer will hang on cca 5th box, but never mind, all drivers are already installed.
    8. Maybe you can cancel installer, but I feared that it will roll-back installed drivers, so I simply killed this Install process (Ctrl+Alt+Del, Start Task manager, Select BT installer in Apps and Kill it)
    9. Whow, it works now event after restarting.
    10. Your feedback welcome! ;)
    Massimo Filippi

  • How to use one query against multiple table and recieve one report?

    I have duplicate tables, (except for their names of course) with commodities prices. They have the same column headings, but the data is different of course. I have a query that gives me a certain piece of information I am looking for but now I need to run this query against every table. I will do this every day as well, to see if the buying criteria is met. There are alot of tables though (256). Is there a way to say run query in all tables and return the results in one place? Thanks for your help.

    hey
    a. the all 256 tables whuld be one big partitoned table
    b. you can use all_tables in order to write a select that will write the report for you:
    SQL> set head off
    SQL> select 'select * from (' from dual
      2  union all
      3  select 'select count(*) from ' || table_name || ' union all ' from a
      4  where table_name like 'DB%' AND ROWNUM <= 3
      5  union all
      6  select ')' from dual;
    select * from (
    select count(*) from DBMS_LOCK_ALLOCATED union all
    select count(*) from DBMS_ALERT_INFO union all
    select count(*) from DBMS_UPG_LOG$ union all
    remove the last 'union all', and tun the generated quary -
    SQL> set head on
    SQL> select * from (
      2  select count(*) from DBMS_LOCK_ALLOCATED union all
      3  select count(*) from DBMS_ALERT_INFO union all
      4  select count(*) from DBMS_UPG_LOG$
      5  );
      COUNT(*)
             0
             0
             0
    Amiel

  • How to use Dual monitors with G5 Mac;  AND    How can the image in "Develop" be made to look like wh

    Two questions: How can I use my dual monitors on my G5 Mac?
    How can the image in "Develop" be made to look like what it will print, just as it is
    done in Photoshop with view>proof setup.

    Still wondering what tool is available in LR 1.1 to "view proof"
    As in Photoshop CS 3, and previous versions of PS, in view I can
    choose the custom .icc profile of the printer, to view what the final
    print will nearly perfectly appear like.
    What tool is available in LR 1.1 to do the same?
    Equipment: Mac OS 10.4.10; dual monitors; Epson Pro 9600 and SPR
    2400, both dedicated to matte black ink. Color working space is
    ProPhoto RGB. I stay in 16 bit.

Maybe you are looking for

  • E-Rec Reference Code in the Publication tab should not appear after enddate

    hi, There is a requirement from the client after the end date of the publication ,the reference code should not be displayed to the candidate in the Candidate page ,presently the same is manually done in the system by changing the status to withdrawn

  • I was trying to sync my iPod when all of a sudden I have 6.9 GB of info under the section "other"

    I was trying to sync my iPod when all of a sudden I have 6.9 GB of information under the section "other" and I don't know where it came from and because of it I can no longer sync my iPod because there is too much info to fit. How do I get rid of thi

  • Bex reporting Flag

    Hi, I am planning to uncheck the Bex reporting flag in a ODS. So to transport the change do I need to transport any thing else or just the ods? Thanks,

  • Alter database ... keep identity hangs

    Does anyone know what could cause the "alter database recover to logical standby keep identity" statement to hang waiting on "MRP wait on archivelog arrival"? I have executed this exact statement in the past on another physical standby and it went th

  • Epson R2880 profiles not showing. 10.7.5

    I don't want to double post. So if any one here knows why I can't see Epson R2880 Printer profiles in Illustrator CS3 13.0.2 dialog. Lion 10.7.5, please go to this link in Adobe Color Management forum to advise: http://forums.adobe.com/message/494084