Description Resource Path Location Type .... Warning Msg ....

Hi there,
I'm using some code from way back and I'm trying to use it within a newer project.
The original code is as follows:
     import mx.styles.CSSStyleDeclaration;
     import mx.styles.StyleManager;
protected static function classConstruct ():Boolean {
    if (!StyleManager.getStyleDeclaration("Page")){
        var defaultStyles:CSSStyleDeclaration = new CSSStyleDeclaration();
        for (var i:String in DEFAULT_STYLES){
     defaultStyles.setStyle(i, DEFAULT_STYLES[i]);
     StyleManager.setStyleDeclaration("Page", defaultStyles, true);
     return true;
This gives me a couple of Warning !
Description Resource Path Location Type
3608: 'getStyleDeclaration' has been deprecated since 4.0.
Please use 'IStyleManager2.getStyleDeclaration on a style manager instance'.
Page.as line 146 Flex Problem
I have been trying to change it, but I get Error Msg's now !
     import mx.styles.CSSStyleDeclaration;
     import mx.styles.IStyleManager2;
protected static function classConstruct ():Boolean {
    if (!IStyleManager2.getStyleDeclaration("Page")){
        var defaultStyles:CSSStyleDeclaration = new CSSStyleDeclaration();
        for (var i:String in DEFAULT_STYLES){
     defaultStyles.setStyle(i, DEFAULT_STYLES[i]);
     IStyleManager2.setStyleDeclaration("Page", defaultStyles, true);
     return true;
Any help would be very much appriciated. regards aktell2007

Get a style manager instance by calling styleManager on a UIComponent or calling StyleManager.
getStyleManager(moduleFactory);
Each Application/Module has a style manager so using the top-level application will only work correctly if you do not use modules or sub-applications. Otherwise if a module calls code and sets a style into the top-level style manager, the module will be pinned in memory by that reference.
As Alex said, put a defaults.css in your library.swc to set default styles. Look at how it is done in framework.swc and spark.swc.
-Darrell

Similar Messages

  • Resource path

    First I checked it was all OK without POSIX and it works:
    display dialog "Open last saved or choose file" buttons {"Open last", "Open other"} default button 2
    if button returned of result is "Open last" then
    set val1 to alias (read file "Macintosh HD:Users:Richard:Library:Scripts:Richard's Text Editor 3.scptd:Contents:Resources:Save Location Pref.txt")
    --Read pref file to find out path of last edited file.
    if val1 is "Default" then
    EditFile("no")
    else
    EditFile(val1)
    end if
    else
    EditFile("no")
    end if
    on EditFile(val2)
    if val2 is "no" then
    set val3 to (choose file with prompt "Please select a .txt file:
    To save a text file as .txt in TextEdit, click 'Make Plain Text' in the Format menu and save the file.")
    --Get file path.
    else
    set val3 to val2
    end if
    if (get eof val3) is 0 then --Read doesn't like eof (end of file) to be 0 bytes.
    set val4 to ""
    else
    set val4 to read val3 --Read file before it gets erased.
    end if
    open for access val3 with write permission --Open file.
    repeat
    set eof val3 to 0 --Erase file.
    display dialog "Edit your text." default answer val4 buttons {"Revert", "Save"}
    set {val5, val6} to {text returned of result, button returned of result}
    if val6 is "Save" then
    write val5 to val3
    exit repeat
    else
    write val4 to val3
    end if
    end repeat
    --Write to file giving old data as default (to give the same affect as as read and edit).
    close access val3
    open for access file "Macintosh HD:Users:Richard:Library:Scripts:Richard's Text Editor 3.scptd:Contents:Resources:Save Location Pref.txt" with write permission
    set eof file "Macintosh HD:Users:Richard:Library:Scripts:Richard's Text Editor 3.scptd:Contents:Resources:Save Location Pref.txt" to 0
    write (val3 as string) to file "Macintosh HD:Users:Richard:Library:Scripts:Richard's Text Editor 3.scptd:Contents:Resources:Save Location Pref.txt" as text
    close access file "Macintosh HD:Users:Richard:Library:Scripts:Richard's Text Editor 3.scptd:Contents:Resources:Save Location Pref.txt"
    --Save path of edited file to pref file.
    end EditFile
    But change that 3rd line to:
    set val1 to alias (read file (path to resource "Save Location Pref.txt"))
    gets the error:
    Can’t make file (alias "Macintosh HD:Users:Richard:Library:Scripts:Richard's Text Editor 3.scptd:Contents:Resources:Save Location Pref.txt") into type file.

    Use the following as the third line:
    set val1 to alias (read file ((path to resource "Save Location Pref.txt") as string))
    (47286)

  • Struts - Parsing error processing resource path

    StandardContext[bmd2]Marking servlet action as unavailable
    StandardContext[bmd2]Servlet /bmd2 threw load() exception
    javax.servlet.UnavailableException: Parsing error processing resource path
         at org.apache.struts.action.ActionServlet.handleConfigException(ActionServlet.java:1035)
         at org.apache.struts.action.ActionServlet.parseModuleConfigFile(ActionServlet.java:1014)
         at org.apache.struts.action.ActionServlet.initModuleConfig(ActionServlet.java:955)
         at org.apache.struts.action.ActionServlet.init(ActionServlet.java:470)
         at javax.servlet.GenericServlet.init(GenericServlet.java:256)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1044)
         at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:887)
         at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3948)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4271)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:866)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:850)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:633)
         at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:316)
         at org.apache.catalina.core.StandardHost.install(StandardHost.java:859)
         at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:723)
         at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:473)
         at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1002)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:393)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:166)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:816)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1125)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:518)
         at org.apache.catalina.core.StandardService.start(StandardService.java:519)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:2343)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:581)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:297)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:398)
    struts-config.xml
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!DOCTYPE struts-config PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN"
    "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd">
    <struts-config>
    <!-- ======================================== Data Source Definitions -->
    <data-sources>
         <data-source>
         <set-property property="driverClass" value="com.mysql.jdbc.Driver" />
         <!-- old name is com.mysql.jdbc.Driver -->
         <set-property property="url" value="jdbc:mysql://localhost/microarray" />
         <set-property property="maxCount" value="5"/>
         <set-property property="minCount" value="1"/>
         <set-property property="user" value="apache"/>
         <set-property property="password" value=null />
    </data-source>
    </data-sources>
    <!-- ======================================== Form Bean Definitions -->
    <form-beans>
    <!-- Logon Form offers user to enter credentials to sing in -->
    <!-- name specify the name of the Bean used -->
    <!-- type specify the location and the class name -->
    <form-bean
    name="logonForm"
    type="logon.LogonForm"/>
    </form-beans>
    <!-- ================================= Global Exception Definitions -->
    <global-exceptions>
    <!-- sample exception handler
    <exception
    key="expired.password"
    type="app.ExpiredPasswordException"
    path="/changePassword.jsp"/>
    end sample -->
    </global-exceptions>
    <!-- ================================== Global Forward Definitions -->
    <global-forwards>
    <forward name="logon" path="/logon/Logon.do"/>
    <forward name="logoff"path="/Welcome.do"/>
    <!-- Default forward to "Welcome" action -->
    <!-- Demonstrates using index.jsp to forward -->
    <forward name="welcome" path="/Welcome.do"/>
    </global-forwards>
    <!-- =================================== Action Mapping Definitions -->
    <action-mappings>
    <!-- Default "Welcome" action -->
    <!-- Forwards to Welcome.jsp -->
    <action
    path="/Welcome"
    type="org.apache.struts.actions.ForwardAction"
    parameter="/pages/Welcome.jsp"/>
    <action
    path="/logon/Logon"
    type="org.apache.struts.actions.ForwardAction"
    parameter="/pages/logon/Logon.jsp"/>
    <!-- LogonSubmit action -->
    <action
    path="/logon/LogonSubmit"
    type="logon.LogonAction"
    name="logonForm"
    scope="request"
    validate="true"
    input="/pages/logon/Logon.jsp">
    <forward name="userpage" path="/pages/user/User.jsp"/>
    </action>
    </action-mappings>
    <!-- ===================================== Controller Configuration -->
    <controller
    processorClass="org.apache.struts.tiles.TilesRequestProcessor"/>
    <!-- ================================ Message Resources Definitions -->
    <message-resources parameter="resources.application"/>
    <!-- ======================================= Plug Ins Configuration -->
    <!-- ========== Tiles plugin =================== -->
    <plug-in className="org.apache.struts.tiles.TilesPlugin" >
    <set-property property="definitions-config" value="/WEB-INF/tiles-defs.xml" />
    <set-property property="moduleAware" value="true" />
    <set-property property="definitions-parser-validate" value="true" />
    </plug-in>
    <plug-in className="org.apache.struts.validator.ValidatorPlugIn">
    <set-property
    property="pathnames"
    value="/WEB-INF/validator-rules.xml,/WEB-INF/validation.xml"/>
    </plug-in>
    </struts-config>
    Anyone can give me some hints on where the error is?
    i have struts.jar and the other struts related files in \WEB-INF\lib

    I ran your file through an XML parser and the only error was on the line:<set-property property="password" value=null />because there are no quotes around "null". Fix that and try again. If you're using an IDE, there should be an option to validate the XML file which enables you to check struts.config before starting up the app.

  • Sales order- Warning msg Static credit check

    Hi, SAP Guru,
    When I create a order & saving it ...a POP UP comes with warning msg the static credit limit exceeds..... Can any one please let me know the how I can remove the warning POP UP . As client do not want any pop up should come while saving the order.
    Please help.
    Thx & regards

    Hi,
    If you remove the entry from the field "Check credit" in "OVAK" T.Code,the credit check will not happen for this order type.Which we don't want.
    We need that the credit check should happen but the pop-up is to be removed.right?
    For this goto the T.Code "OVA8".
    Select your valid entry.Details.
    Remove the value as "blank" for the field "Reaction".Press F4 for more options.
    Beside this there is one more field "status/block" which is ticked means the order will be blocked for further transactions.And also status will be updated accordingly.
    These blocked order have to be released either by using the T.Code "VKM3/VKM1".
    Regards,
    Krishna.

  • SSIS - Change Config File Path LOCATION in SQL Agent Job Step (NOT USING DTEXEC)

    SSISers;
    I am not new to ssis but am trying to deal with promoting of ssis config files differently for a specific project. We are using SQL 2008 R2.
    As a standared pattern used for years, we just use SQL Agent, build a job step for the ssis package, add the ssis package as SQL Integration Services Package type from fileshare (not using Integration Services), and add the necessary production
    config files in the configutation tab of the job step. Easy.  We do not execute our packages with DTEXEC command line.
    A new project has the developers leaving the config files in the package - not removing the config files for deployment. Is there a way to override JUST THE CONFIG FILE PATH LOCATION in the job step for ssis package? Remember, we are NOT using dtexec. 
    I was told that /SET might do it but I do not see a good example anywhere of hooking this in and how it works for a CONFIG FILE PATH LOCATION - I see variable overrides but not CONFIG FILE PATH LOCATION. The packages were written with Absolute config file
    path and not Relative path.
    Please understand that my goal is to let them leave the packages as is, we move the config files to the production sever and all we have to do is flip the location of where the config files are sitting for the ssis pacakge to look for them.  We would
    rather NOT have to use DTEXEC command  line with the job step for reasons that I do no need to get into on this forum.
    Any suggestions are appreciated.

    Hi mg30,
    There is no way to overwrite the XML configurations file just through modifying the SQL Server Agent job steps.  The Dtexec utility will apply the default package configurations for the second time after applying the options specified in the command
    lines or other package configurations configured in the job step.
    If the package is not deployed/installed, the Dtexec utility looks for the XML configurations file according to the file path defined in the Package Configurations Organizer window. In this situation, you need to either disable the package configurations
    or modify the XML file path in the BIDS.
    If the package is already deployed/installed, you need to modify the package as above or re-specify the install folder for the package configurations file. 
    Regards,
    Mike Yin
    If you have any feedback on our support, please click
    here
    Mike Yin
    TechNet Community Support

  • Ho do we make msg. CK666 become warning msg when we do costing run?

    Dear Experts,
    The sys. activate transfer price for preserve use.
    When we do costing run for profit center valuation, the following error msg ocurred.
    CK666 Material 227BO0001/plant 1030: Transfer price could not be found.
    Diagnosis
    When switching profit center 0000008000->0000005000 (from the material component to the costing object), a transfer price could not be determined for transfer price variant 0 in respect of material 227BO0001 in plant 1030.
    System Response
    If you carry out costing for a profit center valuation, material 227BO0001 goes into the cost estimate without a value.
    If you create a cost estimate for group valuation, profit from material 227BO0001 is not transferred into the cost component split.
    Procedure
    Check the settings for transfer price variant 0.
    In OKEQ, the variant for TP is blank.
    Ho do we make msg. CK666 become warning msg when we do costing run? and let costing result can be release, or there's another way?
    Thanks in advance.

    There is alternative solution.
    Try using TCode SE91.
    Enter the class - CK and Enter the message number 666.
    Select that line message line.
    Go to Utilities, Click on "Where-Used-list" or press "CtrlShiftF3" from keyboard.
    Select programs and deselect all others.
    Identify your program and double click against that under short description.
    There you can change the letter from "E" to "W" as your requirement.
    NOTE: take assistance of ABAPer of this, Do enquire about the implication of the same in sandbox before doing anything on any other client.
    Thanks & Regards
    JP

  • Where warning msg & error  msg are maintained in SPRO

    Dear All,
                              pl give the menu path to know that Where warning msg & error  msg are maintained in SPRO.
    regards
    sap11

    Hi,
    In case of Purchasing, the path to maintain warning & error messages is:
    Material Management->Purchasing->Environment Data->Define Attributes of System Messages
    In case of Inventory Management,
    Material Management->Inventory Management and Physical Inventory->Define Attributes of System Messages
    In case of External Service Management,
    Material Management->External Services Management->Define Attributes of System Messages
    In case of Logistics Invoice verification,
    Material Management->Invoice Verification->Logistics Invoice Verification->Define Attributes of System Messages
    In case of Material Master,
    Logistics - General->Material Master->Basic Settings->Define Attributes of System Messages
    Then, for eash message no., Maintain whether the message is to be shown as warning or error or information message.
    Reward if useful.
    Thanks & Regards,
    Komal

  • Netbeans  "resource path"

    Hi!
    I'm trying to create my first midlet using Screen Design. I've got problems with loading an image. I've added ImageItem and in Inspector window in Resources there's variable of Image type used by the ImageItem. In its properties there's Resource Path property. I tried to set it in Project Properties\Build\Libraries & Resources\ (I created folder "res" with few sample png & gif images inside my project folder) but when i click in Image properties on Resource Path to set the image there are no images to choose from. Where do i have to set this Resource Path?

    well, it seems there is a bug in the image chooser - it doesn't refresh content of the folder. However, you can specify the path manually - if you have for instance
    ${project}/res/image.png, type in /image.png. Also, you will be able to see all the images after restaring the IDE. The bug wil; be fixed soon.

  • Dynamic file send port configure with variable store path location

    hi ,
    i done like dynamic file send port:
    Port_7(Microsoft.XLANGs.BaseTypes.Address)="sw"; --> sw is path location  string type variable
    Port_7(Microsoft.XLANGs.BaseTypes.TransportType)="FILE";
    here sw is path location :C:\Users\00134\Desktop\Rec\sqltest\senddate.
    but it is not working where im wrong?

    try this 
    Port_7(Microsoft.XLANGs.BaseTypes.Address)="file://"+
    sw +@"\%MessageID%.xml";

  • Gramps 4.0.0-1 giving Resource Path error

    Is it me or is anyone else getting gramps failing to run on a fully updated system with the error:
    $ pacman -Qi gramps
    Name : gramps
    Version : 4.0.0-1
    $ gramps
    ResourcePath.ERROR: Resource Path /build/pkg/gramps/usr/share is invalid

    I'm getting it to semi-work by using just the following command (no other mods or environment variables) to generate the resource-path file (as root):
    echo -n /usr/share > /usr/lib/python2.7/site-packages/gramps/gen/utils/resource-path
    Note the "-n". The resource-path file cannot have any whitespace (including carriage return) after the path. By doing this, gramps will start (just "gramps" at the command line), though I first get the
    No handlers could be found for logger "grampslocale"
    warning, followed by a series of error panels that state things like
    2013-05-23 18:41:01.375: ERROR: grampsapp.py: line 114: Unhandled exception
    Traceback (most recent call last):
    File "/usr/lib/python2.7/site-packages/gramps/gui/widgets/validatedmaskedentry.py", line 1174, in do_changed
    if self._block_changed:
    AttributeError: 'Entry' object has no attribute '_block_changed'
    After clicking through all those, my database is open and I can navigate as usual. However, I continue to get _block_changed errors as I move around. In addition, I will say that 4.0.0 looks very raw - the UI could use a lot of spit and polish to bring it up to the usability of 3.4.4.
    Mike

  • How to display name of the table and the description and the table type

    Hi,
    Can you people tell me how to display the name of the table and the description and the table type (View, structure, etc...) used in the program.
    I want to display in a list.
    Kind Regards

    use this program
    TABLES : TSTC, tstct.
    TABLES : DD03l, DD02l.
    DATA : Program like sy-repid.
    DATA : BEGIN OF I_FINAL OCCURS 0,
    tabname LIKE dd02l-tabname,
    TABCLASS LIKE dd02l-tabCLASS,
    TEXT LIKE DD02T-DDTEXT,
    END OF I_FINAL.
    DATA : BEGIN of ITAB Occurs 0,
    name like dd02l-tabname,
    END OF ITAB.
    DATA : TCD(100) TYPE C.
    DATA : var1 LIKE dd02l-tabname.
    DATA : DESC LIKE TSTCT-TTEXT.
    selection-screen skip.
    SELECTION-SCREEN : BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS : r1 RADIOBUTTON GROUP r DEFAULT 'X'.
    Parameters : Tcode like sy-tcode.
    selection-screen skip.
    PARAMETERS : r2 RADIOBUTTON GROUP r.
    Parameters : Prog like sy-repid.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE text-001.
    select-options : Type for dd02l-tabclass .
    SELECTION-SCREEN END OF BLOCK B1 .
    at selection-screen.
    if r1 = 'X' and Tcode is initial.
    message e001(00) with 'Enter Transaction Code' .
    elseif r2 = 'X' and Prog is initial.
    message e001(00) with 'Enter Program Name' .
    endif.
    START-OF-SELECTION.
    if r1 = 'X'.
    Prog = ' '.
    select single * from TSTC where tcode = tcode.
    if sy-subrc = 0.
    program = TSTC-PGMNA.
    select single TTEXT from tstct into desc where tcode = tcode and SPRSL = 'E'.
    else.
    Write :/ 'Invalid Transaction Code'.
    exit.
    endif.
    elseif r2 = 'X'.
    Tcode = ' '.
    program = Prog.
    endif.
    CALL FUNCTION 'GET_TABLES'
    EXPORTING
    PROGNAME = Program
    TABLES
    TABLES_TAB = itab.
    if itab is initial.
    skip.
    skip.
    skip.
    skip.
    skip.
    WRITE :/40 'No Data Found' color 6 INTENSIFIED OFF.
    ELSE.
    PERFORM : categorize.
    endif.
    END-OF-SELECTION.
    LOOP AT I_FINAL.
    WRITE :/4 I_FINAL-tabname COLOR 2 INTENSIFIED OFF NO-GAP HOTSPOT ON, 35 I_FINAL-TABCLASS COLOR 2 INTENSIFIED OFF NO-GAP,
    50 I_FINAL-TEXT COLOR 2 INTENSIFIED OFF NO-GAP.
    ENDLOOP.
    AT LINE-SELECTION.
    TCD = SY-LISEL.
    var1 = TCD+3(30).
    set parameter id 'DTB' FIELD VAR1.
    call transaction 'SE11' and skip first screen.
    TOP-OF-PAGE.
    WRITE :/45 'TABLE DETAILS RELATED TO THE TRANSACTION CODE' COLOR 7 .
    WRITE :/2 'DATE : ' COLOR 1, SY-DATUM COLOR 1 INTENSIFIED OFF NO-GAP.
    WRITE :/2 'TRANSACTION CODE : ' COLOR 1, Tcode COLOR 1 INTENSIFIED OFF NO-GAP.
    WRITE :/2 'TCODE DESCRIPTION : ' COLOR 1, desc COLOR 1 INTENSIFIED OFF NO-GAP.
    WRITE :/2 'PROGRAM NAME : ' COLOR 1, PROGRAM COLOR 1 INTENSIFIED OFF NO-GAP.
    SKIP 1.
    WRITE :/1(140) SY-ULINE.
    WRITE :/4 'TABLE NAME' COLOR 5 INTENSIFIED OFF NO-GAP,35 'TABLE TYPE' COLOR 5 INTENSIFIED OFF NO-GAP,
    55 'DESCRIPTION' COLOR 5 INTENSIFIED OFF NO-GAP.
    WRITE :/1(140) SY-ULINE.
    *& Form categorize
    text
    --> p1 text
    <-- p2 text
    FORM categorize .
    SELECT dd02ltabname dd02ltabCLASS DD02T~DDTEXT
    FROM dd02l INNER JOIN DD02T ON dd02ltabname = dd02Ttabname
    INTO TABLE I_FINAL
    FOR ALL ENTRIES IN itab
    WHERE DD02L~TABNAME = ITAB-NAME AND TABCLASS IN TYPE AND DDLANGUAGE = 'E'.
    if sy-subrc <> 0.
    skip.
    skip.
    skip.
    skip.
    skip.
    WRITE :/40 'No Data Found' color 6 INTENSIFIED OFF.
    endif.

  • Reading the description of Sales document type and Profit centre from table

    Hi
    I want to print the description of Sales document type and Profit center on output
    I have checked in table TVAK and CEPC  but i am unable to pick description against the code
    Can anyone please suggest from where can i capture the description of sales document type and profit centre
    Thanks and Regards
    Sunil Srinivasan

    Hi
    If you have the sales document number VBELN then pass this VBELN in to table VBAK and you can get the sales document type VBAK-AUART.
    Now pass the same VBELN to VBAP table here you can get the Profit Center VBAP-PRCTR
    For sales Document type description you pass the VBAK-AUART values into table TVAKT  table and get the values for TVAKT-BEZEI is you sales document type description
    For Profit center description goto table CEPCT and enter the profit center you will get the
    KTEXT
    LTEXT
    MCTXT
    regards
    Prashanth
    Edited by: Prashanth@SD on Oct 25, 2010 12:29 PM

  • How to remove file path location listings from photos and objects in Acrobat Pro 9.0 PDF?

    After converting a windows-based Powerpoint 2007 presentation to an Acrobat Pro 9.0 PDF, the file path location of all photos and objects are shown in a dialogue box when the cursor is moved over the image as seen in this screenshot below. How can I stop this from happening and remove this feature on my pdf documents? 

    I saw that referenced on a forum, but it does not seem to address the issue I am having.
    As per Adobe Acrobat X Standard * What’s new, the equivalent to the "Tools > Protection > Remove Hidden Information" utility found in Acrobat X Standard is the same as the "Document > Examine Document" feature in Acrobat Pro 9.0. Those tools seem to cover meta data, book marks, hidden text, and deleted or cropped content, but not the file path listings that appear on images and objects converted from Powerpoint presentations and other MS Office programs.
    I have reviewed the settings used while creating a pdf, and have also tried the “Advanced > Preflight tool”, but could not find anything to apply to the issue at hand.
    Thus, this issue has not been resolved, but seems like it should be an easy fix that anyone who publishes pdf documents would want to use to publish clean, professional documents without anyone seeing the file path location of every object and image shown in the document on their hard drive.

  • WARNING MSG

    had my iphone with me out by the pool... it was on the side face down exposed to the sun... warning msg came up with a yellow triangle with an ! in the middle and the word temperature above it... seems to be working fine now... but was playing my ipod at the time and it just stopped playing...

    If the phone gets too hot, it will shut itself down. See p. 132 of the manual... http://manuals.info.apple.com/enUS/iPhone_UserGuide.pdf

  • BINDING.JCA-12510 JCA Resource Adapter location error in SOA 11g Suite

    Hi,
    I am just testing one simple SOA Application in SOA 11g Suite. Created a SOA Composite Application with one DB Adapter at designtime all worked fine with DB Adapter. But when I deploy the Application on the server I get the following error:
    The JCA Binding Component was unable to establish an outbound JCA CCI connection due to the following issue: BINDING.JCA-12510 JCA Resource Adapter location error. Unable to locate the JCA Resource Adapter via .jca binding file element <connection-factory/> The JCA Binding Component is unable to startup the Resource Adapter specified in the <connection-factory/> element: location='eis/DB/soademoDatabase'. The reason for this is most likely that either 1) the Resource Adapters RAR file has not been deployed successfully to the WebLogic Application server or 2) the '<jndi-name>' element in weblogic-ra.xml has not been set to eis/DB/soademoDatabase. In the last case you will have to add a new WebLogic JCA connection factory (deploy a RAR). Please correct this and then restart the Application Server ".Do I need to jndi-name in weblogic-ra.xml if so what is the exact location. Any help is appreciated.
    Thanks

    I did but still not able to connect now getting the following error. I went to the Weblogic Console, clicked on deployments, selected DBAdapter, clicked on configuration ,
    and then I don't see outbound configurations instead it shows Outbound Connection Pools, Under Outbound Connection Pools tab I clicked on New and it asked to select Outbound Connection Group I selected the one that was already there (with JNDI eis/DB/SOADemo) and then created my JNDI which was added to the default Outbound Connection Group and in the end it asked to save the Plan.xml which I saved it under a new directory created under soa directory. But still am not able to connect.
    How do I create my own Connection Group as don't want to use the defualt one out there.
    After creating the JNDI Name it asks for saving the Plan.xml file. Where exactly we save this file. Are there any standards.
    Why can't I update any properties when I click on the new JNDI name it takes to Settings for javax.resource.cci.ConnectionFactory --> Outbound Connection Properties but there I see a save buttn but I can't make any changes.
    BINDING.JCA-12563 Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'getCreditValidationSelect' failed due to: Could not create/access the TopLink Session. This session is used to connect to the datastore. Caused by javax.resource.spi.InvalidPropertyException: Missing Property Exception. Missing Property: [DBManagedConnectionFactory.userName]. You may have set a property (in _db.jca) which requires another property to be set also. Make sure the property is set in the interaction (activation) spec by editing its definition in _db.jca. . ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution. Is there any documentation that lists all these steps as I couldn't find it anywhere. The guide only talks abou DBAdapter but how to configure etc can't find any info. Any help is appreciated.
    Thanks.

