Updated my iPhone4 last night. I need help with the cloud and texts. I'm not getting text. Thx
I updated the phone, and now I can't get texts. All our info is merged-- and other phones are getting my messages. I'm not sure where I need to go to turn off or on the right info on cloud and also with messaging.
Thanks.
Check settings>iCloud, settings>messages and settings>FaceTime. Don't use the same apple id in all devices.
Similar Messages
-
Need Help with the Total and Grand Total
Hi All,
I have posted a question couple of days ago regarding the COUNT and AVERAGES, for a minute i thought i got the work around, but the problem still exists. I'm trying to find the average work done and average revenue generated. I have to do this by the location,
employee id , date and the number of hours. Below is a sample for february 2014. I have two averages for the work done AvgWorkDone=(sum of work done/count of workingdays in month), the second one is AverageWorkDone1... which i skewed by multiplying by 16 (since
there are 16 hours in my data per day) Please need help
Year Name
Calendar 2014
Month Of Year Name
Month 2
Row Labels
workdone
STG WORKDONE VW Count
AvgRev
AvgWorkdone
AvgWorkdone1
1
2433.333333
368
1.591304348
6.612318841
105.7971014
1368
2433.333333
368
1.591304348
6.612318841
105.7971014
10AM
0
23
0
0
0
11AM
23.33333333
23
0
1.014492754
16.23188406
12PM
91.66666667
23
0
3.985507246
63.76811594
1PM
58.33333333
23
0
2.536231884
40.57971014
2PM
41.66666667
23
0
1.811594203
28.98550725
3PM
161.6666667
23
0
7.028985507
112.4637681
4PM
176.6666667
23
0
7.68115942
122.8985507
5AM
0
23
25.46086957
0
0
5PM
191.6666667
23
0
8.333333333
133.3333333
6AM
0
23
0
0
0
6PM
450
23
0
19.56521739
313.0434783
7AM
0
23
0
0
0
7PM
618.3333333
23
0
26.88405797
430.1449275
8AM
0
23
0
0
0
8PM
620
23
0
26.95652174
431.3043478
9AM
0
23
0
0
0
Grand Total
2433.333333
368
1.591304348
6.612318841
105.7971014
If you see the above report the number of days are adding upto 368, this causes the Individual Averages to be fine but the GrandToatl of the Average is messed up. If i multiply by 16 the Individual Averages are messed up, but the GrandAverage is coming RIGHT.
Please need help where i can get both the individual and the grand averages right.
SVHi All,
Finally i found a solution. a) I have a time dim from the ware house and its joined to the fact table based on the dateid, since the fact table is getting only the data for the working days , the ware house time dim is showing only those days as count.
b) I created a new time dim in SSAS TIMEDIMSSAS
c) I joined the new TIMEDIMSSAS to the warehouse time dimension and the fact table and created new measure AvgWorkDone over time and Avg Rev over time.
I'm getting what i wanted. BUT here is a new problem , when i select multiple months the grand total (which should be Average is showing wrong average and i'm not sure why), can anyone please help ?
Row Labels
AvgRevenue
AvgWorkDone
1
$4.17
277.6801802
1368
$4.17
277.6801802
February 2014
$1.59
105.7971014
January 2014
$0.97
64.66666667
March 2014
$9.52
634.5512821
Grand Total
$4.17
277.6801802
The values were supposed to be (1.59+.97+9.52)/3=4.02 and NOT 4.17 for Revenue. Similarly for WorkDone (105.79+64.66+634.55)/3=268.33 and NOT 277.68
Please can some one suggest what is going wrong here?
Thanks
SV -
I need help with the sync and the new update.
I have had 3 new updates recently. I'm now into iTunes 8.1-8.6 or something. I've got two problems that I can't find answers for in the help.
First off, The new iTunes is pink with a black side-bar. I was wondering if there is a way to change it back to white and gray.
Next, when I plug my iPod into the coputer, it says that it has detected the iPod, but can't read it. It then tells me to unplug it and try again. I have done this over 300 times, over two months. It dosn't work. My iPod still dosn't read, and I now have almost twice as many songs on iTunes, as I do on my iPod.
Please help.My computer tells me iTunes 8.0 is the most current version. I'll assume that's what you're running, but you can check by opening iTunes and going to Help > About iTunes.
You can resolve the color issue by:
Open your Control Panel
Click "Switch to Classic View" on the left
Open the Display icon
Choose the Settings tab
Move your color settings to highest: 32-bit
Regarding the iPod error... what type of iPod is it?
CG -
Need help with the rotate and zoom button...
hi, i create a Jpanel code that use for zoom in and rotate image, the rotate button work fine but the zoom in is not work by the following code, can any one tell me how to fix this?
import java.awt.*;
import java.awt.event.*;
import java.awt.geom.*;
import javax.swing.*;
import java.awt.geom.AffineTransform;
import java.awt.image.BufferedImage;
import java.io.*;
import java.util.Hashtable;
import javax.imageio.ImageIO;
import javax.swing.event.*;
public class RotatePanel extends JPanel {
private double m_zoom = 1.0;
private double m_zoomPercentage;
private Image image;
private double currentAngle;
private Button rotate1, rotate2, rotate3,zoom;
public RotatePanel(Image image) {
this.image = image;
MediaTracker mt = new MediaTracker(this);
mt.addImage(image, 0);
try {
mt.waitForID(0);
catch (Exception e) {
e.printStackTrace();
public void rotate() {
//rotate 5 degrees at a time
currentAngle+=90.0;
if (currentAngle >= 360.0) {
currentAngle = 0;
repaint();
public void setZoomPercentage(int zoomPercentage)
m_zoomPercentage = ((double)zoomPercentage) / 100;
public void originalSize()
m_zoom = 1;
public void zoomIn()
m_zoom += m_zoomPercentage;
public void zoomOut()
m_zoom -= m_zoomPercentage;
if(m_zoom < m_zoomPercentage)
if(m_zoomPercentage > 1.0)
m_zoom = 1.0;
else
zoomIn();
public double getZoomedTo()
return m_zoom * 100;
public void rotate1() {
//rotate 5 degrees at a time
currentAngle+=180.0;
if (currentAngle >= 360.0) {
currentAngle = 0;
repaint();
public void rotate2() {
//rotate 5 degrees at a time
currentAngle+=270.0;
if (currentAngle >= 360.0) {
currentAngle = 0;
repaint();
protected void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics2D g2d = (Graphics2D)g;
AffineTransform origXform = g2d.getTransform();
AffineTransform newXform = (AffineTransform)(origXform.clone());
//center of rotation is center of the panel
int xRot = this.getWidth()/2;
int yRot = this.getHeight()/2;
newXform.rotate(Math.toRadians(currentAngle), xRot, yRot);
g2d.setTransform(newXform);
//draw image centered in panel
int x = (getWidth() - image.getWidth(this))/2;
int y = (getHeight() - image.getHeight(this))/2;
g2d.scale(m_zoom, m_zoom);
g2d.drawImage(image, x, y, this);
g2d.setTransform(origXform);
public Dimension getPreferredSize() {
return new Dimension((int)(image.getWidth(this) +
(image.getWidth(this) * (m_zoom - 1))),
(int)(image.getHeight(this) +
(image.getHeight(this) * (m_zoom -1 ))));
public static void main(String[] args) throws IOException{
JFrame f = new JFrame();
Container cp = f.getContentPane();
cp.setLayout(new BorderLayout());
Image testImage =
Toolkit.getDefaultToolkit().getImage("clouds.jpg");
final RotatePanel rotatePanel = new RotatePanel(testImage);
final RotatePanel zomePanel = new RotatePanel(testImage);
JButton b = new JButton ("90 degree");
JButton c = new JButton ("180 degree");
JButton d = new JButton ("270 degree");
JButton e = new JButton ("zoom in");
c.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
rotatePanel.rotate1();
d.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
rotatePanel.rotate2();
b.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
rotatePanel.rotate();
e.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae) {
zomePanel.zoomIn();
cp.add(rotatePanel, BorderLayout.NORTH);
cp.add(b, BorderLayout.WEST);
cp.add(c, BorderLayout.CENTER);
cp.add(d, BorderLayout.EAST);
cp.add(e, BorderLayout.SOUTH);
// f.pack();
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.setSize(500,500);
f.setVisible(true);
}TRIPLE CROSS POSTED
[_http://forum.java.sun.com/thread.jspa?threadID=5314687&messageID=10342105#10342105_|http://forum.java.sun.com/thread.jspa?threadID=5314687&messageID=10342105#10342105]
Stop posting this question over and over in multiple forums please. -
I need help installing the cloud and software
running windows 7, older hp notebook, i am getting errors. is it because i have a previous trial of adobe on my machine
Mommasansan123 what specific errors are you receiving?
-
I changed something in my settings now my wife and i get copies of eachothers text msgs how do i stop this plz help
Check settings>iCloud, settings>messages and settings>FaceTime. Don't use the same apple id in all devices.
-
Need help with the session state value items.
I need help with the session state value items.
Trigger is created (on After delete, insert action) on table A.
When insert in table B at least one row, then trigger update value to 'Y'
in table A.
When delete all rows from a table B,, then trigger update value to 'N'
in table A.
In detail report changes are visible, but the trigger replacement value is not set in session value.
How can I implement this?You'll have to create a process which runs after your database update process that does a query and loads the result into your page item.
For example
SELECT YN_COLUMN
FROM My_TABLE
INTO My_Page_Item
WHERE Key_value = My_Page_Item_Holding_Key_ValueThe DML process will only return key values after updating, such as an ID primary key updated by a sequence in a trigger.
If the value is showing in a report, make sure the report refreshes on reload of the page.
Edited by: Bob37 on Dec 6, 2011 10:36 AM -
Need help with the Vibrance adjustment in Photoshop CC 2014.
Need help with the Vibrance adjustment in Photoshop CC 2014.
Anytime I select Vibrance to adjust the color of an image. The whole image turns Pink in the highlights when the slider is moved from "0" to - or + in value. Can the Vibrance tool be reset to prevent this from happening? When this happens I cn not make adjustments...just turns Pink.
Thanks,
GDThank you for your reply.
Yes, that does reset to “0” and the Pink does disappear.
But as soon as I move the slider +1 or -1 or higher the image turns Pink in all of the highlights again, rather than adjusting the overall color.
GD
Guy Diehl web: www.guydiehl.com | email: [email protected] -
I need help with the iPad Remote app to connect to apple TV 2
I need help with the iPad Remote app to connect to apple TV 2 I have the app already on my ipad and when I open it only shows my itunes library and not the small black Apple TV 2 icon! How do i fix this and i know it's something
Get the manual at http://manuals.info.apple.com/en_US/AppleTV_SetupGuide.pdf
Cheers, Tom -
Need help with Blog, Wiki and Gallery
Hi Team,
Need help with Blog, Wiki and Gallery startup. I have newly started visiting forums and quite interested to contribute towards these areas also.
Please help.
Thanks,
Santosh Singh
Santosh SinghHello Santhosh,
Blog is for Microsoft employees only. However, you can contribute towards WIKI and GALLERY using the below links.
http://social.technet.microsoft.com/wiki/
http://gallery.technet.microsoft.com/ -
I need help with the photo stream. Everytime I try to open it on my PC it says photo stream is unable and I have tried everuthing to enable it but it doesn't work. Any help, please?
Freezing, or crashing?
ID on the Mac can produce reports that may (or may not) prove helpful in diagnosing the problem. I suspect this is something not directly related to InDesign, and maybe not to any of the Adobe apps directly since you seem to be having a problem in more than one. That often inidcates a problem at the system level.
Nevertheless, it won't hurt to try to gather the reports. You'll find driections for how to generate them, and to post them on Pastebin.com (then put a link to them here) so we can see what's going on at Adobe Forums: InDesign CS5.5 Not Responding
Do you happen to run a font manager? If so, which one, and waht version? -
I need help with the clone tool, in that when I clone (let's say grass as example), the new cloned area does NOT come out as sharp as the area selected. It comes out much softer and somewhat blurred. I have the opacity and flow both set at 100%. This is very frustrating since I can not get a true clone.
what "tip" do you have selected? where are you sampling from ( found in top option bar) ALSO make sure MODE is normal
http://helpx.adobe.com/photoshop/using/retouching-repairing-images.html
-janelle -
I need help with the Quote applet.
Hey all,
I need help with the Quote applet. I downloaded it and encoded it in the following html code:
<html>
<head>
<title>Part 2</title>
</head>
<body>
<applet codebase="/demo/quote/classes" code="/demo/quote/JavaQuote.class"
width="300" height="125" >
<param name="bgcolor" value="ffffff">
<param name="bheight" value="10">
<param name="bwidth" value="10">
<param name="delay" value="1000">
<param name="fontname" value="TimesRoman">
<param name="fontsize" value="14">
<param name="link" value="http://java.sun.com/events/jibe/index.html">
<param name="number" value="3">
<param name="quote0" value="Living next to you is in some ways like sleeping with an elephant. No matter how friendly and even-tempered is the beast, one is affected by every twitch and grunt.|- Pierre Elliot Trudeau|000000|ffffff|7">
<param name="quote1" value="Simplicity is key. Our customers need no special technology to enjoy our services. Because of Java, just about the entire world can come to PlayStar.|- PlayStar Corporation|000000|ffffff|7">
<param name="quote2" value="The ubiquity of the Internet is virtually wasted without a platform which allows applications to utilize the reach of Internet to write ubiquitous applications! That's where Java comes into the picture for us.|- NetAccent|000000|ffffff|7">
<param name="space" value="20">
</applet>
</body>
</html>When I previewed it in Netscape Navigator, a box with a red X appeared, and this appeared in the console when I opened it:
load: class /demo/quote/JavaQuote.class not found.
java.lang.ClassNotFoundException: .demo.quote.JavaQuote.class
at sun.applet.AppletClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.applet.AppletClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.applet.AppletClassLoader.loadCode(Unknown Source)
at sun.applet.AppletPanel.createApplet(Unknown Source)
at sun.plugin.AppletViewer.createApplet(Unknown Source)
at sun.applet.AppletPanel.runLoader(Unknown Source)
at sun.applet.AppletPanel.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
Caused by: java.io.FileNotFoundException: \demo\quote\JavaQuote\class.class (The system cannot find the path specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(Unknown Source)
at java.io.FileInputStream.<init>(Unknown Source)
at sun.net.www.protocol.file.FileURLConnection.connect(Unknown Source)
at sun.net.www.protocol.file.FileURLConnection.getInputStream(Unknown Source)
at sun.applet.AppletClassLoader.getBytes(Unknown Source)
at sun.applet.AppletClassLoader.access$100(Unknown Source)
at sun.applet.AppletClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
... 10 more
Exception in thread "Thread-4" java.lang.NullPointerException
at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
at sun.plugin.AppletViewer.showAppletException(Unknown Source)
at sun.applet.AppletPanel.runLoader(Unknown Source)
at sun.applet.AppletPanel.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
java.lang.NullPointerException
at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
at sun.plugin.AppletViewer.showAppletStatus(Unknown Source)
at sun.applet.AppletPanel.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)What went wrong? and how can I make it run correct?
Thanks,
Nathan PinnoJavaQuote.class is not where your HTML says it is. That is at the relative URL "/demo/quote/".
-
I Need help with the following error:
Hi, I am getting the following error:
<b>BPE_ADAPTER">SYSTEM_FAILURE_INTERNAL</b>
I have looked at some of the other threads that deal with this but since I am new to XI I am not sure where to look. I have tried to activate in SXI_CACHE and I get a code of 99 with the following error. I did not get this error in the QAS environment, only when it was moved to Prod. We have cleared and reset all of the caches and am still getting this error when I try to activate in SXI_CACHE:
<b>E 'STATUSCODE' is not a component of data object 'PAYLOAD'</b>
Can someone point me in the right direction to fix this? We just moved it to prod and need to get it fixed asap.
Thanks in advance for all of the help.
Mike CurtisHi Michael,
Before SP16:
the problem should be solved with the help of note 890760. You might find note
816430 interesting as well, but the first one should help you solve the problem.
After:
If those are already in your system, have a look at note 996631. This could be
the solution.
Regards and good luck with XI.
Jaime -
Need help with the contstant blinking amber light
I tried to go into Airport Utility to setup some features on my Airport Extreme N and could not find the device in the list. I have tried to rescan a good number of times, the soft, hard and factory resets, tried reinstalling the software and I have tried to connect to through my desktop via Ethernet. Actually, this is the configuration that I am using to write this post. I can also connect to the Airport Extreme via my iPhone4, which is the sole purpose I bought this thing.
Thanks in advance for the help.Trippe wrote:
I tried to go into Airport Utility to setup some features on my Airport Extreme N and could not find the device in the list.
Welcome to Apple's discussion groups.
I have tried to connect to through my desktop via Ethernet.
If you have a Mac, connecting it to a LAN port on the Extreme with an Ethernet cable should allow AirPort Utility to see the Extreme, presuming that's what you mean you did. (If you have a non-Mac system, there's probably a way to do something similar, but I can't help with the details.) If that's not working
Maybe you are looking for
-
When I open a hotmail email on my iPad, it doesn't show as opened when I go on my mac.
I am a fairly new owner of an iPad air. Am stumbling on a few issues, one of which is that when I open a hotmail email on my iPad, when I next go to my mac the same email displays as unopened. It means I am having to duplicate actions with emails.
-
Dear team, In my SOAP to RFC scenario, Im facing the error.The is two message mappings in my scenario. One is between SOAP Req MT and RFC Import str . Second one is b/w RFC.Response and SOAP RESP MT. While Im testing with XMLSPY the request mapping i
-
Tax value difference in FI document & report S_ALR_87012357
Hi Team There is tax value difference in FI document and report S_ALR_87012357.why this difference come? In FI Document GST input value S$414.89 In Report GST input value : S$3,599.34 Why these difference coming ? Please suggest.. Thank you Regard, D
-
I have Java 5, JAXP 1.3, and properties file that my application uses to get its settings from. What I would like to do now is have my application validate its configuration file when it starts, before it uses any of the data in the file. XML validat
-
HELP! PHOTOSHOP ELEMENTS 8
I CLICK ON ORGANIZER AND NOTHING HAPPENS. CANNOT GET PICTURES FROM FOLDER ON DESKTOP TO COME INTO THE PHOTOSHOP ELEMENTS PROGRAM FOLLOWED DIRECTIONS BUT WHEN I CLICK ON ORGANIZER NOTHING HAPPENS, IT WILL OPEN FILES ALREADY IN PICTURES LIBRARY BUT NOT