How can I add preceeding text to this ticker ? Programming Web Development by MoreBloodWine …;><div style="'+this.opacitystring+'">Initializing ticker...</div></div>') this.getXMLfile() } // …, true) this.ajaxobj.send(null) } } // ------------------------------------------------------------------- // initialize()- Initialize ticker method. // -Gets contents of xml file and parse it using… Help Solving Bitcoin Ticker Issues Programming Web Development by mathieu67 …Mt.Gox with either bitstamp.net/api/ticker/ and blockchain.info/ticker ticker. The codes are below. Can you… json_decode($mtgoxjson); $output_mtgox_1 = get_object_vars($output_mtgox); $mtgox_array = get_object_vars($output_mtgox_1['ticker']); ?> <br/> <br/> Last:&… Javascript Drop Down Menu appearing "behind" Javascript Scrolling Ticker Programming Web Development by ryandavid …Javascript drop down menu that has a Javascript scrolling ticker below it. The drop down menu is appearing on…drop down menu is appearing "behind" the scrolling ticker (not what I want!) in IE8, Chrome, Safari …} #tdmenu div a:hover{ color: #39F600; }[/CODE] The scrolling ticker class is defined in my css file as: [CODE].qmticker… Re: Help Solving Bitcoin Ticker Issues Programming Web Development by diafol …return $array; } $url = 'http://www.bitstamp.net/api/ticker/'; $clientName = 'Bitstamp'; $bitstamp = extractData($url,$clientName); …$url = 'http://blockchain.info/ticker'; $clientName = 'Blockchain'; $blockchain = extractData($url,$clientName); … Re: Help Solving Bitcoin Ticker Issues Programming Web Development by diafol … all be there. From what I remember though, is the ticker part of the api? I thought it was separate. The… Re: Help Solving Bitcoin Ticker Issues Programming Web Development by diafol Sorry I'm not signing up to anything. A quick look at the API, suggests what I originally thought. The ticker is not part of the api - or if it is, it's not documented (AFAIK). Re: Help Solving Bitcoin Ticker Issues Programming Web Development by diafol Ah - excuse me! https://blockchain.info/api/exchange_rates_api Apparently the ticker is there - just hidden away! Live iOS app Ticker ??? Programming Software Development by Harvey_10 …a question, i am trying to implement a live Ticker for my iOS app but i am stuck in a…internet connection to connect to a sever which has a ticker that Updates continuosly. So here is what i need… would display it somewhat like this on the View : **Live Ticker** $ 12.90 ** Feed ** ... i want that value "… JS Ticker Digital Media UI / UX Design by Paradox25 Hello first post here :mrgreen:! What I want is a ticker very similar to this [url]http://www.sheffieldforum.co.uk/[/… of having it between the Welcome Message and stats. The ticker. If you can point me in the right direction, I… Re: Scrolling Ticker... Programming Software Development by vegaseat A simple way to make a ticker ... [code=python]# using Tkinter to create a marquee/ticker # uses a display width of 20 characters… was wondering how someone would go about making a scrolling ticker" # pad front and end with 20 spaces s2 = ' ' * 20… vertical Scrolling ticker Hardware and Software Microsoft Windows by webeman I'd like to ad a vertical scrolling ticker on to my blog. I'm using the new blogger …. I'm not sure if I want to ad the ticker in my sidebar, which in my blog, is on the… Stock Ticker + MYSQL and PHP Programming Web Development by Crow77 I want to create a project where there's a Stock Exchange ticker (you know the thing with green arrow up and red arrow down sliding from right to left). I was wondering if there's an open-source script where it takes data from a MYSQL select statement or simple logic to present them on the website as a ticker through PHP. Scrolling Ticker... Programming Software Development by a1eio Hi, I was wondering how someone would go about making a scrolling ticker or marquee using Tkinter in such a way that allows you to easily add on text and remove.. kinda like a news scroller on the bottom of the tv? thanks all a1eio Desktop News Ticker Programming Software Development by ansari.wajid Hi Friends I got a task from my team lead to create a desktop news ticker. If any one have code or else an helpfull link for the same, please reply back. Thanks in advance. Commodity Stock Ticker Programming Web Development by MaddTechwf I was hoping that someone could point me in the right direction to find a commodities stock ticker that I can show: Natural Gas, Crude Oil, etc. Re: A ticker for long messages (Python/Tkinter) Programming Software Development by vegaseat Using the Tkinter canvas for the ticker makes it run a little smoother ... ''' Tk_Canvas_ticker1.py using a …Tkinter canvas to create a marquee/ticker via canvas.create_text(x, y, anchor='nw', text=s, font… Re: A ticker for long messages (Python/Tkinter) Programming Software Development by Ismatus3 Hello , Thank you for this ticker example , It's realy a useful result of the Tkinter module . Re: Help Solving Bitcoin Ticker Issues Programming Web Development by mathieu67 Works like a charm. Thank you so much. There is one little issue though. I pulled Bitstamp using <?php echo $bitstamp['last']; ?> but the same is not working for Blockchain. I tried $blockchain and $blockchain_array but neither working. And for Blockchain, how can I add an api key that will allow me to make unlimited request? They … Re: Help Solving Bitcoin Ticker Issues Programming Web Development by mathieu67 I tried $blockchain = extractData($url,$clientName)['USD']; and it broke the site. http://www.bitcoinvalues.net shows a blank page. As for the KEY, blockchain has this on their site "For an API Code to bypass the request limiter please Request An API Code (https://blockchain.info/api/api_create_code)" The code as I understand it will … Re: Help Solving Bitcoin Ticker Issues Programming Web Development by diafol >I tried $blockchain = extractData($url,$clientName)['USD']; What version of PHP are you using? Perhaps it's too old. Anyway, use this in that case... $blockChainArray = extractData($url,$clientName); $blockchain = $blockChainArray['USD']; >and it broke the site. http://www.bitcoinvalues.net shows a blank page. Tell me you're not… Re: Help Solving Bitcoin Ticker Issues Programming Web Development by mathieu67 So does that mean I don't have to worry about request limit? Re: Help Solving Bitcoin Ticker Issues Programming Web Development by diafol Without delving into the documentation myself, I couldn't really say. Read the API documentation - and if the answer's not there - contact them. Re: Help Solving Bitcoin Ticker Issues Programming Web Development by mathieu67 Thank you sir. It's working very well now. Thanks again. Re: Javascript Drop Down Menu appearing "behind" Javascript Scrolling Ticker Programming Web Development by almostbob [B]You[/B] dont set the z-index, the remote site does somewhere in their javascript, they want to be ontop. when you sign up and agree to the terms of their script, you got their script, however they wrote it. this is the css accessed by the javascript embedded[code=css].qmmt_main { background-color: #ffffff; border: 1px solid #999999; }… Re: Javascript Drop Down Menu appearing "behind" Javascript Scrolling Ticker Programming Web Development by theighost use a higher z-index, if you have flash, then it's a problem, try WMODE=Transparent (flash) Re: Javascript Drop Down Menu appearing "behind" Javascript Scrolling Ticker Programming Web Development by ryandavid Thanks. I actually fixed the problem but forgot to post. I set the z-index in my menu to 1000 and the problem was resolved. Thanks for the helpful replies. How did you access/view the CSS accessed by their script? Ryan Re: Javascript Drop Down Menu appearing "behind" Javascript Scrolling Ticker Programming Web Development by almostbob [QUOTE=ryandavid;1188308]How did you access/view the CSS accessed by their script? Ryan[/QUOTE]I read the javascript from the link in your code found the css ref Re: Live iOS app Ticker ??? Programming Software Development by dancks I'll start off by saying I'm a complete noob to Obj-c/cocoa. So maybe I shouldn't even respond. And if this is nonsense I apologize. Why couldn't you make a c/obj-c object that handles the client connection on the phone, completely stand-alone, you make an instance of this object in your app, and simply have appdelegate receive notifications from … Re: JS Ticker Digital Media UI / UX Design by tgreer [url]http://webreference.com/programming/javascript/professional/chap21/2/5.html[/url] If you view the source on that frame, you'll find the code and the above reference. Re: Stock Ticker + MYSQL and PHP Programming Web Development by saiprem Check this link for more details https://developers.google.com/finance/docs/finance-gadgets