Xcelsius OnDemand - Can  it do some flashy things...

Ok,
I can currently map one dataset which is nice but I want to do more. Can anyone tell me how or point me in the right direction to read to understand how I can do this.
1) I want to first map two data sets so I can see data set A in red and dataset B in Yellow
2) I want to add a drop down box to the template so the user can see data set A or data set B depending upon their selection
3) I want to be able to add a play button so I can view the data set over time, each record has an associated time and postcode and It covers a period of one year. What I'd like to  do is start at day 1 of the year (1/4/10) play each day as say 0.1 seconds, let each record appear when it was its day and fade over 5 "days" back to invisible)
4) I want to show the dataset as t-7days or t-14 days depending upon user selection.
5) ideally put this on an ipad as well (the current ipad app only seems to allow for data exploration via onDemand and not to view dashboards which seems to be odd - am I missing something?)
All would look pretty cool and I'm sure are quite straightforward if you know how.  This will really help me sell this tool  in my organisation.
Thanks for any helpful answers,
Dan

HI Dan,
I am not much of an xcelsius expert myself, but I can try to comment on a few of your questions.
1) You can do this by adding another web service connection to a new dataset and map the data from the new connection into a different set of cells than you use for your original connection. 
2) This sounds like purely a design question.  I think you just need to make the drop box trigger a change to the various UI widgets to change which set of cells they look at for data - the dataset A cells vs the dataset B cells.
3 and 4) I am not sure how to do this.  I think you need to do some tricks in the UI to change which records you are looking at rather than looking at all the records of the dataset.
5) The problem here is that the visualizations are flash based (they are swf files) and the apple products don't support flash.  The ipad app you are refering to is specifically for doing the explorer workflow with bi.ondemand.com datasets and does not deal with visualizations at all.
Cheers
Steve

