Change SVG Viewer?

Hi
Having a bit trouble with Adobe SVG viewer on speed and some rendering of legend titles in line chart, I would like to try out other SVG viewers.
How to do that?
I have downloaded and installed for instance AfterCAD, deinstalled Adobe, removed the call to the plugins.js which checks for SVG Viewer presence, but nothing happens when I try to render the charts?
Any ideas? Can it be done? Or is Adobe 'hardcoded' in Apex?
Best regards Jesper

Never got it to work with 3.0 ( i imply windows, maybe on linux it works as advertised).
With Beta 6.0 it works at least ( i personally prefer the native SVG support however).
There is a little outdated ( but i think still valid ) discussion on this thema.
http://www.jarra.nl/index.php?p=59
Best regards
Maxim

Similar Messages

  • SVG Viewer non-fonctionnel

    Bonjour,
    J'ai installé SVG Viewer sur un ordinateur (XP SP3, IE 7.0) parce que mon entreprise est abonné avec un site qui utilise des graphiques sous format SVG. Suite à une mise à jours (en octobre dernier), voici le problème que nous rencontrons:
    Si nous allons pour visualiser un graphique ou schéma (format SVG), une fenêtre s'ouvre et le graphique est visible (en très petit mais visible tout de même). En haut de la fenêtre, il y a les boutons de navigation (Fermer, Imprimer, Zoomer +, Zoomer -, etc.) de SVG mais aucun des boutons ne fonctionne. Les clicks sur ces boutons n'ont aucun effet.
    J'ai ré-installé le SVG Viewer mais sans succès. Nous utilisons la dernière version de Flash (10.2) ainsi que la dernière version de Adobe Acrobat Reader.
    Si je vais sur le même site à partir de chez moi, tout fonctionne. Donc il s'agit d'un problème localisé dans mon entreprise.
    Ma question:
    Quelle sont les facteurs qui peuvent empêcher SVG Viewer de fonctionner correctement ? Restrictions dans IE ? Restriction dans Java JRE ? Permission NTFS ?  Restriction dans le Firewall ?
    En poussant mon diagnostique plus loin, j'ai abaissé les niveaux de sécurité dans IE au minimum mais ça n'a rien changé. Idem dans Java.
    Avez-vous des suggestions, idées ou même la solution ?

    Is SVG viewer necessary to to enable a devloper to edit the forms,
    I  have a issue where i am unable to run svg viewer and so i am not able to use all editing functions on the toolbar.
    Is it because of svg viewer not installed .

  • Please change the view in the top sites, the 6.1 upgrade has reverted back to a plane two dimensional view, which is a little plain. Can I revert back to an older version via my time capsule save?

    Please change the view in the top sites, the 6.1 upgrade has reverted back to a plain two-dimensional view, which is a little dated. Can I revert back to an older version via my time capsule save? C'mon Apple upgrades supposed to leap into the future not the past. :-(

    Please change the view in the top sites, the 6.1 upgrade has reverted back to a plain two-dimensional view, which is a little dated. Can I revert back to an older version via my time capsule save? C'mon Apple upgrades supposed to leap into the future not the past. :-(

  • Views for list web parts. Is there a way to allow users to change the view for a list web part without being redirected?

    Hi,
    I added a list view web part into a SharePoint 2013 page and it  is working as expected, except for one thing.
    I have enabled the option for the user to change the view for the web part. However when the user changes it, the user is redirected away from the page containing the web part, to the URL of the list itself.
    Is there a way to circumvent this issue so when the user selects a different view it updates the listing in the web part itself, rather than the user being redirected?
    Thanks in advance for the help.
    Regards,
    P.

    Hi,
    Please understand that one page can only display one view. You could find it out by observing the Address in browser when switching among different views for a list.
    If you would like to change the view of a list web part, you could go to web part propertites > Select view and configure it.
    In addition, here is a thread with similar requirement that might help:
    http://social.technet.microsoft.com/Forums/en-US/18dba190-5ee2-4b50-b005-1360d862f4ba/how-can-end-user-change-the-view-in-a-list-view-web-part?forum=sharepointgeneralprevious
    Regards,
    Rebecca Tu
    TechNet Community Support

  • How to change the view criteria at run time for af:query

    Hi,
    I've a usecase where I need to change the view criteria of the af:query at run time.
    Use case:
    =======
    1) Consider a check box (Show Emps Under Dept 10) in the query panel when user selects and clicks 'Search' button should show the employees under dept 10. If user searches without selecting the check box, the results should show all the employees in all the departments.
    2) I need to have a check box always in the query panel. Its mandatory.
    The way I implemented:
    ==============
    1) Created a transient variable 'Show Emps Under Dept 10' in the EmployeeVO and also created a bind variable bind_DeptNo.
    2) Create a view criteria 'AllEmployees' which has only the transient attribute as the view criteria item and whose value set to 'false' by default.
    3) Created another view criteria 'EmpUnderDept' which has 'DepartmentId' as the view criteria item and whose value set to the bind variable 'bind_DeptNo'.
    4) Dropped the view criteria 'EmpUnderDept' as the 'af:query' panel in the jspx page.
    5) Overridden the queryListener as '#{EmpBean.empSearch}'
    6) Has the below code in the empSearch method as below. When user selects the check box, applying the other criteria 'EmpUnderDept' and setting the bind variable to '10'.
    public void empSearch(QueryEvent queryEvent) {
    // Add event code here...
    QueryDescriptor queryDesc = (QueryDescriptor) queryEvent.getDescriptor();
    ConjunctionCriterion conCrit = queryDesc.getConjunctionCriterion();
    List<Criterion> criterionList = conCrit.getCriterionList();
    List criterionValues = new ArrayList();
    Object criteriaValue = null;
    int criteriaNo = 0;
    DCBindingContainer bc = (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    FacesContext facesContext = FacesContext.getCurrentInstance();
    for (Criterion criterion : criterionList) {
    AttributeDescriptor attrDescriptor = ((AttributeCriterion)criterion).getAttribute();
    System.out.println("============== attrDescriptor.getName() =================== " + attrDescriptor.getName());
    criteriaValue = ((AttributeCriterion)criterion).getValues().get(0);
    if(criteriaNo==0) {
    Boolean val = (Boolean) ((AttributeCriterion)criterion).getValues().get(0);
    if (val.equals(true)) {
    OperationBinding method = (OperationBinding) ADFUtil.findOperation("ExecuteWithParams");
    if(method!=null) {
    Map params = method.getParamsMap();
    //params.put(key, value)
    method.getParamsMap().put("bind_DeptId", 10L);
    method.execute();
    ADFUtil.invokeMethodExpression( "#{bindings.EmpUnderDeptCriteiaQuery.processQuery}", queryEvent);
    } else {
    //ADFUtil.invokeEL("#{bindings.ExecuteWithParams.execute}");
    ADFUtil.invokeMethodExpression( "#{bindings.AllEmployeesCriteriaQuery.processQuery}", queryEvent);
    But this approach is not working and its always showing all the employees in all the departments.
    Please let me know if there is a way to change the view criteria at run time depending on the values set at run time for one of the view criteria items.
    JDev version am using is '11.1.1.5'
    Thanks,
    Lakshman

    Hi Shay,
    It worked for me without overriding the executeQuery() method in the ViewImpl.java.
    Instead of creating 2 view criteria, I created only one which has both transient variable and the DepartmentId = <bind_DeptId>. With the above code, it worked properly. Now I am using only one view criteria.
    Thank you.

  • How can I batch change the view options of multiple playlists?

    I would like to select multiple playlists and batch change their view options; seems like an obvious feature that should be there, but it does not seem to be there. I know of Assimilate View Options v2.2 in Doug's AppleScripts, but this is not what I want, since AWO requires you to do the change playlist by playlist, i.e., not in batch mode (and I have hundreds of playlists ...). Any idea? Please answer privately at [email protected] since I do not read this forum regularly. Thanks in advance for your help!

    did you also check out the following script ?
    [_*Change Hidden iTunes Preferences v2.4*_|http://dougscripts.com/itunes/scripts/ss.php?sp=changehiddenprefs]
    This application will allow you to invoke hidden iTunes preferences:
    Show "Library" playlist
    *Changing view setting is global*
    Allow half-stars in ratings
    Hide "Ping" buttons
    Show/hide arrow links -- to either search the iTunes Store or search your library
    Load complete iTunes Store preview before playing
    Create playlists for purchased song collections
    Play songs while importing or converting
    Create file names with track number
    Maintain grid view for Search results
    Option-click zoom button for Mini Player
    Show buttons horizontally

  • Can you change the view of album covers when playing music on Apple TV?

    I love the coverflow view when playing tracks on my mac. Its what I always wanted to be able to see the album cover as large as the screen while the song plays.
    However on Apple Tv its "not quite" the same!
    I feel that the text is too big (taking up half the screen) and although the album cover takes up the other half, the text and album cover keep switching sides of the screen every 10 seconds or so which i find a little annoying! Does anyone else find this annoying or just me?
    Of course I love my mac and apple TV however i cant find a way to change this view when music is playing. I would like coverflow on apple Tv just like on mac. A full screen showing the album cover, with smaller text to show artist and track and not to switch sides of the screen!
    Does anyone know what im banging on about and can you help!

    Oh dear! but thank you for a quick reply and your kind welcome!
    I thought the side to side motion would be to protect the screen somehow but i dont really like it!
    Not at all relaxing when playing a soothing song to see the graphics flipping back and forth.
    Its great technology, amazing, but could this viewing option be changed somehow by the wizards at apple.
    I might need to hit the off button on Tv and just listen on speakers otherwise.

  • When I open ical, the calendar looks like an old desk pad vs what is in the manual.  How do I change the view (not month, day, week), but the background presentation?

    When I open ical, the calendar looks like an old desk pad vs what is shown in the manual or on-line tutorials.  How do I change the view (i.e. background) not the month/day/week view but the background template?  The default in the manual is good.  Software is current - Lion. 

    Kelly,
    Try: MacNix: Change Mac OS X 10.7 Lion iCal and Address Book Skins from Leather to Aluminum.

  • SP2010 Bug? Cannot change List View in Ribbon. List view drop down not responding?

    In all of my Libraries I have 3-5 views (standard and custom), I cannot select them from the Ribbon thought, the drop down button does not respond when clicked (nothing happens):
    When going with the mouse over the drop down button it shows "javascript:;" in the IE status bar.
    The only way to change the view, for the moment, is to do it via Library Settings and set the selected view as default.
    Is this a know issue? Is there any settings that I`m missing?
    Many thanks!
    Cheers,
    marek 

    Following is missing in master page, add this and it should work.
    Where to add?? see the appropriate place from V4 master.
    <Sharepoint:UIVersionedContent runat="server" UIVersion="4">
        <ContentTemplate>
         <Sharepoint:SPNavigationManager
         id="TreeViewNavigationManagerV4"
         runat="server"
         ContainedControl="TreeView"
         CssClass="s4-treeView"
         >
           <SharePoint:SPLinkButton runat="server" NavigateUrl="~site/_layouts/viewlsts.aspx" id="idNavLinkSiteHierarchyV4" Text="<%$Resources:wss,treeview_header%>" accesskey="<%$Resources:wss,quiklnch_allcontent_AK%>"
    CssClass="s4-qlheader" />
            <div class="ms-treeviewouter">
           <SharePoint:DelegateControl runat="server" ControlId="TreeViewAndDataSource">
             <Template_Controls>
            <SharePoint:SPHierarchyDataSourceControl
             runat="server"
             id="TreeViewDataSourceV4"
             RootContextObject="Web"
             IncludeDiscussionFolders="true"
            />
            <SharePoint:SPRememberScroll runat="server" id="TreeViewRememberScrollV4" onscroll="javascript:_spRecordScrollPositions(this);" style="overflow: auto;height: 400px;width: 155px; ">
              <Sharepoint:SPTreeView
             id="WebTreeViewV4"
             runat="server"
             ShowLines="false"
             DataSourceId="TreeViewDataSourceV4"
             ExpandDepth="0"
             SelectedNodeStyle-CssClass="ms-tvselected"
             NodeStyle-CssClass="ms-navitem"
             SkipLinkText=""
             NodeIndent="12"
             ExpandImageUrl="/_layouts/images/tvclosed.png"
             ExpandImageUrlRtl="/_layouts/images/tvclosedrtl.png"
             CollapseImageUrl="/_layouts/images/tvopen.png"
             CollapseImageUrlRtl="/_layouts/images/tvopenrtl.png"
             NoExpandImageUrl="/_layouts/images/tvblank.gif"
              >
              </Sharepoint:SPTreeView>
            </Sharepoint:SPRememberScroll>
             </Template_Controls>
           </SharePoint:DelegateControl>
            </div>
         </Sharepoint:SPNavigationManager>
        </ContentTemplate>
       </SharePoint:UIVersionedContent>

  • I can't change the view/order of music on my iPhone in iTunes.

    So, my iPhone is plugged into my MacBook Pro. iTunes is open, the iPhone is in my left column. I select the "Music" sub-cat under my iPhone, which shows me the songs on my iPhone. I cannot change the view or order in which the songs are listed. So I can't sort by name, or artist or album. It appears to be locked on genre, and only the standard list view is available.
    I've restarted the phone. I've changed all sorts of setting in iTunes preferences. I am able to add songs, but I can only delete if I go into the "manually added songs" list.
    I think this was an issue before I upgraded to Lion. Any ideas?

    To Reset your Photo Stream, follow these instructions:
    From a computer browser, go to icloud.com and sign in.
    Click on your name on the iCloud home page (this is the page that shows all the app icons). If you do not see your name, click the cloud icon in the top left of the page.
    Click Advanced.
    Here you will see the Reset Photo Stream button. Clicking this button will remove all your Photo Stream photos from iCloud. Once removed, they cannot be recovered, but you can re-upload any photos you'd like to restore to your Photo Stream from a Mac or PC.
    After resetting your Photo Stream, you can also remove any photos that have been downloaded to your device or computers. To do this, follow the directions below:
    On your iOS device, you can remove photos from the Photo Stream view by turning off Photo Stream and then optionally turning it back on. You can do this at Settings > iCloud > Photo Stream.If you added any Photo Stream photos to other albums or the Camera Roll on your iOS device, you can locate and delete these photos manually, if desired.

  • I changed my "View" to Full Screen..How do I change it back since the Menu Bar with "View" is no longer available in "Full Screen" ?? I tried Esc but that does not work ..

    I used the VIEW tab at the top left to change my View to "Full Screen".
    Now I cannot access the VIEW tab to change it back. How do I change it back so that that Menu will show at the top of my screen??

    Some choices:
    # F11 toggle Full Screen
    # Move mouse up through the top of the screen to menu bars, if you show them
    # "Alt+V" -- to bring up the View Menu
    More information:
    * '''Firefox and other Browser Keyboard Shortcuts''' (Comparison Table)<br>http://dmcritchie.mvps.org/firefox/keyboard.htm
    * '''Keyboard shortcuts''' | How to | Firefox Help<br>https://support.mozilla.com/kb/Keyboard%20shortcuts
    * '''Netbooks''' - MozillaZine Knowledge Base<br>http://kb.mozillazine.org/Netbooks

  • How to change the view of the basic search portlet

    Hi,
    I want to change the view of the basic search portlet. To be more precise, I just want a text box and a Go button in it. Cananybody advise on how to do this?
    Regards,
    Priya

    Indeed the 'Basic Search Box' item is what you want to use. You can choose what label you want or an icon if desired.
    As mentioned in a previous reply, you need to edit the properties of the Page Group where you want to add the item and add the 'Basic Search box' to the list of available items that a user can add to the page group.
    Navigator -> Properties (for the desired page group) -> Configure Tab -> Edit link in the 'Content Type and Classification' section -> Item Types section add the 'Basic Search Box'.
    Now in a page in that page group, add an item, and from the list of 'Built-In Navigation Item Types' you will see the 'Basic Search Box'.

  • I use to be able to rotate my iPhone and change the view of an image, Web page, email, and so on, from portrait to landscape, but after update, I cannot. I can only view in portrait mode. Anybody know what's up with that?

    I use to be able to rotate my iPhone and change the view of an image, Web page, email, and so on, from portrait to landscape, but after update, I cannot. I can only view in portrait mode. Anybody know what’s up with that?

    You need to do the basic troubleshooting steps described in the User Guide, Appendix B.
    Restart phone
    Reset phone
    Restore in iTunes using a backup
    Restore in iTunes as new, without using a backup
    If restoring as new doesn't help, there is a hardware failure in the phone that needs evaluation by Apple.

  • Does safari 6.0.4 need and svg viewer?

    I am visiting a website and part of the site provides graphics. The graphics do not show up but the area where they should be tells me I need to download adobe's svg viewer. The website it takes me to is within Adobe but has no downloads for MACs plus it states that Adobe no longer supports SVG viewers. The information I have found is all dated years ago. What kind of questions should I ask the web site developer to find out why their site does not work in Safari?

    Quit Safari.
      Hold the shift key down and relaunch Safari.
    Reset Safari.
    Click Safari in the menu bar.
    From the drop down select "Reset Safari".
    Uncheck the box next to  " Remove saved names and passwords".
    Click "Reset".

  • SVG Viewer not working

    I installed Oracle 10g (10.1.0.2.0) and the HTML Server and HTML DB from the companion CD.
    I then started looking at some of the examples and even create a quick application myself based on a single table. Any time I wanted to look at something that used an SVG Chart, I didn't see it, but rather a message telling me to install SVG Viewer. So I installed it (3.03).
    When it still didn't work, I checked my browser version (IE 6.0.2800.1106) and according to that, I believe it should be able to work.
    I noticed there was a new version of HTML DB (1.6.0.00.87) so I downloaded that and ran it to upgrade my installation.
    Still no go.
    One thing to note...if I go to the adobe test page, it works correctly.
    Is there a security setting that is preventing this from working in any HTML DB app?
    Thanks,
    Chad

    Hey Chad.
    Hope you get the problem figured out. We've had some really weird sessions with IE as well. As I recall though, deleting the previous version and reinstalling got it to work for us. Took me some significant time and since getting it to work, I'm a little dismayed by how easy it is to break the plugin. An example of this would be having and & in the name of one of the descriptive fields. This breaks it immediately. Several other problems have surfaced, but i just get weird error messages that give very little direction as to how to fix it.
    It's impressive when you have to display the data graphically though. Our admins loved it. (When it works.. :)
    Good luck and hope you get it figured out.
    cliff

Maybe you are looking for