ItemRenderer fails updating values with a sort applied to the ArrayCollection (dataProvider)

Hello everyone,
Im updating the ArrayCollection that is the source of my list component
(the email never changes)
o:Object = {user:"username",email:"emailAdress",state:"number",imageURL="urlToImage"} //This comes from a function and arrives well.
for (var j:int = 0; j < _arcUserList.length; j++)
          if(_arcUserList.getItemAt(j).email == o.email)
                //_arcUserList.setItemAt(o,j) //I've tried this but doesn't work too!!
              _arcUserList.getItemAt(j).user = o.user;
              _arcUserList.getItemAt(j).email = o.email;
              _arcUserList.getItemAt(j).state = o.state;
              _arcUserList.getItemAt(j).imageURL = o.imageURL;
              _arcUserList.itemUpdated(_arcUserList.getItemAt(j));
This works well without the next sort settings, but if i add this lines in the init() it gives me:
Error #1009: Cannot access a property or method of a null object reference (in the first line of the onChange function of Renderer in red below)
var iSortByState:ISortField = new SortField("state",true);
var iSortByName:ISortField = new SortField("user",false);
var sort:Sort = new Sort();
sort.fields = [iSortByState,iSortByName];
_arcUserList.sort = sort;
_arcUserList.refresh();
here i post my item renderer
<?xml version="1.0" encoding="utf-8"?>
<s:ItemRenderer xmlns:fx="http://ns.adobe.com/mxml/2009"
                                        xmlns:s="library://ns.adobe.com/flex/spark"
                                        xmlns:mx="library://ns.adobe.com/flex/mx"
                                        width="100%"
                                        autoDrawBackground="true"
                                        creationComplete="fncInit(event)"
                                        dataChange="onChange(event)">
          <s:layout>
                    <s:HorizontalLayout gap="10" horizontalAlign="left"
                                                                      paddingTop="5" paddingBottom="5"
                                                                      paddingLeft="10" paddingRight="10"
                                                                      verticalAlign="middle"/>
          </s:layout>
          <s:Image id="_imgUser" height="32" width="32" />
          <s:VGroup width="70%">
                    <s:Label id="_lblUsername" fontSize="12" fontWeight="bold" />
                    <s:Label id="_lblState" color="#868686" fontSize="10" fontStyle="italic" />
          </s:VGroup>
          <s:HGroup width="100%"  horizontalAlign="right">
                    <s:Button width="40" label="@" click="onClickButton(event)" visible="false"/>
          </s:HGroup>
          <fx:Script>
                    <![CDATA[
                              import flash.filters.*;
                              import mx.collections.ArrayList;
                              import mx.controls.Alert;
                              import mx.events.FlexEvent;
                              import mx.events.StateChangeEvent;
                              [Bindable]private var arrStates:Array =["Disconnected","Busy","Available"];
                              [Bindable]private var _nState:Number;
                              [Bindable]private var _sImgURL:String;
                              [Bindable]private var _sUser:String;
                              [Bindable]private var _sEmail:String;
                              protected function fncInit(event:FlexEvent):void
                                        _nState = this.data.state;
                                        _sImgURL = this.data.imageURL;
                                        _sUser = this.data.user;
                                        _sEmail = this.data.email;
                                        this.setStyle("contentBackgroundColor","0xFF0000");
                                        _imgUser.smooth = true;
                                        fncLoadPicture(_sImgURL);
                                        _lblUsername.text = this.data.user;
                                        _lblState.text = arrStates[this.data.state];
                              private function fncLoadPicture(sURL:String):void{
                                        var context:LoaderContext = new LoaderContext();
                                        context.checkPolicyFile = true;
                                        context.applicationDomain = ApplicationDomain.currentDomain;
                                        var fotoLoader:Loader = new Loader();
                                        fotoLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onImageLoaded);
                                        fotoLoader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, onImageError);
                                        fotoLoader.load(new URLRequest(sURL), context);
                              private function onImageLoaded(event:Event):void {
                                        var bmp:Bitmap;
                                        bmp = ( event.target as LoaderInfo ).content as Bitmap;
                                        _imgUser.source = bmp;
                              private function onImageError(event:Event):void {
                                        Alert.show("Error loading imabe.", "Alert");
                              protected function onClickButton(event:MouseEvent):void
                                        trace(data.user+": "+data.state);
                              protected function onChange(event:FlexEvent):void
                                        _lblUsername.text = this.data.user; //if i comment this, it fails in the next and so on.
                                        _lblState.text = arrStates[this.data.state];
                                        fncLoadPicture(this.data.imageURL);
                                        var glow:GlowFilter = new GlowFilter();
                                        glow.alpha=0.8;
                                        glow.blurX=2;
                                        glow.blurY=2;
                                        glow.strength=30;
                                        glow.inner=false;
                                        glow.quality=BitmapFilterQuality.HIGH;
                                        switch (this.data.state.toString())
                                                  //Disconnected - Invisible
                                                  case "0":
                                                            _lblUsername.setStyle("color",0x555555);
                                                            glow.color=0x6E6E6E;
                                                            var matrix:Array = new Array();
                                                            matrix=matrix.concat([0.4,0.4,0.4,0,0]);// red
                                                            matrix=matrix.concat([0.4,0.4,0.4,0,0]);// green
                                                            matrix=matrix.concat([0.4,0.4,0.4,0,0]);// blue
                                                            matrix=matrix.concat([0,0,0,0.5,0]);// alpha
                                                            var cmf:ColorMatrixFilter=new ColorMatrixFilter(matrix);
                                                            _imgUser.filters=[cmf,glow];
                                                  break;
                                                  //Busy
                                                  case "1":
                                                            glow.color=0xDF0101;
                                                            _imgUser.filters=[glow];
                                                            break;
                                                  //Available
                                                  case "2":
                                                            glow.color=0x01DF01;
                                                            _imgUser.filters=[glow];
                                                            break;
                    ]]>
          </fx:Script>
</s:ItemRenderer>
It Works well until i put the sort.
Any suggestion?

TypeError: Error #1009: Cannot access a property or method of a null object reference.
          at usersRenderer/onChange()[D:\Mis Documentos\Proyectos\ACplugin\PorHerramientas\Flex\ac_videocall\src\usersRenderer.mxml:98 ]
          at usersRenderer/___usersRenderer_ItemRenderer1_dataChange()[D:\Mis Documentos\Proyectos\ACplugin\PorHerramientas\Flex\ac_videocall\src\usersRenderer.mxml:8]
          at flash.events::EventDispatcher/dispatchEventFunction()
          at flash.events::EventDispatcher/dispatchEvent()
          at mx.core::UIComponent/dispatchEvent()[E:\dev\4.y\frameworks\projects\framework\src\mx\core \UIComponent.as:13152]
          at spark.components::DataRenderer/set data()[E:\dev\4.y\frameworks\projects\spark\src\spark\components\DataRenderer.as:123]
          at spark.components::DataGroup/http://www.adobe.com/2006/flex/mx/internal::itemRemoved()[E:\dev\4.y\frameworks\projects\spark\src\spark\components\DataGroup.as:1761]
          at spark.components::DataGroup/adjustAfterMove()[E:\dev\4.y\frameworks\projects\spark\src\sp ark\components\DataGroup.as:1941]
          at spark.components::DataGroup/http://www.adobe.com/2006/flex/mx/internal::dataProvider_collectionChangeHandler()[E:\dev\4.y\frameworks\projects\spark\src\spark\components\DataGroup.as:1858]
          at flash.events::EventDispatcher/dispatchEventFunction()
          at flash.events::EventDispatcher/dispatchEvent()
          at mx.collections::ListCollectionView/dispatchEvent()[E:\dev\4.y\frameworks\projects\framewo rk\src\mx\collections\ListCollectionView.as:1024]
          at mx.collections::ListCollectionView/moveItemInView()[E:\dev\4.y\frameworks\projects\framew ork\src\mx\collections\ListCollectionView.as:1629]
          at mx.collections::ListCollectionView/handlePropertyChangeEvents()[E:\dev\4.y\frameworks\pro jects\framework\src\mx\collections\ListCollectionView.as:1421]
          at mx.collections::ListCollectionView/listChangeHandler()[E:\dev\4.y\frameworks\projects\fra mework\src\mx\collections\ListCollectionView.as:1316]
          at flash.events::EventDispatcher/dispatchEventFunction()

Similar Messages

  • I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build.  The same call works fine when running on the device

    I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build. The same call works fine when running on the device (iPhone) using debug build. When running with a release build, the result handler is never called (nor is the fault handler called). Viewing the BlazeDS logs in debug mode, the call is received and send back with data. I've narrowed it down to what seems to be a data size issue.
    I have targeted one specific data call that returns in the String value a string length of 44kb, which fails in the release build (result or fault handler never called), but the result handler is called as expected in debug build. When I do not populate the String value (in server side Java code) on the object (just set it empty string), the result handler is then called, and the object is returned (release build).
    The custom object being returned in the call is a very a simple object, with getters/setters for simple types boolean, int, String, and one org.23c.dom.Document type. This same object type is used on other other RemoteObject calls (different data) and works fine (release and debug builds). I originally was returning as a Document, but, just to make sure this wasn't the problem, changed the value to be returned to a String, just to rule out XML/Dom issues in serialization.
    I don't understand 1) why the release build vs. debug build behavior is different for a RemoteObject call, 2) why the calls work in debug build when sending over a somewhat large (but, not unreasonable) amount of data in a String object, but not in release build.
    I have't tried to find out exactly where the failure point in size is, but, not sure that's even relevant, since 44kb isn't an unreasonable size to expect.
    By turning on the Debug mode in BlazeDS, I can see the object and it's attributes being serialized and everything looks good there. The calls are received and processed appropriately in BlazeDS for both debug and release build testing.
    Anyone have an idea on other things to try to debug/resolve this?
    Platform testing is BlazeDS 4, Flashbuilder 4.7, Websphere 8 server, iPhone (iOS 7.1.2). Tried using multiple Flex SDK's 4.12 to the latest 4.13, with no change in behavior.
    Thanks!

    After a week's worth of debugging, I found the issue.
    The Java type returned from the call was defined as ArrayList.  Changing it to List resolved the problem.
    I'm not sure why ArrayList isn't a valid return type, I've been looking at the Adobe docs, and still can't see why this isn't valid.  And, why it works in Debug mode and not in Release build is even stranger.  Maybe someone can shed some light on the logic here to me.

  • Updated ipad2 with new os half through the restore it tells me to enter a backup file password.. I never set one??

    updated ipad2 with new os half through the restore it tells me to enter a backup file password.. I never set one??

    Have you encrypted the backups files from your iPad? If so, that is likely the password needed.

  • How to show values with initial sort asc/desc in 11.5.10 iProcurement page?

    (Logged Bug 12902576 with OAFramework DEV, but OAF DEV closed the bug and advised to log the issue here in the forum)
    How to have values sorted in ascending order when user first navigates to the page?
    Currently the values are unsorted, and are only sorted after the user clicks the column heading to sort the values. We expect the users should not have to click the column heading, but instead that the values should be sorted in ascending order when the user navigates to the page. This issue occurs on an OAFramework based page in iProcurement application.
    PROBLEM STATEMENT
    =================
    Receipts and Invoices are not sorted in iProcurement Lifecycle page even after implementing personalization to sort ascending on Receipt Number and Invoice Number. Users expect the receipts and invoices to be sorted but they are not sorted.
    STEPS TO REPRODUCE
    1. Navigate to iProcurement
    2. Click the Requisitions tab
    3. Search and find a requisition line that is associated to a Purchase Order having multiple receipts and multiple invoices.
    4. Click the Details icon to view the lifecycle page where the receipts and invoices are listed
    - see that the receipts are not sorted, and the invoices are not sorted
    5. Implement personalization to sort in ascending order for Receipt Number and for Invoice Number. Apply the personalization and return to page.
    - the receipts and invoices are still not sorted.
    IMPACT
    Users need the receipts and invoices sorted to make it easier to review the data. As a workaround, click the column heading to sort the results
    Tried workaround suggested by OAFramework DEV in Bug 12902576 but this did not help.
    TESTCASE of suggested workaround
    NAVIGATION in visprc01
    1. Login: dfelton / welcome
    2. iProcurement responsibility / iProcurement Home Page / Requisitions tab
    3. Click the Search button in the upper right
    4. Specify search criteria
    - Remove the 'Created by' value
    - Change 'Last 7 Days' to 'Anytime'
    - Type Requisition = 2206
    5. Click Go to execute the search
    6. Click the Requisition 2206 number link
    7. Click the Details icon
    8. In the Receipt section, click the link 'Personalize Table: (ReceivingTableRN)'
    9. Click the Personalize (pencil) icon
    10. Click the Query icon for Site level (looks different than the screenshots from OAFramework team, because this is 11.5.10 rather than R12
    - Compare this to the Table personalization page show in the reference provided by OAFramework team -
    http://www-apps.us.oracle.com/fwk/fwksite/jdev/doc/devguide/persguide/T401443T401450.htm#cust_persadmin_editperprop
    11. See on the Create Query page
    Sorting
    No sorting is allowed
    The Query Row option becomes available in personalize after setting the Receipt Number row to Searchable. However, even after clicking the Query icon to personalize, it is not possible to specify sorting. There is a Sorting heading section on the personalization page, but there is also a statement: No sorting is allowed
    The workaround mentioned by OAFramework team in Bug 12902576 does not work for this case
    - maybe because this is 11.5.10 rather than R12?
    - maybe similar to Bug 8351696, this requires extension implementation?
    What is the purpose of offering ascending/descending for Sort Allowed if it does not work?
    Please advise if there is a way to have the initial sort in ascending order for this page.

    I´m sorry that you couldn´t reproduce the problem.
    To be clear:
    It´s not about which symbol should seperate the integer part from the fraction.
    The problem is, that i can´t hide the fraction in bargraph.
    The data im showing are integers but the adf bar graph component wants to show at least 4 digits.
    As I´m from germany my locale should be "de" but it should matter in the test case.
    You can download my test case from google drive:
    https://docs.google.com/open?id=0B5xsRfHLScFEMWhUNTJsMzNNUDQ]
    If there are problems with the download please send me an e-mail: [email protected]
    I uploaded another screenshot to show the problem more clear:
    http://s8.postimage.org/6hu2ljymt/otn_hide_fraction.jpg
    Edited by: ckunzmann on Oct 26, 2012 8:43 AM

  • Help me on how to update values with some condition ?

    hi..
    I have data as below:-
    select qualifier from nv2_audit_log where qualifier like '%NXPRI%NXUPM%';
    /acec/nv2am/data/input/NXPRI/NXUPM.P691011_691110
    /acec/nv2am/data/input/NXPRI/NXUPM.P691011_691110
    /acec/nv2am/data/input/NXPRI/NXUPM.P691011_691110
    /acec/nv2am/data/input/NXPRI/NXUPM.P691011_691110
    /acec/nv2am/data/input/NXPRI/NXUPM.P691011_691110
    /acec/nv2am/data/input/NXPRI/NXUPM.P691811_691910
    /acec/nv2am/data/input/NXPRI/NXUPM.P691811_691910
    /acec/nv2am/data/input/NXPRI/NXUPM.P691811_691910
    /acec/nv2am/data/input/NXPRI/NXUPM.P691811_691910
    The question is how could i update all the qualifier from
    /acec/nv2am/data/input/NXPRI/NXUPM.P691811_691910 to /acec/nv2am/data/input/NXUPM/NXUPM.P691811_691910 where qualifier like '%NXPRI%NXUPM%' ?.. Could somebody help me ?
    Actually i want to change the NXPRI to be NXUPM only for all record with qualifier like '%NXPRI%NXUPM%'
    The output must be like this:-
    /acec/nv2am/data/input/NXUPM/NXUPM.P691011_691110
    /acec/nv2am/data/input/NXUPM/NXUPM.P691011_691110
    /acec/nv2am/data/input/NXUPM/NXUPM.P691011_691110
    /acec/nv2am/data/input/NXUPM/NXUPM.P691011_691110
    /acec/nv2am/data/input/NXUPM/NXUPM.P691011_691110
    /acec/nv2am/data/input/NXUPM/NXUPM.P691811_691910
    /acec/nv2am/data/input/NXUPM/NXUPM.P691811_691910
    /acec/nv2am/data/input/NXUPM/NXUPM.P691811_691910
    /acec/nv2am/data/input/NXUPM/NXUPM.P691811_691910
    Thank you,
    baharin

    Hi,
    Use this update statement.
    Update
    nv2_audit_log
    Set
    qualifier = replace(qualifier,'NXPRI','NXUPM')
    Where
    qualifier like '%NXPRI%NXUPM%';
    Hope this helps!
    Regards,
    Rajesh.

  • Update TOC, with .eps files connected in the same TOC

    HI,
    I want to update TOC, and i am unable to do it as .eps files are followed by main TOC.
    if the TOC is already created - which file to be added to pragraph tag in add table of content dailogue box. How to recongize which paragph tags were previously tagged in TOC.
    Now if i click add TOC> there is nothing on the left side of TOC but create hypertext linkz is checked, still TOC is not working.
    When i press ALT+Ctrl click on the topic , no finger pointer appears..
    please provide me a solution for this.
    Thanks,

    Hi
    I have Two questions :-
    1.) I have created a TOC and I want the links to work for whole heading tag, but now the links work only for the page numbers.
    How to update TOC with links to heading as well as page numbers.
    2. ) Apart rfom this,how to identify which paragraph tag is to be included for the previously generated TOC. Becuase when i try to open this TOC i could not find any paragph tags shown in TOC. how to recongizes which paragraph tags were used to create Table of content for the manual created by others.
    below is the image of TOC when i try to add TOC..

  • Firefox 23 Beta has crashed 5 times in the last hour since updating, twice with a BSOD failure of the video driver. I can't figure out another way to post this.

    FF was running fast and stable until the Beta update tonight. Afterward it crashed repeatedly, sometimes with a total system lockup, other times with an unresponsive system, occasionally with a Video Driver failure leading to a BSOD.
    I had to DL 22 release and roll back. I'm now on the release channel, not the beta channel.
    System config: Dell Latitude 6410, Win 7 x64, 128 GB SSD, 4GB RAM, Intel video hardware. Everything is up to date.
    Trying to get this out before it crashes again then switching to 22.
    Java plugin is usually disabled.
    Toolbars are ABP, download status bar and Disconnect.

    If you are still getting blue screen crashes, make sure you've disabled Firefox's use of hardware graphics acceleration. With that feature off, it would be rare that Firefox would touch any privileged parts of Windows.
    You might test in Firefox's Safe Mode. That's a standard diagnostic tool to bypass interference by extensions (and some custom settings). More info: [[Troubleshoot Firefox issues using Safe Mode]].
    You can restart Firefox in Safe Mode using
    Help > Restart with Add-ons Disabled
    In the dialog, click "Start in Safe Mode" (''not'' Reset)
    Any difference?
    Oddly, that last crash report shows the Flash plugin still loading, even though you disabled it.
    This is some standard guidance that addresses the most common issues with the Flash player. I'm sure you've seen some of it before, but just in case:
    (1) Make sure all recorders/downloaders that interact with Flash media are as up-to-date as possible, or disable them.
    (2) Disable hardware graphics acceleration in Firefox and in Flash
    (A) ''As described above...'' In Firefox, un-check the box here and restart:
    orange Firefox button (or Tools menu) > Options > Advanced > General > "Use hardware acceleration when available"
    (B) In Flash, see this support article from Adobe: http://helpx.adobe.com/flash-player/kb/video-playback-issues.html#main_Solve_video_playback_issues
    (3) Disable protected mode (Windows Vista/7/8)
    See this support article from Adobe under the heading "Last Resort": [http://forums.adobe.com/message/4468493#TemporaryWorkaround Adobe Forums: How do I troubleshoot Flash Player's protected mode for Firefox?]

  • Updating values with in the same table for other records matching conditions

    Hi Experts,
    Sorry for not providing the table structure(this is simple structure)
    I have a requirement where i need to update the columns of a table based on values of the same table with some empid and date  match. If the date and empid match then i have take these values from other record and update the one which is not having office details. I need the update query
    Before update my table values are as below
    Sort_num     Emp_id   office      start_date
    1                      101     AUS    01/01/2013
    2                      101                01/01/2013
    3                      101               15/01/2013
    4                      103     USA    05/01/2013
    5                      103               01/01/2013
    6                      103                05/01/2013
    7                      104     FRA    10/01/2013
    8                      104               10/01/2013
    9                      104                01/01/2013
    After update my table should be like below
    Sort_num     Emp_id   office      start_date
    1                      101     AUS    01/01/2013
    2                      101     AUS    01/01/2013
    3                      101               15/01/2013
    4                      103     USA    05/01/2013
    5                      103               01/01/2013
    6                      103    USA     05/01/2013
    7                      104     FRA    10/01/2013
    8                      104     FRA     10/01/2013
    9                      104                01/01/2013
    Thanks in advance

    I do not have time to create the table with data but basically you should be able to code the following
    update table a
    set office = ( select office from table b where b.emp_id = a.emp_id
                                                                 and     b.start_date = a.start_date
                                                                 and     b.office is not null
    where exists ( [same query as in set]  )
    and a.office is null
    I believe that will do the trick.
    HTH -- Mark D Powell --

  • Battery fails in X61 with FRU not listed in the recall list

    The day before when my x61 battery went down to about 5%, I closed the cover to let the it sleep. After a while, when I want to charge back the battery, the light becomes yellow and keeps twinkling. The power manager says:"The battery has failed due to normal wear. The battery can not be charged. Replace the battery."
    I doubt this battery failure is due to the product design, since I have not done any thing vital. I checked the website from Lenovo and found out there is a problem on x61 battery and now lenovo is recalling the battery. But unfortunately, my FRU is 42T4506 which is not listed in the recall list. I just called the customer service guy to ask if I can get the same service, but that guy is not polite at all and do NOT want to explain to me any thing but let me order a new battery. A new battery is toooooo expensive. I feel really bad on this situation and come here for help.
    The battery recall website
    Does anyone has the same problem? What should I do now? I checked the amazon and buy.com, there are several batteries with very low price. Can I trust those batteries?
    Thanks,
    Hongbo

    Hello Dharmesh,
    I am facing this issue, after upgrading the system from Windows 2012 to Windows 2012 R2 Datacenter. I have tried un-installing and re-installing the roles (RDS) multiple times, but still the sysprep'ed VMs are not listed.
    I even tried creating a new fresh VM from the start and syspred'ed using the command line options, but still the VM is not getting listed.
    One more observance is that, the 'RD Virtualization Host Server' displays the 'No of Virtual desktops' as '0' even though I have more than 50 VMs on Hyper-V. (It is not even showing the value as 1 for the new VM created).
    I have all the roles (Web Access, Connection Broker, RDMS and Virtualization Host) installed on the same server.
    Windows 7 Professional edition is used to create a VM, and the sysprep command works only with the below command line arguments.
    sysprep.exe /generalize /oobe /shutdown
    Please kindly help to resolve on the issue.
    Thanks.

  • Sub: How to update value of a single filed in the standard table without  u

    Hi experts,
    In the standard webdynpro component , i want to change particular field value based on some condition.  I cannot use bind table to update the single value, because other filed attributes are getting cleared .so is there any way to update only particular  row related field value. Please let me know. This is very urgent. Please post if you have any idea.

    Srinivasu Y wrote:
    >   I cannot use bind table to update the single value, because other filed attributes are getting cleared .so is there any way to update only particular.
    Hi,
    It is clearing because you are just updating  only that particular field direclty.,
    instead First You read the selected Row using  get_static_attributes( ls_tab ) method .
    no in ls_tab modify your required field and then rebind it .
    hope this clears your doubt.,
    Thanks & Regards,
    Kiran

  • Does updating CS6 with CC's app cancel the CS6 license?

    So my company bought me Adobe Production Premium CS6 about 2 years ago, and I have been happily using Premiere CS6, Photoshop CS6, Audition and more.
    Today we got Creative Cloud and have memberships for everyone in the creative team. I noticed that with the Creative Cloud toolbar App, I am able to update my CS6 version of apps, so I went ahead and updated Premiere CS6 to version 6.0.5.
    I know that files created in Premiere CC cannot be opened in CS6. And this got me thinking.
    So after buying Production Premium two years ago, my company and myself have a lifetime license of that product, which is great. Creative Cloud on the other hand is subscription based, and we all know that if we end that subscription, we lose access to Creative Cloud and all the apps within.
    My question is: If I updated Premiere CS6 using the Creative Cloud toolbar app thing, and if we eventually end our subscription to CC, will Premiere CS6 vanish because it was technically updated through the CC toolbar app? Would it revert to a version before 6.0.5?
    In essence my question is, is my lifetime license to the Production Premium CS6 suite affected by my subscription to CC? Would ending my CC subscription affect my installed CS6 apps in any way? And further-more would my licenses get all jumbled up in the Adobe authentication world?
    Thank you,
    Bobby

    Hi Bobby,
    bobbylongoria wrote:
    If I updated Premiere CS6 using the Creative Cloud toolbar app thing, and if we eventually end our subscription to CC, will Premiere CS6 vanish because it was technically updated through the CC toolbar app? Would it revert to a version before 6.0.5?
    No, you can always reinstall it from adobe.com and then add your serial number to be back up and running.
    bobbylongoria wrote:
    Would it revert to a version before 6.0.5?
    Yes, it will be at 6.0. However, you can update it to 6.0.5 from adobe.com.
    bobbylongoria wrote:
    In essence my question is, is my lifetime license to the Production Premium CS6 suite affected by my subscription to CC?
    No.
    bobbylongoria wrote:
    Would ending my CC subscription affect my installed CS6 apps in any way?
    No, you just have to install them from adobe.com if you ever end a Creative Cloud subscription.
    bobbylongoria wrote:
    And further-more would my licenses get all jumbled up in the Adobe authentication world?
    That shouldn't happen. We have all your info here so we can help you if you ever run into trouble. Just contact support.
    Thanks,
    Kevin

  • Open a new window with a sorting zreport when the navigation Link is pushed

    Hi,
    I'm new in CRM and I have not too much idea. I need to create a link into the IC Webclient and when I push it, a new (internet explorer) window should be opened and it should show a sorting Zreport (if it is possible, and ALV Zreport). Please could somebody give me some information about how to proceed?
    Thanks in advance,
    Bemiro.

    Hi.
    If you want to create a new link and when push it a new windows should be opened then you need use Transaction Launcher. If you are talking about ALV and ZReport into an internet explorer windows then you need ITS otherwise you need use BSP or any other HTML solution that SAP offers which also has something like ALV but with web layout.
    Armando

  • Why does Mail not update timely with Mavericks?  Why does the download to fix this issue (?) won't install?

    I installed Mavericks on my MacBook Pro when it first came out.  Since then, my Mail program doesn't go out and get my new mail from gmail every minute like it's set to do. Sometimes new mail shows up on my smart phone as long as 10 minutes before it shows up on my Mac.  I saw there was a stand-alone download for Mail on Mavericks meant to fix some gmail-Mavericks-Mail problems.  http://support.apple.com/kb/HT6030
    However, this will not install on my Mac.   The error message says simply that "this volume does meet the requirements for this update."  Can't figure out why.  I have plenty of memory.

    Try adjusting the settings in Mail:
    Mail > Preferences > General > Check For Incoming Messages: Every Minute
    Also, you may be downloading an incompatible 10.9.1 update (one is for newest retina Macbook Pro's, the other for remaining Macs). Navigate to the Apple Logo > Software Update...
    If it shows no software update available when the App Store opens, you are already running 10.9.1 (which includes the mail update).

  • New pc with windows 8.1, downloaded and installed cs5,no problem open bridge and cs5, but can't read raw file , try to update, can't complete or failed updating, please help

    new pc with windows 8.1, downloaded and installed cs5,no problem open bridge and cs5, but can't read raw file , try to update, can't complete or failed updating, please help

    Sounds like you somehow got the mac version.
    Download the windows 6.7 camera raw update from this link:
    Adobe - Photoshop : For Windows : Camera Raw 6.7 Update

  • Lightroom 5: After paste settings photo is not updated with new settings applied (sometimes)

    Hi all,
    anyone have seen same bug as me? When I copy develop settings with CTRL+SHIFT+C and then paste it to another photo with CTRL+SHIFT+V, sometimes the photo is not updated/rendered with new settings applied -> and yes, I see "paste settings" step in photo "history window". So when I press Undo and then Redo key, photo will render updated.
    I did try to reinstall LR 5 and optimize catalogue, problem is still there.
    (Win 7 x64, latest LR 5.6)

    Yes, I have similar problems. I'm guessing it's down to file size: With NEFs from my old D70 (5MB average) there was no problem, but with D610 files (30MB average) I'm getting a few problems, including 'not pasting settings'.
    LR seems to struggle with larger files. Don't have a solution, unfortunately.

Maybe you are looking for

  • HP PSC 2355 all-in-one Paper Jam Error

    Hi. I have an HP PSC 2355 all-in-one printer that has worked well for a long time but when i switched it on today to do some printing, it made some strange noises and when i tried to print it sent an error saying there was a paper jam - but there was

  • Enlarging Top-Level VI front panel

    I'm now customizing the TS4.0  version of the LabVIEW operator interface and I have a problem.  The monitor in my office is smaller than the monitor attached to the Rack that tests the UUT.  I'm trying to make the front panel bigger than my desk's fr

  • AS3 Blending Modes

    Hi all, I'm trying to apply the Screen Blending Mode to a Movie Clip.  I know how to do this using the properties panel if the clip is on the stage, but I need to do this purely with Actionscript 3 and I'm having difficuly finding how to do this prop

  • JMS adapter adding namespace to PIP. Please help!

    Hi Experts,   I have a XI scenario where 4C1 PIP is being sent to TIBCO.   The issue is that, the output PIP has a namespace <Pip4C1InventoryReportNotification xmlns:jms1="http://www.tibco.com/namespaces/tnt/plugins/jms">   But no where in XI this na

  • Define pricing procedure for flexible price. But how?

    Hi experts, The thing I want to do: I created a new procedure which calculates order amount by the number or materials. For example if a customer buys material between 1 and 99 he or she will pay 5 euro per a material.If customer buys at least 100 ma