Upgraded to Mainstage 2 where's Loopback and JavaScript error help manl

Just upgraded Logic 8/Mainstage to Logic 9/Mainstage 2.0.0. Where is the LOOPBACK? I have the Playback plugin in my Plugin dropdown menu amongst my other software instruments but Loopback is not there....or anywhere!
Also, can't access Logic or Mainstage HELP manuals....says JavaScript is not enabled.....but JavaScript IS enabled in both Safari and Firefox.

Two answers:
1. Loopback is in the Delay folder
2. JavaScript. Well, I've simply searched for "JavaScript" in the Logic Studio forums (the search box is on the right side under "Search Discussions"), here is the answer:
Open Terminal.app and type (or paste):
defaults write com.apple.helpviewer WebKitJavaScriptEnabled -bool yes

Similar Messages

  • I was upgrading my iphone 3g to 4.2 and an error occured. please help

    I was upgrading my iphone 3g to 4.2 and an error occured. please help

    See this support document http://support.apple.com/kb/TS3694 and read about the 1015 error. Usually refers to jailbreaking, or attempts to install different firmware. Does this apply to you?

  • Where to control and give error message before saving trade promotion?

    Hi Gurus,
    our CRM system is upgraded from 5.0 to 7.0 and we have some problems. One of them is, in 5.0 version, we check some conditions and display error message in the AUTHORITY_CHECK method of CRM_MKTPL. So the check is made and message displayed if errors found while entering the trade promortion, at the beginning. And it does not allow any save action too. After upgrade I write this code to CHECK_AUTHORITY method of  CRM_MKTPL_OL_OBJ. Now it is not make a control while a trade promotion is entered, so it doesn't stop saving trade promotion although there are errors. I can stop saving maybe in the method of CHECK_BEFORE_SAVE? But how can I display own check messages at the beginning of trade promotion? Please give idea.

    Astron,
    There are multiple BADIS for the Trade Promotions.
    Use CRM_MKTPL_OL_OBJ for Header Valiadtions and CRM_MKTPL_OL_ASG for the Item (assignment block validations).
    You need to use CHECK_ATTRIBUTES method of these BADIs to raise any errors.
    Just append you message to ET_MESSAGE_LOG and set EV_HAS_ERRORS to 'X'.
    If you need an error message on SAVE, use CHECK_BEFORE_SAVE method of the CRM_MKTPL_OL_OBJ BADI and append the messages and Mark REJECT_SAVE to 'X'.
    Further there are many methods that trigger on different events like Status change etc.,
    Regards,
    Masood Imrani S.

  • About XML/XSL and Javascript : Plz Help Urgent

    Hai , I am developing one module which invloves XML database ,XSL and Javascript.
    In this I want to transform XML data to XHTML form using XSLT .,
    I have done this ,(using xsl templates ,In my form two radio buttons one dropdown box and two text boxes are there .).
    All the information which ever is displayed coming from XML .,
    But I want to validate this elements (which are in xslt ,ie checking text box is empty or not ..)
    Where I have to add script in XSL .,
    Plz give simple example on this ,
    I am sending this code ,plz have a look at this ,,
    XML -----+ ---XSLT---------------> XHTML(HTML) (where validation is required)*
    Hotels.xml
    ==============>
    <Services>
         <Service>
              <Hotels type="radio" title="Hotel" groupname="service" default="true"/>
              <HotelsFlights type="radio" title="Flight+Hotel" groupname="service"/>
         </Service>
         <Hotels>
              <Destination title_d="Destination :">          
                   <DestinationPlace type="OPTION" id="" title_d="Select Destination" value_d="Select Destination" defalut="true"/>
                   <DestinationPlace type="OPTION" id="" title_d="Aruba" value_d="Aruba" />
              </Destination>
              <HotelChoice title_hc="Hotels :">
                   <choice type="OPTION" id=" " title_h="AmsterDam Manor Beach" value_h="AmsterDam Manor Beach"/>
                   <choice type="OPTION" id=" " title_h="Wyndham Aruba Beach" value_h="Wyndham Aruba Beach"/>
              </HotelChoice>
              <Dates>
                   <CheckIn type="INPUT" title_dt="Check In :" id="chkin" name="chkin" size_dt="10" maxlength="10">mm/dd/yyyy</CheckIn>
                   <CheckOut type="INPUT" title_dt="Check Out :" name="chkout" size_dt="10" maxlength="10">mm/dd/yyyy</CheckOut>
              </Dates>
              <RoomNos title="No.of Rooms :">
                   <room type="OPTION" id="" titl="1" valu="1"/>
                   <room type="OPTION" id="" titl="1" valu="2"/>
                   <room type="OPTION" id="" titl="1" valu="3"/>
              </RoomNos>
              <Submit tile="Search :" type="submit" id="search" value="Search"/>
         </Hotels>
    </Services>
    Hotels.xsl-
    ------------->
    <?xml version="1.0"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="html"/>
    <xsl:template match="/">
         <html>
         <head>
         <script language="javascript">
         function RadioFunc()
              var result;
              alert(" Radio ");
              result +=document.write("<TABLE >");
              result +=document.write("<TR><TD>"+'Praveen'+"</TD></TR>");
              result +=document.write("</TABLE>");
              alert("Result "+result);
         function validateForm()
              alert("Before validating");
              var chkindate= document.getElementById(chkin).value;
              alert(chkindate);
         </script>
         </head>
         </html>
         <xsl:apply-templates/>
    <xsl:if test="@value_d='Select Destination'">
                        alert("Please Enter Destination");
              </xsl:if>
    </xsl:template>
    <xsl:template match="Services" >
         <form name="myform" action="two.jsp" method="get" >
              <table bgcolor="lightgreen" width="350" height="200" border="1" >
              <tr><td><xsl:apply-templates/></td></tr>
              </table>
         </form>
    </xsl:template>
    <xsl:template match="Service">
         <table border="0" align="center" valign="top"><tr>
         <xsl:for-each select="*">
              <td align="left"><xsl:value-of select="@title"/></td>
              <td align="center">
              <input type="{@type}" onClick="RadioFunc()">
                   <xsl:attribute name="Name">
                        <xsl:value-of select="@groupname"/>
                   </xsl:attribute>
                   <xsl:attribute name="value">
                        <xsl:value-of select="@value"/>
                   </xsl:attribute>
                   <xsl:if test="@default='true'">
                        <xsl:attribute name="checked"/>
                   </xsl:if>
              </input>
              </td>
         </xsl:for-each>
         </tr></table>
    </xsl:template>
    <xsl:template match="Hotels/Destination">
    <xsl:value-of select="@title_d"/>
         <SELECT id="dest" name="dest">
         <xsl:for-each select="*">
              <xsl:element name="{@type}">
                   <xsl:value-of select="@value_d"/>
              </xsl:element>
         </xsl:for-each>     
         </SELECT>
    </xsl:template>
    <xsl:template match="Hotels/HotelChoice">
    <xsl:value-of select="@title_hc"/>
    <SELECT id="hcid" name="hcid">
         <xsl:for-each select="*">
              <xsl:element name="{@type}">
                   <xsl:value-of select="@value_h"/>
              </xsl:element>
         </xsl:for-each>
    </SELECT>
    </xsl:template>
    <xsl:template match="Hotels/Dates">
    <table><tr>
    <xsl:for-each select="*">
              <td>
                   <xsl:value-of select="@title_dt"/>
              </td>
              <td>
              <xsl:element name="{@type}" >
                   <xsl:attribute name="size">
                        <xsl:value-of select="@size_dt"/>
                   </xsl:attribute>
                   <xsl:attribute name="maxlength">
                        <xsl:value-of select="@maxlength"/>
                   </xsl:attribute>
                   <xsl:attribute name="value">
                        <xsl:value-of select="text()"/>
                   </xsl:attribute>
              </xsl:element>
              </td>
    </xsl:for-each>
    </tr></table>
    </xsl:template>
    <xsl:template match="Hotels/RoomNos">
    <table align="center"><th>Travellers</th>
    <tr><td><xsl:value-of select="@title"/></td>
    <td><SELECT id="rooms" name="rooms">
              <xsl:for-each select="*">
                   <xsl:element name="{@type}">
                        <xsl:value-of select="@valu"/>
                   </xsl:element>
              </xsl:for-each>     
    </SELECT>
    </td></tr>
         </table>
    </xsl:template>
    <xsl:template match="Hotels/Submit">
         <table align="center" border="0" >
         <tr>
         <td align="center">
              <input type="{@type}" onclick="validateForm();">
                   <xsl:attribute name="value">
                        <xsl:value-of select="@value"/>
                   </xsl:attribute>
              </input>
         </td>
         </tr>
         </table>
    </xsl:template>
    </xsl:stylesheet>
    ======================================================

    Hi
    This is not the forum for this type of question ...sorry. Try the XMLDB forum, XML DB
    Tim

  • Dreamweaver and Javascript error only on one site

    I receive the following error when trying to select recently modified files from the files panel.
    While executing onClick in SelectRecentlyModified.html, the following JavaScript error(s) occurred:
    At line 370 of file "C:\Program Files (x86)\Adobe\Adobe Dreamweaver  CS5\Configuration\Menus\MM\SelectRecentlyModified.js":  DWfile.getAttributes(listItem) has no properties
    I have 4 sites built in DW and only one site is giving this error.  After many days of searching the web and trying the few steps I can find on the web related to this error I still have not resolved it.
    I am using CS5 Suite, Win XP, have IE7 and Firefox but my default brower is Firefox.

    I've now tried that command on multiple sites, including brand new ones I created solely for testing purposes. I also tested it on the same site files on my testing server and in my Subversion repository. I got the same error message every time. This leads me to believe the problem is with the script itself.  I would really like to be able to use this feeature.
    In addition, the Dreamweaver Help for this feature (copied below) suggests I should be seeing options in this feature's dialog box that I'm not seeing:
    Find recently modified files in your site
    In the collapsed Files panel (Window > Files), click the Options menu in the upper-right corner of the Files panel, and then select Edit > Select Recently Modified.
    Do one of the following to indicate search dates for the report:
    To report on all files modified in the last several days, select Files Created or Modified in the Last and enter a number in the box.
    To report on all files modified within a specific time frame, click the Files Created or Modified in the Between radio button, then specify a date range.
    (Optional) Enter a user name in the Modified By box to limit your search to files modified by a specific user between the dates you indicated.Note: This option is only available for reports on Contribute sites.
    Select a radio button to indicate where you want to view files listed in the report, if necessary:
    Local Machine
    if the site contains static pages.
    Testing Server
    if the site contains dynamic pages.Note: This option assumes you defined a Testing Server in the Site Definition dialog box (XREF). If you have not defined a Testing Server and entered a URL prefix for that server, or if you are running the report for more than one site, this option is not available.
    Other Location
    if you want to enter a path in the text box.
    Click OK to save your settings.Dreamweaver highlights the files that were modified within the selected time frame in the Files panel.
    I have set up a testing server for the site (I'm running Apache on my local Mac), and it works. Yet I do not see any option in the dialog box to indicate that I can view the files in a different location. But it's a moot point since I can't view them in any location due to the javascript error.
    Adobe, please advise.

  • I.E, Charting in IR's and JavaScript Errors

    Minor one for the APEX team.
    Whenever I create a chart from on IR, I get a JavaScript error along the lines of:
    "apexir_CHART_2800229260602546' is undefined"
    This only happens in I.E and an example can be seem here: http://apex.oracle.com/pls/apex/f?p=57247:8
    If this needs raising as a bug, please let me know and I will get an SR opened.
    Duncs

    You can continue to use them as Apple ID's, change the rescue address (as you know)
    You can use your iCloud address, but it won't be an alias, it's a full email address.

  • Is there any phone number where to call  and ask for help on the adobe?

    I need to talk to somebody i have a problem and don't know what to do, i really need to ask somebody by phone, please help me!!!!.

    You can either:
    1) Buy a serial number that enables you to build a Single Edition application
    2) Sign up for Creative Cloud (the full thing) and that will also enable you to build a Single Edition application
    It makes no difference whether you already have one in the store.
    Neil

  • Page Fragment and javascript - need help please

    Hi all..
    I have a page fragment (being used as a header) and am trying to get a text field in this page fragment to recieve a value from a javascript (that is embeded in the page fragment).. see the example below..
    --------------PageFragment1----------------------------------
    <?xml version="1.0" encoding="UTF-8"?>
    <div style="-rave-layout: grid; width: 400px; height: 200px" xmlns:f="http://java.sun.com/jsf/core" xmlns:ui="http://www.sun.com/web/ui">
    <f:subview id="Fragment1">
    <ui:textField binding="#{Fragment1.textField1}" id="textField1" style="position: absolute; left: 180px; top: 30px; width: 165px; height: 15px">
    <SCRIPT>
    var d = new Date();
    document.getElementById("Fragment1:textField1").value = d.toLocaleString();
    </SCRIPT>
    </ui:textField>
    </f:subview>
    </div>
    My problem is that doesn't matter what I do I cannot set the textField1 value from the script. For the actual application it does need to be a javascript - does anyone know how to do this on a page fragment as opposed to a plain page...
    The actual error I get is on the client side and it states that document.getElementById is null... :( someone please help.
    Thanks in advance.

    You probably need to prepend "form1:" to the id (or whatever your form's id is) One sure fire way to figure this out is choose view source in your browser and search for the target field.

  • Adobe Document Services - WebDynPro and Javascript error

    Hello,
    I am a new to ADS. I just finished installing a test ADS and made some test, non interactive forms in WebDynPro.
    I have several webdynpro views and some of them embed also a PDF object rendered from ADS and have noticed that in some clients, when attempting to navigate away from the view that contains the PFD by clicking on buttons, a JavaScript "Access denied" error is thrown and no action is taken.
    My only option is to have the view containing the PDF with no buttons to navigate away.
    If the WebDynPro App is embedded in Portal, things go even worst.
    Anybody else has seen this ? Any advice on how to solve this problem ?
    Regards
    Vitaliano Trecca

    Hi Vitaliano,
    Firstly let me tell you that I am not an expert in this, but somethings that I have tried are listed below.
    The buttons that you press are present in the Adobe Form right.
    I was using WAS SP9, Adobe 7.0, and xACF_SP11, I think there was initially a problem with ACF itself, some dlls were not correct.
    I would suggest that you uninstall ACF, and manually remove the dll's if it doesnt remove automatically. Try reinstalling ACF and see.
    I believe you should also move to higher version other than SP9 atleast to SP10 because I faced some other additional problems in SP9, which are fixed in SP10.
    Regards,
    Pavan

  • When trying to download ios 7.0.4 via itunes, says it will be over 200 hours til download, but then stops before it ever starts and says error. help!

    when i tried to dowmload ios 7.0.4 the computer startes the download. it begins counting up hours until the download is finished, when it hits about 130 hours, an error message pops up and tells me that something has gone wrong, network error, etc and says to try again later. im frustrated bc a download shouldnt take that long. i dont know what do do and could use some help.

    Temporarily disable any security software on the computer and try again.

  • X freeze with NVRM: Xid 8 and 13 error, help.

    My hardware: Nvidia Gtx 275, Core i7 920, ASUS P6T, OCZ Gold 6G ram.
    I was using my Archlinux surfing the web, suddenly it become very slow and choppy, while the screen start looking funny. It doen't really hang, but freeze for a few second and come back, then freeze a few second again. I struggled to open top finding nothing is using the CPU, 0% uasage. Since it is not usable, I have to reboot.
    Here is the message found from /var/log/error.log, after reoboot:
    Oct 3 10:18:37 home kernel: NVRM: Xid (0002:00): 8, Channel 00000001
    Oct 3 10:19:43 home kernel: NVRM: Xid (0002:00): 13, 0001 00000000 00008397 0000194c 00000000 00000100
    Oct 3 10:19:43 home kernel: NVRM: Xid (0002:00): 13, 0001 00000000 00008397 0000194c 00000000 00000100
    Oct 3 10:19:43 home kernel: NVRM: Xid (0002:00): 13, 0001 00000000 00008397 0000194c 00000000 00000100
    Oct 3 10:19:49 home kernel: NVRM: Xid (0002:00): 13, 0001 00000000 00008397 0000194c 00000000 00000100
    Oct 3 10:19:49 home kernel: NVRM: Xid (0002:00): 13, 0001 00000000 00008397 0000194c 00000000 00000100
    Oct 3 10:19:49 home kernel: NVRM: Xid (0002:00): 13, 0001 00000000 0000502d 0000024c 0000000c 00000040
    Oct 3 10:19:49 home kernel: NVRM: Xid (0002:00): 13, 0001 00000000 00008397 0000194c 00000000 00000100
    I googled for a while,  it seems it is a fairly comment problem before, but I could find any thing conclusive. Can any one shed some light for me?
    Thanks.
    Update: I am sure that it is not a temperature problem.
    Last edited by mark.altern (2009-10-03 16:45:51)

    I've got a similar problem with an old Dell Optiplex equipped with an Intel 845G integrated video adapter. Stock Kernel 2.6.34-ARCH is installed, along with xorg-server 1.8.1-902-1, and xf86-intel-video 2.11.0-2.
    However instead of flickering the screen, or freezing for a split second or two, my screen just locks up completely.  It occurs randomly at any time using any program (even just an xterm), but most frequently after the computer has been on for about an hour or two. Subsequent attempts to start X just ends up leaving me with a black screen and a moveable mouse cursor. The only way I can get back into X at all is to reboot the computer.
    Also oddly enough, this problem appears less often without any xorg.conf file than it does when I have even the most basic xorg.conf file.
    Update: the latest intel video driver (xf86-video-intel 2.12.0) from upstream freedesktop.org sources limits the freeze up and gpu hang errors for me. The only time they crop up is in special instances of using sdl or other 3D related operations.
    Last edited by carbonero (2010-07-07 00:32:52)

  • Translator and javascript errors

    When loading Dreamweaver 8, I get the following errors:
    The following translators were not loaded due to errors:
    Coldfusion.htm configuration information is invalid.
    XSLTansform.htm configuration information is invalid.
    and also Java Script errors, including _onOpen.
    These continue to pop up when I open my files.
    I have reinstalled both Coldfusion along with updates, and
    Dreamweaver, but it hasn't fixed the problem.
    Any ideas?

    You can try this simple fix -
    Quit DW.
    Find this file-
    C:\Documents and Settings\<username>\Application
    Data\Macromedia\Dreamweaver
    8\Configuration\WinFileCache-*.dat
    (these folders are normally hidden - you may have to use
    Explorer > Tools >
    Folder Options to unhide them)
    and delete it.
    Restart DW. Works better?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "jao30" <[email protected]> wrote in message
    news:e5cs2c$i6s$[email protected]..
    > When loading Dreamweaver 8, I get the following errors:
    >
    > The following translators were not loaded due to errors:
    > Coldfusion.htm configuration information is invalid.
    > XSLTansform.htm configuration information is invalid.
    >
    > and also Java Script errors, including _onOpen.
    > These continue to pop up when I open my files.
    >
    > I have reinstalled both Coldfusion along with updates,
    and Dreamweaver,
    > but it
    > hasn't fixed the problem.
    > Any ideas?
    >
    >

  • Button and JavaScript link (help)

    I would like to know how to make a link to open in to a new
    window and..., I have been using javascript links to open images in
    small windows; <a href="images/samples/SampleSC.gif"
    onclick="return popitup('images/samples/SampleSC.gif')"> These
    links work in the html, and I would like to add this link to a
    button(or something) in flash 8
    The following is in my html to make the links work, but if I
    just get the above link somehow imbedded in to a button I think it
    will work from there
    <script language="javascript" type="text/javascript">
    function popitup(url) {
    newwindow=window.open(url,'name','height=490,width=720,scrollbars=yes');
    if (window.focus) {newwindow.focus()}
    return false;
    </script>
    I am so new to this. I have tried adding the following to the
    action script but it did not work;
    homepage_btn.onRelease = function () {
    getURL("
    http://www.macromedia.com",
    "_blank");
    I found the following ways to do this
    http://www.abcpchelp.com/temp/URL2.htm
    but either I did not know how to use them or they did not work
    The flash file I am working on is here:
    http://www.msresume.com.au/Default1Draft.aspx
    (the links will be in the sample thumbnails)
    Thank you, your time is appreciated!

    michael- wrote:
    > I would like to know how to make a link to open in to a
    new window and..., I
    > have been using javascript links to open images in small
    windows; <a
    > href="images/samples/SampleSC.gif" onclick="return
    > popitup('images/samples/SampleSC.gif')"> These links
    work in the html, and I
    > would like to add this link to a button(or something) in
    flash 8
    >
    > The following is in my html to make the links work, but
    if I just get the
    > above link somehow imbedded in to a button I think it
    will work from there
    >
    > <script language="javascript"
    type="text/javascript">
    > function popitup(url) {
    >
    newwindow=window.open(url,'name','height=490,width=720,scrollbars=yes');
    > if (window.focus) {newwindow.focus()}
    > return false;
    > }
    > </script>
    >
    All you need is one simple line in flash an none of the HTML
    stuff.
    getURL("javascript:n_name=window.open('page.htm','thewin','width=720,height=490,scrollbars =yes');void(0);");
    Take note tho, this might not work tested locally. You need
    to upload to server and
    test it online.
    Now, if you have multiple windows, change the "thewin" to
    something like "thewin1" "thewin2" etc...
    If you keep requesting window with same name, you end up
    loading other content into it.
    New name assure new object and new window made.
    Best Regards
    Urami
    !!!!!!! Merry Christmas !!!!!!!
    Happy New Year
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Licensing expired and Javascript errors

    Will try to make this short, but looking for any suggestions...
    Have CS3 Design Premium.
    Installation was over a year ago with no issues.
    About 6 months ago, I tried to open one of the programs and got a message about Licensing for the product being expired. I ran the Licensing recovery program and got only a few of the programs to open again (Illustrator, Flash, Dreamweaver). Some are still not working (Photoshop, InDesign). I went to uninstall CS3 as suggested by moderator from Adobe so I could run the CS3Clean script. When I try to uninstall, I a get the following message:
    Javascript Alert: Critical errors were fund in setup. Please see the Setup log file for details. I have no reference to incompatible payloads already being installed (as I saw in some solutions when I looked up in the error in adobe)
    So I am basically stuck. I can't get programs to open, but I can't uninstall CS3 so I can try to re-install. Any suggestions from anyone? I really need some help!

    Hi
    i belive ur using mac OS, u need to run cs3 clean script on level 2 and 4
    when u ll start cs3 clean script, it will be open in Terminal (one of mac application like DOS), it will ask for ur computer password, whenu ll type ur password it will not show what ur typing on the screen, so just put ur password and hit return key
    run the clen script on level 4 as well, it's not shown there (it's hiddenlevel)
    plz let me know if ur issue is resolved
    bye
    take care

  • HT1925 I am trying to open Itunes after an upgrade to itunes--it won't open and now says MSVCR80.dll is missimng.  Where do I get this missing DLL.  Also says Error 7 when trying to open (windows error 126)?? I am on Windows 7 if that matters.Help please

    I am trying to open Itunes after an upgrade to itunes--it won't open and now says MSVCR80.dll is missimng.  Where do I get this missing DLL.  Also says Error 7 when trying to open (windows error 126)?? I am on Windows 7 if that matters.Help please

    See the user tip: https://discussions.apple.com/docs/DOC-6562 for the most complete information.

Maybe you are looking for

  • G5 Imac monitor hook up !!

    Hey Everyone, Quick question , i am thinking about selling my Mac Mini and buying a Imac G5 , however ... I still use my Dell Dimension system. I was wondering if it is still possible to run my Dell Dimension, with the Imac G5 as my monitor ? I know

  • No USB storage devices are recognized anymore - Code 28

    Hi, since a few weeks except my usb mouse, keyboard, webcam and scanner no storage devices are working anymore. So now flash drives, usb harddisks etc. are working - they just show up in device manager with error code 28. I deleted one of my devices

  • Windows 7 Upgrade Option Program

    Alright, I did all this and faxed my proof of purchase to the given fax number, and I haven't received a reply yet. And as part of the e-mail from before,  "We will send you an email when we have confirmed your eligibility via your proof of purchase.

  • Automating the removal of CS3 (before installing CS4)

    After much fiddling, I've been able to automate the remove of (the majority) of the CS3 suite on my machines.  I did this using the command: [serverpath]\Adobe CS3\setup.exe --mode=silent --deploymentFile=./uninstall.xml (where uninstall.xml specifie

  • Bookmarks list view missing

    I have noticed after the Android 4.0.4 update I cannot see may native browser bookmarks in a list view. All I get are the small icon representations of the website. I would like the bookmarks in list view instead. Another problem after the update goo