Labels troubleshooting

Hi
Have you experience troubleshooting barcode label not printed complete. Like i printed 200 labels when printed process the labels printed only 100. In spool printers we must kill the job one by one then the labels continue printed 101 and so on.
I am using App Warehouse Management System ( Manhattan ) and the printers using Printronix T5024r series. Several Label Printers using HP Jetdirect 300X and some using Ethernet.
This topic first appeared in the Spiceworks Community

Update:
I'm concentrating on fixing AddressBook.
I copied the AddressBook folder from ~/Library/Application Support to an external drive and then put AddressBook folder in the Trash and emptied the Trash.
Then, I opened AddressBook.  At first, it included one Group with two contacts:  Apple, Inc. and me.  Then, I created a new Group.  When I went back to all contacts, it appears that my original 3900 contacts have returned.  I had not even tried to copy the old Metadata back into that folder.  They just magically appeared.  They didn't come from iCloud either since I'm only on Snow Leopard and iCloud only includes 2200 of the 3900 contacts.
The new question is there a way to get the all of the old Groups back?  I do have two groups on my iPhone (the same two that are in iCloud).  If I can't get all of the old Groups back, is there a way to put the 2 Groups from my iPhone into AddressBook without duplicating the contact names?
The main goal is not to import the additional 1700 contacts into my iPhone when sync'ing.
(I've read that the Groups are in a file that ends in abcdg but I had 3 of these in the old metadata folder so I didn't want to mess with them.)

