Rss reader for systray

Started working on a little project. An rss reader that sits in the systray. Its pretty bare right now, but its downloading feeds and opens them in the browser when i click on them.
http://i.imgur.com/ldvS3.jpg
-- mod edit: read the Forum Etiquette and only post thumbnails http://wiki.archlinux.org/index.php/For … s_and_Code [jwr] --

Fixed that bug, kind of, i'm not sure if it's the proper solution, but it seems to work. Relevant code:
def build_submenu(self, feed):
menu = Gtk.Menu()
for i in feed.entries:
menuitem = Gtk.MenuItem()
menuitem.set_label(i.title)
menuitem.connect("activate", self.construct_command(i.link))
menu.append(menuitem)
return menu
def construct_command(self, link):
def open_link(self):
webbrowser.open(link)
return open_link
Lambda expression inside a loop seems to overwrite itself during every iteration, like here:
l = []
for i in range(10):
l.append(id(lambda x: x*i))
print(l)
# OUT: [139721358186400, 139721358186400, 139721358186400, 139721358186400, 139721358186400, 139721358186400, 139721358186400, 139721358186400, 139721358186400, 139721358186400]
print(l.count(l[0]))
# OUT: 10
As you can see, id of the lambda expression is the same in every iteration, despite being a different function (i is different in each lambda), so when the for loop finishes, you'll end up with only one callable object, that every menu item executes on activation.
EDIT:
After a bit of screwing around, i found that this also works:
menuitem.link = i.link
menuitem.connect("activate", lambda x: webbrowser.open(x.link))
Instead of passing the arbitrary address to the lambda it just extracts link from the menu entry itself.
Last edited by kaszak696 (2013-01-18 16:02:15)

