Other packages?

I currently have a subscription unique app for Photoshop CC.  I would really like to add Illustrator to that for occasional use.  I use Photoshop about 3 times a week, I use Illustrator maybe 3 times a month.   Is there a case such as the case of photographers that could allow a couple of products at a reasonable cost?

Adobe doesn't do not packages... personalized you can add simple programs to your current subscription

Tags: Adobe

Similar Questions

  • Manage the creative cloud and other packages

    Until this morning, I had installed in my computer

    • Acrobat X Pro, Photoshop CS5 (64 bit), Photoshop CS6 and CS6 64-bit (all bought), and
    • Illustrator CS5, CS6 and CS6 (64-bit) and SendNow Basic (all subscribed).

    After subscribing to the creative cloud, I installed InDesign SC6 and decided to streamline my Adobe packages. I started with the uninstallation of Illustrator CS5. When this was done, my InDesign and Acrobat X Application Manager "disappeared." So I used the system restore (I have Win 7 Ultimate 64-bit).

    After the restoration, when I open Illustrator CS5, I get a message to uninstall and reinstall (error: 1), InDesign refuses to open, and Acrobat X appears without my custom print settings.

    I need advice on how to manage my parcel?

    Thank you.

    Paul

    I'd be inclined to run the cleanup tool

    http://helpx.Adobe.com/Creative-Suite/KB/CS5-cleaner-tool-installation-problems.html

    then reinstall all Cloud applications through the application manager.

  • The use of packages in FlashBuilder

    I create an application in FlashBuilder 4, and I want to use the names of real package instead of the default value. However, when I move my .as class in the new package, I get complaints compilation, saying: he cannot find the app.xml file. I created the folder structure in the folder bin-debug, thinking that might help. Should what steps I take to use the actual structures of package?

    Hey MissRancher,

    Flash Builder requires that your main application as a file remain in the default package directory. All other classes you have in your application can reside elsewhere in other packages. I just need your main class remains in the default directory.

  • API useful packages

    Hi all

    I found a useful API (FND_USER_PKG) package that allows you to insert data into one or more tables.

    Can you help me how to find other packages similar to this API?

    They all start with "FND_"? Or are all the APIs in the form of a PACKAGE?

    I can list them using > select object_name from dba_objects where object_name like 'FND_ % PKG "?

    Thank you very much.

    Hello

    This is not the right approach. You look at all THE packages in the APPS schema!

    These packages are public (ending with the pub name or api) or private.

    You can use the public APIs, but NOT private ones.

    Only those that are specified in the user guide or the guide to the API of each application can be used.

    Again, check the links provided and start reading!

    Kind regards

    Bashar

  • Difference of procedure package Vs

    In addition to an overload and private subprogrammes, what is the advantage of the procedure/function created within a packet on Stand Alone procedures in terms of performance.

    What will be the difference in the behavior of stand-alone procedure/function and procedure/function inside the package if both are called by 100 different user one by one. Will the charge procedure 100 times for each call or not?

    Can someone give me more clearity on these points:

    Best performance - packages can be compiled and are loaded into memory in full and not piecemeal as other methods. This advantage if at all there is minimal compared to other services.

    Invalidation reduced - change a package body does not invalidate the dependencies to change a function or procedure.

    Hello

    Kimmy says:

    Thanks for the links that I read the post before and then I posted this discussion for more clearity...

    Any code that is executed is loaded into the Cache of the bookstores and remain in the library Cache until it is aged by the LRU algorithm. So if there are a 100 calls to a stand alone procedures be there in the Cache/memory?

    If not why not?

    If Yes... So how this behavior differs from the behavior of charge of the public procedure within a package?

    There is nothing special about 100 calls.  A procedure (or package) might be aged after 1 call or after 100 calls, or it can remain in cache after 1 call or after 100 calls.

    The difference between stand-alone procedures and packages in this regard is that all remains in the cache, or gets old, together.  So if you have requested that a procedure in the package, as this package is cached, then the 1st time you call another procedure in this package it will already be in memory.

    Other differences between packages and stand-alone procedures:

    A package can have variables and types defined in package specifications and so can be used by other users.  (With the help of ouutside of package variables to the package, instead of using functions, maybe not a good idea, however.)

    Change a package body is invisible to dependent objects.  If you change just the package body, no other packages or views will be become disabled or need to be recompiled.

  • Using constants in the package

    Hi gurus,

    We store all our constants in a package named WIE_CONSTANTS_TEST. That was the original spec and body:

    
    create or replace package wie_constants_TEST authid current_user as
    
    
    /*
    Constants for INTERFACE_BATCH_STATUS field in the table WIE_INT_BATCHES_B.
    */
    c_int_batch_inprocess        constant wie_int_batches_b.interface_batch_status%type :='IN_PROCESS';
    c_int_batch_completed        constant wie_int_batches_b.interface_batch_status%type :='COMPLETED';
    c_int_batch_complerror       constant wie_int_batches_b.interface_batch_status%type :='COMPLETED_ERRORS';
    c_int_batch_complwarn        constant wie_int_batches_b.interface_batch_status%type :='COMPLETED_WARNINGS';
    c_int_batch_ready            constant wie_int_batches_b.interface_batch_status%type :='READY';
    
    /*
    Constants for INTERFACE_BATCH_TYPE field in the table WIE_INT_BATCHES_B.
    */
    
    c_int_batch_optxn            constant wie_int_batches_b.interface_batch_type%type  :='WO_OP_TXN';
    c_int_batch_mattxn           constant wie_int_batches_b.interface_batch_type%type  :='WO_MTL_TXN';
    c_int_batch_restxn           constant wie_int_batches_b.interface_batch_type%type  :='WO_RSC_TXN';
    c_int_batch_wotxn            constant wie_int_batches_b.interface_batch_type%type  :='WO';
    
    
    -- Table Name Constants
    c_mtr_trans_table_name       constant wie_int_errors.table_name%type := 'WIE_MATERIAL_TRANSACTIONS_INT';
    c_res_trans_table_name       constant wie_int_errors.table_name%type := 'WIE_RESOURCE_TRANSACTIONS_INT';
    c_batch_int_table_name       constant wie_int_errors.table_name%type := 'WIE_INT_BATCHES_B';
    c_wo_hdr_table_name          constant wie_int_errors.table_name%type := 'WIE_WORK_ORDERS_INT';
    c_wo_dtl_table_name          constant wie_int_errors.table_name%type := 'WIE_WORK_ORDER_DETAILS_INT';
    
    end wie_constants_test;
    
    /
    commit;
    exit;
    

    The package body is

    CREATE OR REPLACE PACKAGE BODY WIE_CONSTANTS_TEST AS
    
    END WIE_CONSTANTS_TEST;
    /
    COMMIT;
    EXIT;
    

    This package is referred to by several other packages. I change the value of a constant and recompile it, but that translates into a large number of questions. There is no change in the package body. There is only change in package spec, I modify and recompile the package spec and body. This is how the new spec package looks like:

    create or replace package wie_constants_TEST authid current_user as
    
    
    /*
    Constants for INTERFACE_BATCH_STATUS field in the table WIE_INT_BATCHES_B.
    */
    
    
    c_int_batch_inprocess        constant wie_int_batches_b.interface_batch_status%type :='IN_PROCESS';
    c_int_batch_completed        constant wie_int_batches_b.interface_batch_status%type :='COMPLETED';
    c_int_batch_complerror       constant wie_int_batches_b.interface_batch_status%type :='COMPLETED_ERRORS';
    c_int_batch_complwarn        constant wie_int_batches_b.interface_batch_status%type :='COMPLETED_WARNINGS';
    c_int_batch_ready            constant wie_int_batches_b.interface_batch_status%type :='READY';
    
    
    /*
    Constants for INTERFACE_BATCH_TYPE field in the table WIE_INT_BATCHES_B.
    */
    c_int_batch_optxn            constant wie_int_batches_b.interface_batch_type%type  :='WO_OP_TXN';
    c_int_batch_mattxn           constant wie_int_batches_b.interface_batch_type%type  :='WO_MTL_TXN';
    c_int_batch_restxn           constant wie_int_batches_b.interface_batch_type%type  :='WO_RSC_TXN';
    c_int_batch_wotxn            constant wie_int_batches_b.interface_batch_type%type  :='WO';
    
    -- Table Name Constants
    c_mtr_trans_table_name       constant wie_int_errors.table_name%type := 'ORA_WIE_MATERIAL_TRANSACTIONS_INT';
    c_res_trans_table_name       constant wie_int_errors.table_name%type := 'ORA_WIE_RESOURCE_TRANSACTIONS_INT';
    c_batch_int_table_name       constant wie_int_errors.table_name%type := 'WIE_INT_BATCHES_B';
    c_wo_hdr_table_name          constant wie_int_errors.table_name%type := 'WIE_WORK_ORDERS_INT';
    c_wo_dtl_table_name          constant wie_int_errors.table_name%type := 'WIE_WORK_ORDER_DETAILS_INT';
    
    end wie_constants_test;
    /
    commit;
    exit;
    

    Now, the problem is that whenever I call the new package, I don't see the values. Is an example to run the script:

    declare
    l_variable VARCHAR2(200);
    begin
    l_variable :=wie_constants_TEST.c_int_batch_inprocess;
    DBMS_OUTPUT.PUT_LINE('wie_constants_TEST.c_dispatch_ready='||c_int_batch_inprocess );
    L_VARIABLE :=wie_constants_TEST.c_int_batch_optxn;
    DBMS_OUTPUT.PUT_LINE('wie_constants_TEST.C_DEFAULT_SCHEDULER='||c_int_batch_optxn );
    L_VARIABLE :=wie_constants_TEST.c_mtr_trans_table_name;
    DBMS_OUTPUT.PUT_LINE('wie_constants_TEST.c_mtr_trans_table_name='||L_VARIABLE );
    end;
    /
    
    

    Before the change, all right. After the change, the first time I run the script above, I get the error:

    ORA-06502: PL/SQL: digital or value error: character string buffer too small

    ORA-06512: at the 'APPS '. WIE_CONSTANTS_TEST,"

    When I restarted it, I get the values for the new table name as null.

    I already run the commands below, but it did not help

    alter system flush shared_pool;
    ALTER SYSTEM FLUSH buffer_cache;
    
    begin
    DBMS_SESSION.RESET_PACKAGE;
    END;
    /
    
    
    begin
    DBMS_SESSION.MODIFY_PACKAGE_STATE(DBMS_SESSION.FREE_ALL_RESOURCES);
    end;
    /
    
    begin
    DBMS_SHARED_POOL.UNKEEP ('APPS.WIE_CONSTANTS_TEST', 'P');
    end;
    /
    
    

    Demand for experts help to solve the problem.

    What are the data type of

    wie_int_errors.table_name%type

    You have changed the constants to be 33 characters long.  Oracle table names are usually limited to 30 characters.  Any chance that the data type only allows 30 characters?

    Justin

  • I want to know what is the difference between the two packages to choose from for photoshop.

    Pricing plans and creative Cloud membership | Adobe Creative Cloud

    I am looking to buy photoshop and I see two sets with a price. There is a plan of photography that comes with photoshop cc for 119 a year, and then the other package is a purchase unique app for photoshop cc for 239 per year. They are both the same in photoshop?

    Hi domk15243449,

    Yes, you will get the same version of Photoshop on one of the Plans,

    Please see the following link, it should be useful: helps Photoshop | Differences between Photoshop and creative photography programs Cloud

    Kind regards

    Tanuj

  • Build packages of vCO with the Plugin o11n-package

    I began using the maven-011n-package-plugin, found in the Maven Repo to edge of the vCO device or such that got by the vCO Client of-> package-> Expand to folder feature.  First of all, it is a very useful tool, however, the docs are very minimal.  And I have two questions

    (1) is REQUIRED when I build a package (from the native XML) I digitally sign it?

    (2) is there a version of the functionality built into this Maven plugin library?  Where can I get the source?  I was wondering if I can do this without involving the maven; We use gradle.

    I think that the signature is required and package build fails if you don't specify a password and the location of the keystore.

    As for your second question - there is no library, but there is a command line tool that package exim. It can be found in the Maven repo, / com/vmware/o11n/tool/vco-cli-Java /.

    Here is the list of commands it supports + examples.

    On Maven vs Gradle - currently, our tooling is concentrated around Maven. I'll see if we can also provide a Gradle plugin.

    -----------------------------

    vCO Package Exim command line tool

    Description:

    Tool command line that offers the package vCO basic import and export transactions. As source or target, it may have the .package file directory.

    Use:

    Java - jar PackageToolCli.jar

    Controls:

    Here are the basic commands indicating the tool the operation to perform.

    fi - importing files

    Imports the package to vCO .package file.

    Fe - exporting files

    Exports the package vCO .package file.

    di - import directory

    The package is important to vCO of directory tree.

    Ed - directory export

    Exports the vCO to the directory tree package.

    FD - file in the directory

    Create the directory tree .package file.

    Parameters of the command:

    The direct parameters that relate to the specific command. Source or destination files or directories.

    FI

    -Name of the .package file to import.

    fe []

    -Name of the package to export.

    -Directory to export. If this isn't a directory specified, current is assumed.

    di

    -Directory from which to import.

    de []

    -Name of the package to export.

    -Directory to export. If this isn't a directory specified, current is assumed.

    FD

    -Directory to build the .package file.

    Java settings:

    Additional settings that may be needed by the system, in order to execute specific commands.

    -DserverUrl =

    URL and connection of the vCO server against which will be take place imports or exports.

    -DallowedMask =

    Attributes of the package.

    v components can be found

    e editable elements

    f elements can be transferred in other packaging

    -DkeystoreFileLocation =

    Path to the .vmokeystore file that contains the certificate of development

    -DkeystorePassword =

    Password of the .vmokeystore file

    -DexportVersionHistory =

    Export version history

    -Dincludes =

    ';' - separate the list of models showing what are the items to include.

    -Dexcludes =

    ';' - separate the list of models showing the items to be excluded.

    Examples:

    Export com.vmware.test.TestPackage package as a package in the current folder file.

    -DserverUrl=username:password@myserver:8281 java-jar PackageToolCli.jar fe com.vmware.test.TestPackage

    Export the package com.vmware.test.TestPackage as a directory of the current folder structure.

    -DserverUrl=username:password@myserver:8281 java-jar com.vmware.test.TestPackage PackageToolCli.jar

    Import com.vmware.test.TestPackage.package file package vCO server.

    -DserverUrl=username:password@myserver:8281 java-jar PackageToolCli.jar fi com.vmware.test.TestImpex.package

    (Note: the next two commands require a development certificate in order to accomplish)

    Build the .package file in directory structure.

    Java-DserverUrl=username:password@myserver:8281-DkeystoreFileLocation=/path/to/my_cerificate.vmokeystore

    -DkeystorePassword = mypassword-jar PackageToolCli.jar fd com.vmware.test.TestPackage

    Import the directory structure com.vmware.test.TestPackage package to the server vCO.

    Java-DserverUrl=username:password@myserver:8281-DkeystoreFileLocation=/path/to/my_cerificate.vmokeystore

    -DkeystorePassword = mypassword-jar PackageToolCli.jar di com.vmware.test.TestPackage

    The last two commands is also in charge of the allowedMask, the exportVersionHistory and includes / excludes java settings, which offer more control to content and access attributes of the package.

    -DallowedMask = vf

    Creates a package that cannot be edited.

    -DexportVersionHistory = true

    Keeps a history of local versions of objects vCO developed between exports and imports.

    -Dincludes = "" * / Test Package/**/*.element_info.xml;**/Test Samples/**/*.element_info.xml;**/testPackage/**/*.element_info.xml ""

    Includes only the objects that have '. '. element_info.xml"descriptor (which is specific for parcels exported as trees of directories), the folders in the library of tests and samples (for workflows) or testPackage (for actions).

  • InDesign/InCopy package created by CCP asking (disabled) application CC

    We create the installation packages for the new version of the Creative Cloud 2015, for use by our staff and teachers of higher education. We have the appropriate volume license an ETLA, I think. Creative cloud Packer (CCP) allows us to produce Mac OS X installation packages, we then distribute using a software, like JAMF Casper management solution. We are building a package for each application (Photoshop.pkg, FlashPro.pkg, PremierePro.pkg, etc.), and three "bundles", roughly resembling the beams CS6 - Master Collection.pkg, Design and Web Premium.pkg and Premium.pkg of Production. When you create the package, we disable the creative Cloud application and use of Adobe Update Manager to manage updates. We use the RemoteUpdateManager behind the scenes to update the software. AdobeID created by our teachers and staff is not associated with our volume license, so the creative Cloud application is of little use, since (to the best of my knowledge, at least) requires a subscription to creative cloud in order to run.

    With the new version, Mac OS X package we build that contains InDesign or InCopy 2015 and installed on a Mac OS X 10.10.x system (I'll test on 10.9.x tonight and tomorrow) will display the following error message message:

    CreativeCloudMissing.png

    "Adobe Creative Cloud is necessary to solve this problem. However, it is missing or damaged. Please download and install a new copy of the creative cloud of 'http://www.adobe.com/go/adobecreativecloudapp'. »

    The package has been rebuilt from scratch in CCP to ensure that the creative cloud application has been disabled. When this new package has been installed, the system rebooted, and each started application, the application always invited the creative cloud application installation information. The guest would not display if InDesign or InCopy is left and is started again during the same connection session. However, the first time or the other application is started after the restart, invites her missing Adobe Creative Cloud is redisplayed. Other applications start normally without displaying the command prompt.

    No other package that we have built for versions of Creative Cloud 2015 exhibits this behavior.

    Packages created for 2014 and original creative cloud versions do not have this behavior.

    Please notify. Is this a bug in InDesign and InCopy applications?

    Hi all

    Just to make the point on this issue.

    We have identified the problem with the team produced and looked at the fastest way to solve for customers. We decided that we will do an another rev of the CCP that will incorporate a fix for the problem. The new version of the CCP will be activated Monday 29. What I would say, is to wait until the new version of the CCP will live on Monday. Once you have updated to simply re-create the package and install. The question should no longer be visible. Simply start and restart to ensure.

    Yet once again thank you all so much for your patience and help diagnose the problem. We review it internally and will try and ensure that this does not happen again.

    The article will also be updated shortly.

    See you soon

    Karl Gibson | Product Manager | Company, COMPUTER tools

  • Simultaneous modification package Variable

    I have the following, defined public global variable in a package specification:

    create or replace package my_pkg is
    my_variable number: = 0;
    ...
    end my_pkg;

    Is it possible for procedures in other packages (or in the same package) to simultaneously access/change the value of my_variable, or is there some kind of locking mechanism to protect against this? If not, is there an any semaphore application that would allow me to manually protect a shared resource?

    907968 wrote:

    Is it possible for procedures in other packages (or in the same package) to simultaneously access/change the value of my_variable

    # Package is an object. When the session made reference package for first time package is instantiated in memory of the session. If several sessions call same package each session works with another instance of this package. Simultaneous access is not possible.

    SY.

  • More users of WebBasic and marketing of packages?

    Hello

    I wanted to know (if someone from the British Colombia team is reading this) why the pricing model is so strict and why I can't add other users on other packages except for e-commerce? I have many clients that only need a Marketing plan of the site, but have requirements for additional users to the admin of the site. The leap from Marketing to e-commerce with 5 users is medium to large.

    This basically excludes BC for sites that don't require e-commerce which makes it very difficult for me to convince and sell BC to new customers.

    Y at - it an option to add additional users to commerce sites no?

    See you soon

    Micha

    Thank you for posting.

    You can buy additional users, credits newsletter, etc., separately from any regime. Please visit the following link http://helpx.adobe.com/business-catalyst/kb/detailed-plan-breakdown.html#id_32561

    However, if your site is one of the free sites you get with membership of creative cloud, you will not be able to buy something more for the moment.

    Kind regards

    Scott Raj Rouanet

  • Firewall packages, caps, and Applet

    Hello

    I'm new in Java Card technology, and I doubt a thing. I have three Java packages in my school project. My JavaCard applet is placed inside one of them, and this applet uses instances of classes that are placed in the other packages. I don't know if I understand, but the converter will make a PAC file each of my packages (this means three packages)? Can I install all of those packages on JavaCard and how to use them?
    It's a bit confusing to me. I'd be firewall to worry since there are different hats?
    Or should I place all of these classes within a single package and just install a PAC file that will be generated for the whole package?

    Thank you
    Neven

    Edited by: 847201 the 24.03.2011. 14.55

    847201 wrote:
    I don't know if I understand, but the converter will make a PAC file each of my packages (this means three packages)?

    That is right. For each package referenced by another package, you will also get an EXP file. It is mainly used to connect the packages at the time of the conversion.

    Can I install all of those packages on JavaCard and how to use them?

    As long you load packages in the correct order for each package that is used in a PAC file is already on the map, there is no difference in your code to use classes. The only difference is that the order of loading must be correct.

    It's a bit confusing to me. I'd be firewall to worry since there are different hats?

    The firewall of the applet is more for when you have several applet tries to access the same data. There are different requirements for a library package (for example, what can be done in a constructor) so you should read about it in the documentation of JC and the plug. There is overhead to access the instance methods on your class, as the firewall will check to see if there is a change of context that is required. The book Card (TM) Java technology for smart cards: Guide to the Architecture and the programmer has a good article on the firewall of the applet.

    Or should I place all of these classes within a single package and just install a PAC file that will be generated for the whole package?

    If you do not need to reuse code among different applet that will work as well. If your project becomes too large, you will need to split as there are limits on certain things in the spec FRENCH_TRAVELLER_64 such as the number of classes and methods, etc. When we have reached this limit, we had a significant amount of code, so I doubt that you will hit this limit with a school project.

    See you soon,.
    Shane

  • Packages and poorly Ref Cursor

    SQL Server Developer, I fight with Oracle to say the least. I fought with the poor performance of the extraction of data from the database, but also a multitude of other things. The last number I have is a stored procedure in a package that does not work when run from my .NET code. I have many other packages and stored procedures that are working, but this one is a failure. I don't get any errors, just no data when I should be.

    I would run the toad package and see if it is the stored Proc and packaging, or if there is a problem in my .NET code. My stored procedure accepts a single PARAMETER of type integer, and has two parameters SYS_RefCursor OUT. My SQL uses the parameter (ID field) to select from a table. If I run the select SQL by itself with the hardcoded value ID, it works fine. I can run too where it uses the SQL for open cursors and inserts the data but I can't determine if it worked.

    So, my questions are the following:

    Can I select a Ref_Cursor? I'm trying to do something like that.
    results_cursor SYS_REFCURSOR;
    
    OPEN results_cursor FOR
       SELECT * FROM Person;
    
    SELECT * FROM results_cursor;
    If I could get the 1st issue a response, I can keep up with my next question.

    Thanks in advance.
    Jeff

    Hello

    I don't see an issue of .NET at this point, so you can have the best chance to post in the forum PLSQL, as it seems that if you need help writing a procedure, rather than interacting with a procedure well known in .NET:
    SQL and PL/SQL

    I'm not clear on your question though. Yes, you can read from a slider ref, and you do it by getting him.

    SQL > set serveroutput on

    SQL > declare
    Ref1 2 sys_refcursor;
    3 rec1 emp % rowtype;
    Number 4 NTC;
    5. start
    6. open ref1 for select * from emp;
    7 LOOP
    8 FETCH INTO rec1 ref1;
    9 OUTPUT WHEN ref1% NOTFOUND;
    10 DBMS_OUTPUT. Put_line (' name = ' | rec1.ename);
    11 END OF LOOP;
    12 end;
    13.
    Name = SMITH
    Name = ALLEN
    Name = WARD
    Name = JONES
    Name = MARTIN
    Name = BLAKE
    Name = CLARK
    Name = SCOTT
    Name = KING
    Name = TURNER
    Name = ADAMS
    Name = JAMES
    Name = FORD
    Name = MILLER

    PL/SQL procedure successfully completed.

    SQL >

    Maybe if clarify what you are trying to do or accomplish in "selecting from a ref cursor" it would be useful.

    Greg

  • Applet with multiple packages

    Hello.

    In the book "Java Card Technology for smart cards" by Zhiqun Chen in the 3.9 it is described the application development process and mentioned something that caught my attention:

    "* If an applet consists of several packages, a PAC file and export file are created for each package."

    Could someone please show an example of an applet which includes several packages?

    I'm not sure that you understand the design. Right now, in my development, I have a few packages and a few cmdlets in each package, but not vice versa. How the applet may include a package?

    If it is an example, a new question he poses: how the objects of the applet on a package accesses its own methods of another package (unless it belongs to the class that implements shareable)? Java card firewall would allow? It seems to me, it shouldn't because the other package means another context.

    Please, help me out here. Thank you.

    An applet will only ever be in one package. What they reference, is an applet that uses several packages. Each package is a separate file from the CAP. If a package was not an applet that is a library package and is treated slightly differently (see the documentation for JCDK for an explanation). Each package that is used by another package requires the file to be converted against EXP. A library package is treated somewhat differently by the firewall. Instance data that he belongs to the context of the applet that created.

    See you soon,.
    Shane

  • Where to download the latest Flash player (V 9.0.280 - September 2010) package for Flash CS3 pro (editor)?

    Hello

    It is a problem of vulnerability detected by 'Kaspersky Anti-virus' readers Flash (s) in the editor in Flash CS3
    See pages here
    http://www.SecureList.com/en/advisories/40907
    http://www.Viruslist.com/FR/advisories/40907

    And give the link to solve this problem in this page
    http://www.Adobe.com/support/flashplayer/downloads.html#FP9
    is not good...

    And not sure that files V 9.0.280.0 gived in this archived page (http://kb2.adobe.com/cps/142/tn_14266.html), are compatible with Flash CS3?
    Are not the same files (not the same weight and the name) than in old V 9.0.262.0 (46 MB) package...
    V 9.0.262.0 now detected as 'vulnerable '.

    I want that the last update to V 9.0.280 (or 283?) of this players (s!) Flash for Flash CS3 pro in this page

    http://www.Adobe.com/support/Flash/downloads.html#flashCS3

    In fact on this page good and good old package, get out again only the V 9.0.262.0 file (46 MB) 2010-02-11.

    Where is the same package in the latest version (September 2010) V 9.0.280 (or 283?)?

    THX

    PS: Only this package (for Flash pro CS... Editor) in more than 40 MB (and normally in the "ZIP" format) is good! package.

    Not pages with Flash Player file (for navigator) for +/-3 MB or other packages of Flash player of +/-20 MB (for developers or old system) and containing only not the right files for Flash Pro CS3.

    Glad that you have confirmed with the path and size, else it would take a position more to clarify

    Those you need to download is:

    The first file is in the Players\Debug directory.

    The second goes into the Players\Release directory and players (Yes, it's the same file - check the size)

    Once you put the files here, remove the 'old' and rename the new as FlashPlayer.exe

    See you soon

    Vikas-

Maybe you are looking for