Printable CD

A possibly silly question, but is there a method with Canon Easy Photoprint EX to print a CD with only a photo, and not with all those supplied layouts? (Using a Pixma Pro 100)
Thanks
Solved!
Go to Solution.

Certainly!  
Simply delete the text blocks and select no background. It is in the Edit tab. Then just click the add image icon.
EOS 1Ds Mk III, EOS 1D Mk IV EF 50mm f1.2 L, EF 24-70mm f2.8 L,
EF 70-200mm f2.8 L IS II, Sigma 120-300mm f2.8 EX APO
Photoshop CS6, ACR 8.7, Lightroom 5.7

Similar Messages

  • Using Printable with an Image 5TH POSTING

    I am trying to print out an image with the following code:
    public class print_panel extends JPanel implements Printable{
    Image the_image;
    public print_panel(Image i){
    the_image = i;
    public int print(Graphics g, PageFormat pf, int p) throws PrinterException{
    if(p>=1) return Printable.NO_SUCH_PAGE;
    Graphics2D g2 = (Graphics2D)g;
    g2.translate(pf.getImageableX(), pf.getImageableY());
    g2.drawImage(the_image, 0, 0, null);
    paint(g2);
    return Printable.PAGE_EXISTS;
    }//end class
    All the printer does is spit out a blank sheet. I can get this to work with a swing component, such as a JButton, but somehow it will not print out an image. What more needs to be done?

    Hello
    I struggled with the same problem. In the Graphics2D Forum is a thread that solved the issue for me (http://forum.java.sun.com/thread.jsp?forum=20&thread=160408).
    It seems that Graphis2D.drawRenderedImage(RenderedImage img,AffineTransformation at) is the trick to let the printer know...
    Hint: BufferedImage is a implementation of RenderedImage.

  • Is that possible to display the user selection data in the printable page?

    Hi All,
    I'm going to add a printablepage button on my page.
    Here comes a questions.
    Is that possible to display the user selection data in the printable page?
    For example,
    I have a table in the page,with 10 records.User select 5 of them.Can I display these 5 records in the printable page?
    Please help.

    Hi Yannick,
    Thanks a lot for the information. It worked.
    The portlet data can be accessible using bindings, but parameter name can be different.
    Meanwhile I have got one more scenario, where the Portlet and Task Flow placed in different pages of WCP Application. On change of data in the Portlet the application should navigate to another page where the Task Flow placed and displays selected data.
    Basically I can not use any button for navigation. The navigation should happen once I do some action in Portlet.
    Is this possible? If yes can you please let me know the steps?
    Thanks in advance!
    Somnath
    Edited by: Somnath Basak on Dec 20, 2011 9:41 AM

  • Is there a way to create a printable version of my iWeb built website before it goes offline in June when apple stops supporting mobileme?

    Is there a way to create a printable version of my iWeb built website before it goes offline in June when Apple stops supporting mobileme?

    Why not move your site to a new host and publish using one the two alternative methods...
    http://www.iwebformusicians.com/iWeb/Publish-Website.html
    http://www.iwebformusicians.com/iWeb/Website-Hosting.html

  • I have an HP C309a all in one Photosmart. When I go to print on a Printable CD It only prints on 1/2

    I have an HP C309a all in one Photosmart. When I go to print on a Printable CD. It only prints on 1/2 Right side of disk. Why?
    I am using PS23 and used the label format for making the copy I wanted to print on printable disk.
    Herman

    HI,
    You should be able to just leave it on, it should have a sleep mode which it will enter after a while.
    Say "Thanks" by clicking the Kudos Star in the post that helped you.
    Although I work for HP my posts and replies are my own
    Please mark the post that solves your problem as "Accepted Solution"

  • How do I find out if the pressed key is printable?

    I have made a game and now I'm working on a hiscore table for it. But with my function the program doesn't know if the pressed key is printable or if it's shift, ctrl or something like that. And I made it possible to enter maximum 40 letters as name, so if the user holds the shift key for a while then the whole String is filled with shift characters and nothing shows on the screen and he/she isn't able to type in any more letters... So is there any way to find out if the pressed key contains a printable char?
    This is what my function looks like now. My program is quite big so I just post the function and try to explain what is happening
    /* high is an array of
    int score;
    String name;
    boolean WritingName;
    boolean GAMEOVER;
    boolean newgame;
    public void keyPressed(KeyEvent e) {
         if (GAMEOVER){  // checks if the game has ended
             char button = e.getKeyChar();
             int keyCode = e.getKeyCode();
             if (newgame){  // this is false if the hi-score list is showing otherwise its true. i.e. its true when typing name for hiscore list
                   if (keyCode == 10) {       // check if the pressed key is enter
                        WritingName = false;  // Tells an other function that the user has finished typing his/her name so it can save it and start showing the hiscore-list on the screen
                   } else {
                        if (keyCode == 8){    // check if the pressed key is backspace and if so removes the last char from the string
                             if (high[99].name.length() > 0){
                                  high[99].name=high[99].name.substring(0,high[99].name.length()-1); 
                        } else {  // if any other key is pressed then add it to the end of the string
                             if (high[99].name.length() <= 40 ) high[99].name += button;
                   paint(getGraphics());
              } else {  // checks if space is pressed to stop showing the hiscore-list and start a new game
                   if (keyCode == 32) newgame = true;
    }

    But with my function the program doesn't know if the pressed key is printable or if it's shift, ctrl
    or something like thatProbably the easiest way is to check and see if e.getKeyChar() < a space character or if e.getKeyCode() >= 127. You can use e.getModifiers() to get the modifier, etc... -- take a look at the documentation for java.awt.event.KeyEvent class.
    V.V.

  • Column text cuts in the printable view

    I have a af:table inside a af:panelCollection. Some columns in the table contains clickable links. Since it should also support printable behavior I have defined table like this.
    <af:table value="#{someBean.data}"
    var="row" rowBandingInterval="0" id="t1"
    summary="Table"
    columnStretching="column:c1"
    styleClass="AFStretchWidth"
    rowSelection="multiple"
    binding="#{someBean.tablel}"
    selectionListener="#{someBean.onSelectionChange}"
    contentDelivery="lazy"
    inlineStyle="#{adfFacesContext.outputMode eq 'printable' ? 'width:auto;height:auto;' : ''}">
    <af:column headerText="Name"
    id="c1"
    rowHeader="#{adfFacesContext.outputMode eq 'printable' ? '' : 'unstyled'}">
    <af:commandLink text="#{row.someName}"
    shortDesc="#{row.someName}"
    partialSubmit="true" id="ot4"
    rendered="#{adfFacesContext.outputMode ne 'printable'}"/>
    <af:outputText value="#{row.someName}"
    shortDesc="#{row.someName}" id="ot1"
    rendered="#{adfFacesContext.outputMode eq 'printable'}" noWrap="false"/>
    </af:column>
    </af:table>
    1) I see the column ("Name") being truncated in the printable mode. I have set the noWrap= false. But that doesnt seem to work.
    2) How can I set the width and height in printable mode so that table takes the entire browser window to stretch.
    Edited by: user10136456 on Feb 8, 2012 1:20 AM

    Hi,
    try something similar to
    #{adfFacesContext.outputMode == 'printable'? 'width:200px' : ''}
    to set the inline style property or width of the column
    Frank

  • Create Simple Printable SQL Reports in APEX 3.2 Without a Print Server

    Oracle Apex 3.2
    Oracle 11g
    OHS
    I thought I'd post an answer on how to get a printable SQL report in Oracle Apex without having to configure a print server. I'm sure that similar things have been posted in various other places, but I found the documentation for using custom row templates (to create a printable report) to be incomplete at best. For my needs, I was not looking for an awe inspiring report printout, but rather simple directory information printouts. For example, if you wanted a printable report to look like this:
    =================================
    CURRENT ACTIVE EMPLOYEES REPORT
    =================================
    First Name: Bob                  Employee ID: 0000000000
    Last Name: Swarts              Company Credit Card Number: 0000-0000-0000-0000
    Middle Initial: F                  Social Security Number: 000-00-0000
    First Name: Sue                  Employee ID: 1111111111
    Last Name: Johnson           Company Credit Card Number: 1111-1111-1111-1111
    Middle Initial: G                 Social Security Number: 111-11-1111
    etc.....In MS Access, doing this is very easy. From what I understand, this is also very easy to do this using PDF software with a print server. However, if you are like me, you don't want to waste time and money by obtaining and configuring a print server (even if it is free). However, never fear because you can create simple reports like this with relatively minimalistic effort; and you can do so without having to configure a print server.
    1.) Create a new page
    2.) Create a new sql query report region on the page
    3.) Make your query just as you would normally.
    For this example the query would be:
    select first_name, employee_id, last_name, company_credit_card_number, middle_initial, social_security_number from employee_table4.) Go to "Shared Components"
    5.) Under "User Interface" click on "Templates"
    6.) Click on the "Create" button
    7.) Select "Report"
    8.) Select "From Scratch"
    9.) For the "Template Class," choose one of the "custom" classes. For the "Template Type," choose "Named Column"
    10.) Click the "Create" button
    11.) Now that you created a custom row template, go back to "Shared Components" and then to "Templates"
    12.) Find your custom template and click on it
    CUSTOM TEMPLATE HOW TO
    1.) In the "Row Template 1" textbox, you are going to create some custom css that will display the data on the page. The css to make the report look like the report above would be:
    <div style = text-align: justify">
    <table>
    <tr>
    <td style = "width: 200px"><b>First Name: #1#</b></td>
    <td style = "width: 225px">&nbsp</td>
    <td style = "width: 215px"><b>Employee Id: #2#</b></td>
    <tr>
    <td style = "width: 200px">Last Name: #3#</td>
    <td style = "width: 225px">&nbsp</td>
    <td style = "width: 215px">Company Credit Card Number: #4#</td>
    <tr>
    <td style = "width: 200px">MI: #5#</td>
    <td style = "width: 225px">&nbsp</td>
    <td style = "width: 215px">Social Security Number: <b>#6#</b></td>
    </tr>
    </table>
    <p style = "page-break-after: always">----------------------------------------------------------------</p>
    </div>
    {code}
    As you probably figured out, the numbers between the two pound signs ("#") are substitution strings for the variables in your select query in the SQL report.  As you have also probably noticed, the "page-break-after: always" line will always make it so that only one report is shown on a page.  To fix this, we will need to use logic and row template 2.
    2.)  For the "Row Template 1 Condition," select "Use Based on PL/SQL Expression" from the select list.
    3.)  In the textbox for the row template 1 expression enter in the following:  {code}substr('#rownum#',-1) = 0 or substr('#rownum#',-1) = 5{code}
    ***** This condition will make sure that this template is applied when the last digit in the row number is either a "0" or a "5."  So, only 5 reports will be displayed per page.
    4.)  Now go down to "Row Template 2" and enter in the following in the textbox:
    {code}
    <div style = text-align: justify">
    <table>
    <tr>
    <td style = "width: 200px"><b>First Name: #1#</b></td>
    <td style = "width: 225px">&nbsp</td>
    <td style = "width: 215px"><b>Employee Id: #2#</b></td>
    <tr>
    <td style = "width: 200px">Last Name: #3#</td>
    <td style = "width: 225px">&nbsp</td>
    <td style = "width: 215px">Company Credit Card Number: #4#</td>
    <tr>
    <td style = "width: 200px">MI: #5#</td>
    <td style = "width: 225px">&nbsp</td>
    <td style = "width: 215px">Social Security Number: <b>#6#</b></td>
    </tr>
    </table>
    <p>----------------------------------------------------------------</p>
    </div>look familiar? that is because it exactly the same code as above, except without the page-break-after piece.
    5.) For the "Row Template 2 Condition," select "Use Based on PL/SQL Expression" from the select list.
    6.) In the textbox for the row template 2 expression enter in the following: substr('#rownum#',-1) != 0 or substr('#rownum#',-1) != 5***** This condition will make sure that this template is applied when the last digit in the row number IS NOT a "0" or a "5."
    7.) Scroll down to column headings and enter this in the textbox for the "Column Heading Template": OMIT
    8.) Click the "Apply Changes" button
    9.) Now go back to your application and the page you want to apply the custom report to
    10.) On the report, click on the report tab
    11.) Scroll down to "Layout and Pagination"
    12.) Click on the "Report Template" select list
    13.) Select your custom template
    14.) Click the "Apply Changes" button and run the page
    Try printing the report, if it does not print correctly, try it in Opera, Safari, Internet Explorer, Firefox, and Google Chrome. Please note that it is my understanding that only Firefox does not understand the css "page-break-after: always"
    If needed, add some css to the page to hide tabs and other items when you print.
    ~Andrew Schulltz

    DOH. Too much copy/paste.
    In my code, I was setting an application variable to contain the email address I was retrieving from AD. Once commented out, it worked fine.
              IF l_attr_name = 'mail' THEN
                 APEX_UTIL.SET_SESSION_STATE('F111_USER_EMAIL',l_vals(i));
              END IF;

  • Cannot connect to HP Printable apps. Photosmart 7520e printer.

    I cannot access or manage printable apps on my HP 7520e printer. I get “cannot connect to server, check internet connection” error message. My printer is connected to my WIFI with 100% signal. It has a static IP. I can print with HP ePrint while on the same network as well as remotely. I have 100% remote access to all printer functions. I checked for updates using the printers update function and I have the latest firmware and updates on my printer. I have also put in the manual DNS server entries 8.8.8.8 and 8.8.4.4 and I have followed all the threads in an attempt to solve this issue. I also get server certificate errors on the HP connected WEB site preventing access. This happens using a Windows PC or using Safari. This is a different issue, but I was attempting to print the pintable apps that are on my printer from the HP Connected WEB site.
    This question was solved.
    View Solution.

    Problem fixed!
    I decided to reset my printer back to factory defaults and perform another setup. That worked! All my printable apps work! Be aware if you decide to take this route, you will also need to go online to hpconnected.com and add your printer again. Just follow the printer setup instructions that printout during setup. You will also lose the printer email name that was previously assigned and you will need to create a different one or use the new one that automatically gets created. Also as a user friendly benefit, I didn’t need to configure my printer with a static IP address or manually set any DNS addresses. After I selected the factory default, and selected WIFI as my connection, my printer connected to my router immediately. Note: I don’t use security on my router. I also installed FireFox on my Mac computer and can now navigate hpconnected.com without issues.
    Press the wrench Icon on your control panel and navigate to “restore factory defaults” and select.
    Power cycle your printer.
    Perform setup.
    Optional if you have a Mac instead of a windows PC: Install FireFox to navigate hpconnected.com as Safari has issues with this site.

  • HP Photosmart Premium 309a not printing to Printable CD

    OS = Windows XP
    Connection from laptop to c309a is USB
    Can print from MS WORD to c309a
    Can print from HP Solution Center application to 309a to print paper CD labels.
    CANNOT print from HP Solution Center application to printable CD installed in c309a.
          1. After setting up printable disc image in HP supplied Solutions Center application, clicking on PRINT results in message being displayed that reads
    Tried:
    1. Downloading completely new driver from HP website... the total driver was installed, not the basic version. Successfu except for a message that came up saying the c309a was not connected to the computer. The choices were to select a USB cable connection or wireless connection or a network connection.  I selected USB and made sure (numberous times) the cable was connected (vreified because I can print for MS WORD and from the HP Solutions application to paper. When checked afterward notice was presented that said driver was up to date.
    2. From the HP Solutions application prepared an image from one of the templates (tried several templates) that is supposed to print directly onto a printable CD.
        a.  When the PRINT was clicked on the following error msg appeared, "The application is unable to communicate with the printer".
             i. When clicking on PRINT the HP Solutions application jumps to a window that displays various options for ordering prints from HP online as well as some other choices.  Net result, no printing to CD takes place.
    2. Called HP Tech Support, three different people.
        a. Suggested disconnecting power cable from wall outlet and also disconnect power cable from back of c309a and wait for 30 seconds before reconnecting.
             i. Did that... noting different happened.  Same problem, unable to print to a printable CD.
             ii. Final person said the printer is out of warranty and not servicable.  Buy a new one!
    PS The c309a works with a USB cable connection for computer 1.  A second computer successfully accesses the c309a wirelessly for printing the same as computer 1.
           The tray that holds the CD retracts from its printing position when the timeout occurs for the printer to go into sleep mode.

    Check the vent tape as shown in the page here, click the + next to the 0xc19a0013 error.  If the steps in that page do not resolve the issue try soaking the printhead as discussed here.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • OfficeJet Pro 8600+ and Inkjet Printable BD-R

    Hello All,
    I have an OfficeJet Pro 8600+ and bought some Inkjet Printable BD-R by HP. I can't figure out a way to print on these disks from the printer I have. I don't see how the disc can be pulled from the standard paper tray as that requires the flexibility of paper to make the bends along the normal path. Is there some secret door I can't find?
    I really just bought the discs for the storage and discovered the inkjet capability after I bought them. So it's not a big deal, but I'd like to take advantage of this and overcome the hazard of my crappy handwriting on discs.  :^)
    Steve
    This question was solved.
    View Solution.

    Hi,
    You need an attachemnt which your printer does not have and it is not designed to accepte it to be able print on CD's, DV's, BD's ..
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How to create  Printable page in OAF using Jdev10g

    Hi,
    I tried to create a printable page in OAF using the following steps given in devguide of OAF
    Step 1: Add a page-level button as described in the Buttons (Action/Navigation) document.
    Step 2: Assuming your button label is the standard "Printable Page," apply the OA Framework attribute set /oracle/apps/fnd/attributesets/Buttons/PrintablePage.
    Step 3: Set the button's Destination URI property to point to the current page and set the UIX facet parameter (OARF) to printable as shown in the following example (See Controlling UIX Rendering Output for additional information about facets). Remember to retain your application module.
    OA.jsp_?page=<CURRENT_PAGE>&retainAM=Y&OARF=printable_
    *my current page path is *_
    OA.jsp?page=abhi.oracle.apps.ak.employee.webui.AdbPG&retainAM=Y&OARF=printable_
    Note: Earlier versions of OA Framework recommended giving the printable page submit button the ID IcxPrintablePageButton. OA Framework detects this ID and behaves appropriately when the user presses the button. Although this still works, new code leverages the facets approach instead.
    Step 4: Set the button's Target Frame property to _blank to ensure that the printable page opens in a new window.
    but after doing this i am getting below exception.
    Exception Details._
    oracle.apps.fnd.framework.OAException: The application id or shortname () you entered does not exist._
    i am new to OAF..
    can anybody guide me , how this exception can be corrected?

    Hi,
    sorry, wrong forum. This is all about Oracle JDeveloper. OAF related questions are handled on the OAF forum
    Frank

  • Map binary data (PDF) to XML not possible due to non-printable chars

    Hi XI Gurus,
    we have the following issue.
    We send a PDF as binary data (as a hex string '25255044462D3' ) along with some other information from ERP within one RFC to XI , doing a message split 1:n for those two kind of messages (1. the PDF, 2. the XML) an send the split messages to file/ftp receiver adapter.
    The message split and sending of the messages is working well, but we encounter some problems with non-printable chars (hex code below 0x20) in the pdf binary. The PDF data and the dynamic file name is mapped into an XML. But the non printable characters are converted into '#' when mapped into the XML target field.
    (Due to the 1:n multi mapping, we cannot put the filename into dynamic configuration, so we have to map the pdf and the filename into an XML and extract the content with variable substitution in receiver file adapter....)
    My question is: how can binary data with non-printable chars be sent through XI and can be mapped into an XML without beeing replaced by '#' ?
    Any help will be greatly appreciated.
    Thanks and regards
    Holger

    Maybe I didn´t explained it clearly enough.
    We do not have the issue that the RFC puts the '#' into the string. We got from the RFC a hex string containing the pdf as visible hex values like:
    As you can see we have the pdf as hex string. During message mapping XI replaces some non-printable chars like '0x04' or '0x19' with '#'.
    My question is: how can we avoid those char replacement ?
    BTW: I grabbed a pdf with sender file adapter, routed through XI without any mapping and send it with ftp in binary mode. But the pdf contains more chars as the origional file and the pdf content is not visible when opening with a pdf reader like Acrobat. I guess the file adpter has problems with carriage return and linefeed chars. Some CR and LF are replaced inserted somehow.
    Best regards,
    Holger

  • Once you create a printable form in Acrobat Pro 9, how do you add a submit button?

    I have created printable PDF forms, but don't know how to add a submit button so they can be filled out and emailed. Currently if the people filling them out only have Reader they can only be printed out. They cannot be saved, and they cannot be emailed. Can the submit functionality be added in Adobe Acrobat Pro, or do you have to do that with a third party software?

    Yes, you can use the Extend Features in Adobe Reader, shown here but grayed out since I don't have a form open.
    When you do that, the people filling out the form will be able to Save a copy of the form for themselves and to forward a copy of the PDF to you. You might want to make a copy of the form first if you might have to make changes in the future since the Extended form cannot be edited directly.

  • How to Make a Printable Results Page in Adobe Captivate 8

    Hi Captivate Developers!
    We made a really cool Captivate tip that I think you will enjoy. This tip allows your learners print-friendly results in Adobe Captivate 8. We also include the code needed to make it work and is actually pretty easy. It also includes videos for each step. Hope you like it!
    http://elearningbrothers.com/how-to-make-a-printable-results-page-in-adobe-captivate-8/

    If you have a dynamic web site (database driven), use PHP or ASP data queries.
    If your site is static (no databases), look at the links below:
    Zoom Search Engine software
    http://www.wrensoft.com/zoom/index.html
    Free Find
    http://www.freefind.com/
    Pico Search
    http://www.picosearch.com/
    Google Site Search -
    http://www.google.com/sitesearch/
    Web Assist DW Tools for Google (free)
    http://www.webassist.com/free-downloads/dreamweaver-extensions/dreamweaver-tools-for-googl e/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Adobe Reader will not center the printable area on the page

    Hi there,
    I have posted a few times about this issue already but have still not gotten an answer so I'm trying again. Adobe Reader will not center PDF files on the page if the printable area is less than 8.5" X 11". I make sewing patterns for a living and have always drafted them on 7.5" X 10" artboards (printable areas)....the art boards are centered on the page when they are drafted. Up until a few months ago there has never been an issue for me or my customers to print the patterns in either landscape, portrait (depending on the particuar PDF's orientation) or autoportrait/landscape orientation. Then about 2 or so months ago I started getting complaints about the top left hand side of the page getting cut off. When I tried printing one of the PDF's myself that was drafted in landscape orientation, and I printed it in "landscape" orientation, the top left side of the pdf did indeed get cut off. When I printed in autoportrait/landscape orientation the pdf printed fine, and for many of my customers this seems to fix the problem. But for many of them it doesn't fix the problem and the pdf still prints with part of it getting cut off regardless of which box is checked for orientation. I've found that if I go to the "pages to print" box and click "other options" then select "current view" this often solves the problem...but then the user does not seem to be able to select which pages to print. This is becoming a major problem for my business (lots of complaints) and would really like to know if anyone has looked at this issue and if the problem will be solved anytime soon. It is not just me but many of my colleagues and 100's of customers. Help! Thank you:)

    iMac G4, Mac OS X (10.4.9)
    Make sure you have the latest Adobe Reader installed for your OS.
    http://www.adobe.com/support/downloads/product.jsp?platform=macintosh&product=10
    Did you try using Preview. If you control click on the PDF on your desktop you can use the "open with" option.

Maybe you are looking for

  • Error while deploying a simple bpel process

    Hello All, I have installed jdeveloper 11.1.1.3.0 and created a simple bpel process using string concat function and when I tried to deploy the same BPEL to process to a SOA server, I am getting the below error. (The connection to remote weblogic ser

  • PS cc 2014 printing problem

    Is there anyone has a solution regarding printing problem with Photoshop CC2014 ? Windows shuts the application as soon I choose print , ( any file, psd or jpeg ) ?

  • Payment attachment print for ACH Vendors

    Hi All, We have a requirement to print the payment adive (attachement) for every ACH payment run per vendor. The payment method country is US and ACH is the method. The program that is used in RFFOEDI1 for the payment methods. Please let me know if t

  • How to relate a Change Request to a Business Service?

    Hi When I list my Business Services under Configuration Items in SCSM, I have several that are imported from SCOM. If I create a CR, and select add to Config Items to Change, and choose Business Service from select objects, the list is empty What am

  • Wiki question - customizing the 'my contributions' page

    Is there a way one can customize the 'my contributions' page on the Wiki such that only one entry per article is displayed?  In other words, if I made 10 edits to an article, I only want to see the article appear once in the list thus giving a much c