Similar Messages

  • Photo RSS reader for PC's / AOL?

    Can anyone suggest an RSS reader that will read photos from a photocast? My father uses AOL, but could work through IE if necessary.
    Thanks,
    Billl

    Chris:
    Have her try Firefox. See my post here: http://discussions.apple.com/message.jspa?messageID=4531492#4531492
    You have to change the url a little according to the site I'm quoting.
    Or do what any good son should do, buy here a new Mac
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    MBP 2.16Ghz; G5 Dual Core 2GHz, 2G RAM ea, 250G HD; G4 Dual 1Ghz, 1.5G RAM;   Mac OS X (10.4.9)   22" LCD, 710G FW HDs, Canon: SD700IS/i850/LIDE 50, Epson R200, 30G iPod, 2G Nano

  • Tutorial to create a basic rss reader for my site?

    Can anyone point me to either a text or video tutorial, new to the whole iphone sdk business, trying to offer our readers an iphone rss application so they can get all of our stories right on one interface. Any direction would really help.
    Thank you

    Hmm. My apologies. Not sure as to what you have all tried, but I am guessing you have done a bit of research, which is good.
    I am not positive that there are really any excellent tutorials out there as of yet. Have you had a look at this one?
    http://blog.taragana.com/index.php/archive/how-to-develop-a-simple-rss-reader-fo r-the-iphone/
    B-rock

  • Mac RSS reader for iphone delivers incorrectly sorted posts

    The web page http://reader.mac.com/ is supposed to deliver RSS feeds to my iPhone.
    I create the XML feed by arranging a variety of posts for a given day. The posts are in a specific sequence, which is ignored by http://reader.mac.com/.
    The Problem: The software at http://reader.mac.com/ is re-arranging the posts in a different order from the sequential order that I've imposed. It seems to be looking at the creation date of the post rather than the creation date of the feed.
    This is a big problem for me. I can't trust that my feeds will look correct in the mac reader. Can I change the settings so that the posts are ordered correctly?

    http://www.apple.com/webapps/news/feedme.html
    It is a webapp.
    Here is another one:
    http://www.apple.com/webapps/news/ipheedr.html
    Message was edited by: b_behringer

  • RSS reader-server side

    anyone see or plan to develop server sider RSS reader for Oracle Applicatiron Server?

    I don't see "JavaFX" in this message, what it is doing in this forum?

  • Linking to a Specific Spry panel (modified for RSS Reader)

    Hi – I would like to implement the following tutorial however have it work for the Spry Framework RSS Reader: http://foundationphp.com/tutorials/spry_url_utils.php
    I understand the concept of this article and have been able to implement the solution up to step 4 however for my solution I am not working with tabbed panels or an accordion widget but the RSS Reader from the latest Spry Framework. I would like to have a specific feed and article selected on the page depending on what link the user has come from.
    So instead of working with the tabbed panel and accordion variables I would be using the variables:
    var dsCategories
    var dsFeeds
    var dsChannel
    var dsArticles
    I would like to know if anyone can assist me in modifying the solution to suit this scenario? or if it is even possible?
    Thanks.
    Michael.

    Hi Ben,
    Thanks for pointing me to this tutorial.
    To keep things easier for myself I have kept the variable name as row. I have added the following code to the head of my called page:
    On lines 9-10:
    <script type="text/javascript" src="js/SpryURLUtils.js"></script>
    <script type="text/javascript"> var params = Spry.Utils.getLocationParamsAsObject();</script>
    On lines 19-26:
    //define the data set
                var ds1 = new Spry.Data.XMLDataSet("data/LocalFeeds.xml", "feeds/feed");
                //get the url parameter for the row number
                var params = Spry.Utils.getLocationParamsAsObject();
                //set an observer so that when the data is loaded, we update the current row to the url param value
                ds1.addobserver({ onPostLoad: function(ds, type) {
                                                                                                                                ds1.setCurrentRow(params.row); }
    Currently my called page is still not loading in the wanted state with calling page passing the parameter row=2.
    I aren’t sure what I am still missing but think it is perhaps something to do with setting the spry:region and spry:repeat to equal ds1? But not sure where I should be placing this.
    Am I nearly there?
    http://www.michael-williams.com.au/
    Thanks.

  • RSS Reader Ajax Portlet for Workshop 9.2

    Hi,
    is there any available example of RSS Reader Portlet with Ajax support for Workshop 9.2?
    Any help is well accepted,
    thanks,
    Ben

    Ben,
    With the weblogic portal 9.2 you can find all the JSP but this time Bea has not given the JPF code.Jsp code is available there.The path will be
    \WebContent\portlets\rssreader\*.jsp
    Create EAR project
    Create Portal project with groupspace enabled
    Go to merged view of the weblogic workshop
    Right click the portlets folder and choose copy to project
    Hope this time you will get the sample code :-)
    Regards
    Bishnu

  • RSS/news reader for the N97 Mini?

    I use Google Reader a lot for keeping up with news and developments in my field. 
    However, it's a real pain to access Google Reader through the built-in browser in the N97 Mini. And there seems to be no simple, straightforward way to insert all the feeds (on my gReader account) into the phone. 
    Are there any news reader (RSS, Atom) applications for Symbian/Nokia phones that you would recommend?
    There are many excellent free RSS-reader apps for the iPhone and Windows Mobile, but I can't seem to find a half-decent one for Nokia phones.  Even a search on Ovi Store only brought up two. Both are not free and don't have spectacular reviews. (If I'm going to pay for it, I want to know it's a great, bug-free application first!)
     Thanks. 

    the best out there is currently google reader. its not an online app, but more of a webpage, the interface is similar to the full blown google reader. visit www.google.com/reader from the default web browser.

  • What is the best rss feed reader for my mac?

    what is the best rss feed reader for my mac?  I have a macbook pro, my OS is Mountain Lion, and browser is firefox.  Thanks

    What's best is a matter of personal preference.  Search Google or the App Store and read the reviews.

  • Scrolling RSS reader HTML for iWeb 09

    Hi
    Anyone know whether it is possible to replace the standard RSS reader widget with something a bit flasher, quite fancy a scrolling reader that would roll through say 10 entries in a box. I've had a trawl through here and Google, but seem to be drawing a complete blank.
    Thanks

    http://www.widgetbox.com/search?q=Weather+Widget

  • Looking for best RSS reader

    Need one with swipe left/right to navigate to the next item and also has adjustable text as well as has a full screen reading mode. It would also be nice to find one which also has share to Google+.  Byline has the the 1st feature I want/love by doesnt allow you to change the font size to smaller.
    Do any rss reader apps exist with all these?
    Basically my favorite Android app gReader Pro had all of these features. But now I have the iPhone 4 and need replacement.

    To be honest, you are better off using a computer and this software:
    http://calibre-ebook.com/
    It will convert ebook formats...if you buy a reader, you are committed to that environment.  WIth the above and a computer, you can install the PC version of your favorite ereader and use the software to convert other formats to it. 
    If you find my post useful or informative, please click the icon below with the plus sign and star to give kudos. Thank you!

  • Safari cannot connect to the App Store so I can setup an RSS Reader.

    Let me be clear about a key point first - I can connect to the iTunes Store in the program, I can connect to the App Store in the program, and Safari has no problem acting as a browser.
    BUT, I want to use RSS feeds and this is where things fall down.
    If the Podcasts app is installed then all XML links to RSS feeds default to being opened in the Podcasts app, and I wouldn't mind this if the Podcasts app could actually display RSS feeds, but it can't. No problem, I'll just remove the Podcasts app.
    Now when I click on a link to an RSS feed, Safari gives me the following error,
    Cannot Open Page
    This is a link to an RSS feed. Would you like to search the App Store for apps that can display RSS feeds?
    And my options are Cancel or Search.
    I click Search, because when I find an RSS feed on a page I want to subscribe to I don't want to have that error again.
    The App Store opens and I almost immediately get the error,
    Cannot connect to iTunes Store
    However, once I click the OK option, the App Store works fine. I can connect to the App Store.
    So, I pick an RSS app anyway to install it. It downloads fine, and I go on browsing in Safari. I find another link to an RSS feed, and this pops up again,
    Cannot Open Page
    This is a link to an RSS feed. Would you like to search the App Store for apps that can display RSS feeds?
    Excuse me? I've already installed an RSS app... and by now I've installed 5 different apps in the hopes that at least 1 of them will do what Podcasts obnoxiously did before and claim the default app status for XML links.
    So, Safari works as a browser, the iTunes Store App works, and the App Store app works, but if Safari opens the App Store then I get an error. If I could somehow set which applications opened what links and document types then this wouldn't be a problem either because I could just manually set what I wanted, but I can't.
    ಠ_ಠ
    What the heck? Why was RSS ripped from Safari with nary a word, leaving in its place the pathetic Reading List function? Bookmarks are for reading later, RSS is for push to me updates, Reading List is just plain pointless and a waste of code. And why can't I set what programs I want to open what file types? /rant
    I've already tried the Change Date trick, the Reset All Settings trick, the Turn Off Genius trick, and every other trick I could find where ever the phrase, "Cannot connect to itunes store" popped up in these forums and on the web, and none of them work - I suspect that this is because the App Store does work fine normally for me.
    All I want is for Safari or an RSS program to open an RSS feed when I click on the link while browsing the web. Why is this so darn hard?

    Hi alèna,
    If you are having issues connecting to the iTunes Store, you may find the following article helpful:
    Apple Support: Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    Regards,
    - Brenden

  • Safari 5.1.2: Where is the built-in RSS Reader theme stored?

    Hi all,
    Safari's built-in RSS reader menus are displayed in wrong language on my system - does anybody know in which library Apple's blue RSS reader theme and/or it's ressources are stored, so I could check for missing language files? All hints I could find on the web are describing pre-5.1 versions of Safari, and after investigating my current libraries I'm sure the ressources changed, e.g. the SyndicationUI.framework under /System/Library/PrivateFrameworks.
    Does anybody have any hints for me?

    OK, here's what I'm talking about. This is a screen capture of a tab from the Macintosh version of Safari:
    Notice how the "X" to close the tab is on the left-hand side and the text of the tab is centered on the width of the tab.
    Here is a screenshot of the Windows version of Safari:
    You can see how the tab is much smaller for one, but also how the text is justified to the left with the "X" to close the tab appearing on the right side of the tab instead of the left.
    I don't really prefer one over the other (ie. left or right side), I just wondered if there's some setting to make them act the same way on both so that I don't have to constantly remember what OS I'm on in order to remember where the darn "X" is to close the tab.

  • E71 font size in RSS reader

    Dear E71 Gurus,
    has anybody been able to change the font size in the RSS reader?
    It seems to always use the same (large) font when reading RSS feeds irrespective of the font size set for browsing (for example small or smaller).
    Am I missing something?
    Thanks,
    Dane
    Proud E71-1 owner (yeah!)

    rrs reader

  • Cron RSS Reader

    So I've been using newsbeuter like many people for over a year now. However, the one complaint I and many others have voiced on the forums is that: there exists no cron RSS reader. Sure you can run newsbeuter 24/7 with the auto-refresh feature enabled, but who wants that. So a week ago at the start of the holidays I wrote my own. Now after a week I have seen that it works and that it should be ready to release in beta. Please understand that this is designed in my favorite way; stupid simple. It is source edited and demands only two files: a history file, and the program. I wrote it in python because of the wonderful feedparser library and because this way you can edit your feeds on the fly without needing to recompile.
    For anyone who wishes, feel free to play around with this and give me your feedback.
    To get it working just run the following to ensure you have the deps:
    sudo pacman -Sy coreutils curl python3 python-feedparser youtube-dl
    Next put the following source in a file and chmod 700 it. Now you can ./rss or maybe put it in ~/bin and add that to your path so you can run it like any other binary. But wait! Now before you run it, you will more than likely want to edit the config unless you want all of my feeds and just happen to have a /home/keller/downloads folder you want all the stuff put in. To edit the urls just follow the examples I left in. They are in the style ("Name Of Feed", "http:\\example.com\rss\url.xml") where the first entry starts with and additional open brace and then each end in a comma if it is not the last feed entry or a additional close brace if it is. If you don't have anything for the particular category, just use (). Now give it a run by appending the --no-download option. If you don't, it's going to take a while and will work on every feed entry.
    To quote --help:
    Usage: rss [Options]
    This is a zero hassle RSS reader. It is designed to be source configured and
    run without a care in the world. Cron it, script it, just plain run it...
    Options:
    -h, --help Show me this message.
    --no-download Do not act on new entries.
    (Simply mark as old.)
    -q, --quiet Don't talk.
    -v, --say-something The opposite of -q.
    In terms of action, it will:
    First: Append new links to a file called links.html in the downloads folder that you can view with your browser of choice. This is the fastest so you can read your feeds while you wait on the downloads.
    Second: Download the attached image from Deviant Art
    Third: Download every youtube video at a max of 720p (To speed up the download and conserve bandwidth)
    Lastly: Download all of your podcasts
    I was debating adding twitter, but I don't use RSS for twitter (or twitter for that matter) so if there is a desire for it (or others) let me know.
    #!/usr/bin/python
    # Depends on:
    # * coreutils
    # * curl
    # * python3
    # * python-feedparser
    # * youtube-dl
    # - - - - - - - - - - - - - - Configuration and URLs - - - - - - - - - - - - - #
    be_quiet = False # True disables output (Good for cron)
    download_dir = "/home/keller/downloads/"
    history_file = "/home/keller/.rss_history"
    # Appends to links.html page in download directory
    link_urls = (("Extra Ordinary", "http://www.exocomics.com/feed"),
    ("Doghouse Diaries", "http://feeds2.feedburner.com/thedoghousediaries/feed"),
    ("Cyanide & Happiness", "http://feeds.feedburner.com/Explosm"),
    ("XKCD", "http://xkcd.com/rss.xml"),
    ("Scandinavia And The World", "http://feeds.feedburner.com/satwcomic?format=xml"),
    ("Surviving The World", "http://survivingtheworld.net/feed.xml"),
    ("Something Of That Ilk", "http://somethingofthatilk.com/rss/index.php"),
    ("Invisible Bread", "http://feeds.feedburner.com/InvisibleBread"),
    ("Happle Tea", "http://www.happletea.com/feed/"),
    ("Dilbert", "http://feed.dilbert.com/dilbert/daily_strip"),
    ("What-If", "http://what-if.xkcd.com/feed.atom"),
    ("Networking Nerd", "http://networkingnerd.net/feed/"),
    ("Fry Guy's Blog", "http://www.fryguy.net/feed/"),
    ("Ethereal Mind", "http://feeds.feedburner.com/etherealmind?format=xml"),
    ("Packet Pushers", "http://feeds.feedburner.com/PacketPushersBlogsOnly"),
    ("Lone SysAdmin", "http://lonesysadmin.net/feed/"),
    ("Arch Linux News", "http://www.archlinux.org/feeds/news/"),
    ("Schneier on Security", "http://feeds.feedburner.com/schneier/excerpts"))
    # Deviant Art RSS
    deviant_art_urls = (("Isbjorg's Main Gallery", "http://backend.deviantart.com/rss.xml?q=gallery%3Aisbjorg%2F9742889&type=deviation"))
    # Youtube RSS - Youtube Username Only
    youtube_users = (("Phillip DeFranco", "sxephil"),
    ("Freddie", "freddiew"),
    ("Freddie BTS", "freddiew2"),
    ("Corridor Digital", "corridordigital"),
    ("Corridor Digital BTS", "samandniko"),
    ("Jenna Marbles", "jennamarbles"),
    ("Source Fed", "sourcefed"),
    ("Minute Physics", "minutephysics"),
    ("VSauce", "vsauce"),
    ("Numberphile", "numberphile"),
    ("Veritasium", "1veritasium"),
    ("Sixty Symbols", "sixtysymbols"),
    ("Periodic Videos", "periodicvideos"))
    # Podcasts - Audio/Video linked content download
    podcast_urls = (("Security Now", "http://feeds.twit.tv/sn_video_large"),
    ("Ted Talks", "http://feeds.feedburner.com/tedtalks_video"),
    ("Scam School", "http://revision3.com/scamschool/feed/MP4-Large"),
    ("Hak 5", "http://feeds.feedburner.com/hak5hd?format=xml"),
    ("Film Riot", "http://revision3.com/filmriot/feed/MP4-hd30"),
    ("SANS News", "https://isc.sans.edu/dailypodcast.xml"),
    ("The Techie Geek", "http://feeds.feedburner.com/thetechiegeek/ogg?format=xml"))
    # - - - - - - - - - - - - No need to modify below here - - - - - - - - - - - - #
    from feedparser import parse
    from os import system
    from sys import argv
    import pickle
    # -- Argument Parse
    no_download = False
    if "--help" in argv or "-h" in argv:
    print("""Usage: rss [Options]
    This is a zero hassle RSS reader. It is designed to be source configured and
    run without a care in the world. Cron it, script it, just plain run it...
    Options:
    -h, --help Show me this message.
    --no-download Do not act on new entries.
    (Simply mark as old.)
    -q, --quiet Don't talk.
    -v, --say-something The opposite of -q.
    exit()
    if "--no-download" in argv:
    no_download = True
    if "--quiet" in argv or "-q" in argv:
    be_quiet = True
    if "--say-something" in argv or "-v" in argv:
    be_quiet = False
    # -- Unpickle History
    try:
    history = pickle.load(open(history_file, "rb"))
    except:
    tmp = open(history_file, "w")
    tmp.close()
    history = {"podcast" : [], "deviant_art" : [], "youtube" : [], "link" : []}
    current_links = [] # Holds all current links so we can prune ancient history
    # -- Link
    for url in link_urls:
    if not be_quiet : print("Checking", url[0] + "...")
    for entry in parse(url[1]).entries:
    current_links.append(entry.link)
    if entry.link not in history["link"]: # If is a new link
    if not be_quiet : print(" * New Content Found!")
    if no_download or system('echo "<a href=\"' + entry.link + '\">' + url[0] + ' : ' + entry.title + '</a><br />" >> ' + download_dir + 'links.html') == 0: # Append to file
    history["link"].append(entry.link)
    # -- Deviant Art
    for url in deviant_art_urls:
    if not be_quiet : print("Checking", url[0] + "...")
    for entry in parse(url[1]).entries:
    if entry.media_content[0]["url"][-4] == '.': # Check it's a file
    current_links.append(entry.media_content[0]["url"])
    if entry.media_content[0]["url"] not in history["deviant_art"]: # If is a new link
    if not be_quiet : print(" * Downloading:", entry.media_content[0]["url"][entry.media_content[0]["url"].rfind('/') + 1:])
    if no_download or system('curl -so "' + download_dir + entry.media_content[0]["url"][entry.media_content[0]["url"].rfind('/') + 1:] + '" "' + entry.media_content[0]["url"] + '"') == 0: # Download
    history["deviant_art"].append(entry.media_content[0]["url"])
    # -- Youtube
    for url in youtube_users:
    if not be_quiet : print("Checking", url[0] + "...")
    for entry in parse("https://gdata.youtube.com/feeds/api/users/" + url[1] + "/uploads").entries:
    current_links.append(entry.link)
    if entry.link not in history["youtube"]: # If is a new link
    if no_download or system('youtube-dl --max-quality 22 -o "' + download_dir + '%(title)s.%(ext)s" "' + entry.link + '"' + ['', ' -q'][be_quiet]) == 0: # Download
    history["youtube"].append(entry.link)
    # -- Podcast
    for url in podcast_urls:
    if not be_quiet : print("Checking", url[0] + "...")
    for entry in parse(url[1]).entries:
    for link in entry.links:
    if link.type[0:5] == "video" or link.type[0:5] == "audio": # If _IT_ describes itself as video or audio
    current_links.append(link.href)
    if link.href not in history["podcast"]: # If is a new link
    if not be_quiet : print(" * Downloading:", link.href[link.href.rfind('/') + 1:])
    if no_download or system('curl -#Lo "' + download_dir + link.href[link.href.rfind('/') + 1:] + '" "' + link.href + '"' + ['', ' -s'][be_quiet]) == 0: # Download
    history["podcast"].append(link.href)
    # -- History Dump
    for key in history:
    for link in history[key]:
    if link not in current_links:
    history[key].remove(link)
    # -- Pickle History
    pickle.dump(history, open(history_file, "wb"))
    That's all folks. If you do give it a try, please give feed back even if it's just that the whole thing sucks. I'd love to know what feeds don't work, if there is anything you want added, or if you just think it's swell.
    If there appears to be some interest I'll look at putting this in the AUR. Maybe with a mode for config files so that each user can have thier feeds all independantly checked with each run under cron. Though that'll take some work to get just right so I'm only doing so if people are sure they would like such a feature. So yeah, feel free to ask for the moon, I'll see what I can do in most cases.
    Lastly, I am humbly sorry that I suck at documenting how exactly it works here. If you have any questions at all, please feel free to post away and I will do my best to answer them.

    This is a shame that Apple doesnt (somehow) make this one of the cross-platform features.
    I mean come on, how many of us mac users actually have ALL our computer-using relatives on a mac? In a perfect world, all of us, but reality is, I'm the only one out of about 11 people on my and my wife's side of the family that we share pics of the kids with. Everyone else uses Winblows.
    I was pumped when I heard about photocasting. Alas, now that I've tried to make this work smoothly for the novice windows users who want to see pictures of our kids, I realize there is *zero chance* of me being able to use this. There is no way I can see myself sending my 63 year old mother an RSS feed link and having her figure out what to do with it (when she can barely figure out how to look at the pics I send in email he he). If she has to go install an RSS reader, forget it.
    Anyway, great mac only feature, but this would be a huge feather in Apple's cap if they could figure out how to serve this up to Windows end users just as effortlessly.
    eMac, PB17"   Mac OS X (10.4.4)  
    eMac   Mac OS X (10.2.x)  

Maybe you are looking for

  • XML to PLAIN - urgent help needed

    Hello everybody! I have a ftp receiver adapter; in this adapter a xml file should be converted to a plain text file. The structure looks like this: <ns0:MFG_ORDERS xmlns:ns0="urn:test.com:edi:test"> <HEADER>   <So_recordtype>SOHD</So_recordtype>   <S

  • Complex Sap text variable in WEBI with replacement path

    Hi Gurus, Variables in Bex Present Fiscal Qtr : 2012Q4 Fiscal Qtr-8    :        2010Q4 My Output header(TEXT)  in Bex as follows. 2010Q4_ ACT     2011Q1_ ACT     2011Q2_ ACT     2011Q3_ ACT     2011Q4_ ACT      2012Q1_ ACT     2012Q2_ ACT     2012Q3_

  • Are there still no other payment-methods in germany?

    Hello, Searching the Adobe-Sites many old statements can be found which claim that other payment methods then CreditCard will be added to CC. It is okay for me to pay for a whole year and I really would like to pay via giro transfer or debit. It is a

  • Nokia 6230i and Mercedes car kit

    Help. My phone is no longer working in my mercedes command car kit. If I fiddle with it it does intermittently pick up but does not charge it and often does not work properly eg unable to close a call. I've asked Mercedes to check the kit and apparen

  • I forgot security answer and my email account was hacked. What can i do?

    I bought a new ipod and i cannot buy anything without my security question answers, which i forgot, and recently my email account which is the rescue email address, was hacked so i have no way i can reset and I want to buy an app.