Similar Messages

  • I can't get some song on my iphone they work off of the computer but they wont show up on my phone they are in the "on my iphone" section but they gray and have a gray dotted circle next to them i have tried every thing I just want them on my phone HELP!

    I can't get some song on my iphone they work off of the computer but they wont show up on my phone they are in the "on my iphone" section but they gray and have a gray dotted circle next to them i have tried every thing I just want them on my phone HELP!!!

    You have posted to the iTunes Match forum, which your question does not seem to be related to. Is your question concerning iTunes Match or syncing with iTunes via USB?

  • HT1918 i want to change the country from USA to EGYPT in the itunes but i get a message saying, u have remaining balance which is 0.44 USD, how can i find some thing for 0.44 USD to spend this sum so i can switch my account to the right store??

    i want to change the country from USA to EGYPT in the itunes but i get a message saying, u have remaining balance which is 0.44 USD, how can i find some thing for 0.44 USD to spend this sum so i can switch my account to the right store??

    Buy something for more than the balance and charge the remainder to a credit card, or write Apple and ask them to keep the balance.
    iTunes Customer Service Contact - http://www.apple.com/support/itunes/contact.html > Get iTunes support via Express Lane > iTunes > iTunes Store

  • Can i know some thing about unicode errors

    can i know some thing about unicode errors

    Hi,
    UCCCHECK is to check if all your programs are UNICODE compatiable.
    Now UNICODE means
    Unicode - Overview
    Before release 6.10, SAP supported different codes for representing characters of different fonts, for example ASCII, EBCDIC as single-byte code pages or double-bytecode pages:
    ASCII (American Standard Code for Information Interchange) encodes every character with one byte. This means that a maximum of 256 characters can be displayed (strictly speaking, standard ASCII only encodes one character using 7 bit and can therefore only represent 128 characters. The extension to 8 bit is introduced with ISO-8859). Examples of common code pages are ISO-8859-1 for Western European, or ISO-8859-5 for Cyrillic fonts.
    EBCDIC (Extended Binary Coded Decimal Interchange) also encodes each character using one byte, and can therefore also represent 256 characters. For example,EBCDIC 0697/0500 is an IBM format that has been used on the AS400 platform for Western European fonts.
    Double byte code pages require between 1 and 2 bytes per character. This enables the representation of 65,536 characters, of which only 10,000 to 15,000 characters are normally used. For example, the code page SJIS is used for Japanese and BIG5 for traditional Chinese fonts.
    Using these character sets, all languages can be handled individually in one ABAP-based SAP system. Difficulties arise if texts from different incompatible character sets are mixed in one central system. The exchange of data between systems with incompatible character sets can also lead to problems.
    The solution to this problem is the use of a character set that includes all characters at once. This is realized by Unicode Unicode (ISO/IEC 10646) . A variety of Unicode character representations is possible for the Unicode character set, for example UTF, in which a character can occupy between one and four bytes.
    From release 6.10, the SAP NetWeaver Application Server supports both Unicode and non-Unicode systems. Non-Unicode systems are conventional ABAP systems, in which one character is usually represented by one byte. Unicode systems are ABAP systems that are based on a Unicode character set and which have a corresponding underlying operating system, including a database.
    Before release 6.10, many ABAP programming methods were based on the fact that one character corresponds to one byte. Before a system is converted to Unicode, ABAP programs must therefore be modified at all points where an explicit or implicit assumption is made about the internal length of a character.
    ABAP supports this conversion using new syntax rules and new language constructs, whereby emphasis was placed on retaining as much of the existing source code as possible. As a preparation for the conversion to Unicode - but also independently of whether a system will actually be converted to Unicode - the checkbox Unicode checks active can be selected in the program properties. The transaction UCCHECK supports the activation of this check for existing programs. If this property is set, the program is identified as a Unicode program. In a Unicode program, an additional stricter syntax check is performed than in non-Unicode programs. In some cases, statements must also be enhanced by using new additions. A syntactically correct Unicode program will normally run with the same semantics and the same results in Unicode and non-Unicode systems. (Exceptions to this rule are low-level programs that query and evaluate the number of bytes per character). Programs that are required to run in both systems should therefore also be tested on both platforms.
    In a Unicode system, only Unicode programs can be executed. Before converting to a Unicode system, the profile parameter abap/unicode_check should be set to "ON" so that only the execution of Unicode programs is permitted. Non-Unicode programs can only be executed in non-Unicode systems. All language constructs that have been introduced for Unicode programs can, however, also be used in non-Unicode programs.
    It has been established that existing programs that have been programmed with no errors mostly fulfill the new Unicode rules and therefore require very little modification. Conversely, most programs that require significant changes are due to an error-prone and therefore questionable programming style. Even if you are not planning a conversion to a Unicode system, Unicode programs are preferable because they are more easily maintained and less prone to errors. Just as outdated and dangerous language constructs are declared obsolete and are no longer permitted for use in ABAP Objects, the rules for Unicode programs also offer increased security when programming, for example when working with character fields and mixed structures. This applies particularly for the storage of external data (for example using the file interface), which has been completely reviewed for use in Unicode programs. When creating a new program, SAP therefore recommends that you always identify the program as a Unicode program, and older programs can be converted to Unicode in stages.
    Regards,
    Shakir

  • Can not find some messages in Mail using search

    I have some problems with Mail.app I can not find some messages in Mail using search, the strange thing is that sometimes mail search finds some messages, but after rebuilding spotlight index the search displays other messages with the all messages searched using same search criteria. I have also tried to delete Envelope index file from the Mail folder in usr/library and forced mail to import all mailboxes but it started to crash importing some of mailboxes - I deleted the messages from that mailboxes, imported remaining mailboxes and tried to rebuild mailbox, but everything without a successes. Any ideas how to solve it?

    Hi lnaki vila
    I'm using pi 7.0 version
    i can see the other scenarios like SOAP to RFC, SOAP to IDOC,FILEto IDOC
    in sender side i'm not using any communication channel and adapter engine i'm just using http client tool for testing purpose
    i'm getting the response that's fine because its a synchronous communication
    i checked sxmb_adm in that -->integration configuration LOGGING parameter of category RUNTIME is set to  ENGINE_TYPE and current value is HUB(Integration server)
    thanks in advance
    regards
    Satish

  • Can not view (some) emails with attachments

    There has already been some discussion about individuals getting the "This message has not been downloaded from the server" error.
    http://discussions.apple.com/message.jspa?messageID=4983643
    Has anyone found a solution to this problem? I am using GMail and am having problems reading (some) emails with attachments. I can read the first several lines through the preview view, but can not open (some) emails without getting the "This message has not been downloaded from the server" error.
    The problem appears to be completely random. The problem occurs sometimes after I open the email on my computer, and other times it occurs before I open the email on my computer. And sometimes opening the email on my computer does not cause any problem opening the email on my phone.
    I have seen this problem on two different phones now and have re-created the email accounts on both phone several times. But the problems keeps (eventually) appearing--for some, but not all emails.
     PowerBook G4, Macintosh 512K     iPod nano (2nd Gen 8GB), iPhone (8GB)

    So, I think things are actually sending/downloading and it's just taking time and the iphone is defaulting to the error message.
    I don't think that's the case. I have several week-old messages on my iPhone (each under 300k) that still say "The message has not been downloaded from the server."
    I've been connected to wifi for over an hour now, so that's plenty of time to downloaded these few small emails. I can read the "preview" of the message from the Inbox screen, but when I click on the message itself, I get the error.
    And, those messages with the attachments that I was able to open this morning? I can no longer open them now. Very, very frustrating.

  • Can't see some letters from my Gmail box in Mail.app in MAC OS 10.8.5.

    Hello, can't see some letters from my Gmail box in Mail.app in MAC OS 10.8.5.

    The solution was to remove all versions of Acrobat Pro and reinstall Acrobat Pro XI. I still had the download file in my Time Machine backup. That's a good thing, since the download link from the order listing on the Adobe website under my account would not work.
    The problems don't occur with version 11.0.0. I got the work done, now I'm updating to 11.1.0 and will report if they came back.

  • Can I Get Some Assistance From The Forum Genius Bar?

    Hi everyone,
    I don't usually post here unless I am at the point of being beyond frustration when it comes to solving my issues, because when they occur -- they are always the ones that don't have a simple fix it seems.
    The issue: I only use Mail to access the numerous (and I mean many Gmail accounts I have).  Last night it stopped working, as in Connection Doctor I kept seeing smtp red errors and no matter what I did to adjust the settings, I could not get any accounts to go online.  After messing around for awhile, I got the bright idea to delete all accounts in Mail/Preferences thinking that somehow I could just restore all the settings from a Time Machine backup right before the problems started. It would go through the process but when I started to see that it was copying things where they thought they should go, I'd get permission errors.  Today it hit me that this is probably because I used to have a 15" MBP that I used Migration Assistant to transfer setting over to the MBP I currently use and there is something causing confusion. If I recall it was a Lion to Lion migration and then I installed Mountain Lion when it came out.
    So today I got the bright idea to restore each mailbox individually.  It appeared to be successful, but I got tired of it when I had gotten down to the last few accounts to restore the Inbox in because I also had a lot of folders with messages "On My Mac" -- and the way I had Gmail configured, each account had their own "sent" outbox/things were mapped to Trash/Junk/Drafts -- and it was a little too ambitious for what I wanted to do.  That's the main reason I thought somehow I could just go back in time and restore everything to the way it was.  Then I saw some things online about Time Machine fiddling around with permissions and doing unusual things.  I did notice whenever I looked at the Mail folder in Time Machine, that I couldn't change the admin permission -- even though I'm the only one who uses my computer and my username had both read/write permissions as it is an admin, but the "admin" on the list under my username couldn't write and I couldn't change it.
    I googled around and saw some people saying that they had success of using "cp - R" and all sorts of other things where you could go into Terminal to strip the Time Machine permissions so that they have no ownership in order to be able to prevent permission "errors" in restoration attempts.
    I am not afraid to use Terminal, but I am not a genius when it comes to knowing all of its intricacies, but I can follow directions well. I'm guessing I will have to log in as the root user and do some nifty things?
    So, can someone here walk me through using cp - R or any other successful method even if that means using a combination of Time Machine, Terminal, and casting spells so that I can restore Mail back to the way it was last night before it went kaput?  I despise logging into Gmail online, and really don't want to add all of my individual Gmail accounts on both the iPhone and iPad which both connect to Gmail without a hitch (currently).
    Before my eyes started to cross from my online research, I saw that lots of people have problems with Mail in Mountain Lion (among other things).  I'm running 10.8.2 and everything is updated.  My first priority is to get all of the messages back in Mail -- in each mailbox, and all the ones I had stored on my mac.  If I can get gmail cooperative again where it will send/receive without a hitch is the next thing I'd like to do.
    I did noticed that sometimes it looked like Mail did go to sleep from time to time, but it would always seem to wake up and check for new mail. And on the rare occasions where some of the accounts took themselves offline, I could bring them back on with no problem.  Last night everything just blew up.
    I know it's fully my fault as I should have never deleted anything in Preferences but at that point, I was just so frustrated and grasping at straws to make things work again.
    I know the answer is probably not as bad as I imagine, so I will be forever grateful if someone here can help.  Kappy or Linc
    Oh sorry, all the Gmail accounts were set up for IMAP.

    I currently am using Postbox during the trial period because the frustration of trying to solve this ridiculous problem I posted about above was too much.  Unlike most people, I won't rant and rave about OS X's decline after Lion and Mountain Lion as I never had major issues after upgrading to either of them.  It's just beyond belief that the magnitude of this last problem being able to break an app within something that is just supposed to "work" that is beyond me.
    Anyway, I was wondering if anyone who uses Postbox might be able to offer a suggestion or two about how to import mailboxes from a Time Machine backup as I would still like to have access to those folders which were "On My Mac" with all of the archived messages which were contained within each of them?  I know that you can import from Apple Mail, but that's only if it is currently set up they way you want it to be.  And as I no longer have those settings because I can't restore to the point before I deleted all the accounts, etc. from Mail in my frustration -- I'm sure I can't just point Postbox to some plist file to have it mimic my old Mail setup.
    Anyone?

  • I can't see some photos

    I saved to my HD many pages from the Web containing photos and now that I look back at it, after weeks or months (and I think in some cases, just the same day) I realize that many do not have the photos. It has everything else; text, links, etc but not the photos. Instead it has a tiny blue square with a question mark in the middle (and no, I can't click on it).
    I'm a photographer. I visit a site called modelmayhem (www.modelmayhem.com).
    I don't know if I have this also on other sites. I don't think so.
    I use Safari but I had this also in the past when I was using Internet Explorer.
    I do File-->save as-->web archive
    (I have only 2 choices anyway with OS X this or save as page source)
    Also, on some pages there that contains 20 photos, I would see a few (maybe 5-6 or maybe 12 or so) but not the rest.
    So some photos I can see and some not, although they are on the same page, downloaded the same day, that's not logical.
    Why can't I see something I downloaded ?
    PS: I have other pages, from other sites that I downloaded, and while the sites don't exist anymore, I can still SEE the pages I saved. (of course if I click on anything, a link for example, I will get some error message) but I can see the photos and text that was on that page.)

    once I save/copy the picture on a disc is it permanent ? will I be able to see it even if they remove the photo from the Web ?
    I understand that when I save a photo or page on my HD I only copy the link and when the photo or page is removed I won't be able to see it.
    Also when I click on a page with a photo that was on my HD, it will show no image just text, if I'm not connected to the internet. But once I'm connected it will show it.
    So saving a page with photos on your HD actually doesn't mean a thing; your page is not saved ! meaning you can't see it whenever you want, even years from now. If they remove the page, you won't see anything (just text and sometimes not even that).
    So again, once I save/copy the picture on a disc is it permanent ? will I be able to see it even if they remove the photo from the Web ?
    Maybe I'm naive but once it is on a disc I should see what is on the disc, just like I watch today a VHS tape with "The Odd Couple" or "Taxi" although these shows are not on the air, the stations doesn't even exist anymore but it's all irrelevant because I COPYED the show, it is physically on my tape and therefore I can see it anytime I want. Isn't it the same with a disc ?
    In other words is there a difference between saving something on your HD and saving it on a disc ?

  • Zen Vision M Firmware Problem!!! Can't deal with this thing any more...

    Can't deal with this thing any more...3 Hello friends I'm new in the forum
    Well as the title mentions, I'm about to throw this thing oute of the window!!!
    It's a 30 GB Zen Vision M, I own it ,5 years now...
    I have read all the relevant posts in the forum about this player, I tried my best, nothing really worked.....
    So now I have a Zen which only boots in the recovery mode!!
    I have Cleaned it Up, Formated it, and tried to reload its firmware BUT when I connect it and try to reload it, in the end it always says Firmware Upgrade Failed!!Really can't understand it!!!!!
    I've communicated with Creative, i wasn't at all satisfied with their responses... I think what they're trying to do is to avoid me, and earn some time with really useless suggestions which I had already told them won't work!!!So in the end they wanted me to send my Zen in Italy and pay more than 100 Euros for what an ,5 year old mp3 player?No I prefer buying a new Cowon with that amount of money!!!
    Anyways I'm pretty mad now, so I'll move to the subject..
    I have Service Pack 3 Windows XP in my computer, and I did roll back on the Media Player 0 from the I had, using the instructions from a previous post. The truth is that it rolled back with less steps than it showed, and I say that because it mentions in a step that in the add-remove programms, in the Windows XP-Software Updates section, I should find a Windows Media player thing which really doesnt exist and I suspect it's the Service Pack 3 because I have done the same in a SP2 and worked exactly as the steps said..Anyway the fact is I have Windows Media Player 0 now!!!
    Please someone tell why can't I upgrade my firmware... I can't deal with this anymore!!!!

    KRe: Zen Vision M Firmware Problem!!! Can't deal with this thing any more..._
    menios wrote:
    So you say that I actually have the Windows Media Player 0, because my Zen is being recognised..
    I have rebooted it several times but its just the same thing...it shows firmware problem!!
    Why isn't this player working?I've seen many people, not only from here, who have the same exact problem and they gave up on their mp3... I dont have this kind of luxury to buy a new one!!I don't know whether Creative has put on this a "time bomb" or is just faulty, but I really wish it could be saved..
    I'm saying it is WMP0 because the firmware file sees the player. The computer can recognize it but with WMP components that firmware file would be grayed-out..So when you reloaded the firmware did you choose "reload firmware" Before you connected it's?(That is what erases the firmware prior to uploading the firmware. If you did not do that it could cause it to fail.Do these ste
    ps.
    Open the firmware file,On the player format>cleanup>choose reload firmware, then connect & run the firmware file.

  • Installation Failed The installer can't install some files in "/".

    The full message is
    Installation Failed! The installer can't install some files in "/". Contact the software manufacturer for assistance.
    I first received this message when trying to upgrade Pro Tools from 8.0 to 8.0.1 a prerelease for snow leopard. I tried numerous things such as repairing permissions, as well as some pro tools specific things and to no avail. Still got the same error message.
    So then I tried completely uninstalling and deleting all things pro tools from my computer. After a clean uninstall and removing all traces of pro tools I proceeded to try and re-install pro tools from my pro tools 8 disk. About a minute into the process I get the EXACT same error message.
    I know this issue has been going on since even before snow leopard. I really need to get pro tools installed and running again or at least be able to get the program installed. I've isolated pro tools out of the mix because its been several different installers and even an installer from a dvd. I know this is a Snow Leopard or plain OS based problem. I have repaired permissions, created a brand new user, wiped clean and started over. I don't know anything else to do. PLEASE HELP???!!!

    Hi Dean@mac & welcome to the forums...
    Any specifics why it wants to install to / instead of Applications, as an example?
    Seen these threads yet?
    http://discussions.apple.com/search.jspa?search=Go&q=pro+tools
    One thing to help investigate the issue is to create a new user just for testing that is stock with no add-on's etc., then login there and try to install. If it works there you can bet there is something unique to your original account that is borking that install - otherwise the issue is most likely global to your system and you might be out of luck until/unless a reportedly qualified version becomes available, etc.
    Good luck in any case.

  • Can't access some websites and speed problem

    Hi guys,
    I hope to find some help here please as I am desperate! 
    It has been a week now that I am having problems with my broadband, suddenly I can't access some italian's websites (which I was able to access before). The browser tries to load up the page but nothing happens (it doesn't even give me an error). I tried those website on both my laptops (one windows and one mac) and on 3 different browsers but I have the same problem. 
    I even tried to use Google DNS on my mac but that didn't solve the problem, I have already tried to reset my BT home hub but again that didn't help.
    Any ideas?
    The other thing is that my broadband speed is really strange, because before it used to be very fast during the day (500-600 kb/s download) and really slow during peak-hours (which I know is normal). But for the past month it has been really slow (70kb/s download) even during the day, it has some brief moments when it's slightly faster but not as fast as before. Any suggestions on what would be the problem or what I can try?
    I will really appreciate your help.
    Thank you all 
    Robbie

    Blade79 wrote:
    Thanks for your reply.
    These are 2 websites I know I can't access:
    www.deejay.it
    www.gazzetta.it
    These are the adsl stats from my router and the speedtest:
    I hope this helps,
    Thanks a lot
    Robbie
    Hi there,
    Both sites load almost instanty for me on my Infinity connection.
    Below's a traceroute output
    Last login: Tue Nov 30 18:02:04 on ttys000
    ds9:~ Kev$ traceroute -I www.gazzetta.it
    traceroute: Warning: www.gazzetta.it has multiple addresses; using 194.20.158.242
    traceroute to www.gazzetta.it (194.20.158.242), 64 hops max, 72 byte packets
    1 api (192.168.1.254) 1.083 ms 0.672 ms 0.637 ms
    2 217.32.146.68 (217.32.146.68) 6.721 ms 6.462 ms 6.458 ms
    3 217.32.146.110 (217.32.146.110) 8.307 ms 8.792 ms 8.140 ms
    4 213.120.177.42 (213.120.177.42) 7.336 ms 7.540 ms 7.961 ms
    5 217.32.24.30 (217.32.24.30) 7.040 ms 7.009 ms 7.224 ms
    6 217.32.24.178 (217.32.24.178) 7.280 ms 7.126 ms 7.241 ms
    7 acc1-10gige-0-2-0-4.l-far.21cn-ipp.bt.net (109.159.249.97) 7.724 ms 7.619 ms 7.111 ms
    8 core1-te0-4-0-6.ealing.ukcore.bt.net (109.159.249.1) 8.806 ms 8.123 ms 8.569 ms
    9 core1-pos1-0-0.telehouse.ukcore.bt.net (62.6.201.82) 8.686 ms 8.687 ms 8.642 ms
    10 ge-0-0-1.londra32.lon.seabone.net (195.22.209.45) 8.965 ms 8.785 ms 8.998 ms
    11 te4-1.milano52.mil.seabone.net (195.22.205.255) 33.067 ms 33.454 ms 33.081 ms
    12 infracom.milano52.mil.seabone.net (195.22.205.62) 32.753 ms 33.112 ms 32.629 ms
    13 milano-1-tge-3-1.ita.tip.net (62.196.4.250) 34.502 ms 34.290 ms 33.722 ms
    14 * * *
    15 *^C
    ds9:~ Kev$ traceroute -I www.deejay.it
    traceroute to www.deejay.it (213.92.16.220), 64 hops max, 72 byte packets
    1 api (192.168.1.254) 1.066 ms 0.634 ms 0.673 ms
    2 217.32.146.68 (217.32.146.68) 6.687 ms 6.515 ms 6.647 ms
    3 217.32.146.94 (217.32.146.94) 7.512 ms 7.312 ms 7.501 ms
    4 213.120.177.34 (213.120.177.34) 7.361 ms 7.232 ms 7.339 ms
    5 217.32.24.30 (217.32.24.30) 6.593 ms 6.573 ms 6.927 ms
    6 217.32.24.178 (217.32.24.178) 7.148 ms 7.152 ms 6.948 ms
    7 acc1-10gige-0-2-0-7.l-far.21cn-ipp.bt.net (109.159.249.103) 7.578 ms 7.565 ms 7.629 ms
    8 core2-te0-4-0-6.ilford.ukcore.bt.net (109.159.249.5) 8.223 ms 8.114 ms 8.850 ms
    9 transit2-xe-0-1-0.ilford.ukcore.bt.net (194.72.20.250) 43.650 ms 7.958 ms 8.104 ms
    10 t2c2-ge8-0-0.uk-ilf.eu.bt.net (166.49.168.113) 8.729 ms 8.506 ms 8.561 ms
    11 t2c1-p3-1-1.uk-lon1.eu.bt.net (166.49.164.97) 8.668 ms 8.553 ms 8.333 ms
    12 t2a1-ge4-0-0.uk-lon1.eu.bt.net (166.49.135.102) 8.736 ms 8.937 ms 8.829 ms
    13 166-49-211-38.eu.bt.net (166.49.211.38) 8.638 ms 8.829 ms 9.038 ms
    14 so-5-0-0.mil19.ip4.tinet.net (213.200.82.30) 37.702 ms 37.824 ms 37.312 ms
    15 inet-gw.ip4.tinet.net (213.200.68.22) 47.007 ms 46.396 ms 46.148 ms
    16 ge3-0-28.wf1-kwcore.wf.inet.it (212.239.110.34) 49.292 ms 49.117 ms 51.695 ms
    17 www.deejay.it (213.92.16.220) 47.686 ms 47.109 ms 47.052 ms
    ds9:~ Kev$
    I hope this info helps.

  • Can't access some shared files

    I have a computer here where the user can't access some shared files.  From the machine she normally uses, the folders are greyed out.  I've checked all the permissions, and everything is in order.  She was even able to access the folder from a different Mac.  The mac is fully patched, running OS 10.6.8.

    More Info:
    After trying multiple things, I have more info to solve the problem. 2 other computers (one is another iBook and the other is a PC) in the house, access the hard drive as advertised with no problems. The only thing that has changed on my computer recently is the replacement of a 1G iPhone with an iPhone 3Gs. This phone did some weird things when syncing, specifically with our photo programs. It locked up Nikon transfer and iPhoto was working strangely. I felt the best way to alleviate those 2 problems was to shut down my computer, and restart. This is when I encountered the problem with accessing the TC. Things are also a little bit more complicated because I use the TC as the storage medium for both iTunes Library and iPhoto Library, both of which I can't access given the current problem.

  • Can't access some sites over WIFI (app store and more)

    HI,
    Not sure really where I can post this, but hoping someone will have a lead as it's very frustrating.
    I have a belkin N router, and for some reason over wifi some sites do not work. I cannot access the Appstore on 2 iphones, I get error message that can't connect. the weird thing is that my ipad has never had problems with this and always connects to app store without problems.
    I tried resetting my router and disabling security, still doesn't help.
    I'm at a lost, any help greatly appreciated.
    Latest firmware installed. iPhone 4 and 5 have the probelm as does my MBP which has problems connecting to some sites.

    Try resetting Safari, safari under safari menu, empty Chache. Safari preferences>privacy, remove all website data.  Also safari prefernces>security>unclick enable Java, leave Java script clikced. You can have corrupted cookies(they will re-create) Hope this helps.

  • I have just downloaded itunes 10.6 and  in the process my "podcast" option under library has disappeared! The files are still on my laptop. I can also see some of my recorded music in my itunes library but can play them - there is an exclamation mark next

    I have just downloaded itunes 10.6 and in the process my "podcast" option under library has disappeared! THe files are still on my laptop. I can also see some of my recorded music in the itunes library but can't play them - there is an exclamation mark next to each track. Basically I can't use itunes - is the only option remove and replace? Thanks in advance

    Visibility of the Podcasts section is controlled from within the Edit > Preferences dialog.
    Empty/corrupt library after upgrade/crash
    Hopefully it's not been too long since you last upgraded iTunes, in fact if you get an empty/incomplete library immediately after upgrading then with the following steps you shouldn't lose a thing or need to do any further housekeeping. In the Previous iTunes Libraries folder should be a number of dated iTunes Library files. Take the most recent of these and copy it into the iTunes folder. Rename iTunes Library.itl as iTunes Library (Corrupt).itl and then rename the restored file as iTunes Library.itl. Start iTunes. Should all be good, bar any recent additions to or deletions from your library.
    See iTunes Folder Watch for a tool to catch up with any changes since the backup file was created.
    Missing tracks
    Typically this can happen because a file or folder is accidentally shunted to the wrong location. iTunes can also get confused if it expects to be talking to an external drive which isn't there. If will often reset the default media folder location and may have trouble finding files in the old folders.
    Select one of your tracks that is missing in action. Press CTRL-I to Get Info. Cancel when asked to try to locate the file, then look at the location given on the summary tab. This where iTunes thinks the file ought to be? Now find out where it actually is. Post back the two locations for comparison. I should be able to give you some steps to reconnect everything once I can determine which of the things that might have gone wrong is most likely in your case.
    When you get it all working make a backup!
    tt2

Maybe you are looking for

  • I want to add multiple accts how do i do that

    i have 3 firefox accts on my desktop atm and i need to redo my computer and i need to know how to add 3 accts. back when im done with my computer please help

  • BPEL-BAM JMS Sensor

    Hi, I am using Oracle BPEL and BAM Versions 10.1.2.1. I created sensors according to the below mentioned link http://download-west.oracle.com/docs/cd/B14099_19/integrate.1012/b15813/phase11.htm I am able to see the created sensors and its values in t

  • Oracleasm-support-2.1.5-1.el6.x86_64 doesnt work on OL 6.0 UEK

    ASMlib keeps return "Instantiating disk: failed" while trying to create ASM disks. It happens on both Clariion and Symmetrix devices. [root@sgelxha198 ~]# uname -a Linux sgelxha198 2.6.32-100.28.5.el6.x86_64 #1 SMP Wed Feb 2 18:40:23 EST 2011 x86_64

  • Edit or copy a lens profile?

    Ive got a Canon 55-250mm f/4-5.6IS II canon lens (previously used a borrowed non vII) and come into a problem. Lightroom has a lens profile for the old one, picks it up on auto and applies the correction perfectly so no problems. However it DOESNT ha

  • Disk Utility reports DVD disc does not have enough space

    I am trying to create backup DVDs of some valuable data using my Macbook I have used Disk Utility to create a disk image of the original DVD. When trying to burn the image to the blank DVD (4.7GB DVD-R), Disk Utility reports: 'The disc inserted does