customize the grid

I am rebuilding a small flash animation. It would be more practical to use a grid 18/s. This grid is not in the list. Is it possible to customize the grid?

I'm afraid that it is not possible to customize the grids of chronology in animate again.

Tags: Edge Animate

Similar Questions

  • How can I customize the 'grid '.

    I want to make the grid simplified in different situations, for example, one with the grid lines showing all the 1/4 inch and the slightly heavier lines every inch. How to make choices like this to change the appearance of the grid. By default, the grid is too thin slices and what I need is a most basic page layout and then be able to add more later by adding lines of 1/8th of an inch but keeping heavier lines at intervals of 1 inch.

    Is there a way to make changes to the grid easily?

    TIA,

    Ken

    You can customize the grid preferences:

    Edit-> preferences-> guides and grid

  • Customize the Grid - database of Page control

    Hello
    I would like to customize my Page of database on my grid control. I added the "Line of Business" column, but I can't find how I can fill it?

    Any idea must be appreciated!

    Thank you

    Oldschool

    Click the database that you want to insert a line of business for, then click on the properties link targets in the section related links at the bottom of the page.

  • How to customize the interface app in 2015 DPS?

    Hello DPS community,

    I'm trying to put in place an application with Adobe DPS 2015 so I use the Web app builder for this interface.

    I managed to put in place the items in a collection, but I can't find any options to customize the viewer interface.

    Is it possible to set the color of the status bar? Customize the sidebar on the side menu left which is connected to the icon menu burger?


    Thanks for the clarification or useful links on the customization of DPS 2015.


    Kind regards

    Carsten

    The only way to customze the viewer interface is to use page layouts and cards.

    check the example on http://blogs.adobe.com/digitalpublishing/madewithdps

    and take a look at the tutorials available on

    https://helpx.Adobe.com/digital-publishing-solution/help/cards-layouts.html

    https://helpx.Adobe.com/digital-publishing-solution/how-to/grid-layout-collection.html?set = digital-edition-solution-key-technical

  • Problems with the 'Grid entity' configuration consistency

    I have difficulty getting the configuration work "Entity grid" consistency. I'm on Oracle Version consistency 3.6.0.4 Build 19111. I carefully followed the instructions for the third scenario configuration consistency documented on the page "JPA on the grid" [url http://docs.oracle.com/cd/E14571_01/doc.1111/e16596/tlcgd003.htm#CHDGGGAJ] here. I will include excerpts from the records, but I think that I have been following the docs. I must be missing something that the docs report directly? Any ideas would be greatly appreciated.

    The problem I encounter is that when this 'Grid entity' coherence mode is used, the entities are not reading from the database when the application starts. The application behaves as if there is absolutely no data in the database, even if I know that I have lines in tables to backup my entities. In my test dummy application, I also have problems persistent entities. If I temporarily disable consistency commenting annotations {noformat}@Customizer{noformat} entity everything works perfectly (DataSet starting loads from the database as expected and new entities are correctly preserved). If I change to the "grid + hidden +" things configuration seems to work fine. But it's not ideal because we want the features of read/write of entityof the grid.

    Here is my file of coherence-cache - config.xml (corresponds almost exactly to the documentation):
    <?xml version='1.0'?>
    <cache-config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns="http://xmlns.oracle.com/coherence/coherence-cache-config"
       xsi:schemaLocation="http://xmlns.oracle.com/coherence/coherence-cache-config coherence-cache-config.xsd">
      <caching-scheme-mapping>
        <!--
          Map all entity classes to the eclipselink-distributed-readwrite scheme
    -->
        <cache-mapping>
          <cache-name>*</cache-name>
          <scheme-name>eclipselink-distributed-readwrite</scheme-name>
        </cache-mapping>
      </caching-scheme-mapping>
      <caching-schemes>
        <distributed-scheme>
          <scheme-name>eclipselink-distributed-readwrite</scheme-name>
          <service-name>EclipseLinkJPAReadWrite</service-name>
          <!--
            Configure a wrapper serializer to support serialization of relationships.
          -->
          <serializer>
              <instance>
                 <class-name>oracle.eclipselink.coherence.integrated.cache.WrapperSerializer</class-name>
              </instance>
          </serializer>
          <backing-map-scheme>
            <read-write-backing-map-scheme>
              <internal-cache-scheme>
                <local-scheme/>
              </internal-cache-scheme>
              <!-- 
                 Define the cache scheme 
               -->
              <cachestore-scheme>
                <class-scheme>
                  <class-name>oracle.eclipselink.coherence.integrated.EclipseLinkJPACacheStore</class-name>
                  <init-params>
                    <!-- This param is the entity name -->
                    <init-param>
                      <param-type>java.lang.String</param-type>
                      <param-value>{cache-name}</param-value>
                    </init-param>
                    <!-- This param should match the persistence unit name in persistence.xml -->
                    <init-param>
                      <param-type>java.lang.String</param-type>
                      <param-value>test-pu</param-value>
                    </init-param>
                  </init-params>
                </class-scheme>
              </cachestore-scheme>
            </read-write-backing-map-scheme>
          </backing-map-scheme>
          <autostart>true</autostart>
        </distributed-scheme>
      </caching-schemes>
    </cache-config>
    Persistence.XML:
    <?xml version="1.0" encoding="windows-1252" ?>
    <persistence xmlns="http://java.sun.com/xml/ns/persistence"
                 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                 xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
                 version="1.0">
      <persistence-unit name="test-pu">
        <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
        <jta-data-source>jdbc/WineDS</jta-data-source>
        <non-jta-data-source>jdbc/WineDS</non-jta-data-source>
        <class>datagridtest.WineEntity</class>
        <properties>
          <property name="eclipselink.target-server" value="WebLogic_10"/>
          <property name="eclipselink.target-database" value="Oracle11"/>
           <!--<property name="eclipselink.ddl-generation" value="create-tables"/>-->
        </properties>
      </persistence-unit>
    </persistence>
    entity class:
    @Entity(name="Wine")
    @NamedQueries({
      @NamedQuery(name = "Wine.findAll", query = "select o from Wine o"),
      @NamedQuery(name = "Wine.findByRegion", query = "select o from Wine o where o.region = :region"),
      @NamedQuery(name = "Wine.findByVintage", query = "select o from Wine o where o.vintage = :vintage"),
      @NamedQuery(name = "Wine.findByWinery", query = "select o from Wine o where o.winery = :winery")
    })
    @SequenceGenerator(name = "Wine Seq", sequenceName = "WINE_SEQ", allocationSize = 50, initialValue = 50)
    @Customizer(CoherenceReadWriteCustomizer.class)
    public class WineEntity implements Serializable {
         @Id
         @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "Wine Seq")
         private Integer id;
         @Version
         private Integer version;
         
         private String name;
         
         private int vintage;
         
         private String region;
         
         private String winery;
         
         typical getters and setters follow...
         ....
    Extracts of EJB:
    @Stateless(name = "SessionEJB", mappedName = "PortletProducerApplication-DataGridTest-SessionEJB")
    public class SessionEJBBean implements SessionEJBLocal {
         @PersistenceContext(unitName="test-pu")
         private EntityManager em;
         
         ...
         
         public List<WineEntity> findAllWines() {
              TypedQuery<WineEntity> allWinesQuery = em.createNamedQuery("Wine.findAll", WineEntity.class);
              return allWinesQuery.getResultList();     
         }
         
         ...
         
    }
    (IWLS) server logs:
    <Jun 25, 2012 3:54:41 PM EDT> <Notice> <EclipseLink> <BEA-2005000> <2012-06-25 15:54:41.686--ServerSession(1768045153)--EclipseLink, version: Eclipse Persistence Services - 2.1.3.v20110304-r9073> 
    <Jun 25, 2012 3:54:41 PM EDT> <Notice> <EclipseLink> <BEA-2005000> <2012-06-25 15:54:41.688--ServerSession(1768045153)--Server: 10.3.5.0> 
    <Jun 25, 2012 3:54:42 PM EDT> <Notice> <EclipseLink> <BEA-2005000> <2012-06-25 15:54:42.142--ServerSession(1768045153)--file:/C:/Users/EDITED/AppData/Roaming/JDeveloper/system11.1.1.5.37.60.13/o.j2ee/drs/TestApp/DataGridTestEJB.jar/_test-pu login successful> 
    2012-06-25 15:54:42.502/58.626 Oracle Coherence 3.6.0.4 <Info> (thread=[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Loaded operational configuration from "jar:file:/C:/Oracle/Middleware/oracle_common/modules/oracle.coherence_3.6/coherence.jar!/tangosol-coherence.xml"
    2012-06-25 15:54:42.513/58.637 Oracle Coherence 3.6.0.4 <Info> (thread=[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Loaded operational overrides from "jar:file:/C:/Oracle/Middleware/oracle_common/modules/oracle.coherence_3.6/coherence.jar!/tangosol-coherence-override-dev.xml"
    2012-06-25 15:54:42.516/58.640 Oracle Coherence 3.6.0.4 <D5> (thread=[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Optional configuration override "/tangosol-coherence-override.xml" is not specified
    2012-06-25 15:54:42.524/58.648 Oracle Coherence 3.6.0.4 <D5> (thread=[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Optional configuration override "/custom-mbeans.xml" is not specified
    
    Oracle Coherence Version 3.6.0.4 Build 19111
     Grid Edition: Development mode
    Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
    
    2012-06-25 15:54:42.673/58.797 Oracle Coherence GE 3.6.0.4 <Info> (thread=[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Loaded cache configuration from "file:/C:/workspaces/spaces_branch/TestApp/DataGridTest/src/coherence-cache-config.xml"
    2012-06-25 15:54:43.360/59.484 Oracle Coherence GE 3.6.0.4 <D4> (thread=[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): TCMP bound to /172.30.112.202:8088 using SystemSocketProvider
    2012-06-25 15:54:46.747/62.871 Oracle Coherence GE 3.6.0.4 <Info> (thread=Cluster, member=n/a): Created a new cluster "cluster:0xC4DB" with Member(Id=1, Timestamp=2012-06-25 15:54:43.377, Address=172.30.112.202:8088, MachineId=49866, Location=site:EDITED,machine:EDITED,process:10776, Role=WeblogicServer, Edition=Grid Edition, Mode=Development, CpuCount=4, SocketCount=2) UID=0xAC1E70CA000001382535DD31C2CA1F98
    2012-06-25 15:54:46.757/62.881 Oracle Coherence GE 3.6.0.4 <Info> (thread=[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)', member=n/a): Started cluster Name=cluster:0xC4DB
    
    Group{Address=224.3.6.0, Port=36000, TTL=4}
    
    MasterMemberSet
      (
      ThisMember=Member(Id=1, Timestamp=2012-06-25 15:54:43.377, Address=172.30.112.202:8088, MachineId=49866, Location=site:EDITED,machine:EDITED,process:10776, Role=WeblogicServer)
      OldestMember=Member(Id=1, Timestamp=2012-06-25 15:54:43.377, Address=172.30.112.202:8088, MachineId=49866, Location=site:EDITED,machine:EDITED,process:10776, Role=WeblogicServer)
      ActualMemberSet=MemberSet(Size=1, BitSetCount=2
        Member(Id=1, Timestamp=2012-06-25 15:54:43.377, Address=172.30.112.202:8088, MachineId=49866, Location=site:EDITED,machine:EDITED,process:10776, Role=WeblogicServer)
        )
      RecycleMillis=1200000
      RecycleSet=MemberSet(Size=0, BitSetCount=0
        )
      )
    
    TcpRing{Connections=[]}
    IpMonitor{AddressListSize=0}
    
    2012-06-25 15:54:46.809/62.933 Oracle Coherence GE 3.6.0.4 <D5> (thread=Invocation:Management, member=1): Service Management joined the cluster with senior service member 1
    2012-06-25 15:54:47.155/63.279 Oracle Coherence GE 3.6.0.4 <D5> (thread=DistributedCache:EclipseLinkJPAReadWrite, member=1): Service EclipseLinkJPAReadWrite joined the cluster with senior service member 1
    INFO: Found persistence provider "org.eclipse.persistence.jpa.PersistenceProvider". OpenJPA will not be used.
    INFO: Found persistence provider "org.eclipse.persistence.jpa.PersistenceProvider". OpenJPA will not be used.
    [EL Info]: 2012-06-25 15:54:47.351--ServerSession(1901778202)--EclipseLink, version: Eclipse Persistence Services - 2.1.3.v20110304-r9073
    [EL Info]: 2012-06-25 15:54:47.351--ServerSession(1901778202)--Server: 10.3.5.0
    [EL Info]: 2012-06-25 15:54:47.551--ServerSession(1901778202)--EclipseLinkCacheLoader-test-pu login successful
    And the error when you try to make persistent the new entity:
    javax.ejb.TransactionRolledbackLocalException: Error committing transaction:; nested exception is: javax.persistence.OptimisticLockException: Exception [EclipseLink-5004] (Eclipse Persistence Services - 2.1.3.v20110304-r9073): org.eclipse.persistence.exceptions.OptimisticLockException
    Exception Description: An attempt was made to update the object [datagridtest.WineEntity@1c59a6cc], but it has no version number in the identity map. 
    It may not have been read before the update was attempted. 
    Class> datagridtest.WineEntity Primary Key> 2,050
         at weblogic.ejb.container.internal.EJBRuntimeUtils.throwTransactionRolledbackLocal(EJBRuntimeUtils.java:238)
         at weblogic.ejb.container.internal.EJBRuntimeUtils.throwEJBException(EJBRuntimeUtils.java:136)
         at weblogic.ejb.container.internal.BaseLocalObject.postInvoke1(BaseLocalObject.java:650)
         at weblogic.ejb.container.internal.BaseLocalObject.__WL_postInvokeTxRetry(BaseLocalObject.java:455)
         at weblogic.ejb.container.internal.SessionLocalMethodInvoker.invoke(SessionLocalMethodInvoker.java:52)
         at datagridtest.SessionEJB_qxt9um_SessionEJBLocalImpl.mergeWineEntity(Unknown Source)
    So just to sum up, I currently see two problems: 1) no data from the database consistency and implementation — why not consistency out of database? and (2) what's this persistent mistake on OptimisticLockException? Thanks again for any help.

    JPQL API criteria or both will result in coherence filters when using GridRead or GridEntity.
    TopLink grid has no way of knowing if the data in the cache are sufficient to satisfy the query, for example based on the provided query TopLink grid would determine how between a user with no book and insufficient. Your application will need to determine that not enough has been stored in the cache or to perform an initial charge in bulk for a particular user to redirect the request to the database programmatically. Queries of grid can easily be redirected to the database by setting the IgnoreDefaultRedirector on the query using query.setHint (QueryHints.QUERY_REDIRECTOR, new IgnoreDefaultRedirector()); Read from the database of entities will be automatically pushed to the consistency.

  • Notification of the Grid control for tablespaces

    With grid, we have a basic rule of data availability generated control system and critical States include the use of Tablespace.

    If we want to customize the rules, we are not ablke to select a part of a Cluster database tablespace. Apparently because of the target type we are not able to select a table to a Cluster database space.

    I have created a new settlement with a Cluster database as the target type and include the Tablespace metrics but no e-mail is sent. (Email notification is on and everything critical level, warning, clear and also all the State of corrective measures).

    If someone has any idea on this subject?

    Our notification based on the Grid control, but apparently, we are not able to be notified for cluster database tablespace usage.

    Enterprise Manager

  • host performance data up to 6 months in the grid store

    Hello

    I see that by default I can only display performance since 31 days data... is possible to modify the grid to store this information for 6 months?

    It is indeed a good question, where deadlines for the parameters of the host - and where they can be changed (in GUI of GC/OEM)...

    When you browse the homepage of a host-> Performance tab-> the CPU-> drop-down list on the right and selecting "Customize...". »
    the OEM/GC shows information ' data available October 18, 2010 12:43:51 CEST-January 12, 2011 16:00:47 THIS "(this is just an example of myself).

    What do you see when you navigate to this info?

    Seems to me that it is not possible to change the value of 'how long keep settings' in the GUI...

  • The Extension installed, went to customize, the post is not there to put it on the menu bar.

    Extension installed for Evernote Web Clipper (EWC). Go to customize the menu bar. The extension is not displayed to put on the menu bar. Other extensions are displayed. Remove the extension from the DRC and reinstall it. Still can not display it. 8.1 Windows running in a 64-bit environment.

    Now, it's a problem with two buttons extension disappeared? Probably an extension 3rd screwing things cause an incompatibility. I call it "don't play well in a group" - taken from some of my report cards in elementary school in the 1950s.

    See problems using Firefox Safe Mode.

    Or you can start disabling extensions until you find which one is causing these two "buttons" to disappear. Or maybe one of us could recognize the culprit to provide a list of your installed extensions.
    Help > troubleshooting information and use "Copy to clipboard" and then paste this info to Pastebin.
    http://pastebin.Mozilla.org/
    Give us the URL of the ID after having done 'stick '.

  • 35 Firefox can not customize the start page

    35 Firefox does not allow me to customize the Google Home Page.

    [Tools] [Options] [general] and setting up Google, click the icon home work until I exit Firefox and restart.

    Then, the Home Page comes back to...
    http://services.Freshy.com/General/newhometab.php?hometab=home & Partner = 11039 & GUID = {621DBCDF-2519-4EB5-B868-1127A773853D} & I =
    .. .which is Yahoo.

    Even tried it on: config for the change, but continues to return to Yahoo.

    Is there a solution?

    Your list of details of the system shows that you have a user.js file in the profile folder to initialize prefs each time you start Firefox.
    The user.js file is present than if you or another software has created this file and normally it wouldn't be here.

    You can check its contents with a text editor (right click: 'Open with'; do not double-click).
    The user.js file is read whenever Firefox is started and initializes the preferences to the specified value in this file, so the preferences set via user.js can be changed temporarily for the current session.

    You can remove the user.js file if you do not create this file yourself.

    See also:

  • Customize the text string of response from Apple Mail

    Somehow I think that I can change a file in preferences for Apple Mail that will allow me to customize the following:

    When I reply to an e-mail message, the following text is generated automatically:

    At 07:49 on May 17, 2016, Joe Blow < [email protected] > wrote:

    However, I prefer:

    May 17, 2016, Joe wrote:

    So, I wonder if there is a settings file with something like the following in it:

    "We < date of message >, at the time of the <>message, < first > < last > < sender.address > wrote:

    .. .who I trim to be:

    "The < date message >, < first > wrote:

    The form it takes is not important because I can probably find a way to modify it to suit my intention. But, if such a settings file exists, and what is the path to the file and the name?

    I tried a Google search and come empty. Perhaps no one took never bother with this sort of thing? I would like to stop all my answers editing before sending, to get them to look the way I want.

    Thank you!

    I use El Capitan.

    Have you looked at Quotefix?

    https://github.com/robertklep/QuoteFixforMac

  • How to customize the CSS for the right-click menu?

    I have the Chromedit extension installed, and I want to customize the design of my context menu to look "Flat" as menu right-click chrome. It would also be nice to make all the other menus, such as the Firefox button to be flat. What is the item in the context menu of firefox CSS? Specifically, I would like to know the names of the CSS elements for the

    - entire menu
    - any menu element
    

    In fact, incidentally, is there a systematic way of knowing the name of element CSS for a browser component? Any extension to this?

    Edit: I chose the solution of cor - el on the advice of jscher2000, however, for the future visitors convinience, here is the link to the complete solution of jscher2000:

    Response 584137

    Have you tried that?

    #context-openlinkprivate {
     background-color: #4281F4 !important;
     -moz-appearance: none !important;
    } 
  • How can I customize the Thunderbird message columns to show the raw sender address (not the full name) and e-mail address "received for" which was used to reach me?

    I find more and more important to be able to see the actual email address of the sender rather than just displaying the name, because they do not usually show a company name - a domain would always be. Is it possible to customize the settings/write a file of script/tweak to add columns of name email & domain raw? When dealing with a number of people from the same company, it is difficult to order or nod thanks to a list of emails to find. I know also that 2 people with the same name to different companies and it is impossible to distinguish.

    Secondly, as an addition of associated column, since a number of e-mail aliases join it would be useful to have a column to display the "received for" part of the source of the message that reveals the real enamel used in the To/CC/BCC, which led to me. Once again can it be twisted or scripted?

    I have programming experience but did not Add ons, and would be open to a proposal which is to create a custom module if adding columns with custom values is possible like this.

    Best regards

    Drew

    This module help you?

    https://addons.Mozilla.org/en-us/Thunderbird/addon/show-address-only/

  • How can I customize the navigation bar in Firefox 29? I wish I had the back refresh/stop button in front of the navigation bar!

    How can I customize the navigation bar in Firefox 29? I wish I had the back refresh/stop button in front of the navigation bar!

    One of the developers has been around the forum recently try to answer some of these questions then I quote the developer

    For the entire quote and useful links for corrections and explanations please see

    Each setting you see in a computer program you use requires work; when a developer wants to build something new or improve something, he or she has to go through each related (hidden) setting and test if it still works like before and do that on each platform Firefox runs on. That's Apple's Mac OSX, various flavours of Linux and various flavours of Windows, including Windows XP. This costs time, lots of it, and that amount grows exponentially with each setting that's added. This comes on top of our work to continuously fix, improve and innovate Firefox.
    
  • Update Firefox 29 I can't access to the sidebar of history with the history button. Any suggestions on how to change this? I tried to customize the toolbar

    Since the last update I can not access the sidebar of history with the history button more. I tried to customize the toolbar and download the Restorer Classic theme. Neither worked help would be appreciated.

    Does it mean that nothing happens when you click the history button and choose View history Sidebar?

    And nothing happens when you click the taskbar button side story provided by classic restaurateur theme?

    What happens when you hold the Ctrl key and press H?

    If none of the works above, restart Firefox with disabled modules and test again. Of course the button provided by the Restorer of classic theme will be temporarily unavailable.

  • Windows 10. installed iTunes version 12.4.0.119. I have several iTunes libraries. On most of them display-&gt; ' display as ' does not show the grid option. A library of fact.  It's all music, with no video media. By default seems to be a list that is unc

    Windows 10. installed iTunes version 12.4.0.119. I have several iTunes libraries. On most of them display-> ' display as ' does not show the grid option. A library of fact.  It's all music, with no video media. By default seems to be a list that is unchangeable.

    Select the sidebar if hidden. View options > view as may depend on which of the options for the song, artist, album, etc. are selected in the sidebar.

    TT2

Maybe you are looking for

  • Dvdram PavilionDV7 does not work

    Hello I have a problem, one of my friends has the laptop HP Pavilion DV7 - WY023EA #ABH. Everything was fine, but now dvdram does not work. In Solution Explorer, there is only hard drives, no optical device. When I open the Device Manager, I can see

  • Lack of ZTE A2109 Wifi sleep policy

    Hello people! Anyone know how to access the standby policy on ZTE A2109 wifi? Generally, it should be included in the advanced settings, but the option does not appear in my tablet. I searched my smartphone (Xperia S with stock ICS) option and the op

  • Update blackBerry Z10 Software 10.1.0.4181

    Hello everyone - BBLink told me of this update is available and I installed it-3 times - whenever said BBLink installation is successful - but this is still once telling me that I need to update. I checked the settings on my Z10 and it confirms that

  • AnyConnect Premium license

    I'm looking for the purchase of a license for Anyconnect Premium for the ASA5510 running IOS 8.4. I found the following, but I can not find the description of ASA-NZEV-5510 =. Is that what that means unlimited number of users? Shared Premium VPN Serv

  • my Media Player is recording audio back. How can I uninstall and reinstall my windows 7 media player

    above described problem... I want to simply uninstall my player and then reinstall without fees