Basic code editing and External Stage Control

Hi all - I would like to use some very basic functionality inside edge but I'm still bemused it doesn't exist.
Find and replace.. word wrap... how are these things not there already!
I just found this http://oddlystudios.com/labs/controlling-adobe-edge-externally/
I'm wondering if anyone else uses this work flow and their experience with it.

Here's an simple example to get you started.
import java.awt.*;
import javax.swing.*;
public class MainFrame extends JFrame {
     public MainFrame() {
          try {
               setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
               setTitle("Demo");
               getContentPane().add(new SubPanel(), BorderLayout.NORTH);
               pack();
               setLocationRelativeTo(null);
               setVisible(true);
          } catch (Exception e) { e.printStackTrace(); }
     public static void main(String[] args) { new MainFrame(); }
import javax.swing.*;
public class SubPanel extends JPanel {
     private JTextField textField;
     private JButton button;
     public SubPanel() {
          textField = new JTextField(10);
          add(textField);
          button = new JButton("Button");
          add(button);
}

Similar Messages

  • How to edit and update table control into database?

    I am doing table control. Here are my codes:
    *& Report  ZHERA_TABLE2
    REPORT  ZHERA_TABLE2.
    ***&SPWIZARD: DATA DECLARATION FOR TABLECONTROL 'ZTABLE_CONTROL'
    *&SPWIZARD: DEFINITION OF DDIC-TABLE
    TABLES:   ZHERA.
    *&SPWIZARD: TYPE FOR THE DATA OF TABLECONTROL 'ZTABLE_CONTROL'
    TYPES: BEGIN OF T_ZTABLE_CONTROL,
             NAME LIKE ZHERA-NAME,
             AGE LIKE ZHERA-AGE,
           END OF T_ZTABLE_CONTROL.
    *&SPWIZARD: INTERNAL TABLE FOR TABLECONTROL 'ZTABLE_CONTROL'
    DATA:     G_ZTABLE_CONTROL_ITAB   TYPE T_ZTABLE_CONTROL OCCURS 0,
              G_ZTABLE_CONTROL_WA     TYPE T_ZTABLE_CONTROL. "work area
    DATA:     G_ZTABLE_CONTROL_COPIED.           "copy flag
    *&SPWIZARD: DECLARATION OF TABLECONTROL 'ZTABLE_CONTROL' ITSELF
    CONTROLS: ZTABLE_CONTROL TYPE TABLEVIEW USING SCREEN 1000.
    START-OF-SELECTION.
    CALL SCREEN 1000.
    *&SPWIZARD: OUTPUT MODULE FOR TC 'ZTABLE_CONTROL'. DO NOT CHANGE THIS LI
    *&SPWIZARD: COPY DDIC-TABLE TO ITAB
    MODULE ZTABLE_CONTROL_INIT OUTPUT.
      IF G_ZTABLE_CONTROL_COPIED IS INITIAL.
    *&SPWIZARD: COPY DDIC-TABLE 'ZHERA'
    *&SPWIZARD: INTO INTERNAL TABLE 'g_ZTABLE_CONTROL_itab'
        SELECT * FROM ZHERA
           INTO CORRESPONDING FIELDS
           OF TABLE G_ZTABLE_CONTROL_ITAB.
        G_ZTABLE_CONTROL_COPIED = 'X'.
        REFRESH CONTROL 'ZTABLE_CONTROL' FROM SCREEN '1000'.
      ENDIF.
    ENDMODULE.
    *&SPWIZARD: OUTPUT MODULE FOR TC 'ZTABLE_CONTROL'. DO NOT CHANGE THIS LI
    *&SPWIZARD: MOVE ITAB TO DYNPRO
    MODULE ZTABLE_CONTROL_MOVE OUTPUT.
      MOVE-CORRESPONDING G_ZTABLE_CONTROL_WA TO ZHERA.
    ENDMODULE.
    Screen 1000 codes:
    PROCESS BEFORE OUTPUT.
    *&SPWIZARD: PBO FLOW LOGIC FOR TABLECONTROL 'ZTABLE_CONTROL'
      MODULE ZTABLE_CONTROL_INIT.
    *&SPWIZARD: MODULE ZTABLE_CONTROL_CHANGE_TC_ATTR.
    *&SPWIZARD: MODULE ZTABLE_CONTROL_CHANGE_COL_ATTR.
      LOOP AT   G_ZTABLE_CONTROL_ITAB
           INTO G_ZTABLE_CONTROL_WA
           WITH CONTROL ZTABLE_CONTROL
           CURSOR ZTABLE_CONTROL-CURRENT_LINE.
    *&SPWIZARD:   MODULE ZTABLE_CONTROL_CHANGE_FIELD_ATTR
        MODULE ZTABLE_CONTROL_MOVE.
      ENDLOOP.
    MODULE STATUS_1000.
    PROCESS AFTER INPUT.
    *&SPWIZARD: PAI FLOW LOGIC FOR TABLECONTROL 'ZTABLE_CONTROL'
      LOOP AT G_ZTABLE_CONTROL_ITAB.
        CHAIN.
          FIELD ZHERA-NAME.
          FIELD ZHERA-AGE.
        ENDCHAIN.
      ENDLOOP.
    *&SPWIZARD: MODULE ZTABLE_CONTROL_CHANGE_TC_ATTR.
    *&SPWIZARD: MODULE ZTABLE_CONTROL_CHANGE_COL_ATTR.
    MODULE USER_COMMAND_1000.
    Please show me where to put my codes to edit(edit directly on table control fields) and update my table control(using the 'save' button)?

    Hi,
    You have to put the following code in the PBO of screen 1000.This code would make the fields editable to make changes in the table control fields directly.
    Here there are 3 transactions.For create and change transactions, the fields will be in editable mode and for display transaction,they will be non editable mode.
    DESCRIBE TABLE tb_line LINES lin.    " tb_line is the name of the internal table for the table control
      tcl_item-lines = lin.                             '' lin hold the number of lines of the internal table
    CASE sy-tcode.
        WHEN 'ZCREATE09' OR 'ZCHANGE09'.
    ***Checking if the table control is empty or not***
          IF lin NE 0.       
            LOOP AT SCREEN.
    ***To make the screen editable****
              screen-input = 1.
            ENDLOOP.
          ELSE.
            LOOP AT SCREEN.
              IF screen-name CS 'TB_LINE'.
    ****To make the screen non-editable if no values are present in the
    ***table control****
                screen-input = 0.
                MODIFY SCREEN.
              ENDIF.
            ENDLOOP.
          ENDIF.
    Once the fields are edited and the save button is pressed,the entered values have to be populated into the Z tables.The code has to written in the PAI of the screen 1000.Here the values from the work area of the internal table are moved into the Z Table. The code will be.
    LOOP AT tb_line.
        ztm09_ekpo-ebeln = ztm09_ekko-ebeln.  "ztm09_ekko and ztm09_ekpo are the names of the Z Tables.
        ztm09_ekpo-ebelp = tb_line-ebelp.   
        ztm09_ekpo-matnr = tb_line-matnr.
        ztm09_ekpo-menge = tb_line-menge.
        ztm09_ekpo-meins = tb_line-meins.
        ztm09_ekpo-netpr = tb_line-netpr.
        ztm09_ekpo-waers = tb_line-waers.
    *****Update the entries into item table*****
        MODIFY ztm09_ekpo.
      ENDLOOP.
    Reward if helpfull
    Thanks,
    Kashyap

  • UnitOfWork event and External Transaction Control

    Hi
    I'm running Toplink 9.0.3 with JBoss 3.2.2. Toplink is configured with an external transaction controler. My code is running inside a Session Bean, with CMT (Container Managed Transaction). My bean's transaction type is "Required" so the JTS transaction is already started when I call getActiveUnitOfWork().
    What I want to do is register a listener on the UOW's preCommit event. When I do, the listener is never called... Is it an issue with Toplink or is it me who is missing something?
    Thanks a lot
    Regards
    Eric

    Hi Eric,
    When configured correctly the registration of the listener should happen when you acquire the unit of work, and if logging is appropriately enabled you should see the #register log message on the console. You should not need to do anything in preCommit. Make sure that you have:
    - set the login to useExternalTransactionController()
    - set the controller instance on the session
    e.g. session.setExternalTransactionController(new JTSExternalTransactionController()
    - set the TransactionManager on the JTS listener class.
    e.g.
    TransactionManager jbossTM = ... // look up TM
    JTSSynchronizationListener.setTransactionManager(jbossTM)
    You will have to look up the JBoss TransactionManager in JNDI in order to set it on the listener class. I can't remember what name it is posted under in 3.22 but it is something generic (javax.transaction.TransactionManager, or something like that -- your app server doc should tell you).
    If you are using sessions.xml then the equivalent elements exist there as well to set the first two parts.
    -Mike

  • MacPlus, Code 0F0002 and external HD

    Hey,
    i got an old MacPlus from my father. So, i accept, that i meet some challenges...
    First, i get the code 0F0002, when i insert the system disk 5.0 (by the way not, if i insert the install disk of OS 7.5). After searching in the forum i find the solution for the problem: the battery. So, i will buy a Ducacell PX-21 in one of the next days and will check it.
    Second, after inserting the install disk of OS 7.5, the wizard allows me to install the OS 7.5 part for the MacPlus. After finishing and restart of the computer, the macplus don't find the external HD. What do i wrong (scuzzy parramter is 1)? will be solved, when i have changed the battery?
    Thanks for your help!

    The driver for a SCSI Hard Drive is not installed in the System. If it were, you could not accees it until the System was loaded, and you could not load the system until you had the driver in memory.
    Instead, the Driver lives in a "magic place" on the SCSI drive, and is loaded and activated as part of the boot-up process. The Driver is placed in the 'magic place" when the drive is initialized. It can be re-installed into the "magic place" using HDSC Setup's "Update Driver" function.
    You need a bootable diskette with HDSC Setup and minimal System. This is exactly what is on the appropriate "Disk Tools" diskette of the same revision as the System you have been running.

  • Photoshop and elements 13  Working in iPhoto Want to edit image using photoshop elements Did the following  IPhoto Preferences Advanced Edit Photos: In drop down menu chose in Photoshop Elements  Also control click and chose edit in external editor  Drop

    Photoshop and elements 13
    Working in iPhoto
    Want to edit image using photoshop elements
    Did the following
    IPhoto>Preferences>Advanced>Edit Photos: In drop down menu chose in Photoshop Elements
    Also control click and chose edit in external editor
    Drop down menu edit photos in external program>photoshop Elements
    Go to to the image I'm working on  --- selected the image, the clicked on edit. When nothing happened I double clicked the image. Still elements didn't open. Then I opened the Elements editor, went back to iphoto and tried the entire process again. the photo still didn't open on Elements 13 for editing.
    I have 3 Elements 13 books as well as looked on line--all my references say the exact same thing ---- iPhoto>Preferences>advanced>edit in external program>photoshop Elements
    I uninstalled and reinstalled both iPhoto as well as Elements.
    I spoke with application technical support.  There appears to be nothing wrong with my copy of iPhoto.  However there is no support from Adobe.  I waited for over 1.5 hours for chat support several days ago, and finally gave up.

    You are probably choosing the obvious file rather than the correct file as the PSE editor. The actual editor is hidden away inside the Support Files folder. The PSE file at the top level of the PSE folder in Applications is just an alias for the welcome screen and what you're describing is exactly what happens when you choose that. You want this one:

  • HTML Code for Smart Link Edit and Logout items

    I am using an HTML template and would like to include the Smart Link Edit and Logout items in a TABLE. How do I do this?
    Is there a way to get the code for these Smart Links (ORACLE tags) and include them?

    According to Oracle Metalink "Note:368720.1 - When ILS is Enabled the Edit Smartlink is visible to Users that are not entitled to see it", that is the expected behavior whether you are using the "edit" substitution tags or the "edit" smartlink on a page when the page has item-level access enabled. I don't like it but I can understand why that is the behavior since an end user may have access to manage/edit just one item on a page or just one tabbed region on a page and they need a way to put the page into edit mode in order to edit their item(s). If a user has nothing to edit on a page, then they won't be able to do anything in edit mode anyway.
    On the employee portal I work on, there is the possibility that every page may have a different set of users/groups that need to edit items/regions on the page AND the edit smartlink is published on the portal page template so basically, all employees can see the Edit link but if they click on it, only those employees that have items/regions to edit/manage will be able to really do anything while in edit mode.
    However, on the customer portal I work on, there is only one group that manages content site-wide so I was able to publish the Edit smartlink on the portal page template and change its access to the one group that manages content so they're the only ones that can see the Edit link on every page.
    The substitution tags for Logout are #PORTAL.LOGOUT.URL# and #PORTAL.LOGOUT.LABEL# (I use those so I can control the html & css) or just #PORTAL.LOGOUT# (which does both the label and url). The list of all substitution tags is available in Oracle Application Server Portal Help.

  • One row as editable and other row as non-editable in table control

    Hi Experts,
               Is this possible to make one row as editable and another row is non editable in table control?
    My Requirement is
    1st row non editable field
    Customer code, description,amount will come from the previous screen this will be non editable for user.
    2nd row editable
    User has to enter the amount in 2nd row here the customer code description will be empty.
    If 4 customer are there
    1,3,5,7 should be non editable and 2,4,6,8 should be editable..
    Pls help me in this issue..
    Thanks in Advance!

    hI
    This is a simple Module POOL program with only Table control and nothing else
    " This is Tested to Enable one row and disabling the next row
    in TOP Include
    controls : tc type tableview using screen 100.
    DATA : OK TYPE SY-UCOMM.
    DATA : ITAB TYPE TABLE OF SPFLI WITH HEADER LINE.
    in PBO
    PROCESS BEFORE OUTPUT.
      MODULE status_0100.
      LOOP AT itab WITH CONTROL tc.
       MODULE TC_MOD.
      ENDLOOP.
    in PAI
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_0100.
      LOOP AT itab.
      ENDLOOP.
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'TEST'.
      SET TITLEBAR 'TEST'.
      DESCRIBE TABLE itab LINES tc-lines.
      IF tc-lines = 0.
        tc-lines = 20.
      ENDIF.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    MODULE tc_mod OUTPUT.
      DATA : mod TYPE i.
      LOOP AT SCREEN.
        mod =  tc-CURRENT_LINE MOD 2  .
        IF mod = 1.
          IF screen-name = 'SPFLI-CARRID'.
            screen-input = 0.
            MODIFY SCREEN.
          ENDIF.
        ENDIF.
      ENDLOOP.
    ENDMODULE.                 " TC_MOD  OUTPUT
    Edited by: Ramchander Krishnamraju on Jan 25, 2011 7:17 AM

  • Give some hints that in a table control , first row will be editable and

    pls,
    give some hints that in a table control , first row will be editable and
    rest of the rows will be non-editable.

    Hi,
    Take the group1 for all the textboxes in table control as 'ABC'.
    Use this code, its working:-
    it_zekpo is my internal table w/o header line,
    wa_zekpo is work area.
    Name of input/output fields on screen are:-
    wa_zekpo-field1,
    wa_zekpo-field2, and so on...
    At screen flow-logic
    PROCESS BEFORE OUTPUT.
    *  MODULE status_8003.
      LOOP WITH CONTROL po_tb.
        MODULE read_data.
      ENDLOOP.
    PROCESS AFTER INPUT.
    *  MODULE user_command_8003.
      LOOP WITH CONTROL po_tb.
        MODULE modify_data.
      ENDLOOP.
    In PBO
    *&      Module  READ_DATA  OUTPUT
    MODULE read_data OUTPUT.
      READ TABLE it_zekpo INTO wa_zekpo INDEX po_tb-current_line. "po_tab is table control name
      "enable only first row and disable rest rows in table control.
      IF sy-subrc EQ 0.
        IF sy-tabix GE 2.
          IF screen-group1 = 'ABC'.
            LOOP AT SCREEN.
              SCREEN-INPUT = 0.
              SCREEN-ACTIVE = 0.
            ENDLOOP.
            MODIFY SCREEN.
          ENDIF.
        ENDIF.
      "disable empty rows
      ELSE.
        IF screen-group1 = 'ABC'.
          LOOP AT SCREEN.
            SCREEN-INPUT = 0.
            SCREEN-ACTIVE = 0.
          ENDLOOP.
          MODIFY SCREEN.
        ENDIF.
      ENDIF.
      data : line_count type i.
      describe it_zekpo
      lines line_count.
      po_tb-lines = line_count + 10.
      "to increase the number of lines in table control dynamically
    ENDMODULE.                 " READ_DATA  OUTPUT
    In PAI
    *&      Module  MODIFY_DATA  INPUT
    MODULE MODIFY_DATA INPUT.
      MODIFY IT_ZEKPO FROM WA_ZEKPO INDEX po_tb-currentline.
    ENDMODULE.                 " MODIFY_DATA  INPUT
    Hope this solves your problem.
    Thanks & Regards,
    Tarun Gambhir

  • Does Measurment Studio Standerd edition contains graph and chart ActiveX controls for VB6

    A Very Simple quistion:
    Does Measurment Studio Standerd edition contains graph and chart ActiveX controls for VB6?

    Shady -
    Measurement Studio 7.0 Standard Edition provides support for Visual C++ 2003, Visual Basic .NET 2003, and Visual C# 2003. It just so happens that the Visual C++ support includes ActiveX controls, which are usable in VB6. The CWGraph ActiveX control provides both graphing and charting functionality.
    However, full Visual Basic 6 support, including examples and documentation is not in the Standard edition. It is in the Professional and Enterprise Editions.
    The best thing to do would be for us to get in direct contact with each other to make sure that we get you exactly the (minimum) package you need. If your profile includes your email address, we can contact you. Otherwise, you'll need to go through ni.com/support and refer to t
    his discussion thread to open a direct dialogue.

  • How do I import an old iphoto library from an external hard disk while keeping my editing and organization in tact?

    I am running iPhoto '08 on a MacBook Pro 2.2 GHz Intel C2D (MacBook Pro 3,1). I backed up my hard drive contents onto an external hard drive, then formatted my computer and installed Mountain Lion. I then re-installed iPhoto '08 and ran all the updates. Now, I would like to import my old library from the external disk onto my computer without losing my editing and organization; however, when I select "import to library" from iPhoto, the old iPhoto library is not a selectable option.
    I know how to "show package contents" and import directly from the Original and Modified folders, but I don't want to lose my organization. Can I simply drag the content of those folders into my new Original and Modified folders? Will iPhoto read that correctly?
    I tried to open the old library from the external disk, thinking to export them all to a folder and import from there, but that just opened my new library and none of the old photos were imported or available.
    I'm running out of ideas and would appreciate any help you guys can give. Thanks!!

    You don't import it.
    Just drag the iphoto Library from the external to the Pictures Folder.
    Then open it:
    Hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Choose Library'
    Never import one Library to another. Every version and thumbnail is imported like a distinct photo, you lose all your Albums, Keywords etc., the link between Original and Previews is destroyed, the non-destructive editing feature is ruined and so on. In summary: it's mess.

  • In SharePoint 2013, some of the userswith contribute or full control rights are not able to edit and save office doucuments to SharePoint library.

    In SharePoint 2013, Office 2010 and IE 8. Office web apps is not configured.
    Some users with Contribute or full control are not able to edit and save documents back to SharePoint library.
    When they try to save they are getting following error:
    1. https://.....pptx is read-only. Do you want to save changes to a different file name?
    2. Project canot access "https://...." 
       Try one of the following
    The file may be temporarily open by another program. wait a momoment and try again.
    A file with the same name may already exists. Save it with a different file name.
    You may be trying to save to a read only folder. Save to a different folder instead.
    Please help me with this issue.
    will be waiting for any suggestions or solutions.
    Thanks
    Krish
    99

    Thanks again for quick response.
    I have requested users who are having this issue to try check in/ check out, and share the results.
    Result with CheckIn/CheckOut:
    User was able to check out but no edit option.
    'Edit Document' option under 'Files' tab was greyed out. I did check permissions every thing seems fine he has full control over the site and document library.
    Please advise.
    Thanks
    Krish
    99

  • Font licensing and EULA: Adobe Type Basics OpenType Edition

    Hi all,
    I'm not necesarilly working with graphic design daily. However, I may have to replicate a design for a publication that uses Adobe Garamond Pro, which is why I got interested in Adobe - Fonts : Adobe Type Basics OpenType Edition.
    However, before I shell out the cash, I'd like to ask a few questions about related EULA's and font licensing issues - as the last thing I want to do is buy something, and then end up sued/financially destroyed/imprisoned anyways. (which is why I prefer with open fonts & software - at least no worries about prison, in case of misunderstanding the legalese)
    So, here are the questions:
    I am a Linux user, and I primarily intent to use the fonts with xelatex. On the download page, there are two options: "Win" and "Mac". Which one should I choose? Related question: Adobe Forums: Install a Mac font on a PC:Windows can use OpenType, Windows Type1 and Windows TrueType fonts. Windows cannot directly read Mac TrueType or Mac Type1 fonts.
    Macintosh can use OpenType, Mac Type1, Mac TrueType, and Win TrueType. Adobe products can read some Windows Type 1 fonts if installed in the correct folder.
    Versions - possibly unrelated, but I've found this old comment from 2003 for 'Adobe Type Basics 5.0 Mlp (CD-ROM)':Unfortunately, this product includes fonts in the older PostScript "Type 1" font format instead of the newer OpenType format. Adobe sells an OpenType edition of Adobe Type Basics, but this is a download-only product. I wish Adobe would sell the OpenType Edition on CD.... so just to make sure: I would definitely download the OpenType if I buy from the above  Adobe - Fonts : Adobe Type Basics OpenType Edition link, right?
    Re-download - the Adobe Type Basics page doesn't mention the file format of the download, nor its size. With bought fonts, I'd consider installing whatever I need for as long as project lasts, then deleting everything from my computer, since I don't like proprietary stuff sitting on it. Thus, I'd be interested in re-donwloading the Adobe Type Basics package. So is this package a zip file or similar, if so - how big is it? Can I download the file multiple times after purchase? Is the number of times I can redownload limited?
    I may have to do (in a role of page layouter for an academic institution) a document for a relatively big academic publisher (Springer); and I have little idea about how font licensing works there. Let's say I prepare a PDF which uses Adobe Garamond Pro, and embeds that font. Is it legal for me to just send that document to the publisher for printing, if I had purchased the Basics OpenType edition? I'm worried because I found in Adobe Forums: Install a Mac font on a PC:As I understand it, print service providers are required by the font EULA to own the font even though the customer provides it.
    I suggest you ask your customer to purchase the modern OpenType versions of the fonts. ... but then, Springer are "publishers", not "printers"? How worried should I be about this? Should I ask for confirmation in writing from them, that they own the particular embedded font? Then again, since in this case I'd be working for an academic institution as page layouter, should the academic institution also buy the font? If the academic institution already owns the font, am I legally obliged to own it as a page layouter (even if I'd use that font on the institutions computers with licensed fonts on them)? I'm pretty sure I'd be legally obliged to own it if I intend to prepare the layout on my own computer, is that correct?
    The download page mentions for "End User License": 5 computers. Say I install one Adobe Garamond Pro on one computer, use it there for the duration of a project, and then delete it from the computer. Is this computer then still counted towards the number of seats?
    Occasionally, I have my personal notes and such typeset in Latex, and here I send them to a printer (as in, "print service provider") to print 2-3 copies in softcover for personal use. As far as I understand it, this does not represent a "published" book (and so there isn't a "publisher" institution as in the Springer example above). So, in this case, again the same situation: let's say I prepare a PDF which uses Adobe Garamond Pro, and embeds that font. Is it legal for me to just send that document to the print house for printing, if I had purchased the Basics OpenType edition? How worried should I be about this?
    Other neat related links I found:
    Adobe Forums: Font EULA Question Re: Selling Logos;  
    Adobe Forums: font liscensing: upgrading from print to digital ...
    Well, I believe this is all I have for asking (for now) - thanks in advance for any answers!

    I am a Linux user, and I primarily intent to use the fonts with xelatex. On the download page, there are two options: "Win" and "Mac". Which one should I choose?
    Related question: Adobe Forums: Install a Mac font on a PC:Windows can use OpenType, Windows Type1 and Windows TrueType fonts. Windows cannot directly read Mac TrueType or Mac Type1 fonts.
    Macintosh can use OpenType, Mac Type1, Mac TrueType, and Win TrueType. Adobe products can read some Windows Type 1 fonts if installed in the correct folder.
    If you want Adobe Type Basics OpenType edition, then the fonts support multiple platforms.  OpenType fonts work on Mac, Win and Linux systems.
    Versions - possibly unrelated, but I've found this old comment from 2003 for 'Adobe Type Basics 5.0 Mlp (CD-ROM)':Unfortunately, this product includes fonts in the older PostScript "Type 1" font format instead of the newer OpenType format. Adobe sells an OpenType edition of Adobe Type Basics, but this is a download-only product. I wish Adobe would sell the OpenType Edition on CD.... so just to make sure: I would definitely download the OpenType if I buy from the above  Adobe - Fonts : Adobe Type Basics OpenType Edition link, right?
    Yes, the Adobe Type Basics Open Type Edition would provide you with OpenType versions of the fonts.  Sorry that we don’t offer all the different fonts, font families and variations on CD-ROM, but it would be cost-prohibitive to make all those versions, and font software is relatively small compared to application software.  That said, Our font EULA (End User License Agreement) which can be found at: http://www.adobe.com/type/browser/legal/pdfs/wf_EULA071111/EULA5seat_USEnglish07.11.11.htm l states: “2.5 Backup Copy. You may make a reasonable number of backup copies of the Software, provided your backup copies are not installed or used for other than archival purposes.” So you can make your own CD-ROM.
    Re-download - the Adobe Type Basics page doesn't mention the file format of the download, nor its size. With bought fonts, I'd consider installing whatever I need for as long as project lasts, then deleting everything from my computer, since I don't like proprietary stuff sitting on it. Thus, I'd be interested in re-donwloading the Adobe Type Basics package. So is this package a zip file or similar, if so - how big is it? Can I download the file multiple times after purchase? Is the number of times I can redownload limited?
    The file format is OpenType (CFF).  I would recommend making a backup copy of these fonts if you don’t want to keep them on your system.  Our Electronic Software Download service is not meant to be used for storage.
    I may have to do (in a role of page layouter for an academic institution) a document for a relatively big academic publisher (Springer); and I have little idea about how font licensing works there. Let's say I prepare a PDF which uses Adobe Garamond Pro, and embeds that font. Is it legal for me to just send that document to the publisher for printing, if I had purchased the Basics OpenType edition? I'm worried because I found in Adobe Forums: Install a Mac font on a PC:As I understand it, print service providers are required by the font EULA to own the font even though the customer provides it.
    I suggest you ask your customer to purchase the modern OpenType versions of the fonts. ... but then, Springer are "publishers", not "printers"? How worried should I be about this? Should I ask for confirmation in writing from them, that they own the particular embedded font? Then again, since in this case I'd be working for an academic institution as page layouter, should the academic institution also buy the font? If the academic institution already owns the font, am I legally obliged to own it as a page layouter (even if I'd use that font on the institutions computers with licensed fonts on them)? I'm pretty sure I'd be legally obliged to own it if I intend to prepare the layout on my own computer, is that correct?
    Wow!  Lots of questions here.  First of all, publishers publish.  Printing is just one form of publishing.  Embedding information for Adobe fonts can be found at the following:
    http://www.adobe.com/type/browser/legal/additional_licenses.html
    http://www.adobe.com/type/browser/info/embedding.html
    If you send a file to a print service provider and send a copy of the font along as well, then the printer needs to own a valid copy themselves.  If you send the print service provider a PDF version of the file, then you can embed the font in the PDF (but you would not send the a raw version of the font).  In this case, the printer doesn’t need the font, because it is embedded in the document.
    The download page mentions for "End User License": 5 computers. Say I install one Adobe Garamond Pro on one computer, use it there for the duration of a project, and then delete it from the computer. Is this computer then still counted towards the number of seats?
    If you buy a license for Adobe Garamond Pro, you have up to 5 seats.  So, it can be installed on a maximum of five computers at your company.  It is that simple to be in compliance.  If you were to obtain Adobe Garamond  Pro by purchasing Adobe Type Basics OpenType Edition, then you can install the entire set on up to five computers at your company.  You are licensing the set, and the fonts cannot be split up and used across multiple users at your company.
    Occasionally, I have my personal notes and such typeset in Latex, and here I send them to a printer (as in, "print service provider") to print 2-3 copies in softcover for personal use. As far as I understand it, this does not represent a "published" book (and so there isn't a "publisher" institution as in the Springer example above). So, in this case, again the same situation: let's say I prepare a PDF which uses Adobe Garamond Pro, and embeds that font. Is it legal for me to just send that document to the print house for printing, if I had purchased the Basics OpenType edition? How worried should I be about this?
    Yes.  It is legal to send the document to a print service provider with the font embedded in PDF.  You are printing a document, and your interpretation of what it means to “publish” or be a “publisher” is not relevant.  The words don’t even appear in our EULA.

  • Error code -42408. I downloaded a newer version of iTunes, 10.7. Now it will not let me purchase anything. How do I fix? I have edited and revised all my names and account settings, checked payment. Quit, restarted. Help

    I downloaded a newer version of iTunes, 10.7. Now it will not let me purchase anything. I get an error code -42408. What does this mean and how do I fix? I have edited and revised all my names and account settings, checked payment. Quit, restarted. Help please, I'm going crazy without my iTunes. I'm on a MacBook Pro.

    Found this item it may help
    OK, I have fixed it here. Here's what I did:
    quit iTunes
    trashed ~/Library/Preferences/com.apple.iTunes.plist
    started iTunes, and authorised my account
    Worked straight away after that !

  • Using an External Hard Drive for iMovie Editing and Burning to DVD

    Between iPhoto, iTunes and other applications I am rapidly running out of hard drive space on my 2003 iMac. Because of this, I recently purchased a Lacie 250 GB Firewire external hard drive and was hoping to use it for iMovie editing and buring of DVDs, because of the large amount of disk drive space video eats up. Is it it possible to "load" iMovie and iDVD to the external drive and edit/burn videos on that drive? If not, is there some other way to use that external drive in this process? Thanks in advance for any assistance that can be provided.

    Scooper
    see my reply to Trollus, just posted:
    That's how I do all my stuff now - via external lacie 'brick' drive. The only trick is when you begin your iMovie project, hit save immediately after creating the new project, and save the project file in an appropriately named folder on the external hard drive (don't call it 'Movies' as it'll be confused with your Powerbook's movies folder). Then as you import all your clips from your movie camera, they will be written to the external drive, rather than you G4's drive. Very handy.
    I do all my iMovie and iDVD stuff via the external Lacie drive - the FireWire 400 interface is quick enough (ie never had skipped clips, etc). I also save all iDVD finished projects as disc images on the external drive and burn DVDs from those at slow speed via Disc Utility. No coasters...:-)
    Greetings from Canberra
    Dave
    iBook G4   Mac OS X (10.4.8)  

  • I started to learn HTML, and I'm using text edit and everything is going fine, when I save the file with a .html extension and open it with safari I only view the code and not the webpage that was supposed to be created.

    I started to learn HTML, and I'm using text edit and everything is going fine, when I save the file with a .html extension and open it with safari I only view the code and not the webpage that was supposed to be created.

    That is because you don't have a web server configured and running to serve the html page. In order to see the page in a browser you need to access it using a url similar to http://localhost/~yourUserName if you are serving the page from your user account.
    Prior to Mountain Lion you could go into web sharing and turn on the web server. With Mountain Lion there is no option, other than using terminal, to turn on the web server. The web sharing menu item has been removed in Mountain Lion. Apache is still on your computer but it will take a little searching these forums or the Internet to find how to turn it on.
    If you want a graphic user interface to turn on/off the Apache server you could download and install a server application like xampp, http://www.apachefriends.org/en/xampp.html. I use this and it works well.

Maybe you are looking for

  • When I download a pdf file it opens then a dialog box opens and says buy adobe acrobat 8 pro.

    I just want to be able to read a pdf file. I have downloaded Acrobat reader 9 hoping this would solve the problem. I purchased this laptop about a  of year ago, and just started using it a couple of months ago. I tried to delete adobe acrobat 8 but i

  • Videos not formatted correctly in Windows

    I have several videos on 2 different pages in iWeb. They display fine on either Safari or FireFox on the Mac, but do not display correctly on FireFox or IE on Windows. The placement of the videos is scattered all over the page. The videos do play cor

  • NEW Intel iMac: how to access ampersand?

    I just bought a new iMac for my daughter and we can not figure out the key combination required to type the '@' (ampersand) key. Someone please tell us, how do you type the ampersand on this new keyboard? It is not at all like previous Apple keyboard

  • Thinkpad W500 and OpenSuse 11.1

    I installed OpenSuse 11.1 on W500. I am very impressive. What works out of the box:     X-windows (I use Intel driver)     Microphone     Webcam     Trackpoint and trackpad     Bluetooth     Wireless (it identified my card as 5100 rather than 5300, b

  • ACR disappeared!

    I've recently been dealing with problems related to the startup Reading Preferences in which I deleted/hid/moved preference files to solve the long lagtime it took to startup. Problem solved but was unrelated to the Preferences files. Now it seems I'