Possible to add font to Workshop IDE?

Hello,
Is it possible to add a font to the Workshop IDE?
The list of available fonts is rather limited.
-J

Hi,
Unfortunately, the fonts in the WLW 8.1 are non configurable.
Please take a look at Workshop 9.2 which is based on Eclipse 3.1.2 and let me know if you have any questions
http://commerce.bea.com/index.jsp
cheers
Raj

Similar Messages

  • Is it possible to add additional fonts when creating an iPhoto book?

    Is it possible to add additional fonts when creating an iPhoto book?
    I have some additional fonts that would add a lot to the overall appearance of my i Photo book but cannot find a method for installing them into iPhoto.
    Thanks for your assistance.
    <Email Edited By Host>

    Use the Edit ➙ Shot Fonts menu option to bring up the Fost selection pane. 
    From there you can select any font you have installed on your Mac.
    OT

  • Is it possible to add reverb to vocal mic, without affecting my keyboard sound?

    Hello,
    I am trying to record my vocals and piano simultaneously. I'm using the MBox 2, with Adobe Audition 3.0. Whenever I add reverb to my vocal track (via the fx tab under my vocal track in multi track view), it affects the way my piano sounds while I am recording (it creates a delay on the sound of the keyboard while I am playing...almost like a 'bouncing note' delay). I really want to be able to hear some reverb on my voice while recording, but I cannot seem to figure out how to do it. This is how I have everything set up:
    Piano is plugged in via DI on input 2 on the back of the mbox
    vocal mic is plugged in via cannon on input 1 on back of mbox
    If anybody could help, that would be wonderful. I've spent hours trying to figure this out with no luck. It is a lot more fun to record your singing with a bit of the pretty reverb....but my piano doesn't agree.
    Thank you
    Best,
    Jenny Jo

    Hello Brian,
    Thanks for your help again. I have spent the last 6 hours running into nothing but problems. I tried your advice about recording mono in both separate tracks, and still no luck. I was using a condenser mic, and a keyboard. Both using mono, and I was using the studio reverb. I finally decided to try something simpler, just so I could at least feel a bit satisfied in getting a recording in. I set the condenser mic near my keyboard and speakers, and plugged my keyboard into the speakers. I armed the one mic track for record for phantom power, applied studio reverb, and set up the correct settings for the track by going into Audio Hardware Setup and selecting 'Asio Digidesign Driver' as the audio driver for everything. I simply wanted to play my piano, which would sound through the monitors next to me, and sing into the microphone..which would pick up my vocals with the piano in the background. The only way I could hear reverb on my voice during the recording, was by adjusting the 'mix' knob on the front of the mbox. It seemed to be working okay, and I thought I had found at least a compromise for the moment. But after saving the files, and upon listening to them...I noticed drops and rises/glitches/ in the recording volume. I then did a bunch of tests. I recorded some without any reverb assigned at all, did some recordings with the mix knob up and some with it off...I tried everything I could think of. I saved each one as a wav file, and MP3, just to see if that would affect the sound. Listening to them, they all have those same sound glitches. While doing the recordings, the sound disturbances weren't audible.
    I am wondering if there is a setting that I need to fix...I am not the most savvy technical person, and am rather new to recording. Maybe the buffer size needs to be adjusted? I really have no idea...it is frustrating. I should say that I am using an MBox 2, which is supposed to be used with Pro Tools software. I had problems using Pro Tools as well, I don't think my OS is very compatible with it. Unfortunately, I have windows Vista, which I hear nothing but problems about in regards to recording. I prefer to use Adobe Audition, as I'm familiar with it, and like it.
    Well, I hope this email hasn't put you to sleep. I really hope I can get this figured out, as I'm keen to record.
    Thank you again..
    Best,
    Jenny Jo 
    Date: Tue, 2 Feb 2010 00:35:03 -0700
    From: [email protected]
    To: [email protected]
    Subject: Is it possible to add reverb to vocal mic, without affecting my keyboard sound?
    Out of some disbelief I had to try my own setup suggestion from above, since it's not a thing I do daily anymore. Without wanting to go into any dispute with the above poster, I can only say:
    It works well here.
    Your mileage may vary.
    Setting up two mono tracks with a separate input to each, I was able to record vocals with reverb from Audition in my monitoring headphones, along with recording an electro-acoustic instrument (guitar in my case) on the adjacent track with no reverb at all. I sang/tested with lots of consonants and different monitor levels and reverbs; I used the Studio Reverb, which is the least CPU intensive and recommended in the manual. There was no noticable delay, echo, what have you, which I felt disturbed my precision at all. Now I KNOW technically there is a delay/latency, but for practical purposes it isn't noticable. I've also heard some singers are extremely pecky on this, and for them there is the solution of direct monitoring and an outboard reverb added to their headphone signal. For everyone else however it works well and the latency just a theory - certainly not an audible 'echo' of any kind. With a poor soundcard and a computer low on resources latency will become evident. Also if you don't use ASIO. This type of application is why we have ASIO.
    >

  • IS IT POSSIBLE TO ADD A SCROLL PANE TO A PANEL??

    Hi, Im trying to add a scroll pane to a panel but when I compile the code and try to open the form - a 'Illegal Argument Exception' is produced. Can anyone tell me whether it is possible to add a scroll pane the actual panel itself and also the code to do this.     
    Many Thanks, Karl.
    I have added some sample code I have created -
    public RequestForm(RequestList inC)throws SQLException{
              inRequestList = inC;
              displayForm();
              displayFields();
              displayButtons();
              getContentPane().add(panel);
              setVisible(true);
         public void displayForm() throws SQLException{
              setTitle("Request Form");
              setSize(600,740);
              // Center the frame
              Dimension dim = getToolkit().getScreenSize();
              setLocation(dim.width/2-getWidth()/2, dim.height/2-getHeight()/2);
              getContentPane().setLayout(new BorderLayout());
              Border etched = BorderFactory.createEtchedBorder();
              panel = new JPanel();
              panel.setLayout( null );
              //panel.setBackground(new Color(1,90,50));
              Border paneltitled = BorderFactory.createTitledBorder(etched,"");
              panel.setBorder(paneltitled);
              scrollPane1 = new JScrollPane(panel);
              scrollPane1.setBounds(0, 0, 600, 740);
              panel.add(scrollPane1);
    }

    Hi all,
    I am still having trouble here. would it be posible to add a scrollpanel to this form? Can anyone provide me with a working piece of code so I see how it actually works.
    Any help would be greatly appreciated.
    Many Thanks, Karl.
    Code as Follows:
    /* ADMIN HELP Manual*/
    import javax.swing.*;
    import javax.swing.border.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.sql.*;
    import java.util.*;
    public class AdminHelp extends JFrame implements ActionListener{
         private JButton exit;
         private JLabel heading1, help;
         private JPanel panel;
         Font f = new Font("Times New Roman", Font.BOLD, 30);
         private JScrollPane scroll;
         public AdminHelp(){
              setTitle("ADMIN Help Manual");
              setSize(400,325);
              // Center the frame
              Dimension dim = getToolkit().getScreenSize();
              setLocation(dim.width/2-getWidth()/2, dim.height/2-getHeight()/2);
              panel = new JPanel();
              panel.setLayout(null);
              exit = new JButton("Close");
              exit.setBounds(280,260,100,20);
              exit.addActionListener(this);
              panel.add(exit);
              exit.setToolTipText("Click here to close and return to the main menu");
              getContentPane().add(panel);
              show();
              public void actionPerformed(ActionEvent event){
              Object source = event.getSource();
                   if (source == exit){
                        dispose();
              public static void main(String[] args){
                   AdminHelp frame = new AdminHelp();
                   frame.addWindowListener(new WindowAdapter(){
                   public void windowClosing(WindowEvent e){
                   System.exit(0);

  • Is it possible to add the date to a photo in an iPhoto calendar?

    After a picture is dragged to a day on my calendar the date disappears, is it possible to add or restore the date? I am using the latest update of iPhoto.

    The photo in the calendar replaces the date. You can ctrl-click the photo and add a caption to show the day number.
    Clicking the disclosure triangle to the right of the caption will show a panel where you can edit the font (all this tested in iPhoto 9.5.1), but it does look funny, you'd be better off by not adding the day number:

  • How to add fonts in Pages 5.01 Mavericks???

    Hi,
    How do I add fonts to Pages 5.01 (Mavericks)???
    Is this possible?
    And if it´s not too much, where would I find compatible fonts?
    Thanks very much in advance for all suggestions!
    AMI

    You don't add fonts to Pages - yu ad them to OSX. Here's a how-to:
    http://osxdaily.com/2011/10/03/installing-removing-fonts-in-mac-os-x/
    If you Google Fonts for Mac, you'll find many possibilities. Be aware that (mostly) the really good quality fonst cost money

  • Is it possible to add the date to the notifications center?

    im using the new iphone 5 and was wondering if its possible to add the date to the notification center?  i know the date shows up when you have an event scheduled.

    The photo in the calendar replaces the date. You can ctrl-click the photo and add a caption to show the day number.
    Clicking the disclosure triangle to the right of the caption will show a panel where you can edit the font (all this tested in iPhoto 9.5.1), but it does look funny, you'd be better off by not adding the day number:

  • Is it possible to add new columns with format "Text" once a table is linked to a form

    Is it possible to add new columns with format "Text" once a table is linked to a form in Numbers for iPhone or is it impossible and thus a serious bug?(Rating stars and numeric vales seem to work.)
    Those bugs happen both for new speadsheets as well as existing onces, like the demo. When you are in the form only the numeric keyboard shows up.
    Pat from the Apple Store Rosenstrasse/Germany approved that it looks like a Bug during the Numbers Workshop I was in: It is not possible to add new columns with format "Text". I reported the error for Version 1.4 but there is no update nor do I get statement of understanding the issue.

    Hi Knochenhort,
    I see what you are talking about now. Without knowing how the program actually works, I think this is what's going on:
    When you add a new column to an already existing table (with already existing formats), the new cells come already formatted like the previous column. So when you add a column to the end of the demo table, the cells are already formatted like stars, and when you add a column to the beginning, they're already formatted like number.
    I think this is why it's different when if you add columns to a table with blank (unformatted) columns. In that case, the new cells aren't already "tainted" with a set format, so you can change to text format without issue.
    It seems like the problem is that you can't format cells that are already formatted as "number" as "text" format (even if it doesn't look like they are, because they are blank). IMO, this is a bug! This is why you don't see this issue when adding columns to a new table, because the new cells don't already come with a format.
    To workaround, you can highlight the body cells after adding the new column, and delete the cells. This will "clear" the formatting, so you can then go in the inspector, format them as text, and the correct keyboard will pop up.
    Hope that helps!

  • How to add fonts

    How do you add fonts in Keynote on the iPad 2?

    oliverfrompensacola wrote:
    How do you add fonts in Keynote on the iPad 2?
    It's not yet possible for the user to add fonts in any iOS device.  You can ask Apple for this feature via
    http://www.apple.com/feedback/ipad.html

  • Possible to add comments to a file?

    Is it possible to add a comment to a File?
    I need to be able to add comments (short sentence) to some archives (TAR and ZIP) that I'm creating, but I don't see any native way of doing this. The best I can think of is to create a log that lists all of the archives in the directory, and records the comments associated with each.
    Anyone have a better idea?
    Thanks!

    Thanks for the reply!
    Won't that just set a comment for each entry? I need to be able to tag each archive (both ZIP and TAR) with a comment.

  • How can I Add new LookAndFel to IDE

    How can I Add new LookAndFel to IDE "JDeveloper 10g" ?
    (to the combo box in the Tool->Preferences->LookAndFeel ).

    Here is how you can add new L&Fs to the drop down list. (Instructions are for Linux , as I use Linux, but they will work for Windows too)
    Add the L&F jar to <path to JRE>/lib/ext (or <path to JDK>/jre/lib/ext). Then create swing.properties (if it does not already exist) in <path to JRE>/lib (or in jdk...) with following lines:
    swing.installedlafs = motif,windows,metal,mac,plastic
    swing.installedlaf.motif.name = CDE/Motif
    swing.installedlaf.motif.class = com.sun.java.swing.plaf.motif.MotifLookAndFeel
    swing.installedlaf.windows.name = Windows
    swing.installedlaf.windows.class = com.sun.java.swing.plaf.windows.WindowsLookAndFeel
    swing.installedlaf.metal.name = Metal
    swing.installedlaf.metal.class = javax.swing.plaf.metal.MetalLookAndFeel
    swing.installedlaf.mac.name = Mac
    swing.installedlaf.mac.class = com.sun.java.swing.plaf.mac.MacLookAndFeel
    swing.installedlaf.plastic.name = Plastic
    swing.installedlaf.plastic.class = com.jgoodies.plaf.plastic.PlasticLookAndFeel
    swing.defaultlaf=com.jgoodies.plaf.plastic.PlasticLookAndFeel
    Note that I retained default example L&Fs that normally come with the JDK/JRE (depending on the platfom) and added PlasticLookAndFeel as additional PLAF (Pluggable Look And Feel).
    Now it should be possible to choose Plastic L&F in not only JDeveloper but also other Swing apps that you want to use.
    Please let me know if this works and also if you have any questions.
    - Ganesh

  • Is it possible to add HTML inside of a cfgridcolumn

    Hello All,
    I have been searching extensively for an answer, but have
    not yet found it and figured I would post here. Thanks to everyone
    who takes the time with this :).
    My question is this: Is it possible to add HTML to a
    cfgridcolumn?
    My form looks something like this:
    <cfform format="flash" etc..>
    <cfgrid name="mygrid" quer="myquery">
    <cfgridcolumn name="aColumn" heade="myHeader">
    </cfgrid>
    </cfform>
    I have been using Actionscript to adjust the height of the
    column since I am appending multiple columns into one. I can add
    new breaklines and do word-wrapping. The code looks like this:
    function formOnLoad(){
    contactList.variableRowHeight = true;
    contactList.getColumnAt(2).labelFunction = setLabel;
    contactList.getColumnAt(2).wordWrap = true;
    function setLabel(item:Object, columnName:String): String {
    return item.companyName + '\n' + item.description +
    '\n\nMember Since: ' + item.memberSince;
    All I want to do is have a link in the grid (for example I
    want the Company Name to be "clickable" by the user), much like the
    Developer Exchange grid in
    the
    Adobe website.
    Any help would be appreciated.

    Hi,
    if you don't have more tha one clicable event per row, just
    use the row to fire the click event and open the link that way.
    Otherwise, i have no idea what the allowed tags are in a grid
    cell.
    sorry
    tim

  • Is it possible to add a url/href to the MM_swapImage funtion?

    I have a bit of code I created in Dreamweaver CS3 about 3 years ago that I am revisiting/updating. It has a simple html picture gallery that uses the MM_swapImage function with the onclick command. Basically, there are a few thumbnails with a larger picture on the left. When a thumbnail is clicked, the larger image on the left changes. I'd love to add a link to the new larger image, but I can't think of a way to make this possible using this code. It isn't too important but if anyone has any ideas, I'd love to hear them.
    Here is the code:
    HEADER:
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    BODY:
    <img src="../images/THUMBNAIL.jpg" width="73" height="98" title="TITLE" onclick="MM_swapImage('li1','','../images/NEW_IMAGE.jpg',1)" />
    In that code, the 'li1' is the image that gets replaced and the 'NEW_IMAGE.jpg' is the one I'd like to have a url/href attached to.

    Also, and I'd imagine the technique would be similar, would it be possible to add a title attribute to the new image?

  • How do I resolve a "'FOND' font association usability" error message? I've upgraded to Yosemite and now I get this message when using Font Book to add fonts I've used for years.

    I just updated my MacBook Pro and iMac desktop to Yosemite 10.10.2.
    Now I am having font problems. I tried to add fonts I have used for years using FontBook, but it says 'FOND' font association usability and warns me to not use these fonts.
    This happens on both my laptop and desktop.
    Any idea what to do? I use these fonts (about 12-15 fonts from the Times, Helvetica Neue and Giovanni families) regularly in my work.
    Thanks,
    Scott

    I just updated my MacBook Pro and iMac desktop to Yosemite 10.10.2.
    Now I am having font problems. I tried to add fonts I have used for years using FontBook, but it says 'FOND' font association usability and warns me to not use these fonts.
    This happens on both my laptop and desktop.
    Any idea what to do? I use these fonts (about 12-15 fonts from the Times, Helvetica Neue and Giovanni families) regularly in my work.
    Thanks,
    Scott

  • Workshop IDE can not create CTRL from WSDL file

    Hi everybody,
    For the evualtion of the Workshop IDE that comes with WLS 7.0 beta, I'm developing
    a web service (via this IDE) which must interoperate with another web service
    implemented with the help of another tool. I got the corresponding WSDL of this
    "outside" web service (see attachement), and when I want to generate the corresponding
    CTRL (via Add Service Control), I get the following error:
    Error: Could not find operation 'sayHello' in portType ''
    Prescription: The operation you are trying to bind was not found among the declared
    operations. Please check your <portType> sections.
    I do not have a lot of experience with WSDL files and its specification, but I
    compared this file with another WSDL files that work with WORKSHOP IDE, and I
    do not see difference between these files and the file that does not work. Moreover
    the IDE error says that my service 'sayHello' can not be find inside the 'portType'
    tags, but if you have a look at the WSDL file, you will see that is not true ?!?!?
    Can somebody help me please?
    Have a nice day
    Vincent

    Vincent,
    What is happening is that the type attribute on the binding tag must match
    both the targetnamespace and the name of the portType name attribute. Yours
    do match in basename only. When parsing the WSDL file what we do is put the
    name attributes of the portType, service and binding tags into the
    targetNamespace of the WSDL and then we expect the references to these names
    to also be resolved to that namespace.
    In the case of your WSDL, your targetNamespace is
    http://localhost:8000/HelloWorldApp/servlet/rpcrouter and the type attribute
    on the binding attribute just references HelloWorldServicePort which means
    it will use the default namespace of http://schemas.xmlsoap.org/wsdl which
    is, of course, different than the targetNamespace.
    To fixup the WSDL I would recommend you just define a new namespace at the
    top of the WSDL file that matches the targetNamespace attribute and then use
    that prefix in the text value of the attribute used to reference that name.
    Yes, we do need to do some better parser/error messages to help identify
    this :)
    Here is one way that I have done to fixup your WSDL and Workshop does pull
    it in and expose the methods correctly:
    <?xml version='1.0'?>
    <definitions name='HelloWorldService'
    xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/'
    xmlns:xsd='http://www.w3.org/2001/XMLSchema'
    xmlns='http://schemas.xmlsoap.org/wsdl/'
    xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/'
    targetNamespace='http://localhost:8000/HelloWorldApp/servlet/rpcrouter'
    xmlns:test='http://localhost:8000/HelloWorldApp/servlet/rpcrouter'
    xmlns:xsd1='http://localhost:8000/HelloWorldApp/servlet/rpcrouter/schema'>
    <types>
    <xsd:schema
    targetNamespace='http://localhost:8000/HelloWorldApp/servlet/rpcrouter/schem
    a'>
    <xsd:simpleType name="java.lang.Integer"><xsd:restriction
    base="xsd:int"/></xsd:simpleType>
    <xsd:simpleType name="java.lang.Short"><xsd:restriction
    base="xsd:short"/></xsd:simpleType>
    <xsd:simpleType name="java.lang.Long"><xsd:restriction base="xsd:long"
    /></xsd:simpleType>
    <xsd:simpleType name="java.lang.Double"><xsd:restriction
    base="xsd:double"/></xsd:simpleType>
    <xsd:simpleType name="java.lang.Float"><xsd:restriction
    base="xsd:float"/></xsd:simpleType>
    <xsd:simpleType name="java.lang.Boolean"><xsd:restriction
    base="xsd:boolean"/></xsd:simpleType>
    <xsd:simpleType name="java.lang.Character"><xsd:restriction
    base="xsd:string"/></xsd:simpleType>
    <xsd:simpleType name="java.lang.String"><xsd:restriction
    base="xsd:string"/></xsd:simpleType>
    <xsd:simpleType name="java.lang.StringBuffer"><xsd:restriction
    base="xsd:string"/></xsd:simpleType>
    <xsd:simpleType name="java.lang.Byte"><xsd:restriction
    base="xsd:byte"/></xsd:simpleType>
    <xsd:simpleType name="char_lb_rb"><xsd:restriction
    base="xsd:string"/></xsd:simpleType>
    <xsd:simpleType name="char"><xsd:restriction
    base="xsd:string"/></xsd:simpleType>
    </xsd:schema>
    </types>
    <message name='sayHelloInput'>
    <part name='message' type='xsd:string'/>
    </message>
    <message name='sayHelloOutput'>
    <part name='result' type='xsd:string'/>
    </message>
    <portType name='HelloWorldServicePort'>
    <operation name='sayHello'>
    <input message='test:sayHelloInput'/>
    <output message='test:sayHelloOutput'/>
    </operation>
    </portType>
    <binding name='HelloWorldServiceBinding'
    type='test:HelloWorldServicePort'>
    <soap:binding style='rpc'
    transport='http://schemas.xmlsoap.org/soap/http'/>
    <operation name='sayHello'>
    <soap:operation
    soapAction='http://localhost:8000/HelloWorldApp/servlet/rpcrouter/sayHello'/
    >
    <input>
    <soap:body use='encoded' namespace='urn:HelloWorldService'
    encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/>
    </input>
    <output>
    <soap:body use='encoded' namespace='urn:HelloWorldService'
    encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/>
    </output>
    </operation>
    </binding>
    <service name='HelloWorldService'>
    <port name='HelloWorldServicePort'
    binding='test:HelloWorldServiceBinding'>
    <soap:address
    location='http://localhost:8000/HelloWorldApp/servlet/rpcrouter'/>
    </port>
    </service>
    </definitions>
    Thanks,
    Art
    "Vincent Ducret" <[email protected]> wrote in message
    news:[email protected]...
    >
    Thanks for your answer, but I do not understand it, and also yoursuggestion.
    >
    According to WSDL specification, the 'type' attribute of a 'binding' tagmust
    reference (bind to) an exisiting 'portType' tag. And it's the case here,no? I.e.
    we have a 'portType' tag called HelloWorldServicePort, which is referencedby
    the 'binding' tag named HelloWorldServiceBinding via its 'type' attribute:'HelloWorldServicePort'.
    >
    Where is the problem ?
    Thanks a lot
    Thanks for your help

Maybe you are looking for

  • My DVD player only plays in black and white

    Just got a new Toshiba HDTV (model no. 39L1350U) and am trying to hook up the DVD player. Got sound, but it only shows a black and white picture. The only way I get any picture at all is by plugging the yellow of the standard AV cable into the green

  • Performance issue when trying to execute DBMS_METADATA.GET_DDL of a table

    Hello. I have a database with lots of partitioned tables and indexes and when I try to get the DDL of a partitioned table the query runs for hours and does not end. I tried do gather data dictionary statistics but it had no impact on performance. Can

  • Solaris 10 03/05HW1 fails to boot on HP BL25p

    I have a problem with the above mentioned hardware. The installation succeeds from the install server. cpqary3 is installed as well as the disk size patch. When the machine reboots at the end of the install, the os doesn't load after configuration as

  • A repeating plug-in container issue

    I am trying to update Roboform and everything seems fine until I get to the Roboform Landing where it lists all of the fixes, and then an error message pops up that says: Can not load RoboForm add-on Please restart browser or reinstall RoboForm TypeE

  • Migration From Xcelsius 4.5 to Xcelsius 2008 with SP3

    Xcelius 4.5 using Live office XI Release 2 to access data. SWF file is published in BOXI R2 . Company is upgrading from BOXI R2 to BOXI R3.1; from Xcelsius 4.5 to Xcelsius 2008 with SP3; From Live Office XI R2 to Live Office XI 3.1 Planning to use Im