[svn:fx-trunk] 10092: Make applications accessible by default.

Revision: 10092
Author:   [email protected]
Date:     2009-09-09 09:28:04 -0700 (Wed, 09 Sep 2009)
Log Message:
Make applications accessible by default.
The default of the accessible compiler option has changed from false to true.
QE notes: None.
Doc notes: None.
Bugs: SDK-20526
Reviewer: Paul
Tests run: checkintests
Is noteworthy for integration: Yes
Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-20526
Modified Paths:
    flex/sdk/trunk/frameworks/air-config.xml
    flex/sdk/trunk/frameworks/flex-config.xml
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/DefaultsConfigurator.java

Similar Messages

  • [svn:fx-trunk] 12936: -make sure the bundles directory for airspark is not included in the package fixes bug SDK-24552

    Revision: 12936
    Revision: 12936
    Author:   [email protected]
    Date:     2009-12-14 19:40:23 -0800 (Mon, 14 Dec 2009)
    Log Message:
    -make sure the bundles directory for airspark is not included in the package fixes bug SDK-24552
    -remove (from svn) the en_US/docs directories for textLayout because these directories and dita files are created by asdoc in the doc target
    -updated the main build.xml to not include the playerglobal project
    -updated fat-swc targets in osmf,automation_spark,automation_flashflexkit,automation,airspark, and textlayout to remove the doc directory.
    QE notes: make sure copylocales works properly
    Doc notes: no
    Bugs: SDK-24552
    Reviewer:
    Tests run: checkintests
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24552
        http://bugs.adobe.com/jira/browse/SDK-24552
    Modified Paths:
        flex/sdk/trunk/build.xml
        flex/sdk/trunk/frameworks/projects/airspark/build.xml
        flex/sdk/trunk/frameworks/projects/automation/build.xml
        flex/sdk/trunk/frameworks/projects/automation_flashflexkit/build.xml
        flex/sdk/trunk/frameworks/projects/automation_spark/build.xml
        flex/sdk/trunk/frameworks/projects/osmf/build.xml
        flex/sdk/trunk/frameworks/projects/textLayout/build.xml
    Removed Paths:
        flex/sdk/trunk/frameworks/projects/airframework/bundles/en_US/docs/
        flex/sdk/trunk/frameworks/projects/automation/bundles/en_US/docs/
        flex/sdk/trunk/frameworks/projects/automation_flashflexkit/bundles/en_US/docs/
        flex/sdk/trunk/frameworks/projects/automation_spark/bundles/en_US/docs/
        flex/sdk/trunk/frameworks/projects/framework/bundles/en_US/docs/
        flex/sdk/trunk/frameworks/projects/rpc/bundles/en_US/docs/
        flex/sdk/trunk/frameworks/projects/textLayout/bundles/en_US/docs/

    Well, I've tried compiling a package and I have modified the PKGBUILD file to look like this now. (Keeping it as simple as possible)
    pkgname=dvbcut-svn
    pkgver=16
    pkgrel=1
    pkgdesc="DVBCUT-svn is an application that allows you to
    edit MPEG files. ie: Remove TV ads. (SVN version: Fri, 01 Dec 2006)."
    url="http://dvbcut.sourceforge.net"
    depends=('qt' 'libao')
    makedepends=('subversion' 'scons')
    conflicts=('dvbcut' 'ffmpeg')
    provides=('dvbcut')
    source=()
    md5sums=()
    _svntrunk=https://svn.sourceforge.net/svnroot/dvbcut/trunk
    _svnmod=dvbcut
    build() {
    cd $startdir/src
    svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
    cd $_svnmod
    msg "SVN checkout done or server timeout"
    msg "Starting make..."
    make || return 1
    # vim:syntax=sh
    I then run makepkg PKGBUILD and let it do its thing
    It ends with this...
    scons: done building targets.
    ==> Removing info/doc files...
    ==> Compressing man pages...
    ==> Stripping debugging symbols from libraries...
    ==> Stripping symbols from binaries...
    ==> Generating .PKGINFO file...
    ==> Generating .FILELIST file...
    tar: *: Cannot stat: No such file or directory
    tar: Error exit delayed from previous errors
    ==> Compressing package...
    tar: *: Cannot stat: No such file or directory
    tar: Error exit delayed from previous errors
    ==> Finished making: dvbcut-svn  (Sun Jan 21 19:08:28 UTC 2007)
    I'm not sure what's causing this error message.
    tar: *: Cannot stat: No such file or directory
    tar: Error exit delayed from previous errors
    I'll try installing it and see how it goes.

  • [svn:fx-trunk] 10358: Change Application. application so it can return spark Applications and spark WindowedApplications .

    Revision: 10358
    Author:   [email protected]
    Date:     2009-09-17 14:18:43 -0700 (Thu, 17 Sep 2009)
    Log Message:
    Change Application.application so it can return spark Applications and spark WindowedApplications.
    Application.application is still deprecated but this change makes the transition to using Spark Applications easier.
    QE notes: None.
    Doc notes: None.
    Bugs: SDK-21898
    Reviewer: Gordon
    Tests run: checkintests, Application
    Is noteworthy for integration: no.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-21898
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Application.as

    Try setting the stepSize on the slider to 4. That should reduce the jiggle effect.
    Not sure if it helps, but the following way of placing the graphic in the skin means you don't need to use those binding tags. The group within the graphic will automatically scale. (I use 48 as an arbitrary size for the group. But it will always display relative to the size of the button. You may need to adjust the 30 and 8 values to match your original.)
    <s:Graphic left="1" right="1" top="1" bottom="1"  >
    <s:Group width="48" height="48" >
    <s:Rect  horizontalCenter="0" verticalCenter="0" height="30" width="8">
    <s:stroke>
    <s:SolidColorStroke color="0x000000"/>
    </s:stroke>
    <s:fill>
    <s:SolidColor color="0xff0000"/>
    </s:fill>
    </s:Rect>
    <s:Rect  horizontalCenter="0" verticalCenter="0" height="8" width="30">
    <s:stroke>
    <s:SolidColorStroke color="0x000000"/>
    </s:stroke>
    <s:fill>
    <s:SolidColor color="0xff0000"/>
    </s:fill>
    </s:Rect>
    </s:Group>
    </s:Graphic>

  • [svn:fx-trunk] 11202: Make controlBarContent read/ write so you can use other states syntax besides includeIn

    Revision: 11202
    Author:   [email protected]
    Date:     2009-10-27 14:32:23 -0700 (Tue, 27 Oct 2009)
    Log Message:
    Make controlBarContent read/write so you can use other states syntax besides includeIn
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-23386
    Reviewer: Corey
    API Change: no
    Is noteworthy for integration: No
    tests: checkintests mustella/gumbo/components/Panel, Application
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23386
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Application.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Panel.as

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • [svn:bz-trunk] 21951: Remove application state code...

    Revision: 21951
    Revision: 21951
    Author:   [email protected]
    Date:     2011-08-12 05:47:46 -0700 (Fri, 12 Aug 2011)
    Log Message:
    Remove application state code...
    Check-in Tests: Pass
    QA: Yes
    Doc: No
    Modified Paths:
        blazeds/trunk/modules/common/src/flex/messaging/log/LogCategories.java
        blazeds/trunk/modules/core/src/flex/messaging/messages/CommandMessage.java
        blazeds/trunk/modules/core/src/flex/messaging/services/MessageService.java
        blazeds/trunk/modules/core/src/flex/messaging/services/ServiceAdapter.java

    Hello xhpx,
    In  your media queries your changing the .gridContainer but the #LayoutDiv1 is the same. The reason the color goes away is the media query for mobile sizes doesn't have the background color. Though I would remove #LayoutDiv1 from any media query since it doesn't need to change.
    http://jsfiddle.net/gCka7/
    hope this helps.
    Chad Smith - BCGurus.com
    also, creating a jsfiddle or just a link to the site could make it easier for debuging.

  • [svn:fx-trunk] 10545: Make DataGrid smarter about when and how to calculate the modulefactory for its renderers when using embedded fonts

    Revision: 10545
    Author:   [email protected]
    Date:     2009-09-23 13:33:21 -0700 (Wed, 23 Sep 2009)
    Log Message:
    Make DataGrid smarter about when and how to calculate the modulefactory for its renderers when using embedded fonts
    QE Notes: 2 Mustella tests fail:
    components/DataGrid/DataGrid_HaloSkin/Properties/datagrid_properties_columns_halo datagrid_properties_columns_increase0to1_halo
    components/DataGrid/DataGrid_SparkSkin/Properties/datagrid_properties_columns datagrid_properties_columns_increase0to1
    These fixes get us to measure the embedded fonts correctly when going from 0 columns to a set of columns so rowHeight will be different (and better) in those scenarios
    Doc Notes: None
    Bugs: SDK-15241
    Reviewer: Darrell
    API Change: No
    Is noteworthy for integration: No
    tests: checkintests mustella/browser/DataGrid
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-15241
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/DataGrid.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridBase .as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridColu mn.as

    Hi Matthias,
    Sorry, if this reply seems like a products plug (which it is), but this is really how we solve this software engineering challenge at JKI...
    At JKI, we create VI Packages (which are basically installers for LabVIEW instrument drivers and toolkits) of our reusable code (using the package building capabilities of VIPM Professional).  We keep a VI Package Configuration file (that includes a copy of the actual packages) in each of our project folders (and check it into source code control just as we do for all our project files).  We also use VIPM Enterprise to distribute new VI Packages over the network.
    Also, as others have mentioned, we use the JKI TortoiseSVN Tool to make it easy to use TortoiseSVN directly from LabVIEW.
    Please feel free to contact JKI if you have any specific questions about these products.
    Thanks,
    -Jim 

  • [svn:fx-trunk] 8190: make sure the HaloClassic theme is not copied into the package b/ c it is no longer supported in flex 4

    Revision: 8190
    Author:   [email protected]
    Date:     2009-06-24 12:26:02 -0700 (Wed, 24 Jun 2009)
    Log Message:
    make sure the HaloClassic theme is not copied into the package b/c it is no longer supported in flex 4
    bug: https://bugs.adobe.com/jira/browse/SDK-20729
    qa: no
    doc:
    checkintests: pass
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-20729
    Modified Paths:
        flex/sdk/trunk/build.xml

    Gordon, it looks like its been a while since you made this post.  Not sure how valid it is now...   I am particularly interested in the LigatureLevel.NONE value.  It seems that it is no longer supported.
    How do I turn of ligatures in the font rendering?
    My flex project involves trying to match the font rendering of Apache's Batik rendering of SVG and ligatures have been turned off in that codebase.  Is there any way (even roundabout) to turn ligatures off in flash?
    Thanks,
    Om

  • [svn:fx-trunk] 9320: Fix Application.url property when RSLs are used.

    Revision: 9320
    Author:   [email protected]
    Date:     2009-08-14 14:49:12 -0700 (Fri, 14 Aug 2009)
    Log Message:
    Fix Application.url property when RSLs are used.
    Use LoaderUtil.normalizeURL() to normalize the Application.url property. Do the same thing for both the Halo and Spark versions of Application.
    QE notes: None.
    Doc notes: None.
    Bugs: SDK-22154
    Reviewer: Alex
    Tests run: checkintests
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-22154
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Application.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Application.as

  • [svn:fx-trunk] 12001: Make List itemEditor work with FTETextInput via textInputClass style and remove unused _itemEditor from Tree .

    Revision: 12001
    Revision: 12001
    Author:   [email protected]
    Date:     2009-11-19 11:47:24 -0800 (Thu, 19 Nov 2009)
    Log Message:
    Make List itemEditor work with FTETextInput via textInputClass style and remove unused _itemEditor from Tree.
    QE notes:
    Doc notes:
    Bugs: SDK24172
    Reviewer: Gordon
    Tests run: checkintests, list tests
    Is noteworthy for integration: no
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/List.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/Tree.as
        flex/sdk/trunk/frameworks/projects/spark/MXFTEText.css

    This is a duplicate post.  This should be locked to avoid further confusion.
    My CSS wont change
    Nancy O.

  • [svn:fx-trunk] 12909: Pre-FP10.1, set default tab stops in TLF.

    Revision: 12909
    Revision: 12909
    Author:   [email protected]
    Date:     2009-12-14 10:33:13 -0800 (Mon, 14 Dec 2009)
    Log Message:
    Pre-FP10.1, set default tab stops in TLF.  Without this, if there is a tab and TLF is measuring width, the tab will measure as the rest of the remaining width up to 10000.
    QE notes:
    Doc notes:
    Bugs: SDK-24589
    Reviewer:
    Tests run: checkintests
    Is noteworthy for integration: yes
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24589
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/RichEditableText.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/RichText.as

    SpryAccordion.css
    You have an error that is killing the rest of your code shown below in red.  Remove it.
    .AccordionPanelContent {
        margin: 0px;
        padding: 2px; /**suggest using 12px or more**/
        background-image: url(../infobkgd.png);
        background-attachment: fixed;
        background-repeat: repeat;
        font-family: Verdana, Geneva, sans-serif;
        font-size: 12px;  /**suggest using 16px or more**/
        color: #FFF;
        overflow: hidden;
        height: 40
    [x;
        height: 100%;
    Nancy O.

  • [svn:fx-trunk] 8530: Change Slider and NumericStepper default value

    Revision: 8530
    Author:   [email protected]
    Date:     2009-07-13 11:17:46 -0700 (Mon, 13 Jul 2009)
    Log Message:
    Change Slider and NumericStepper default value
    http://bugs.adobe.com/jira/browse/SDK-18380 - FxHSlider and FxVSlider have default max of 100, should be 10
    Changed the default value for Slider by setting the value to 10 in the constructor. I changed NumericStepper?\226?\128?\153s implementation to match Slider. The problem with NumericStepper?\226?\128?\153s previous implementation was that it wasn?\226?\128?\153t calling Range?\226?\128?\153s maximum setter. Thus there was some important logic in Range.commitProperties that wasn?\226?\128?\153t called. 
    QE Notes: Update tests with new default
    Doc Notes: Update docs with new default
    Bugs: SDK-18380
    Reviewer: Hans
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-18380
        http://bugs.adobe.com/jira/browse/SDK-18380
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/NumericStepper.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/supportClasses/Slider.as

  • How to disable pop up Make Adobe Reader my default PDF Application in registry

    Hi
    I am wondering if there is a registry setting that can disable the pop-up Make Adobe Reader my default PDF Application ?
    I have seen there is a setting under Edit\Preferences\General\"Tell me if Adobe Reader is not my default PDF Application" but cannot find a registry setting to disable this. This message pops up for some users in a remote desktop session host environment even though I have disabled the messages on the session hosts.
    Thanks,
    Andrew

    Hi Andrew_Dell,
    Thank You for posting on the forums. Kindly try the below mentioned steps and check ,if it helps.
    1) launch adobe Reader
    2) Click on Edit>Preferences
    3)Go to General under Categories
    4) Click on "Select Default Pdf Handler"
    5) Choose adobe Reader
    After performing this workflow, you might see an installation window. do not worry, it is just a new configuration of PDF handler being updated in the system.
    Thanks,
    Vikrantt Singh

  • What is procedure to make application server for existing server

    Hello Friends,
    What is procedure to make application server for existing server due to server load and no. of user..
    Thanks in advance.
    Regards,
    Sachin

    hi
    good
    go through these links,this will gives you complee idea about the creating instances in application serverl.
    http://www.erpgenie.com/sap/basis/
    http://www.sapdevelopment.co.uk/file/file_disall.htm
    thanks
    mrutyun^

  • Make WSUS accessible over the web

    We're in the process of deploying WSUS on Windows 2012 R2 in our environment and I have a question regarding access over the web...  I would  like to provide clients with the ability to access the update server regardless of being connected to
    the company internal network.  I see that the standard GPO settings call for following, and in our lab it is working fine.  One the same internal network.
    Computer Configuration, Policies, Administrative Templates, Windows Components, Windows Update
    Specify intranet Microsoft update service location
    Set the intranet update service for detection updates:
    http://serverhostname:5830
    Set the intranet statistics server: http://serverhostname:5830
    So, If I wanted to change this to HTTPS and make it accessible over the web, based on my experience with Windows Server the steps would look something like this:
    1. Create Internal and external DNS record that will resolve the internal IP address of the WSUS server and the External IP address of the WSUS server.  wsus.domain.com for example.
    2. Purchase a Godaddy or competing certificate from a public store and install it for the default site in IIS. Configure HTTPS bindings to answer on port 5830.
    3. Configure GPO mentioned above to utilize
    https://wsus.domain.com:5830
    ~~~~~~~~~~~~~~~~~
    Seems pretty straight forward.. However I am wondering if this configuration is supported, recommended, or if anyone else out there has it configured in this way? Our deployment will service approximately 300 workstations from a single installation at our
    datacenter. Any insight or recommendations would be greatly appreciated. Thank you!
    Adam Tyler / [email protected]

    Specify intranet Microsoft update service location
    Set the intranet update service for detection updates:
    http://serverhostname:5830
    Set the intranet statistics server: http://serverhostname:5830
    Actually it's port 8530.
    So, If I wanted to change this to HTTPS and make it accessible over the web, based on my experience with Windows Server the steps would look something like this:
    1. Create Internal and external DNS record that will resolve the internal IP address of the WSUS server and the External IP address of the WSUS server.  wsus.domain.com for example.
    2. Purchase a Godaddy or competing certificate from a public store and install it for the default site in IIS. Configure HTTPS bindings to answer on port 5830.
    3. Configure GPO mentioned above to utilize
    https://wsus.domain.com:5830
    ~~~~~~~~~~~~~~~~~
    Seems pretty straight forward..
    That part is, yes. :)
    However I am wondering if this configuration is supported, recommended, or if anyone else out there has it configured in this way?
    It's not supported. It's not recommended, as described, although you're well on your way. And, the real kicker.. strictly speaking, it's not licensed for use in that manner. Let me e'splain why.
    The licensing for WSUS restricts its use to only clients that are licensed to the entity operating the WSUS server. As such client identity is a key component of strict licensing compliance.
    While Server-Side SSL certainly ensures the client only connects to an authorized server, it does not identify the client, nor restrict the client by known identity, and it wouldn't even prevent an unauthorized client from accessing that server -- all that's
    needed is a copy of the CER. So there's that, which is probably not a deal killer, even considering the strictest interpretation of the licensing, because the risk is fairly low, and MS really isn't going to chase you down because you *might* be capable of
    offering services to unlicensed client systems.
    Here's the real risk: Access to the SSL certificate would also permit a rogue downstream server to dump your complete collection of updates, groups, and approvals to itself, effectively giving the operator of that rogue server information about what security
    updates are approved, and when they were approved, but also which updates are NOT approved -- which offers up some sensitive information about existing vulnerabilities in those workstations. In effect, security of the public certificate becomes paramount.
    More significantly, someone using the API can dig out even more sensitive information about client computers, actual installations, etc. without even setting up a WSUS server, all they need is a working API installation (which can be done on any desktop
    operating system).
    SSL is definitely the minimum requirement for this type of deployment, but in conjunction with making the client services available via SSL, you'll also want to BLOCK access to /DssAuthWebService, /ServerSyncWebService, and /ApiRemoting30 via the firewall.
    Blocking /ApiRemoting30 is fairly straightforward as it requires an authenticated connection anyway, so mostly that's a matter of properly securing the server logons, but downstream server sync is anonymous by default, so you'll want to configure required
    authentication for downstream servers. You won't have any, of course, but that will also preclude the possibility of any. Configuring DSS Authentication is discussed in the WSUS Deployment Guide in TechNet.
    Having said all of that, the conventional way in which WSUS services have been made available to Internet-based clients is via VPN using a replica server without a content store. VPN-based clients get approvals from the replica WSUS server, but then download
    content direct from Microsoft. Client installs updates when downloads are complete.
    VPN is a headache for a lot of orgs, though, and it requires active participation on the part of the computer user, which sometimes impedes successful deployment of updates in a timely manner.
    The ideal methodology, but also a PITA to set up, would be to access that WSUS server via an IPSec-encrypted Direct Access connection. This eliminates the end-user from the process, and ensures client identity through IPSec/DA authentication.
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • [svn:fx-trunk] 10065: Comment out code causing an RTE in SWFLoader.

    Revision: 10065
    Author:   [email protected]
    Date:     2009-09-08 13:14:26 -0700 (Tue, 08 Sep 2009)
    Log Message:
    Comment out code causing an RTE in SWFLoader. Will fix as part of per-module styles feature development.
    QE notes: None.
    Doc notes: None.
    Bugs: SDK-23081
    Reviewer:
    Tests run: checkintests
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23081
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/SWFLoader.as

    Hello, first post here..
    I maintain a java based lobby for an opensource RTS
    engine called spring at http://taspring.clan-sy.com
    You can find my lobbys source code at:
    https://taspring.clan-sy.com/svn/spring/trunk/AFLobby/
    Of note being the unitsync.dll/so library used to
    handle mods and maps. Implementing this library in
    pure java is not an option.
    I've dealt with quite a few JNi errors dealing with
    the linux users but we got through them all and it
    all worked great.
    I released a windows installer, and most users can
    run it fine with no issues with JNI, but 2 users seem
    to have problems, despite correctly installing
    everything.Does the JNI code use perl?
    This error message shows several hits on Google for perl related stuff.

Maybe you are looking for

  • CIN Pricing for the Intercompany STO

    Hi All, I am doing a Inter Company stock transfer Process.I have created a Pricing structure for the Inter company stock transfer Pricing. PO is created  through the MM module nad in PO I can see the Priceses are maintained but when I am creatng Deli

  • IPod S-Video cable output? where to buy?

    Where can I buy a cable to output video from my 5G iPod to an S Video connection? Not a home dock style, I will be using it on the road. thanks!

  • How to Get Mail To Show Senders...

    It seems like ever since I upgraded to Mountain Lion, my MAIL now shows MY ADDRESS in bold in the message list, instead of showing who sent the message. I can't seem to find a way to change this...anyone? Thx Tom

  • Performance issue in customized program

    Hi, We have a performance issue in customized program. In this program he used do-enddo twice. I mean nested do-endo. How can we increase the performance. And when we did the code inspector it displays 9 errors 'Char. strings w/o text elements will n

  • Failed update u43M1d204

    I keep getting this error message Failed update u43M1d204 in attempting to update Photoshop and Bridge CC on OSX 10.10.3. Any ideas how to fix it?