Maybe you are looking for

  • Connect iPad to my TV

    Hello, I want to buy a cable from amazon that i can connect my ipad to my Projector OR TV , btw i dont have a fancy new smart tv...i have an old tv with three ports(Yellow, White and Red) . Ive been looking on amazon and i like this one http://www.am

  • Tags entered in code view don't show in design

    I searched a bit, but didn't find any mention of this problem from anyone else... I'm using Dreamweaver MX on OSX 10.2.8. For some reason, when I try to use the basic 120x240 pix text/image product link tags given in the Amazon Associate program, it

  • Invoice Reversal (MM)

    Hi, As per standard SAP when you reverse an IR the amount thats reversed in the reversal of an invoice need not match the amount in the corresponding invoice(OSS note - 46564). Is there any kind of customization we could do in the SAP System or is th

  • CD-RW Fails to burn

    We have several Macs in the house; a G5 iMac and a G4 iMac, both with SuperDrives and a G3 iMac with a CD-RW drive. The problem is finding blank discs that will burn. Is there a certain RW brand or format one must purchase in order to work correctly?

  • I have purchased adobe light room 5 and upon download from the website was asked for me code .... so

    I have purchased adobe light room 5 and upon download from the website was asked for me code so i entered it. then after installation when clicking on the desktop icon i was once again asked for my code. when i entered it a big red cross apeared next