Extending TabNavigator

Hi everyone ! :)
I need to extend the TabNavigator class in order to display a
tab bar containing :
- tabs on the left (as usual)
- a button the user can click on the right
Of course, my button should stay on the right of the tab bar
whatever the size of the TabBarNavigator
I didn't want to start from scratch, so I had a look at
FlexLib and its great SuperTabNavigator. However, my tabNavigator
is much more simpler than the SuperTabNavigator and I just wanted
to extend one class : TabNavigator. I tried this :
quote:
package extensions
import mx.containers. TabNavigator;
import mx.controls. TabBar;
import mx.controls. tabBarClasses. Tab;
import mx.core.mx_internal ;
import mx.core.IFlexDispla yObject;
import flash.display. DisplayObject;
import mx.controls. Button;
import mx.containers. HBox;
import mx.containers. Canvas;
import mx.controls. Spacer;
use namespace mx_internal;
public class extended_TabNavigat or extends TabNavigator
protected var holder:HBox;
protected var spacer:Spacer;
protected var myButton:Button;
public function extended_TabNavigat or()
super();
override protected function createChildren( ):void{
// Tab bar creation
tabBar = new TabBar();
super.createChildre n();
// Holder that will contain my tab bar, a spacer and the
button
holder = new HBox();
// Adds the container to the TabNavigator
rawChildren. addChild( holder);
// Adds the TabBar to the holder container
holder.addChild( tabBar);
// Spacer that will fill the space between the tabs and the
button
spacer = new Spacer();
spacer.percentWidth = 100;
// Adds the spacer to the container
holder.addChild( spacer);
// My button
myButton = new Button();
myButton.label = "Hello world !";
// Adds the button to the container
holder.addChild( myButton) ;
So I created an HBox containing:
- the tab bar
- a spacer filling all available space
- and my button
Unfortunately, it doesn't work... The TabNavigator has no tab
bar nor button...
Do you have any idea why ?
Thanks a lot

If I do it like this, then my button will be on the right,
next to my TabNavigator.
What I want is a button
inside the tabNavigator, at the opposite of the tabBar.
You can see an example here :
http://flexlib.googlecode.com/svn/trunk/examples/SuperTabNavigator/SuperTabNavigator_Sampl e.swf
I want my button to be at the exact same position than the
drop down menu button of the SuperTabNavigator and I don't think
it's possible in mxml.

Similar Messages

  • Tab navigator and swf loader issue

    I have written two flex applications. Each of the
    applications contains a tab navigator control. The direct children
    of this tab navigator are canvases, sized to max.
    i.e.
    <mx:Canvas label="WhateverLabel" width="100%"
    height="100%">
    <!--whatever additional children here-->
    </mx:Canvas>
    Everything works fine, the navigator, all its children and
    grandchildren Application does exaclty as it should ... untill I
    load it into another application using swf loader.
    Our main application is a menu driven app that loads
    individual swf files based on user selection. When either one of
    these programs (using the tab navigator described above) is loaded,
    I get a White Bar across the top of the screen, sized as the Tab
    navigator width.
    the white bar goes away as soon as the user interacts with
    any control, but it still is there on application load. Here is a
    picture of what I am speaking about.
    http://members.cox.net/dragon.magik/whitebar.jpg
    You can see the menu atop the screen as the base application.
    You can then see the panel right beneath it, that is the main panel
    of the application i am having problems with. The white bar, as you
    see, is as wide as my tab navigator. The TN labels are positioned
    correctly, but I don't know why I am getting the white bar. I am
    having the exact same problem with tab navigators in two different
    applications I load into this one control panel. Any help would be
    greatly appreciated. Thanks in advance.

    There is an unsolved bug in adobe.
    You have to solve it manually overriding the function:
    package
         import mx.containers.TabNavigator;
         public class TabNavigatorFixed extends TabNavigator
             public function TabNavigatorFixed()
                 super();
             override protected function  commitSelectedIndex(newIndex:int):void
                 super.commitSelectedIndex(newIndex);
                 if(tabBar.numChildren > 0){
                     // Select the corresponding Tab in the Tab Bar (this  fixes a bug in Flex)
                     tabBar.selectedIndex = newIndex;

  • Ellipsis ... show in tab of Tab navigator

    Hi guys,
    I'm using a TabNavigator component with static height, width and 3  static tabs. My problem is that the Tab navigator shows ellipsis in the  label of the first tab whereas it clearly looks that it does not lack  any space in tab width. how do i rectify it?
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml"  layout="absolute" xmlns:local="*">
         <local:WLTabNavigator id="tn" x="83" y="60" width="210"  height="200" paddingBottom="0"
                          horizontalGap="1" tabHeight="18"  tabWidth="{tn.width/3}">
             <mx:Canvas label="Contacts" fontFamily="Arial"  fontSize="10">
             </mx:Canvas>
             <mx:Canvas label="SMS" fontFamily="Arial" fontSize="10">
             </mx:Canvas>
             <mx:Canvas label="Calls" fontFamily="Arial" fontSize="10">
             </mx:Canvas>
         </local:WLTabNavigator>
    </mx:WindowedApplication>

    I think this is working as designed. Your TabNavigator is 210px wide and with three tabs you're setting each tab to roughly 70px wide (give or take a pixel for gaps). If you don't set ANY tabWidth you can see that the first tab ("Contacts") wants to be about 78px, but you're only allowing 69-70px for the label, hence the truncation.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"  layout="horizontal">
        <mx:TabNavigator id="tn1" width="210"  height="100"
                         horizontalGap="1" tabHeight="18" tabWidth="69">
            <mx:Canvas label="Contacts" fontFamily="Arial"  fontSize="10">
                <mx:Label id="lbl1" creationComplete="lbl1.text = tn1.getTabAt(0).width.toString();" />
            </mx:Canvas>
            <mx:Canvas label="SMS" fontFamily="Arial" fontSize="10">
            </mx:Canvas>
            <mx:Canvas label="B" fontFamily="Arial" fontSize="10">
            </mx:Canvas>
        </mx:TabNavigator>
        <mx:TabNavigator id="tn2" width="210"  height="100"
                         horizontalGap="1" tabHeight="18">
            <mx:Canvas label="Contacts" fontFamily="Arial"  fontSize="10">
                <mx:Label id="lbl2" creationComplete="lbl2.text = tn2.getTabAt(0).width.toString();" />
            </mx:Canvas>
            <mx:Canvas label="SMS" fontFamily="Arial" fontSize="10">
            </mx:Canvas>
            <mx:Canvas label="B" fontFamily="Arial" fontSize="10">
            </mx:Canvas>
        </mx:TabNavigator>
    </mx:Application>
    I think a better approach is probably to set the TabNavigator container's internal TabBar to the same width of the TabNavigator and let the tabs resize themselves to fit. This may help get you started:
    <mx:TabNavigator id="tn3" width="210"  height="100"
                     horizontalGap="1" tabHeight="18"
                     resize="event.currentTarget.mx_internal::getTabBar().width = event.currentTarget.width;">
        <mx:Canvas label="Contacts" fontFamily="Arial"  fontSize="10">
            <mx:Label id="lbl3" creationComplete="lbl3.text = tn3.getTabAt(0).width.toString();" />
        </mx:Canvas>
        <mx:Canvas label="SMS" fontFamily="Arial" fontSize="10">
        </mx:Canvas>
        <mx:Canvas label="B" fontFamily="Arial" fontSize="10">
        </mx:Canvas>
    </mx:TabNavigator>
    Or, since it looks like you are already subclassing TabNavigator, you could possibly move the logic into your subclass instead:
    package {
        import mx.containers.TabNavigator;
        import mx.events.ResizeEvent;
        public class ResizerTabNavigator extends TabNavigator {
            public function ResizerTabNavigator() {
                super();
                addEventListener(ResizeEvent.RESIZE, resizeEventListener);
            protected function resizeEventListener(evt:ResizeEvent):void {
                tabBar.width = this.width;
    Hope that helps,
    Peter

  • Accessing components in TabNavigator on unselected tabs

    Hi there,
    I want to set the value of components (says a rich text
    editor, or image source attribute value, etc.) in tabs that are NOT
    selected. So if I have three tabs say, and I currently have tab 1
    selected and I want to set the value of a text field that is
    visible when tab 2 is selected...how can I achieve this? I know the
    TabNavigator extends the ViewStack class but I'm new to Flex and am
    having difficulty with this. In Java it's a very easy process so
    I'm assuming it would be quite similar in Flex...any help is
    greatly appreciated. Thanks!

    quote:
    I would think this code works, but it gives an error. Anyone
    know why?
    You can't use dot syntax to refer to components that way. If
    you know what that component's id ("futuresLbl") is, why would you
    use such a roundabout way to refer to it anyway? From the Flex
    docs:
    The IDs for all tags in an MXML component, no matter how deeply
    nested they are, generate public variables of the component being
    defined. As a result, all id properties must be unique within a
    document. This also means that if you specified an ID for a
    component instance, you can access that component from anywhere in
    the application: from functions, external class files, imported
    ActionScript files, or inline scripts.
    I imagine if you want to do it the roundabout way, you'd have
    to cast the individual DisplayObjects to the proper type and then
    set the text property on the Label. Note that I use a name
    attribute "futuresLbl" for the Label
    private function clickHandler():void{
    var myVBox:VBox = tb.getChildByName("futures") as VBox;
    var myLabel:Label = myVBox.getChildByName("futuresLbl") as
    Label;
    myLabel.text = "New Futures Information";
    TS

  • Completely hiding tab and content in TabNavigator

    Hi All,
    Does anyone know how to hide a tab in TabNavigator?  I want the tab in the tab bar to dissappear so that you cannot see, click, nor view the tab or associated page.
    I have tried visibility="false", getting rid of the dataProvider cell that corresponds with the tab (this only affects data obviously and not the view), and extending the tabNavigator component (but not successful).
    My setup is:
        <vo:TabNavigator id="mainTabNavigator4Components" selectedIndex="{model.selectedComponentIndex}">
            <mx:Repeater id="rp" dataProvider="{model.components}">
                <mx:Canvas label="{rp.currentItem.team}">
    Thanks for any input everyone.
    Regards,
    Joseph

    The basic idea is to loop through the Tab Navigator's children, use the getTabAt() method to return the Tab as a button, then show/hide the button using the visible property:
            private function disableSomeTabs():void{
                //Called by a tab navigator's creation complete event.
            // This Tab Navigator's id is "Mytn".
                //Hide a Tab with a certain name ('My Hidden Tab').
                var i:int;
                for (i = 0; i < Mytn.numChildren; i++){
                    var dispObj:Button =  Mytn.getTabAt(i);
                    if (dispObj.label == 'My Hidden Tab'){
                        dispObj.visible = false;

  • TabNavigator: Adding Tab Dynamic

    Hi,
    I would like to create an application that is using a
    TabNavigator to show different information (tabs) when user press
    different buttons. I create a button and call a function to add a
    tab into tabnavigator to show a custom control (base on Panel). I
    try it and the program can add the tab and show the correct
    information. But I don't know how to add the label on the created
    tab. Also, can it be any simple method to check it the information
    is shown already in tabnavigator?
    The function is listed below:
    private function addUserRequest():void {
    var ur:DisplayObject = tabControl.addChild(new userRequest);
    var tabNdx:int; // Tab Index
    tabNdx = tabControl.getChildIndex(ur);
    tabControl.selectedIndex = tabControl.getChildIndex(ur);
    return;
    //end of function
    Thanks a lot!
    Wilson

    If
    UserRequest is a custom component which extends
    Panel, the label of the panel will be used as the label of
    the tab when it's added to the
    TabNavigator.
    In order to do this you'll need to define
    ur as a compatible type which has a label property, i.e. as
    a
    Panel or as a
    UserRequest (or whatever it's called):
    var ur:Panel = new UserRequest(); // UserRequest is subclass
    of Panel so compatible.
    ur.label = "A Label"; // I can set this because I am a panel
    tabControl.addChild(ur);
    I'm not sure I understand your last question. Do you want to
    know if the tab with that label already exists?

  • Modules in TabNavigator

    Hello,
    I have TabNavicator container and a few modules inside:
              <mx:TabNavigator x="10" y="41" width="984" height="456">
                   <mx:Canvas label="A" width="100%" height="100%">
                        <mx:ModuleLoader width="100%" height="100%" verticalAlign="middle" horizontalAlign="center" url="modules/module1.swf" />
                   </mx:Canvas>
                   <mx:Canvas label="B" width="100%" height="100%">
                       <mx:ModuleLoader width="100%" height="100%" verticalAlign="middle" horizontalAlign="center" url="modules/module2.swf" />
                   </mx:Canvas>
                   <mx:Canvas label="C" width="100%" height="100%">
                        <mx:ModuleLoader width="100%" height="100%" verticalAlign="middle" horizontalAlign="center" url="modules/module3.swf" />
                   </mx:Canvas>
                   </mx:TabNavigator>
    Each of these modules have same creationComplete event:
    creationComplete="init()"
    where they read database and update some views.
    All I want it to make this init() function to execute everytime I select proper tab inside which I have some module.
    For example when i click on "A" tab module1 will be displayed but it shuld also call init() then.
    Unfortunately creationComplete is fired only once - when module is loaded for the first time ( or maybe it loaded one and only one - i don't know).
    Do you know how to make it work?

    Ok, so what do I have now:
    1) an interface:
    package modules
        import flash.events.IEventDispatcher;
        public interface IModuleInterface extends IEventDispatcher {
            function refresh():void;
    2) main module that loads other modules in TabNavigator:
    <mx:TabNavigator x="10" y="41" width="961" height="458"  id="tab">
         <mx:Canvas label="A" width="100%" height="100%">
         <custom:CustomModuleLoader  width="100%" height="100%" verticalAlign="top" horizontalAlign="left" url="modules/module1.swf" />
         </mx:Canvas>
         <mx:Canvas label="B" width="100%" height="100%">
              <custom:CustomModuleLoader width="100%" height="100%" verticalAlign="top" horizontalAlign="left" url="modules/module2.swf" />
         </mx:Canvas>
         <mx:Canvas label="C" width="100%" height="100%">
              <custom:CustomModuleLoader  width="100%" height="100%" verticalAlign="top" horizontalAlign="left" url="modules/module3.swf" />
         </mx:Canvas>
    </mx:TabNavigator>
    CustomModuleLoader:
    <mx:ModuleLoader xmlns:mx="http://www.adobe.com/2006/mxml" xmlns="*" creationComplete="init()">
      <mx:Script>
        <![CDATA[
        public function init():void {
            addEventListener("ready", onReady);
        public function onReady(event:Event):void {
            var ichild:* = this.child as IModuleInterface;
            ichild.refresh();
    and modules that are loaded in main module:
    <mx:Module xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init()" implements="modules.IModuleInterface">
         <mx:Script>
              <![CDATA[
                             public function refresh() : void
                                 mx.controls.Alert.show('tasks refresh');
              ]]>
         </mx:Script>
    </mx:Module>
    And I still cant execute refresh() functions defined in modules. And I don't have ANY idea why.  Maybe it's because main module (in whch other mudules are loaded) is a module itself - not the main application...
    Can you help me?

  • How do i open a web page with VeriSign Class 3 Extended Validation SSL SGC SS CA certfificate i can't open web pages with this, how do i open a web page with VeriSign Class 3 Extended Validation SSL SGC CA certfificate i can't open web pages with this

    how do i open a web page with VeriSign Class 3 Extended Validation SSL SGC SS CA ?

    Hi
    I am not suprised no one answered your questions, there are simply to many of them. Can I suggest you read the faq on 'how to get help quickly at - http://forums.adobe.com/thread/470404.
    Especially the section Don't which says -
    DON'T
    Don't post a series of questions in  a single post. Splitting them into separate threads increases your  chances of a quick answer.
    PZ
    www.pziecina.com

  • SSO and Extended notifications

    Hi Friends,
      We are using extended notifications to send work item as attachment(SAP GUI shortcut) to outlook and it is working fine. But the shortcut attachments are not working in case the user has an "SSO" enabled for him, it is asking for a logon password . We are using SNC product for SSO. Please let me know if it is possible to have SSO for SAP shortcuts so that the user can open the work item attachment without entering the password
    Regards
    sapient

    Hello Sapient,
    If you want to be able to logon directly via the shortcut without entering user/password then you need to use SSO. It seems there is some issue with the user SSO. Do all users have this issue or just some?
    I would also check the users SAPGUI release and patch level. Can you compare it to a user who does not have this issue. mAybe apply the latest SAPGUI patch and test again.
    Maybe note 1257108 can point you in the right direction.
    Regards,
    Eddie

  • Airport Express extends 5 Ghz and 2.4 Ghz or just one at a time?

    I recently switched my dual band Time Capsule to use different names for the 5 Ghz and 2.4 Ghz networks.
    Will the Airport Express extend both or just one at a time, if so, which one will it extend?
    I have two Airport Express modules, bought a long time apart, is there any difference in functionality and how do I tell them apart if this is the case?
    All are running the most recent firmware version.

    Welcome to the discussion area, Mike!
    Will the Airport Express extend both or just one at a time, if so, which one will it extend?
    The AirPort Express is a single band device, so it can extend either the 2.4 GHz or 5 GHz band, +but not both at the same time+. Since you have different names for the 5 GHz and 2.4 GHz bands, the Express will extend the 2.4 GHz band by default. Using AirPort Utility, the setup application for the AirPorts, it is possible to configure the AirPort Express to extend either band.
    If you are perhaps thinking of extending the 5 GHz band, this can be a bit tricky because 5 GHZ signals do not travel effectively over distance or penetrate obstructions as well as 2.4 GHz signals. You almost have to have a line-of-sight relationship between the Time Capsule and the AirPort Express to be able to extend the 5 GHz band.
    I have two Airport Express modules, bought a long time apart, is there any difference in functionality and how do I tell them apart if this is the case?
    Look on the side of the AirPort Express for the model number in the small print. You'll need Model No A 1264 to be able to "extend". If you have the older Model No A 1084, that version will not be able to "extend" a wireless network, but you could use it to "join" the wireless network and stream AirTunes to the device.
    All are running the most recent firmware version.
    That would be 7.5.2. If you have the older version of the AirPort Express, the latest firmware version for that device would be 6.3.
    Message was edited by: Bob Timmons

  • Error Message on a Extended Fiori application

    I'm currently trying to Extend and modify a SAP Fiori application
    The SAP Standard application is installed and working successfully in our system at the moment.
    When i'm trying to launch our extended Z Application i get the following error message
    Failed to resolve navigation target: #SAP_HCM_LVExtension-View - Error (500, Internal Server Error) in OData response for GET "/sap/opu/odata/UI2/INTEROP/ResolveLink?linkId='SAP_HCM_LVExtension-View'&shellType='FLP'&formFactor='desktop'": HTTP request failed
    Details: Launchpad ZHCM_APP / TRANSACTIONAL / SAP_HCM_LVExtension does not exist.
    In LPD cust we have the link text of SAP_HCM_LVExtension
    An Application Alias of SAP_HCM_LVExtension
    Any help would be appreciated !
    Cheers
    James

    Having the same issue, did you have any luck solving this? 

  • AirPort Extreme extends my network and has worked well for three months. Now it can no longer extend the network and flashes Amber. I have restored to factory settings moved it closer to time capsule and rebooted the system without luck

    i have a blinking Amber on my extreme now and it cannot extend the network.  It was working fine and nothing has changed. I have restored to factory settings moved it to another room and rebooted the system without luck. Any suggestions

    What OS are you running?
    Please give me a screenshot of the current AE setup..
    I strongly recommend if you have issues.. take control of all the variables. Apple routers have too much auto..
    Here is a list that I use for setups when using Yosemite.. but it relates to any OS.
    You will need to factory reset again to get going.
    Factory reset universal
    Power off the AE.. ie pull the power cord or power off at the wall.. wait 10sec.. hold in the reset button.. be gentle.. power on again still holding in reset.. and keep holding it in for another 10sec. You may need some help as it is hard to both hold in reset and apply power. It will show success by rapidly blinking the front led. Release the reset.. and wait a couple of min for the AE to reset and come back with factory settings. If the front LED doesn’t blink rapidly you missed it and simply try again. The reset is fairly fragile in these.. press it so you feel it just click and no more.. I have seen people bend the lever or even break it. I use a toothpick as tool.
    Then redo the setup from the computer with Yosemite or whatever you are using.
    1. Use very short names.. NOT APPLE RECOMMENDED names. No spaces and pure alphanumerics.
    eg AEgen5 for basestation.
    Use AE24ghz and AE5ghz for wireless on each band, with fixed channels as this also seems to help stop the nonsense.
    2. Use all passwords that also comply but can be a bit longer. ie 8-20 characters mixed case and numbers.. no non-alphanumerics.
    3. Ensure the AE always takes the same IP address.. this is not a problem for router but if the AE is bridged you can have trouble.. Try using the static IP method or control it via the main router dhcp reservations.
    4. Check your share name on the computer/s is not changing.. make sure it also complies with the above.. short no spaces and pure alphanumeric..
    5. Make sure IPv6 is set to link-local only in the computer. For example wireless open the network preferences, wireless and advanced / TCP/IP.. and fix the IPv6. to link-local only.
    6. Set up the extend to the Express using 2.4ghz and then see how good or bad the connection is.. this is better in the old v5 utility but if you hover your mouse over where it shows connection an extra chunk of info comes up.
    I have specifically used 5ghz to make the extend.. because by testing it works better.. but do not be fooled.. this good connection is poor.. the RSSI.. which is difference signal .. at -79dbm is down the bottom of the stable.. and it drops out on a daily basis.. you want to see that signal around -60dbm at min.
    There is a lot more jiggery pokery you can try but the above is a good start.. if you find it still unreliable.. don't be surprised.

  • I can no longer use 3D commands in Photoshop CS6 Extended

    I have Photoshop CS6 Extended (Ver 13.0.1x64). My desktop is Windows 7 64 Home premium; and Video card is: AMD Radeon HD 5570. The drivers and operating system is updated.
    I have been using simple 3D functions like "New 3D extrusion from..." from time to time without any problems until recently. For unknown reasons now when I try to invoke any 3D command, I get the following message: " Could not complete the "New 3D extrusion from selected layer command because of a program error." This ,message gets repeated for any 3D command.
    I checked out 3D functionality in Photoshop CS6 32 bit; and Photoshop CS5.5 Extended. Same problem. However, I can access and use all 3D functions in Illustrator CS6. Clearly, therefore, the video card is not the problem. It looks like one of the recent software updates from Adobe must have caused this problem.
    Reproduced below  are details of my system:
    Please help!
    Priyaranjan Desai
    Adobe Photoshop Version: 13.0.1 (13.0.1.3 20131024.r.34 2013/10/24:21:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:7, Stepping:10 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1
    Physical processor count: 4
    Processor speed: 2660 MHz
    Built-in memory: 8191 MB
    Free memory: 2569 MB
    Memory available to Photoshop: 7234 MB
    Memory used by Photoshop: 69 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Normal
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: AMD Radeon HD 5570
    Display: 2
    Display Bounds:=  top: 0, left: 2560, bottom: 1200, right: 4480
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1440, right: 2560
    Video Card Number: 1
    Video Card: AMD Radeon HD 5570
    OpenCL Version:
    Driver Version: 14.100.0.0
    Driver Date: 20140417000000.000000-000
    Video Card Driver: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Video Mode: 2560 x 1440 x 4294967296 colors
    Video Card Caption: AMD Radeon HD 5570
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 16384
    Serial number: 92278705978377249761
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\Piyush\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 686.9G, 231.5G free
      L:\, 2.73T, 2.18T free
      S:\, 2.73T, 904.6G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112 
       ACE.dll   ACE 2012/06/05-15:16:32   66.507768   66.507768
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0 
       AdobeOwl.dll   Adobe Owl 2012/06/26-12:17:19   4.0.95   66.510504
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654 
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0 
       AGM.dll   AGM 2012/06/05-15:16:32   66.507768   66.507768
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56 
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/06/05-15:16:32   66.507768   66.507768
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/06/05-15:16:32   66.507768   66.507768
       BIBUtils.dll   BIBUtils 2012/06/05-15:16:32   66.507768   66.507768
       boost_date_time.dll   DVA Product   6.0.0 
       boost_signals.dll   DVA Product   6.0.0 
       boost_system.dll   DVA Product   6.0.0 
       boost_threads.dll   DVA Product   6.0.0 
       cg.dll   NVIDIA Cg Runtime   3.0.00007 
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007 
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/06/05-15:16:32   66.507768   66.507768
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0 
       dvacore.dll   DVA Product   6.0.0 
       dvamarshal.dll   DVA Product   6.0.0 
       dvamediatypes.dll   DVA Product   6.0.0 
       dvaplayer.dll   DVA Product   6.0.0 
       dvatransport.dll   DVA Product   6.0.0 
       dvaunittesting.dll   DVA Product   6.0.0 
       dynamiclink.dll   DVA Product   6.0.0 
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615 
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615 
       icudt42.dll   International Components for Unicode   4, 2, 0, 0 
       icuin42.dll   International Components for Unicode   4, 2, 0, 0 
       icuuc42.dll   International Components for Unicode   4, 2, 0, 0 
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A) 
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0 
       LogSession.dll   LogSession   2.1.2.1640 
       mediacoreif.dll   DVA Product   6.0.0 
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195 
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1 
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1 
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195 
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1 
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1 
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195 
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1 
       ONCore7.dll   ONCore   7.0.0.0 
       ONCore8.dll   ONCore   7.0.0.0 
       ONCoreFoundation7.dll   ONCoreFoundation7   7, 0, 0, 0 
       ONCoreFoundation8.dll   ONCoreFoundation7   7, 0, 0, 0 
       ONDocument7.dll   ONDocument   7.0.0.0 
       ONDocument8.dll   ONDocument   7.0.0.0 
       onOneToolbox2.dll   onOne Toolbox2 Dynamic Link Library   2.2.0 
       OnOneWidgets.dll    OnOneWidgets dll   2.5 
       ONProxySupport7.dll   ONProxySupport   1.0.0.0 
       ONProxySupport8.dll   ONProxySupport   1.0.0.0 
       pdfsettings.dll   Adobe PDFSettings   1.04 
       Photoshop.dll   Adobe Photoshop CS6   CS6 
       Plugin.dll   Adobe Photoshop CS6   CS6 
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383 
       PSArt.dll   Adobe Photoshop CS6   CS6 
       PSViews.dll   Adobe Photoshop CS6   CS6 
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406 
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406 
       TfFontMgr.dll   FontMgr   9.3.0.113 
       TfKernel.dll   Kernel   9.3.0.113 
       TFKGEOM.dll   Kernel Geom   9.3.0.113 
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113 
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113 
    Required plug-ins:
       3D Studio 13.0.1 (13.0.1.3 x001)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0.1 (13.0.1.3 x001)
       Bas Relief 13.0
       BMP 13.0
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0.1 (13.0.1.3 x001)
       Clouds 13.0.1 (13.0.1.3 x001)
       Collada 13.0.1 (13.0.1.3 x001)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0.1 (13.0.1.3 x001)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.0.1 (13.0.1.3 x001)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0.1 (13.0.1.3 x001)
       Embed Watermark 4.0
       Entropy 13.0.1 (13.0.1.3 x001)
       Extrude 13.0
       FastCore Routines 13.0.1 (13.0.1.3 x001)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.0.1 (13.0.1.3 x001)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.0.1 (13.0.1.3 x001)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       Histogram 2.1.3
       HistogramCurves 2.1.3
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.0.1 (13.0.1.3 x001)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0.1 (13.0.1.3 x001)
       Maximum 13.0.1 (13.0.1.3 x001)
       Mean 13.0.1 (13.0.1.3 x001)
       Measurement Core 13.0.1 (13.0.1.3 x001)
       Median 13.0.1 (13.0.1.3 x001)
       Mezzotint 13.0
       Minimum 13.0.1 (13.0.1.3 x001)
       MMXCore Routines 13.0.1 (13.0.1.3 x001)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0.1 (13.0.1.3 x001)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0.1 (13.0.1.3 x001)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0.1 (13.0.1.3 x001)
       Photocopy 13.0
       PhotoKit 1, 2, 11, 0
       PhotoKit Capture Sharpener 1, 2, 11, 0
       PhotoKit Capture Sharpener Expert 1, 2, 11, 0
       PhotoKit Color 2 2.1.3
       PhotoKit Creative Sharpener 1, 2, 11, 0
       PhotoKit Output Sharpener 1, 2, 11, 0
       PhotoKit Preview Helper 2.1.3
       Photoshop 3D Engine 13.0.1 (13.0.1.3 x001)
       Picture Package Filter 13.0.1 (13.0.1.3 x001)
       Pinch 13.0
       Pixar 13.0.1 (13.0.1.3 x001)
       PixelGenius Toolbox 2.1.3
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0.1 (13.0.1.3 x001)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0.1 (13.0.1.3 x001)
       Range 13.0.1 (13.0.1.3 x001)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0.1
       Shear 13.0
       Skewness 13.0.1 (13.0.1.3 x001)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0.1 (13.0.1.3 x001)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.0.1 (13.0.1.3 x001)
       Sumi-e 13.0
       Summation 13.0.1 (13.0.1.3 x001)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Topaz Star Effects 10.0
       Torn Edges 13.0
       Twirl 13.0
       U3D 13.0.1 (13.0.1.3 x001)
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.0.1 (13.0.1.3 x001)
       Variations 13.0.1 (13.0.1.3 x001)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.0.1 (13.0.1.3 x001)
       WIA Support 13.0.1 (13.0.1.3 x001)
       Wind 13.0
       Wireless Bitmap 13.0.1 (13.0.1.3 x001)
       ZigZag 13.0
    Optional and third party plug-ins:
       Alias PIX 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Alien Skin Autolayer 3 3.0.0 20463 2013-05-30 12:54
       Alien Skin Blow Up 3 3.0.0
       Alien Skin Exposure 5 Autolayer 5.0.0
       Alien Skin Exposure 6 Autolayer 6.0.0
       Alien Skin Eye Candy 7 Autolayer 7.0.0
       Alien Skin Snap Art 4 Autolayer 4.0.0
       Animal Fur 6.1.1
       BackgroundFilter NO VERSION
       Backlight 6.1.1
       Bevel 6.1.1
       Blow Up 3.0.0
       Bokeh 2.0.1
       Brick Wall 6.1.1
       Brushed Metal 6.1.1
       Camera Raw 8.6
       Camera Raw Filter 8.6
       Chrome 6.1.1
       Color Efex Pro 4 4,05
       Color Efex Pro 4 4,05
       Corona 6.1.1
       Dfine 2.0 NO VERSION
       Diamond Plate 6.1.1
       Drip 6.1.1
       DxO FilmPack 3 NO VERSION
       ElectricImage 13.0
       Exposure 5 5.0.0
       Exposure 6 6.0.0
       Extrude 6.1.1
       Eye Candy 7 7.0.0
       FineStructuresFilter NO VERSION
       Fire 6.1.1
       Fisheye-Hemi 1 (Circle) [x64] v1.2.5 1.2.5.0
       Fisheye-Hemi 1 (Circle) [x64] v1.2.5 1.2.5.0
       Fisheye-Hemi 2 (Full Frame) [x64] v1.2.5 1.2.5.0
       Fisheye-Hemi 2 (Full Frame) [x64] v1.2.5 1.2.5.0
       Fisheye-Hemi 3 (Cropped) [x64] v1.2.5 1.2.5.0
       Fisheye-Hemi 3 (Cropped) [x64] v1.2.5 1.2.5.0
       Glass 6.1.1
       Gradient Glow 6.1.1
       HDR Efex Pro 2 2,03
       HotPixelsFilter NO VERSION
       HSB/HSL 13.0
       Icicles 6.1.1
       Imagenomic Plug-in Console 1, 2, 0, 0
       Lighting Effects Classic 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Marble 6.1.1
       Merge to HDR Efex Pro 2 2,03
       Motion Trail 6.1.1
       Nik Selective Tool 2.1.4.20903
       Noiseware 2.3.0.9
       Perfect Batch 8 8.5.1
       Perfect BW 8 8.5.1
       Perfect BW 8 Filter 8.5.1
       Perfect BW 8 Smart Filter 8.5.1
       Perfect Effects 4 4.0
       Perfect Effects 4 Filter 4.0
       Perfect Effects 4 Smart Filter 4.0
       Perfect Effects 8 8.5.1
       Perfect Effects 8 Filter 8.5.1
       Perfect Effects 8 Smart Filter 8.5.1
       Perfect Enhance 8 8.5.1
       Perfect Enhance 8 Filter 8.5.1
       Perfect Enhance 8 Smart Filter 8.5.1
       Perfect Mask 8 8.5.1
       Perfect Mask 8 Filter 8.5.1
       Perfect Mask 8 Smart Filter 8.5.1
       Perfect Portrait 8 8.5.1
       Perfect Portrait 8 Filter 8.5.1
       Perfect Portrait 8 Smart Filter 8.5.1
       Perfect Resize 8 8.5.1
       Perfect Resize 8 Engine Automation 8.5.1
       Perfect Resize 8 Engine Filter 8.5.1
       Perfect Resize 8 Filter 8.5.1
       Perspective Shadow 6.1.1
       PhotoFrame 4.6 Free 4.6.5
       PhotoFrame 4.6 Free Batch 4.6.5
       PhotoFrame 4.6 Free Hidden 4.6.5
       Plug-in on new layer 2, 0, 4, 0
       Portrait Professional 1, 4, 1, 0
       Portrait+ 1.5.1.149
       Portraiture 2.3.0.8
       RealGrain 1.1.0.3
       Reptile Skin 6.1.1
       Ripples 6.1.1
       Rust 6.1.1
       SGI RGB 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       ShadowsFilter NO VERSION
       Sharpener Pro 3.0: (1) RAW Presharpener 3.0.10.20903
       Sharpener Pro 3.0: (2) Output Sharpener 3.0.10.20903
       Silver Efex Pro 2 2,006
       Silver Efex Pro 2 2,006
       SkinFilter NO VERSION
       SkyFilter NO VERSION
       Smoke 6.1.1
       Snap Art 4 4.0.0
       Snow Drift 6.1.1
       SoftImage 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Squint 6.1.1
       Stone Wall 6.1.1
       StrongNoiseFilter NO VERSION
       Super Star 6.1.1
       Swirl 6.1.1
       Texture Noise 6.1.1
       Topaz Adjust 4 10.0
       Topaz Adjust 5 10.0
       Topaz BW Effects 10.0
       Topaz Clarity 10.0
       Topaz Clean 3 10.0
       Topaz DeJpeg 4 10.0
       Topaz DeNoise 5 10.0
       Topaz Detail 2 10.0
       Topaz Detail 3 10.0
       Topaz InFocus 10.0
       Topaz Lens Effects 10.0
       Topaz photoFXlab 10.0
       Topaz ReMask 3 10.0
       Topaz Simplify 3 10.0
       Topaz Simplify 4 10.0
       TopazRemaskAutomate NO VERSION
       Viveza 2 2.0.9.20903
       Water Drops 6.1.1
       Wavefront RLA 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00)
       Weave 6.1.1
       Wood 6.1.1
    Plug-ins that failed to load: NONE
    Flash:
       Paper Texture
       onOne
       Gallery Wrapper
       Mini Bridge
       GuideGuide
       Kuler
    Installed TWAIN devices: NONE

    To use "dictation" as it is called, there are two requirements:
    1.  Siri must be turned on (Settings > General > Siri)
    2.  You must be connected to the internet.

  • Printing problem with Photoshop CS 6 extended and HP printer

    Hi all, long time browser, first time poster.
    This is a weird issue, it should be noted from the first that I only have weird computer issues. I work at a technical High School where we have the whole Adobe CS6 Extended suite installed. We are running it under a fully patched version of Windows 7 and all the CS6 updates have been applied on 25 machines that all have the same issue. The problem is that when the students go to print to our HP Color Laser jet CP6015DN, the job can been seen loading into the queue, it races up to about 45MB, then sort of strolls to load the rest of the document, usually about 59 to 75 MB's in size. Then I watch the message go to processing, the front panel of the printer says processing, then the print job disappears from the printer queue and the printer and there is no print out. I printed out the usage job log and it shows none of the failed attempts to print and I check the event log page which does not show the errors either.
    Looks like a bad printer driver, right? So I download the new HP Universal printer driver, I normally do not do the Universal driver route as so many of my older printers have problems with it, but the CP6015DN seems to have trouble accessing the extended tray 5 with the specific drivers, but I have the same printing issue with the new Universal driver and the PS driver. So I wander through the HP manual and it suggests using profiles to print to the printer and move the color handling from Printer Manages Colors to Photoshop manages colors and I track down the ICC profiles for the printer on the HP site as the link in the book is dead, so try the CP6015srgb_d50.icc, CP6015_cmyk_d50.icc and CP6015.icc, I try all of these profiles with the newest PS printer driver and the same error, goes to the printer and into the bit bucket. Still no printout or error message.
    Strange thing is that if I do a test print, it prints fine, if I open a tif file in Photoshop, it prints fine, now the teacher says if they print to the Xeorx 7760 in the next room, it also prints out fine. It should be noted that we had so many issues with configuring the Xerox and adjusting controls it was the reason we purchased a HP proofing printer in the first place. But the next door lab is all Apple, which doesn't seem to have this issue. So I open the test document and save it as a PDF file instead the native Photoshop format, and it prints fine, which from what I've been reading on the internet may be the preferred way of printing proofs, I don't know, I've never really used Photoshop, but the teacher says this isn't an acceptable fix and the students should be expected to manage a number of revisions saved to PDF format, me I just go up a number at the end of the file name for every correction when editing documents.
    Any suggestions you have would be appreciated.
    Windows 7 X64
    Photoshop version 13.0.1 x64
    HP Color Laserjet CP6015 DN model number Q3932A
    Dell Optiplex 980 i5-650,  3.2Ghz, 8 GB RAM.

    Yes, Photoshop is up to date at Version 13.0.6.  I have even gone so far as to uninstall CS 6 and put CS 5 back on and still the same thing.  This is really frustrating, the people at Canon try to be helpful but wind up saying it's an Adobe problem and of course you can't talk to real people anymore about CS 6.  My research on the Internet has turned up nothing so I'm stuck.

  • Issue in creation of data from extended segment in background mode

    Dear all,
    I am facing an issue in creation of data in receiving system using IDOC for an xtended matmas segment(Extended for classification view in user exit).The issue is that the idoc is received successfully in r3eceiving system but not created successfuly in data base .(Though it is shown green/successful).When i execute this from we19 the data is created successfuly in data base.I will be thankful if you can guide me resolve issue.
    Thanks.

    Hello,
    you can use CALL TRANSFORMATION id, which will create a exact "print" of the ABAP data into the XML.
    If you need to change the structure of XML, you can alter your ABAP structure to match the requirements.
    Of course you can create your own XSLT but that is not that easy to describe and nobody will do that for you around here. If you would like to start with XSLT, you´d better start the search.
    Regards Otto

Maybe you are looking for

  • Oracle Apex patch number  to upgrade from Apex 4.0.2  to 4.1

    We have Apex 4.0.2 We wanted to upgrade 4.1 What is upgrade patch number for this upgrade so we can download from metalink

  • SAP MM BUILDING BLOCK LIBRARY

    Dear All, Please give me the link of SAP MM Building block [Best Practices] library link. And also please explain the procedure to down load these best practices. Thanks in Advance !

  • URL bar locked

    This is a strange safari problem, and I can't seem to fix it. It isn't allowing me to type directly into the URL bar. When I try to click into it, it just doesn't let me. I've been through preferences and I can't see anything relevant. I downloaded t

  • Timesheet Cancel Button - no "Are you sure?" warning

    Hi, ESS WebDP timesheet ECC6 WAS 7.0.... We have implemented ESS timesheets but have a complaint that the "Cancel" button on the timesheet throws away data without warning. I switched on "workprotect" mode  that prevents "Persaonal Info" being lost b

  • Typekit and Muse. Specifying alternative fonts

    My client wants her website built using a typewriter style font. Obviously the safest option would be to use Courier but it's a little faint on the page. Using Typekit Courier Prime or another alternative will look better. However in the past I have