custom badges

Hello

I have a custom buttonfield who painted just the button and the centered text and is clicked, an instance of the button with the following code that needs to call the loginScreen method when either the trackball or enter is pressed. However, when I run it enter doesn't seem to work. Please tell me what I'm doing wrong. Furthermore, I would also like to have the loginScreen of call button when the user presses the letter 'L '. I thought that this could also be done using the keyDown method, but do not know exactly how do.

public OTButtonField loginButton = new OTButtonField (LoginApp.getString)
LoginApp.B_LOGIN))
{
protected boolean invokeAction (int action)
{
loginScreen();
Returns true;
}
        
protected boolean keyDown (keycode, int, int times)
{
Switch (keycode)
{
case Keypad.KEY_ENTER:
loginScreen();
Returns true;
}
Returns false;
}
};

Why don't you use keyChar() instead of keyDown()?

protected boolean keyChar(char c, int status, int time) {
  switch (c) {
    case Characters.ENTER:
    case 'l':
    case 'L':
      loginScreen();
      return true;
    default:
      return super.keyChar(c, status, time);
  }
}

Feel free to add others as you see fit.  You can also check the status using the KeypadListener constants.

Tags: BlackBerry Developers

Similar Questions

  • The iOS custom badge

    Y at - it an app that allows me to send an email to a service and thus the badge on the app changes everything that was in the title of the email?  I don't seem to be able to find something that does that.

    Thank you

    Hello

    If you're talking about custom app icon badges so I'm afraid that's not possible.

  • Problem with fieldChanged() and custom button field

    Hello

    I created a custom button class by extending LabelField.  I chose LabelField over field because the LabelField contains desirable properties that are already being implemented.  The only problem I'm having has to do with the change listener.  It seems to 'steal' the event click on other areas in my application.

    For example, when I click on the custom button, a popupscreen with a listfield opens. When I click on an item in the listfield, then the fieldChanged() of custom button is called again...

    Can you see anything wrong with my code?

    package com.rantnetwork.fields;
    
    import com.rantnetwork.app.Constants;
    import net.rim.device.api.system.Display;
    import net.rim.device.api.ui.Color;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.Font;
    import net.rim.device.api.ui.Graphics;
    import net.rim.device.api.ui.Ui;
    import net.rim.device.api.ui.XYEdges;
    import net.rim.device.api.ui.component.LabelField;
    import net.rim.device.api.ui.decor.BackgroundFactory;
    import net.rim.device.api.ui.decor.BorderFactory;
    
    public class CustomButtonField extends LabelField {
    
        private boolean highlighted = false;
    
        public CustomButtonField(String text, long style) {
            super(text, style | Field.FOCUSABLE | LabelField.ELLIPSIS);
    
            setPadding(10, 0, 10, 5);
    
            setFont(Font.getDefault().derive(Font.BOLD,
                    Constants.DEFAULT_FONT_SIZE, Ui.UNITS_pt));
    
            setBackground(BackgroundFactory.createLinearGradientBackground(
                    0x163d7c, 0x163d7c, 0x03162d, 0x03162d));
            setBorder(BorderFactory
                    .createBevelBorder(new XYEdges(1, 1, 1, 1), new XYEdges(
                            Color.BLACK, Color.BLACK, Color.BLACK, Color.BLACK),
                            new XYEdges(Color.BLACK, Color.BLACK, Color.BLACK,
                                    Color.BLACK)));
    
        }
    
        public int getPreferredWidth() {
            return Display.getWidth() / 3;
        }
    
        protected void paint(Graphics graphics) {
            graphics.setColor(Color.WHITE);
            super.paint(graphics);
        }
    
        protected void drawFocus(Graphics graphics, boolean on) {
            // Do nothing
        }
    
        protected boolean navigationClick(int status, int time) {
            fieldChangeNotify(1);
            return true;
        }
    
        protected void onFocus(int direction) {
            if (!highlighted) {
                setBackground(BackgroundFactory.createLinearGradientBackground(
                        0x4bb7df, 0x4bb7df, 0x1b96da, 0x1b96da));
                setBorder(BorderFactory.createBevelBorder(new XYEdges(1, 1, 1, 1),
                        new XYEdges(Color.BLACK, Color.BLACK, Color.BLACK,
                                Color.BLACK), new XYEdges(Color.BLACK, Color.BLACK,
                                Color.BLACK, Color.BLACK)));
            }
        }
    
        protected void onUnfocus() {
            if (!highlighted) {
                setBackground(BackgroundFactory.createLinearGradientBackground(
                        0x163d7c, 0x163d7c, 0x03162d, 0x03162d));
                setBorder(BorderFactory.createBevelBorder(new XYEdges(1, 1, 1, 1),
                        new XYEdges(Color.BLACK, Color.BLACK, Color.BLACK,
                                Color.BLACK), new XYEdges(Color.BLACK, Color.BLACK,
                                Color.BLACK, Color.BLACK)));
            }
        }
    
        public void showHighlighted(boolean focus) {
            if (focus) {
                highlighted = true;
                setBackground(BackgroundFactory.createLinearGradientBackground(
                        0x4bb7df, 0x4bb7df, 0x1b96da, 0x1b96da));
                setBorder(BorderFactory.createBevelBorder(new XYEdges(1, 1, 1, 1),
                        new XYEdges(Color.BLACK, Color.BLACK, Color.BLACK,
                                Color.BLACK), new XYEdges(Color.BLACK, Color.BLACK,
                                Color.BLACK, Color.BLACK)));
            } else {
                highlighted = false;
                setBackground(BackgroundFactory.createLinearGradientBackground(
                        0x163d7c, 0x163d7c, 0x03162d, 0x03162d));
                setBorder(BorderFactory.createBevelBorder(new XYEdges(1, 1, 1, 1),
                        new XYEdges(Color.BLACK, Color.BLACK, Color.BLACK,
                                Color.BLACK), new XYEdges(Color.BLACK, Color.BLACK,
                                Color.BLACK, Color.BLACK)));
            }
            invalidate();
        }
    
        public boolean isHighlighted() {
            return highlighted;
        }
    
    }
    

    behrk2 wrote:

    Now, I'm not sure why customButton.setText (calling) would trigger the fieldChanged().  Can anyone think of a reason why he can do?

    Thank you!

    Can you think of a reason why we can't do that? The field has changed, after all! Of course, the context (second argument to fieldChanged) will be PROGRAMMATIC in this case, that might be a pretty good indication for you. But not invoke fieldChanged at all would be wrong.

    This is why I don't like the idea of extending LabelField and not just the field for your custom badges - you have much less control over his behavior. If you want an example showing how to create abstract off-screen buttons, take a look at BaseButtonField and his descendants in managers, fields and advanced buttons.

  • Visibility of the custom button based on Spec stage

    Hi, I was wondering if it would be possible to have one of our custom badges visible only when the specifications are in a certain State of workflow.

    So I in my XML the attribute Visible tag, and currently it only checks if the specificaiton is a certain type:

    Visible = "eval: ${ObjectType} is 6500" "

    That works very well, but how do I add to check the status of workflow?  I could not find an example of this in the Configuratoin of Navigation Guide.

    Thank you

    You must pass two arguments

    1. an IBaseSpec, you can get the SpecService or an ISpecSummary,.

    2. a collection of tag behaviorIDs

    If the following code:

    else if (Oracle.Agile.PlmProcess.PLM4PExtensionUtils.Workflow.SpecWorkflowTagEvaluator.IsSpecInWorkflowStatusByTagID(SpecService, 4))
    

    should be

    (if

    else if (Oracle.Agile.PlmProcess.PLM4PExtensionUtils.Workflow.SpecWorkflowTagEvaluator.IsSpecInWorkflowStatusByTagID((IBaseSpec)SpecService.Current,  new[] {SpecWorkflowTagEvaluator.TAG_IsApproved }))
    

    or

    else if (Oracle.Agile.PlmProcess.PLM4PExtensionUtils.Workflow.SpecWorkflowTagEvaluator.IsSpecInWorkflowStatusByTagID((IBaseSpec)SpecService.Current,  new[] {4} ))
    


    . If you check just the IsApproved tag, then the SpecWorkflowTagEvaluator has a method of IsSpecApproved also which takes a single parameter, the IBaseSpec.

    else if (Oracle.Agile.PlmProcess.PLM4PExtensionUtils.Workflow.SpecWorkflowTagEvaluator.IsSpecApproved((IBaseSpec)SpecService.Current))
    
  • Custom development/unfocus listfield problem

    Hi guys,.

    I followed and adapted a few custom listfield and produced the code below. The layout fields works exactly as I intended, however, I ran into problems to repaint when the focus changes as I scroll around the fields.

    Scroll down the first elements in the list, focus changes as it should. When the focus switches to the listfield, who is at the bottom of the screen (as in the last field that is displayed, not necessarily the last field in the list), the target element is displayed correctly, but the text of all the other fields is preparing to the color that the target text must be. The fuzzy text remains then the color targeted until I do scroll up even once, when he again changes in how it should be.

    Sorry if it is not very clear... I can post screenshots if it's not understandable!

    The code used is the following:

    ListField custom

    public class MatchListField extends ListField implements FieldChangeListener
    {
        private boolean hasFocus;
        private static final int LIGHT_TEXT  = 0xe6ce03;
        private static final int DARK_TEXT  = 0x054b93;
        private final int[] cols = new int[]{ 0xe6ce03, 0xf9f1af, 0xf9f1af, 0xe6ce03 };
    
        public MatchListField()
        {
            super();
            setRowHeight( 50 );
        }   
    
        public int moveFocus(int amount, int status, int time)
        {
            invalidate();
            return super.moveFocus(amount,status,time);
        }
    
        public boolean isFocusable()
        {
            return true;
        }
    
        //Invoked when this field receives the focus.
        protected void onFocus(int direction)
        {
            hasFocus = true;
            super.onFocus(direction);
            invalidate();
        }
    
        //Invoked when a field loses the focus.
        protected void onUnfocus()
        {
            hasFocus = false;
            super.onUnfocus();
        }
    
        protected void paint( Graphics graphics )
        {
            //Get the current clipping region as it will be the only part that requires repainting
            XYRect redrawRect = graphics.getClippingRect();
            if(redrawRect.y < 0)
            {
                throw new IllegalStateException("Clipping rectangle is wrong.");
            }
    
            //Determine the start location of the clipping region and end.
            int rowHeight = getRowHeight();
    
            int curSelected;
    
            //If the ListField has focus determine the selected row.
            if (hasFocus)
            {
                 curSelected = getSelectedIndex();
            }
            else
            {
                curSelected = -1;
            }
    
            int startLine = redrawRect.y / rowHeight;
            int endLine = ( redrawRect.y + redrawRect.height - 1 ) / rowHeight;
            endLine = Math.min( endLine, getSize() );
            int y = startLine * rowHeight;
    
            //Setup the data used for drawing.
            int[] yInds = new int[]{y, y, y + rowHeight, y + rowHeight};
            int[] xInds = new int[]{0, getPreferredWidth(), getPreferredWidth(), 0};     
    
            //Draw each row
            for( ; startLine <= endLine; startLine++ )
            {
                if (startLine != curSelected)
                {
                    //Draw the non selected rows.
                    graphics.setColor( LIGHT_TEXT );
                    super.paint( graphics );
                }
                else
                {
                    //Draw the selected rows.
                    graphics.drawShadedFilledPath( xInds, yInds, null, cols, null );
                    graphics.setColor( DARK_TEXT );
                    super.paint( graphics );
                }
                //Assign new values to the y axis moving one row down.
                y += rowHeight;
                yInds[0] = y;
                yInds[1] = yInds[0];
                yInds[2] = y + rowHeight;
                yInds[3] = yInds[2];
    
            }
        }
    }
    

    Custom ListFieldCallback:

    public class MatchListCallback implements ListFieldCallback {
    
        private Vector _listElements = new Vector();
    
        public void drawListRow(ListField listField, Graphics graphics, int index, int y, int width)
        {
            MatchListField matchList = ( MatchListField ) listField;
            MatchListRowManager rowManager = ( MatchListRowManager ) _listElements.elementAt( index );
            rowManager.drawRow( graphics, 0, y, width, matchList.getRowHeight() );
        }
    
        //Returns the object at the specified index.
        public Object get(ListField list, int index)
        {
            return _listElements.elementAt(index);
        }
    
        //Returns the first occurence of the given String, bbeginning the search at index,
        //and testing for equality using the equals method.
        public int indexOfList(ListField list, String p, int s)
        {
            //return listElements.getSelectedIndex();
            return _listElements.indexOf(p, s);
        }
    
        //Returns the screen width so the list uses the entire screen width.
        public int getPreferredWidth(ListField list)
        {
            return Display.getWidth();
        }
    
        //Adds a String element at the specified index.
        public void insert( String homeTeam, String awayTeam, int homeGoals, int awayGoals )
        {
            MatchListRowManager row = new MatchListRowManager();
            Bitmap badge1 = Bitmap.getBitmapResource( homeTeam + ".png" );
            Bitmap badge2 = Bitmap.getBitmapResource( awayTeam + ".png" );
    
            row.add( new BitmapField( badge1 ) );
            row.add( new LabelField( homeTeam, LabelField.USE_ALL_WIDTH | LabelField.ELLIPSIS ));
            row.add( new LabelField( homeGoals + " - " + awayGoals, LabelField.USE_ALL_WIDTH | LabelField.ELLIPSIS | DrawStyle.HCENTER ));
            row.add( new LabelField( awayTeam, LabelField.USE_ALL_WIDTH | LabelField.ELLIPSIS | LabelField.RIGHT ));
            row.add( new BitmapField( badge2 ) );
    
            _listElements.addElement( row );
        }
    
        //Erases all contents.
        public void erase()
        {
            _listElements.removeAllElements();
        }
    
    }
    

    The manager used for individual fields of page layout that make up each listfield:

    public class MatchListRowManager extends Manager
    {
    
        public MatchListRowManager()
        {
            super( 0 );
        }
    
        public void drawRow( Graphics g, int x, int y, int width, int height )
        {
            layout( width, height );
            setPosition( x, y );
            g.pushRegion( getExtent() );
            subpaint( g );
    
            g.popContext();
        }
    
        protected void sublayout(int width, int height )
        {
            int preferredWidth = getPreferredWidth();
    
            //badge 1 field
            Field field = getField( 0 );
            layoutChild( field, 40, 40 );
            setPositionChild( field, 0, 5 );
    
            //home team field
            field = getField( 1 );
            layoutChild( field, ( preferredWidth - 160 ) / 2, 40 );
            setPositionChild( field, 42, 10 );
    
            //score field
            field = getField( 2 );
            layoutChild( field, 80, 40 );
            setPositionChild( field, 42 + ( preferredWidth - 164 ) / 2, 10 );
    
            //away team field
            field = getField( 3 );
            layoutChild( field, ( preferredWidth - 160 ) / 2, 40 );
            setPositionChild( field, 42 + 80 + ( preferredWidth - 164 ) / 2, 10 );
    
            //badge2 field
            field = getField( 4 );
            layoutChild( field, 42, 40 );
            setPositionChild( field, preferredWidth - 40, 5 );
    
            setExtent( preferredWidth, getPreferredHeight() );
        }
    
        public int getPreferredWidth()
        {
            return Display.getWidth();
        }
    
        public int getPreferredHeight()
        {
            return 50;
        }
    
    }
    

    I've tested this using the Bold 9700 Simulator with the API 5.0.

    I had a quick glance at some of the other posts about personalized listfields and have had no joy to find a solution so far. I would be grateful if someone could point me in the right direction here.

    I only have a few months of experience with Java programming, and very little experience developing for BlackBerry, so if there are no other pointers of how I could put this implementation, then that would be most appreciated.

    Thanks in advance!

    Suddenly appeared to me...

    Use this.getCallback () to get the instance of MatchListCallback and then replaced two calls super.paint (graph) with:

    callBack.drawListRow (this, graphics, startLine, xInds [0]);

    Problem solved.

    Thanks for the help, he led me on the right track!

  • modification of data cm14 models: badges (logos) conditional

    So the end of the game is that on the existing forms of cm14 we will need to insert conditional badges. I've seen some articles on how to do this with a new shape with the Word add, which seems to be another question, I'm going to.

    The solution I thought of is:

    1. create a field (or table) within the existing proj db

    2 edit model of data to include the url field in dataset (DM_DAI01a) renamed it

    3. change the sample data to populate the new field

    4 Insert the image using an attribute of field (text field inserted to show the value after that I was running into issues, also)

    5. overview with sample data and get the result I'm looking for

    6. save the model and raise it in cm14 when hit print or print preview (daily logs of reports). no url is in the text field, or that the image is not visible (white space)

    Notes:

    1. If I create a separate I dataset and join them I get an error when I go to preview before printing.

    2. If I take the dataset sql and run the query on the ms sql database, I get back, I expect.

    Don't know if I am missing a step or what, but any which way on editing of existing data models CM14 I think would be useful

    Just in case someone comes all this. It is, in my opinion, the best way to have conditional badges for each workstation without a lot of rework whenever you have a new project/job

    create custom fields for a logo/badge url (make sure you have enough characters) - cm ui

    Update field in each proj on the custom fields tab (should be a url) - cm ui

    update of the data (except with regard to trials) model - bi

    update the sample data with the new field - bi

    Open the form (except with regard to trials) - bi

    Insert the image using field, which will be the url (custom field). -bi

    Save the form - bi

    test - cm ui

  • vRealize operations - custom data center

    I have created two centres of custom data in the vRealize operations 6.1 Standard edition (each consisting of two Clusters of ESXi). After the creation of the 'health', 'Risk' and 'Efficiency' show gray question marks in the Statute, but the alarms is correctly filled. When I log out vRealize operations and you connect again (a little later) my custom data centers has disappeared. Someone has any idea how to solve this problem?

    Thank you

    Roland

    The grey '? "badges at the start are expected.  (1) the created object is new. (2) vROps needs time to aggregate scores badge for multiple groups added to your custom data center.  It is therefore quite normal.

    As to why they would disappear, I have no idea, but here are a few things to check.  Check under explore the inventory and see if your custom data center still exists as an object.  If this is the case, make sure that you connect back with the same user ID that you have created with.  Make sure that the user has permission to view this object.  Preferably, use admin if possible.

  • Re: Alerts &amp; Badges

    Hello guys,.

    I have a few questions about alerts

    Alerts are divided as Insignia score alerts, flaws and administrative alerts.

    1. What is the difference between error alerts and administrative alerts?
    2. What is the difference between smart and alert alerts classics?
    3. The Badge score alerts, alerts the fault and administrative alerts fell intelligent alerts?

    Badges:

    1. What are the components fall insignia the insignia VM Alerts tab of configuration of vcops and Infrastructure?

    Thank you

    VK

    Classic alerts can be defined in the custom user interface. You must create a Package attribute with a custom thresholds and alerts.

    Badge alerts Score is when a badge has breached a threshold (Configuration-> Badge and alerts).

    Your last Question... don't forget the badge Anomalies also have thresholds... so not quite true.

  • custom sequence?

    used to be a user first and thought the return of the final Cup after all the hooplah

    on fcp x. I like that I can open the FCP xml files. question, however. I have a lot of material

    in a format customized. When I went to put in place a new sequence, all I saw were

    predefined settings. is it possible to make a custom sequence? or, perhaps, edit an existing one

    Preset to make a custom?

    Thank you

    Jonathan

    Ah - you're using CS5, and I was talking about CS5.5. We have badges version on this forum!

    But yes, you have:

    General (CS5) = Settings (CS5.5)

    Desktop (CS5) = Custom (CS5.5)

    Everything else - at least as much as the creation of a sequence - should be the same. Follow the above, by using these translations and that you will be able to put in place a sequence that you need.

  • Poor - and not yet no answer customer service!

    Hello!

    My apologies for the weird subject but heading I really wanted to attract someone's attention because at the present time (a guy called Paul online support side) nobody came back to me at all about my recent visit to your store from Covent Garden and the very disappointing time there.

    In short if your management team he has just done what they said they'd do and return my call to discuss things further as a guy named will be very kindly suggested I do we would not be here!

    This email comes from me trying to talk to a member of the management team after my visit to Covent Garden on September 22 and the feedback left by me after my experience so far here.

    Will me has called and left a message on 30 September by inviting me to remember to discuss also I have does - no call back. So I didn't call back the next day - no call back and the next day still no call. We are now on day 5 and after talking to someone in the store who very frankly really seemed to not want to be there and really seemed not the least bit interested to help me at all I'm resigned now pretty much on the fact that I get not this call and will not in fact also discuss how some members of staff there myself and the day my wife turning what was supposed to be one of the highlights of our stay in London in one of the low points.

    I talked to a representative of the online customer service which was fantastic, although itself also agreed that realistic, my chances are slim to a call back that he was however able to seize a member of the business team that supposedly spent on the information of countless previous officials do not have in the hope of a return call We'll see if it succeeded or not - I doubt that very much.

    So I'll now emailing this email to all the world that I can at Apple, to raise awareness on the fact that your ship called the flag shop in London (while the street regent is under renovation) has not only some very few poor staffing but also issues clearly a massive communication issues. I have to wonder how the store works effectively in this management, I myself am a branch manager and would like to know of all these questions should they arise and also to know the importance of the Dodge don't no calls - or even potentially conflicting ones. Clearly here, it is not the case, and as such I have to say that I will never to set foot in this store again.

    You do not discuss Apple here. This is a user to user support site, and your long message falls on deaf ears. To inform Apple that you are disappointed by something, use their site here, http://www.apple.com/feedback comments

  • macOS Sierra and reminders badge notification counter stuck

    Hello everyone,

    I upgraded my MBP 2015 beginning 13 "retina to macOS Sierra 10.12 a week ago and since then my notification reminders badge icon shows '1', even if I have no obsolete reminder. On my iPhone 6, Pro "(à la fois avec iOS 10.0.2) and iCloud 9.7 iPad are shown no insignia." How can I solve this problem? I looked everywhere on the internet.

    I tried:

    • Disabling the option badge in settings and reset the MBP.
    • typing in a Terminal the command 'killall-Dock KILL' with 'sudo' and without it;
    • disconnect and connect again to my iCloud account;

    no results at all.

    Any other suggestion please?

    Thank you very much

    For those who encounter this problem, thanks to a user I finally solved the problem.

    Here's what I did:

    Connected to the www.icloud.com went to the settings and restored a previous automatic backup of two days before (even if my problem started earlier). After the recovery is complete, my icon badge disappeared automatically.

    At the end of the process, I had again to share my 'Family' calendar and a reminder with my girlfriend (if you have more, you must do for each list of calendar/reminder).

    All my subscribed calendars are always synchronized after the process.

    Hope this helps others...

  • Will add custom wallpapers slows my iPhone?

    I'm willing to change the wallpaper on my iPhone SE to the default. Like all the default screen phone, we lost during the update I have to download it manually.

    My question is, will this effect to the performance of the phone?

    I use backgrounds custom throughout my iPhones for a long time and never noticed any performance impact. You should be OK to use a background customized without worrying about losing on processing power.

  • Badge of reminders stuck to an event

    I have this weird problem with reminders app on my Mac OS Sierra (A 16, 323). It shows always 1 number of events missed on the Red badge on the app icon in the dock, but I did not all events there at all. I cleaned up the list. I tried to discover through hidden events, find something with the search box, search backward events, use automator to delete all reminders - nothing seems to work. I have to say that I do not see reminders on my iPhone is and no badge here. It seems that this badge stuck only on my MacBook, even if all my devices are synchronized via iCloud. One more interesting thing. Recently, I did a clean install of Mac OS Sierra, and the badge is still there. So I guess that it is not a cache or are anchored related issue. When I disable iCloud in the accounts of reminders - badge will disappear, but it comes after I have activate the account again.

    I had similar problem with my calendar on Mac app. He has been linked with the sharing of the family. We have disabled the family sharing and there was a note on it in the calendar, it was a little hard to find and because of this badge has been featured on the calendar icon in the dock. When I deleted this notification - badge was gone. And I guess, badge on reminders showed up after I disabled the family sharing as well.

    Anyone had the same problem? I mean it's not critical, but this badge makes me crazy because I still think I could have missed something in list of reminders. And Googling for what it does not work with effective solutions.

    Hey there, thiaramus.

    Thank you for using communities of support from Apple!

    I see that the reminders app always shows a missed test badged on the dock, even if you have not all events there at all. I know how it is important to ensure that you do not have reminders showing if there is none. I can help you with this.

    You did some great troubleshooting so far. What I would like you to try now is to test this question in a new user account. Please see the following resource to test a problem in an another user account on your Mac: How to test a problem in another account on your Mac user

    Once you have connected the new user, please login to iCloud and make sure that reminders is enabled. Then, see if you get the same badge icon.

    See you soon!

  • I'm recently back from Berlin where I accidentally left my iPhone 6. My friend tried to send it to me; However, he was returned by customs. Need advice on getting my iPhone 6 sent from Berlin to California.

    I'm recently back from Berlin where I accidentally left my iPhone 6. My friend tried to send it to me; However, he was returned by customs. Need advice on getting my iPhone of Berlin has been sent to California.

    You'll have to talk to the German customs and find out what their requirements are to send an iPhone.

  • My reminders badge stuck at 1 in the sierra of macOS

    I have a '1' badge on my reminders on macOS.

    I have no outstanding callback and the badge does not appear on any of my devices iOS (iPhone, iPad), or iCloud.com. Unsyncing reminders in my preferences to iCloud deletes the indicator, but as soon as I turn this back on the badge will reappear. I deleted all my filled reminders and spent some time to replace all my regular reminders and still the badge is still there! I can't find a reminders preferences file to remove from the library. Killall Dock has no effect.

    There must be a corruption connected to my iCloud account which only affects the reminders under macOS, but how can I fix this problem? It's driving me crazy. Deactivation of the badge a little defeated the purpose.

    I have it exactly the same problem. I tried everything I know. I can't understand. I noticed other problems with Sierra beyond that. I'm about to go back to El Capitan.

Maybe you are looking for

  • Satellite A500-1GL: recovery reached Office Reboot again and again - solved

    I did a restore on my Satellite A500-1GL using F8 to recovery on the HARD drive. However after the computer goes through the implementation of Windows 7 for the first time, from desktop it immediately disconnects and restarts. This process of setting

  • Tecra A8 freeze without obvious reason

    We have 15 laptop Tecra A8 in our office, and each of them freezes from time to time.There is no exact rule to this gel. Sometimes your laptop freezes three times in an hour and a few times they work without problem for a week or two. We believe that

  • Keyboard non-responsive on S10 6423 CTO BACK

    I just got my S10 ThinkStation 6423 CTO with BACK (try to install Windows XP, which contains the SP3) and 3 x 750 SATA in Raid 5. I'm trying to access the Bios to follow the instructions of erik in the following thread. However, when you tapoterez F1

  • do not have access to the hex address

    I am trying to install nokia Pc suite, it keeps telling me that I don't have access to the HEX address, I am the administrator HELP

  • Voice &amp; data VLAN switch 3448 (Multi-VLAN)

    Hello I have a 3448 switch that I'm considering using for this project, but not sure if taken in charge. I have IP phones I want to place on a VLAN voice and always plug the workstations on the ethernet port on the phone and be on his own DATA VLAN.