Similar Messages

  • I am trying to download an album from ITUNES and I keep getting a "session has timed out" message with no further option but to try again. I get the same results. Anyone have any ideas?

    I am trying to download and album off ITUNES but when I get to the billing site and attempt to purchase it, it gives me a message saying "Your Session has timed out." It gives me no other option that to try again and I just keep getting the same results. Anyone have any ideas on what I can do?

    Hi, Kenny. 
    Thank you for visiting Apple Support Communities. 
    There are a couple things that I would recommend trying.  Try closing all open applications and power cycle the device.  Next, go through the section labeled Troubleshoot issues on an iPhone, iPad, or iPod touch in the second article below.  If the issue persists, try completely signing out of the iTunes Store on the iOS device and sign back in.  Be sure to test downloading an application after each step. 
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/ht1311
    Cheers,
    Jason H. 

  • Why does air display no longer work from IMac, with mavericks to apple tv???

    Ever since last two updates of Mavericks, I have not been able to broadcast to apple tv as extended or mirroring desktop. It says it is avalable, and does nothing but a black screen on apple tv, and does not even come up as a desktop in display prefrences. What should I do?   IMac:10.9.2

    Hello, IamOMan. 
    Thank you for visiting Apple Support Communities.
    Sometimes a simple power cycle of all devices can resolve this issue.  However, I would recommend taking a look at the section labeled Troubleshooting AirPlay Mirroring in the article below.  Make sure all updates have been processed for the Apple TV and Mac prior to troubleshooting. 
    About AirPlay Mirroring in OS X
    http://support.apple.com/kb/ht5404
    Cheers,
    Jason H.

  • Load XML file from different location?

    Hi All,
    I've been going through an exercise by Karl Matthews to load XML data into an AIR App:
    http://www.adobe.com/devnet/air/flex/articles/xml_viewer_on_air.html
    but I would like to change where the XML file used in the project is retrieved from.
    Currently the XML file is loaded from here:
    <!-- Set up the HTTP service from where we get the source XML data -->
    <mx:HTTPService id="srcData" url="
    assets/UserGuide.xml" result="loadModelData(event)"
    />
    but I would like to load the XML file from one of these locations instead:
    File.userDirectory:
    File.documentsDirectory:
    Can someone please show me how I should change the above code to accomplish this, as my efforts to date have not been successful :-(
    I am using Flex Builder 3 and Air 1.5.
    Thanks heaps!
    Tim

    Hi Bhasker,
    Thank you for replying.
    I am not very good at all this coding, but I am assuming I should now be doing entering the following:
    =======================
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication 
    xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"width="
    800" height="660"xmlns:comp="
    *" xmlns:fmtComp="fmtComps.*"creationComplete="srcData.send()"
    paddingLeft="
    0" paddingRight="0" paddingTop="0" paddingBottom="0">
    <mx:Script>
    <![CDATA[
    import mx.utils.ObjectProxy; 
    import mx.rpc.events.ResultEvent; 
    Bindable] 
    private var userManualObj:ObjectProxy; 
    private function loadModelData(event:ResultEvent):void
    userManualObj=event.result.UserManual;
    private function readXMLContent(xmlFile:File,objContentView:Object):Array{
    var reportDir:File = File.userDirectory.resolvePath("assets"); 
    var xmlFile:File; 
    var fileStream:FileStream = new FileStream(); xmlFile = reportDir.resolvePath(
    "UserGuide.xml"); 
    if(xmlFile.exists && xmlFile.size > 0)// Checking if the impressions.xml file already exists and the file is not empty
    var stream:FileStream = new FileStream(); 
    var xml:XML = new XML();stream.open(xmlFile, FileMode.READ);
    xml = XML(stream.readUTFBytes(stream.bytesAvailable));
    stream.close();
    ]]>
    </mx:Script>
    <!-- Set up the HTTP service from where we get the source XML data<mx:HTTPService id="srcData"
    url="assets/UserGuide.xml"
    result="loadModelData(event)"/> -->
    <mx:VBox width="100%" horizontalAlign="left" height="100%" paddingBottom="
    0" paddingLeft="0" paddingRight="0" paddingTop="0">
    <mx:TabNavigator width="100%" height="100%"paddingBottom="
    0" paddingLeft="0" paddingRight="0" paddingTop="0">
    <mx:Repeater id="modelsRep" dataProvider="{userManualObj.Product.Model}">
    <mx:VBox label="{modelsRep.currentItem.Name}" width="100%" height="100%">
    <comp:ModelDesc model="{modelsRep.currentItem}"/>  
    </mx:VBox>
    </mx:Repeater>
    <mx:VBox label="Troubleshooting" width="100%" height="100%"paddingBottom="
    0" paddingLeft="0" paddingRight="0" paddingTop="0">
    <comp:Troubleshooting issues="{userManualObj.Product.Troubleshooting.Issue}" />
    </mx:VBox>
    </mx:TabNavigator>
    </mx:VBox></mx:WindowedApplication>
    =======================
    and create and "assets" folder in my user directory placing the XML file in there?
    However when I do all that, I get this error when I try to compile:
      Encountered errors or warnings while building project main.mxml.
        main.mxml: Function does not return a value.
    Any thoughts?
    Many thanks,
    Tim

  • I just downloaded the new version of itunes to my PC and now it won't allow me to login

    I just downloaded the newest version of iTunes to my PC and I went to login to my account to change some of the settings, but now it will not allow me to do so. I even went in and changed my password and it still will not allow me to log in. I was able to login to my itunes on my iPhone and my iPad, its just my PC that isnt allowing me to do so.

    Hello ahermesman,
    Thank you for all the information of the steps you have taken.  The steps you took rule out a password issue, and it sounds like it is only happening on your PC.  I found an article that will help you troubleshoot this issue:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    Follow the steps under the section labeled "Troubleshooting on Windows." I hope this helps get you back on track! 
    Best,
    Sheila M.

  • For some reason over the past two weeks any time I tried to download an app from iTunes I keep getting an error message which says "unable to be downloaded try again later.

    Hello, Over the last few weeks I have been unable to download any new applications to my iPhone five. Every time it pops up with an error message that says "cannot download at this time try again later." I don't know if I have accidentally reset something differently or just what the problem is. We had to get bank cards as a result of the "target" security breach, however our bank shows that iTunes has "pinged" our account so I know that that part of it is working. I do not understand how the cloud where perhaps it has something to do with a conflict there.
    I am bordering on the edge of real frustration can anyone please help? Kenny V.

    Hi, Kenny. 
    Thank you for visiting Apple Support Communities. 
    There are a couple things that I would recommend trying.  Try closing all open applications and power cycle the device.  Next, go through the section labeled Troubleshoot issues on an iPhone, iPad, or iPod touch in the second article below.  If the issue persists, try completely signing out of the iTunes Store on the iOS device and sign back in.  Be sure to test downloading an application after each step. 
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/ht1311
    Cheers,
    Jason H. 

  • My iphone 4 says it can't connect to itunes store when I want to buy a ringtone for it.

    When my iphone 4 is connected to my computer, I can copy songs from my itune list but I can't buy ringtones from the itunes store. My iphone 4 says it can't connect to itunes store?

    Hi, Sclimer13.
    The steps in the article below will help you troubleshoot this issue.  See the section labeled Troubleshooting on an iPhone, iPad, or iPod touch.
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    Cheers,
    Jason H. 

  • Need help with navigation within a spark list...

    hey guys, so in my application when you click on a list item, it opens up an image, and along with the image a few buttons are created dynamically...
    the image and the url/labels for the dynamic buttons is provided through an xml/xmlListCollection.
    what i need help with is the url or more specifically when you click on one of these dynamic buttons it needs to navigate me to another part of an list or display a certain set of images that is not in my spark list...
    please let me know if this makes no sence
    the code i have is
    <code>
        [Bindable] private var menuXml:XML;
        [Bindable] private var imgList:XMLListCollection = new XMLListCollection();
        [Bindable] private var navControl:XMLListCollection = new XMLListCollection();
        [Bindable] private var fullList:XMLListCollection = new XMLListCollection();
        private var returnedXml:XMLListCollection = new XMLListCollection();
        private var myXmlSource:XML = new XML();
        //[Bindable] private var xmlReturn:Object;
        private var currImage:int = 0;
        //public var userOpProv:XMLListCollection = new XMLListCollection();
        //private var troubleShootProvider:XMLListCollection = new XMLListCollection();
        private function myXml_resultHandeler(event:ResultEvent):void{
            userOptionProvider.source = event.result.apx32.userOptions.children();
            troubleShootProvider.source = event.result.apx32.troubleShooting.children();
            fullList.source = event.result.apx32.children();
            returnedXml.source = event.result[0].children();
            myXmlSource = event.result[0];
        private function myXml_faultHandler(event:FaultEvent):void{
            Alert.show("Error loading XML");
            Alert.show(event.fault.message);
        private function app_creationComplete(event:FlexEvent):void{
            userOptions.scroller.setStyle("horizontalScrollPolicy", ScrollPolicy.OFF);
            myXml.send();
            //trouble.scroller.setStyle("horizontalScrollPolicy", ScrollPolicy.OFF);
            myXml = new HTTPService();
            myXml.url = "modules/apx32/apx32TroubleshootingXml.xml";
            myXml.resultFormat = "e4x";
            myXml.addEventListener(ResultEvent.RESULT, myXml_resultHandeler);
            myXml.addEventListener(FaultEvent.FAULT, myXml_faultHandler);
            myXml.send();
        private function troubleShootChange(event:IndexChangeEvent):void{
            dynamicButtons.removeAllElements();
            navControl.source = troubleShootProvider[event.newIndex].children();
            currImage = 0;
            imgList.source = troubleShootProvider[event.newIndex].images.children();
            definition.source = imgList[currImage].@url;
            if(imgList[currImage].@details == "true"){
                if(imgList[currImage].buttons.@hasButtons == "true"){
                    for each(var item:XML in imgList[currImage].buttons.children()){
                        var newButton:LinkButton = new LinkButton();
                        newButton.label = item.@name;
                        newButton.x = item.@posX;
                        newButton.y = item.@posY;
                        newButton.setStyle("skin", null);
                        newButton.styleName = "dynamicButtonStyle";
                        dynamicButtons.addElement(newButton);
            //var isMultiPage:String = navControl[2]["multiPages"];
            //trace(isMultiPage);
            //        if(isMultiPage){
            if(currImage >= imgList.length - 1){
                next.visible = false;
                back.visible = false;
            else{
                back.visible = false;
                next.visible = true;
        private function customButtonPressed(event:Event):void{
            if(imgList[currImage].button.@changeTo != ""){
        private function userOptionsChange(event:IndexChangeEvent):void{
            dynamicButtons.removeAllElements();
            navControl.source = userOptionProvider[event.newIndex].children();
            currImage = 0;
            imgList.source = userOptionProvider[event.newIndex].images.children();
            definition.source = imgList[currImage].@url;
            if(imgList[currImage].@details == "true"){
                if(imgList[currImage].buttons.@hasButtons == "true"){
                    for each(var item:XML in imgList[currImage].buttons.children()){
                        var newButton:LinkButton = new LinkButton();
                        newButton.label = item.@name;
                        newButton.x = item.@posX;
                        newButton.y = item.@posY;
                        newButton.setStyle("skin", null);
                        newButton.styleName = "dynamicButtonStyle";
                        newButton.addEventListener(MouseEvent.MOUSE_DOWN, customButtonPressed);
                        dynamicButtons.addElement(newButton);
            var isMultiPage:String = navControl[2]["multiPages"];
            if(isMultiPage == "true"){
                if(navControl[2]["next"] == "NEXT STEP"){
                    navContainer.x = 630;
                else{
                    navContainer.x = 640;
                next.label = navControl[2]["next"];
                back.label = navControl[2]["back"];
            if(currImage >= imgList.length - 1){
                next.visible = false;
                back.visible = false;
            else{
                back.visible = false;
                next.visible = true;
        private function nextClickHandler(event:MouseEvent):void{
            currImage += 1;
            dynamicButtons.removeAllElements();
            if(currImage >= imgList.length-1){
                currImage = imgList.length - 1;
                //next.visible = false;
                next.label = "YOU'RE DONE";
            else
                next.label = navControl[2]["next"];
            back.visible = true;
            if(imgList[currImage].@details == "true"){
                if(imgList[currImage].buttons.@hasButtons == "true"){
                    for each(var item:XML in imgList[currImage].buttons.children()){
                        var newButton:LinkButton = new LinkButton();
                        newButton.label = item.@name;
                        newButton.x = item.@posX;
                        newButton.y = item.@posY;
                        newButton.setStyle("skin", null);
                        newButton.styleName = "dynamicButtonStyle";
                        dynamicButtons.addElement(newButton);
            definition.source = imgList[currImage].@url;
        private function backClickHandler(event:MouseEvent):void{
            currImage -= 1;
            dynamicButtons.removeAllElements();
            if(currImage == 0){
                back.visible = false;
            next.visible = true;
            next.label = navControl[2]["next"];
            if(imgList[currImage].@details == "true"){
                if(imgList[currImage].buttons.@hasButtons == "true"){
                    for each(var item:XML in imgList[currImage].buttons.children()){
                        var newButton:LinkButton = new LinkButton();
                        newButton.label = item.@name;
                        newButton.x = item.@posX;
                        newButton.y = item.@posY;
                        newButton.setStyle("skin", null);
                        newButton.styleName = "dynamicButtonStyle";
                        dynamicButtons.addElement(newButton);
            definition.source = imgList[currImage].@url;
    </code>
    i have attached a copy of the xml that i have right now to this post for reference...
    any help will be greatly appretiated!!! i've been stuck on this problem for the last week and my project is due soon
    again thank you in advance...

    hey david... just nevermind my previous post... I was able to subclass a link button, so i now have two variables that get assigned to a link button,
    one is "tabId" <-- contains the information on which tab to swtich to, and the second is, "changeTo"... this contans the label name which it needs to switch to
    I'm just stuck on how to change my selected item in my tabNavigator/list
    the code i have right now is
        private function customButtonPressed(event:Event):void{
            if(event.currentTarget.tabId == "troubleShooting"){
                for each(var item:Object in troubleShootProvider){
                    if(item.@label == event.currentTarget.changeTo){
        private function userOptionsChange(event:IndexChangeEvent):void{
            dynamicButtons.removeAllElements();
            navControl.source = userOptionProvider[event.newIndex].children();
            currImage = 0;
            imgList.source = userOptionProvider[event.newIndex].images.children();
            definition.source = imgList[currImage].@url;
            if(imgList[currImage].@details == "true"){
                if(imgList[currImage].buttons.@hasButtons == "true"){
                    for each(var item:XML in imgList[currImage].buttons.children()){
                        var newButton:customLinkButton = new customLinkButton();
                        newButton.label = item.@name;
                        newButton.tabId = item.@tab;
                        newButton.changeTo = item.@changeTo;
                        newButton.x = item.@posX;
                        newButton.y = item.@posY;
                        newButton.setStyle("skin", null);
                        newButton.styleName = "dynamicButtonStyle";
                        newButton.addEventListener(MouseEvent.MOUSE_DOWN, customButtonPressed);
                        dynamicButtons.addElement(newButton);
            var isMultiPage:String = navControl[2]["multiPages"];
            var videoPresent:String = navControl[1]["videoPresent"];
            if(videoPresent == "true"){
                if(isMultiPage != "true"){
                    navContainer.x = 825;
            if(isMultiPage == "true"){
                if(navControl[2]["next"] == "NEXT STEP"){
                    navContainer.x = 630;
                else{
                    navContainer.x = 640;
                next.label = navControl[2]["next"];
                back.label = navControl[2]["back"];
            if(currImage >= imgList.length - 1){
                next.visible = false;
                back.visible = false;
            else{
                back.visible = false;
                next.visible = true;
    as you know, my xml gets divided into two saperate xmllistcollections one is the userOptionProvider, and the troubleshootingProvider
    as is in the following xml
    <mx:TabNavigator id="tabNav" width="275" tabStyleName="tabStyle" fontWeight="bold" height="400" paddingTop="0"
                             tabWidth="137.5" creationPolicy="all" borderVisible="false">
                <mx:VBox label="USER OPTIONS" width="100%" height="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off">
                    <s:List id="userOptions" width="100%" height="100%" itemRenderer="modules.apx32.myComponents.listRenderer"
                            borderVisible="false" contentBackgroundColor="#e9e9e9"
                            change="userOptionsChange(event)">
                        <s:dataProvider>
                            <s:XMLListCollection id="userOptionProvider" />
                        </s:dataProvider>
                    </s:List>
                </mx:VBox>
                <mx:VBox label="TROUBLESHOOTING">
                    <s:List id="trouble" width="100%" height="100%" itemRenderer="modules.apx32.myComponents.listRenderer"
                            borderAlpha="0" borderVisible="false" contentBackgroundColor="#e9e9e9"
                            change="troubleShootChange(event)">
                        <s:dataProvider>
                            <s:XMLListCollection id="troubleShootProvider" />
                        </s:dataProvider>
                    </s:List>
                </mx:VBox>
            </mx:TabNavigator>
    Im having some trouble updating my list... basically change to the troubleshooting tab, and then select the one that i need...
    hopefully that makes sence...

  • Has anyone solved the Apple Map App problem of no map data?

      I have a blank screen unless zoomed way out when continents are visible in very pale green.  When zoomed in, there is nothing visible at all, except the blue blob showing where I am, and oddly if I turn on traffic, then some traffic symbols appear.  It is impossible to remove then re-install the app, so is there anything else I can do short of restoring the iPhone?
    Thanks in advance for replies.

    Hi, bridgarw2.
    I would recommend closing any open applications in multitasking and restarting the device.  If unfamiliar with multitasking, I have included a screenshot on how to process an application close.  Test the results after processing these steps. 
    If the issue persists, see the section labeled Troubleshooting Maps in the article below. 
    iOS 6: Using Maps
    http://support.apple.com/kb/HT5429
    Cheers,
    Jason H. 

  • There's something wrong with my device. Unable to check updates and couldn't download or install any application from the AppStore .please advice me how to solve this problem .

    unable to check updates and couldnt download or install any application

    Hi, mayca07.  
    Thank you for visiting Apple Support Communities. 
    I would need more information regarding the exact issue or errors received to provide a better answer.  However, there are a couple things that I would recommend trying.  Try forcing all open applications to close and restart the device.  Next, go through the section labeled Troubleshoot issues on an iPhone, iPad, or iPod touch in the second article below.  
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    Cheers,
    Jason H.

  • TS1368 Error while connect to iTunes store from iPad 3

    Hello! I am from Russia. I can't connect to iTunes store from my iPad 3 device. Message is "Не удается подключиться к iTunes Store". That's all... There is no detail information. My wi-fi Internet connection is work fine.

    Hi Robby18,
    Here is an article of recommended troubleshooting steps for iTunes Store connection issues:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    See the section labeled "Troubleshooting on an iPhone, iPad, or iPod touch."  If the issue isn't resolved, there are 2 additional articles linked in "Additional Information" that may provide additional ideas.
    Cheers!
    - Ari

  • My nokia 6085 shows an error msg which says Enhanc...

    hello people,
    as the topic says my nokia 6085 shoes an error msg which says enhancement not supported even though there isnt any enhancement connected to the phone plz help me to sort out this problem asap it has made my life hell!!!!
    thanks in advance

    Hi, Kenny. 
    Thank you for visiting Apple Support Communities. 
    There are a couple things that I would recommend trying.  Try closing all open applications and power cycle the device.  Next, go through the section labeled Troubleshoot issues on an iPhone, iPad, or iPod touch in the second article below.  If the issue persists, try completely signing out of the iTunes Store on the iOS device and sign back in.  Be sure to test downloading an application after each step. 
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/ht1311
    Cheers,
    Jason H. 

  • I keep getting an error message that says: unable to process HyperEvent . Why?

    Whenever I tried to access my SmartSnipe account I get an error message (see above), and it won't let me in. If I go in through Internet Explorer instead of Firefox I do not have this problem. How can I access my account using your browser?

    Hi, Kenny. 
    Thank you for visiting Apple Support Communities. 
    There are a couple things that I would recommend trying.  Try closing all open applications and power cycle the device.  Next, go through the section labeled Troubleshoot issues on an iPhone, iPad, or iPod touch in the second article below.  If the issue persists, try completely signing out of the iTunes Store on the iOS device and sign back in.  Be sure to test downloading an application after each step. 
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/ht1311
    Cheers,
    Jason H. 

  • Datagrid/list item saperator need help

    hey guys.... so i got another question lol
    im trying for a list to look exactly like the image i have attached to this post...
    basically space between each item and a dotted line image on the bottom of that image....
    anyone have any ideas??
    i have the following so far...
        <mx:TabNavigator width="275" height="400">
            <mx:VBox label="USER OPTIONS" width="100%" height="100%">
                <s:List width="100%" height="100%">
                    <s:dataProvider>
                        <s:ArrayList>
                            <fx:Object label="Adjust Volume" />
                            <fx:Object label="Arm/Disarm System" />
                            <fx:Object label="Change Mastercode" />
                            <fx:Object label="Secondary Codes" />
                            <fx:Object label="Bypass the Sensors" />
                            <fx:Object label="Record/Delete Messages" />
                            <fx:Object label="Set Time" />
                            <fx:Object label="System Status" />
                        </s:ArrayList>
                    </s:dataProvider>
                </s:List>
            </mx:VBox>
            <mx:VBox label="TROUBLESHOOTING">
            </mx:VBox>
        </mx:TabNavigator>

    cyber,
    I'd look at making a custom item rendererer and then adding a repeating fill BitmapImage at the bottom (or top):
    <?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/halo">
        <s:Label id="labelDisplay"
                 left="4" right="4" top="4" bottom="5" />
        <s:BitmapImage id="dottedLine"
                       source="@Embed('../redbluebg.gif')"
                       fillMode="repeat"
                       width="100%"
                       bottom="0" />
    </s:ItemRenderer>
    And then set the item rederer in your main app:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx">
        <s:layout>
            <s:VerticalLayout paddingLeft="20" paddingTop="20" />
        </s:layout>
        <s:controlBarContent>
            <s:HSlider id="sl" minimum="20" maximum="600" value="100" />
        </s:controlBarContent>
        <s:List id="lst" itemRenderer="skins.foo" labelField="firstName" width="{sl.value}">
            <s:dataProvider>
                <s:ArrayList>
                    <fx:Object firstName="1.One" lastName="1.Two" />
                    <fx:Object firstName="2.One" lastName="2.Two" />
                    <fx:Object firstName="3.One" lastName="3.Two" />
                    <fx:Object firstName="4.One" lastName="4.Two" />
                    <fx:Object firstName="5.One" lastName="5.Two" />
                    <fx:Object firstName="6.One" lastName="6.Two" />
                    <fx:Object firstName="7.One" lastName="7.Two" />
                </s:ArrayList>
            </s:dataProvider>
        </s:List>
    </s:Application>
    Peter

  • HT4095 I've rented an SD movie from iTunes but cannot download it. Message reads "download error" followed by a small window with message "movie cannot be downloaded at this time. I have been billed by iTunes. What next?

    I've rented an SD movie from iTunes but cannot download it as I normally do to my iPad 2. Message reads "download error" followed by a small window with message "movie cannot be downloaded at this time". I have been billed by iTunes. What next?

    Hi, Kenny. 
    Thank you for visiting Apple Support Communities. 
    There are a couple things that I would recommend trying.  Try closing all open applications and power cycle the device.  Next, go through the section labeled Troubleshoot issues on an iPhone, iPad, or iPod touch in the second article below.  If the issue persists, try completely signing out of the iTunes Store on the iOS device and sign back in.  Be sure to test downloading an application after each step. 
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/ht1311
    Cheers,
    Jason H. 

Maybe you are looking for

  • Parallel ledgers in ECC 6.0

    Dear Friends, We are in ECC 6.0 version and wants to configure Parallel ledger in ECC 6.0 for our client which comes under new GL accounting concept. Before configuring we need to give demo to our client including some sample entries in SAP. I know t

  • When I open a new windows in IE doesn't appear maximized

    Hello When I click in a link to open a new windows in Internet Explorer I use this code: on (press) {getURL("http://www.google.com", blank); Everything is fine but the new windows is NOT maximized, I would like that new windows appears maximized in I

  • Old Aquablue G3 iMac as a monitor?

    Folks, I'm as dumb as a box of rocks, never more so than when it comes to computers. That established, I recently bought a Mac mini and hoped to use my old G3 iMac as a monitor. The 'poser' at Compuserve sent me home with all manner of expensive cabl

  • Material Movements activation procedure

    Hi, I'm not an MM specialist and I need to activate the business content for Material Movements and I need a good guide for what needs to be done on the ERP side. I've found this help (http://help.sap.com/saphelp_nw70/helpdata/en/5b/8dc73cee4fb55be10

  • How to get ESB's runtime?

    How to get exact ESB's runtime,when i replicate data in one table on one database to table on another database. thank you advance! lemon...