CS5.5 licensing for created content

I am considering purchasing a one year or month to month subscription to CS5.5 but I am bit curious about what I can and cannot do with created content. I am sure the information I am seeking is available but I have not been able to locate it. If someone could explain it to me or direct me toward the information I would greatly appreciate it.
Q1 - If I were to begin developing software using a trial version of CS5.5 and later upgrade my trial to a subscription, would I retain full ownership of work developed using the trial version? Would I be free to distribute said software without limitation?
Q2 - If I were to begin developing software using the trial version of CS5.5 and somehow complete it within the 30 day trial window without upgrading to a subscription, would I retain the same rights mentioned above?
Thank you in advance for any information.

You are overthinking this - why should Adobe care? Unless you are using specific components e.g. from Flex/ Flashbuilder or ActionScript files that fall under specific "no unbundling" regulations and may only be distributed under limited license, I see no reason why anyone would want nor could legally prevent you from distributing a compiled SWF, AIR app or even custom server-side code as long as it's based on your own code and only requires runtime components which are available for free, anyway. You might just find it difficult to deal with your clients/ users in the long run, if you don't have the means of updating your code, should you not decide to purchase/ subscribe, but that#s a different matter....
Mylenium

Similar Messages

  • Does CS5 have tools for creating websites for mobile devices?

    Does DW CS5 have any built in tools for creating web pages for mobile devices, iPads, iPhones, etc?
    Thanks.

    This will go back to your other post about the CSS tables, it depends on how much you know.  CSS3 is a style language and while support is growing in Dreamweaver and within browsers it is taking some time so the more you understand the code the better off you will be.  With regards to HTML5 animations, you will find that no tool out there can do this easily outside of some Apple developer tools and if you are serious about programming to work with the iPhone/iPad you will want to sign up (registration is free) and download their developer tools.  Adobe has mentioned making some strides and trying to use their existing tools (ie: Flash) to help transition to HTML5 animations from Flash and Illustrator has also gained some HTML5 vector tools to help out.
    To find out more about what Adobe is doing for HTML5 there was a post made on John Nack's blog not too long ago that you might want to read over (and follow the links).
    http://blogs.adobe.com/jnack/2010/11/so-what-has-adobe-actually-done-for-html5-lately.html
    Dreamweaver is not going to hand you everything though.  To get the most out of it you have to put something into it.  It is easily the most advanced tool in the PHP and ColdFusion realms (ASP/.NET goes to Visual Studio).  But in order to do more and customize things to your needs, understanding the code is a must in the world of web design.

  • What Adobe Product From CS5 is Used For Creating Buttons/Icons For WebPages?

    Hi I have CS5 Adobe Creative Suite and I want to create some graphic "Buttons" to use for my web pages.  What product in the Creative Suite is best suited for doing this?
    Thanks In Advance!

    Copy & paste the following code into a new, blank HTML document.  For expediency, I embedded CSS code here.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>CSS Menu Test</title>
    <style type="text/css">
    /* BEGIN HORIZONTAL DROP-MENU */
    #navbar{
    position:relative;
    width: 100%;
    margin: 0 0 0 45px; /**adjust as needed**/
    padding:0;
    text-align:center;
    #navbar li {
    list-style: none;
    font-size: 12px;
    float: left;
    text-align:center;
    /**top level menu**/
    #navbar li a {
    display: block;
    text-decoration: none;
    margin-right: 12px; /* space between links */
    color: #FFF;
    width: 9em; /* adjust as needed or use auto */
    padding: 8px;
    font-weight:bold;
    line-height: 1.50em;
    background: #C33;
    background: -moz-linear-gradient(#C33, #111);
    background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #111),color-stop(1, #C33));   
    background: -webkit-linear-gradient(#C33, #111);   
    background: -o-linear-gradient(#C33, #111);
    background: -ms-linear-gradient(#C33, #111);
    background: linear-gradient(#C33, #111);
    /* gradient filters for IE6-9 */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#C33333', endColorstr='#111111',GradientType=0 );
    /**rounded borders**/
    -moz-border-radius: 25px;
    -webkit-border-radius:25px;
    border-radius: 25px;
    /**top menu style on mouse over - in good browsers**/
    #navbar li:hover > a {
    color: #FFF;
    background: #333;
    background: -moz-linear-gradient(#333, #EAEAEA);
    background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #EAEAEA),color-stop(1, #333));   
    background: -webkit-linear-gradient(#333, #EAEAEA);   
    background: -o-linear-gradient(#333, #EAEAEA);
    background: -ms-linear-gradient(#333, #EAEAEA);
    background: linear-gradient(#333, #EAEAEA);
    /* gradient filters for IE6-9 */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#EAEAEA',GradientType=0 )
    /**sub-menu**/
    #navbar li ul {
    display: none;
    text-align:center;
    margin:0;
    padding:0 1em;
    background:none;
    /**sub-menu, help for IE6**/
    #navbar li:hover ul,
    #navbar li.hover ul {
    display: block;
    position: absolute;
    padding: 0;
    #navbar li:hover li,
    #navbar li.hover li {
    float: left;}
    /**drop-menu style**/
    #navbar li:hover li a,
    #navbar li.hover li a {
    color: #0D207D;
    width: auto; /* adjust width as needed or use auto */
    background: none;
    filter:none;
    /**drop-menu style on mouse over**/
    #navbar li li a:hover {
    color: #990000;
    text-decoration:underline;
    /* Clear floated elements at the end*/
    #navbar:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
    /**end Horizontal drop-menus**/
    </style>
    </head>
    <body>
    <ul id="navbar">
    <li><a class="first" href="#">ABOUT US &#9660;</a>
    <ul>
    <li><a href="#">Videos</a></li>
    <li><a href="#">Newsletter</a></li></ul>
    </li>
    <li><a href="#">PRODUCTS &#9660;</a>
    <ul>
    <li><a href="#">Broken Glass</a></li>
    <li><a href="#">Mosaic Tiles</a></li>
    <li><a href="#">Adhesives</a></li>
    <li><a href="#">Grout</a></li></ul>
    </li>
    <li><a href="#">ACCESSORIES &#9660;</a><ul>
    <li><a href="#">Gloves</a></li>
    <li><a href="#">Rubber Mallets</a></li>
    <li><a href="#">Sponges</a></li>
    <li><a href="#">Safety Glasses</a></li></ul>
    </li>
    <li><a href="#">CONTACT</a></li>
    </ul>
    </body>
    </html>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Add-on license for created

    hello
    when we create an add-on in SDK and generate in SBO.
    How long this add-on works in SBO.
    Is it required license to run for more days or else need a license.
    If we can run the add-on and without any license required  and this add-on can install some other client or not.

    Hi Santhosh,
    If your addon uses just the UI API then it will run under the implementation license (which is always included on any licensed SBO site) and will not expire (actual expiry date is 31/12/9999).
    If your addon uses the DI API and UI API then by default it will use the compatibility license (which is, again, always included on a SBO site) and will not expire until 31/12/2099.
    If your addon uses the DI API and UI API and you have applied for an addon identifier so you can license your addon through SAP's own license mechanism then it will have an expiry date set to 31/12/9999.
    As mentioned above, if you build your own license mechanism in to your addon (which is what most ISVs do) then it's obviously up to you as to when the addon will expire.
    Kind Regards,
    Owen

  • How do I actually talk to a real person about Device Licensing for Create Cloud

    The website sends me in circles

    please refer KB article: Creative Cloud Help | Create packages with device licenses
    or support contact number: 1-800-443-8158

  • License for Oracle Content Access

    Hi all,
    I have one problem - no body from the Oracle company or Oracle reseller able to give me licence for this SDK.
    Does any body know how to buy license/rights to use SDK in freeware or commercial products ?
    Thanks.

    Maybe the Instant Client FAQ can shed some light on this:
    http://www.oracle.com/technology/tech/oci/instantclient/ic-faq.html
    C.

  • How to package different content so that the same license can be used for all content.

    1)      If packaging all the content at the same time, use the same instance of DRMParameters every time you call MediaEncrypter.encryptContent().  All content packaged using the exact same DRMParameters object will be associated with the same license.
    2)      If packaging content at different times, but want to have all the content associated with the same license, you need to use V2KeyParameters.setContentEncryptionKey().  The first time you package a piece of content, you would use ContentEncryptionKey.generate() to generate a new key/license ID.  To use the same key/license for later content, you need to store the info in ContentEncryptionKey, so you can pass in the same values later for the new content.

    To package content at different times using the same license, you need to implement the following:
    Call ContentEncryptionKey.generate to generate a new key and license ID.
    On your V2KeyParameters, call setContentEncryptionKey and pass in the object generated in step 1.
    Call MediaEncrypter.encryptContent and pass in the V2KeyParameters (via DRMParameters), as usual.
    Store the contents of ContentEncryptionKey, so the same values can be used again later.  The key, license ID, and packaging date should all be stored.
    When you want to package additional content using this license, lookup the stored key, license ID, and packaging date and pass these into the ContentEncryptionKey constructor to create a ContentEncryptionKey instance.
    On your V2KeyParameters, call setContentEncryptionKey and pass in the object generated in step 5.
    Call MediaEncrypter.encryptContent and pass in the V2KeyParameters (via DRMParameters), as usual.
    The media packaged in steps 3 and 7 should now be protected using the same license.

  • Best suggestions for Windows content creators?

    All of our iTunes U admins are using Macs, so getting the initial uploads of data for our iTunes U site is not a problem. However, we have decided to decentralize content creation/control to individual departments, and many of those reps use Windows.
    Is anyone out there dealing with Windows users, or is a Windows user (with iTunes U) themselves? If so, is there a best suggested method to tell our Windows iTunes U Instructors to use, for connecting to their part of our iTunes U site?
    Thanks for any help,
    Mayumi
    U. of Pennsylvania

    I agree with Ken, for creating content, Audacity is usually a good choice for Windows users ... even Mac users. It is simple to teach and to put forward as a campus standard. Don't get me wrong ... I luvvvv the Apple tools, but there is only so much richwolf to go around UIC and we're still very much a Windows site.
    MacBook Pro   Mac OS X (10.4.8)   I lied. I'm running Leopard

  • I only ever activated one license for cs5 mac. Stuck using PC now. Help please.

    Now I'm using a Wacom companion, and forced to operate windows on it. Isn't there something I can do or someone I can talk to in order to gain access on both operating systems?

    A CS5 mac license is only for a Mac and cannot be exchanged for a PC. One way out is to upgrade for $200 to CS6 and order a free Platform swap to PC.
    A better way is Creative Cloud Photography plan | Adobe Creative Cloud
    You get Photoshop as part of the deal and can move between PC and Mac as much as you like. $10 monthly or $120 annual. All future upgrades and versions part of the deal.

  • I bought a volume license for CS6. How do I now get a serial number for prior version (CS5.5)?

    I bought a volume license for CS6 Design Standard. Because of my system restrictions for now I can only run a prior version (CS5.5). I have also previously downloaded its trial version which works perfect. Now, after buying a license for CS6 I would like to get a serial number for a prior version as well. How would I go about receiving it?
    Many thanks in advance!
    Nelle

    Hi Nelle,
    You can request downgrade from Adobe, but you can't get back to CS6 after that, so it might be better to upgrade your system?
    Anyway, in my laptop CS6 has been running faster and better than CS5.5 without any changes to system, so you could give it a try before downgrading...
    Joni

  • What are the basic steps for creating a content repository?

    I am trying to create a document store on a file system (fsdb) that will hold files that are ftp's to that location. Is this possible using KM? If so, what are the basic steps for creating a file system repository and using it through KM? I have found stuff on help.sap.com but that only tells you what each component does not what actual steps need to be taken to setup KM, such as user rights , creating an entry point, so that all of KM is not visible, etc...
    If anyone knows of any guides that show a step by step process that would be great too.
    Thanks
    Paul

    Hi Paul
    First of all you need to create a new repository
    Suppose you want to add all the documents under folder Paul under C: Drive
    (Even you can put whole documents of C: drive into Paul)
    Navigate to System Admin -> System Configuration -> Knowledge management -> Content Management -> Repository Manager -> File System Repository
    There you can create a new directory by clicking on button New
    Give the parameters as follows :-
    Name               :           Anything you like
    Description       :           Anything you want
    Prefix (must start with /)  :  Probably same as your repository name like \Paul
    Lookup mode : caseless
    Root Directory   :  C:\Paul
    NOTE:  This is the trick. You need to give the proper path means folder path which you want use as repository)
    Repository Services  :  Any services you want
    Property Search : Managercom.sapportals.wcm.repository.manager.generic.search.SimplePropertySearchManager
    Security Manager         :           AclSecurityManager
    ACL Manager Cache   :           ca_cm_rep_acl
    The save it
    Now see whether the same repository is coming under KM Content or not, if not may be after restart it will come.
    I think the above information will help you. If still you have problem, please feel free to contect me.
    Regards,
    Chamkaur

  • Hello, I own a license for Adobe CS5 Production Premium and Adobe CS4 Design Premium for Windows/PC. I am switching to an OSX/MAC system. Is it possible to transfer my licenses to the new platform?

    Hello, I own a license for Adobe CS5 Production Premium and Adobe CS4 Design Premium for Windows/PC. I am switching to an OSX/MAC system. Is it possible to transfer my licenses to the new platform?

    It's possible to transfer licenses but it must be done by contacting a Customer Service representative by phone or web chat. They'll probably have you submit a form.
    Contact Customer Care

  • Create time-limited license for my application

    Hi,
    I have created an application for my client, but i would like to add in a function below into my software for license renew.
    For example, after the application is used in a PC for one year, it will be locked and will ask user to renew the license, to activate the application again.
    Is there anyway can create the time-limited license for my application?
    My application is developed by LV 8.5.1.
    I am appreciated for your feedback.
    Thanks.

    The Third Party Licensing & Activation Toolkit will do what you want, but you need LabVIEW 2010 or later.
    There was even a NI-Week presentation: NIWeek Session: Creating a Software Evaluation for your Product in 10 minutes
    Still, I agree with Norbert that an expiring licens is a very dumb idea. What if you go out of business? What if you are on vacation while their license expires? What is the system is on a space flight to Mars?
    I would never install software that expires, because if it cannot be guaranteed that it will run a year from now I might as well not use it at all.  If NI would do the same, your LabVIEW 8.5 would have stopped working long ago. 
    If you want to ensure that users upgrade to a new version, make sure to add new and exciting features. Offer service subscriptions, etc.
    LabVIEW Champion . Do more with less code and in less time .

  • Kodo 4.0 & 4.1 License for projects created in Workshop  ( =v3.3)

    NOTE: The (kodo) trial license installed for creating new Kodo 4.0/4.1 project is expired (4/4/07). Please try the following steps to update the license file.
    https://dev2devclub.bea.com/downloads/jarlib/kodo/4.0/license.bea
    https://dev2devclub.bea.com/downloads/jarlib/kodo/4.1/license.bea
    - "Save as Link" and download the respective license.bea file
    - replace <project-root>/src/license.bea with the downloaded new license.bea file.
    - Open license.bea file to make sure the expiry date is 05/15/08
    - Project > Clean (&or Rebuild AppXray Database)
    - Open EJB QL editor, and execute a query to confirm the usage of latest license file

    Savepoints:
    It would be very convinient if Kodo provided parameterless
    rollbackSavepoint() and releaseSavepoint() - they should rollback/release
    latest savepoin
    Thanks
    Alex
    "Greg Campbell" <[email protected]> wrote in message
    news:dbgseo$m66$[email protected]..
    All,
    Kodo 3.4.0 Beta 1 is now available. Feel free to download it at:
    http://www.solarmetric.com/Software/beta/3.4.0b1/
    There are a number of exciting new features in 3.4.0 Beta 1:
    * Query cache now caches aggregates and projections, including queries
    that use grouping
    * Added support for savepoints, with both in-memory and JDBC3 plugins.
    * Added support for Oracle Object fields through JDBC SQLData interfaces.
    * Improved thread and socket support for TCP RemoteCommitProvider
    * Better support for large transactions, including several optimizations
    in the datastore cache when using large transactions
    You can find the release notes at:
    http://solarmetric.com/Software/Documentation/3.4.0b1/docs/relnotes.html
    The full documentation can be found in the distribution, and also at:
    http://solarmetric.com/Software/Documentation/3.4.0b1/docs/index.html
    As this is a beta release, please report any issues that you find to the
    Kodo beta newsgroup (solarmetric.kodo.beta).
    Good luck, and enjoy!
    -Greg
    SolarMetric
    www.solarmetric.com

  • Can I use a software of Adobe for creating CD covers having installed Adobe CS5 on my MacBook Pro?

    Can I use a software of Adobe for creating CD covers having installed Adobe CS5 on my MacBook Pro?

    If I go to a copy shop to print the covers (double-sided for a slim case of DVD) it would make sense to have two covers on one page in A4 and they should be on the right place so that the two backsides of the covers are at the back of the front of the covers printing the page in A4 double sided.
    Is this possible to do that if I choose the right size of the covers and save the picture (in jpeg or better as pdf file)?
    Am 20.11.2014 um 13:06 schrieb c.pfaffenbichler:
    Can I use a software of Adobe for creating CD covers having installed Adobe CS5 on my MacBook Pro?
    created by c.pfaffenbichler in Photoshop Scripting - View the full discussion
    For large amounts of text Photoshop is not the best choice.
    But you can certainly create Type Layers – select the Type Tool (T) and create Point Text by clicking onto the Canvas or Paragraph Text by click-dragging on the Canvas.
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/6947191#6947191 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/6947191#6947191
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in Photoshop Scripting by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

Maybe you are looking for

  • Does anyone have any suggestions to improve the performance to improve Firefox for andoid (more details).

    I'm using it on a Samsung Captivate SGHi-897 with Jellybean 2.2 (I'm unable to upgrade the OS @this time). Firefox was recommended by a freind, however, so far I've been very disappointed with it, as, it is extremely slow and constanly crashes. I've

  • Download in Interactive Report Attributes

    Hi, all -- I am using APEX 3.1. In the Interactive Report Attributes, I added the filename: status.csv. I apply the change, but I don't see any change on the page. I was expecting a link at the bottom of the report to invoke the download. If my expec

  • Leap year problem

    I cannot enter the date "February 29". My normal way of specifying a date is "2-20", which gives me "February 20". This works up to and including "2-28". But entering "2-29" results in "1 feb 2029". I have been unable to find a solution here. Gunnar

  • Problem occurred during synchronizing the database

    Hello Experts, I did  fresh installation of EP 7.0 it waz running fine until yesterday but today the the JControl.Exe is going in stopped state. For your reference i m posting the log_bootstrap file as follws....  PLZ HELP THANK YOU.... [Sep 19, 2008

  • What happened to PSE local albums in Photoshop Creative Cloud?

    Recently i had bugs with PSE12 after a Windows 8.1 upgrade.  I purchased a year subscription to Photoshop CC.  Is there a way to continue using local albums that I defined in PSE?