[19. April 2013] A-400 Advanced Network Setup now available | [11 Jan. 2013] Customize your A-400 Home Screen

Firmware: A-400 [13 May 2013] | C-300 [30 Nov. 2012] | A-300 [30 Nov. 2012] | C-200 [21 Jan. 2013] | A-200/A-210 [10 Aug. 2012]

Just got your NMT | WIKI has the answers | Search the forum | Forum Rules/Policy | Firmware & Official NMT News | Popcornhour manuals



User(s) browsing this thread: 1 Guest(s)
Post Reply 
MediatankController 1.2 with Android
03-21-2011, 08:24 PM (This post was last modified: 03-21-2011 08:24 PM by Hann1BaL.)
Post: #1
MediatankController 1.2 with Android
I have a A-110 with Mediatankcontroller 1.2 installed.

Opening the link on my HTC Desire gives me the remote control but lacking the bar with the basic controls: PLAY, STOP, NEXT, PREVIOUS, PAUSE.


Opening the link in a browser, Chrome, the source shows that the PLAY, PAUSE, etc. bar is behind the bar with: "Contents, Favorites, Playlists, Watchfolder, Remote"

Here you can see what I can see. I can't find how to change it. It's just a webinterface, so I would expect it to be quite easy. I didn't manage to do it. My phone opens the iphone version of the interface.

[Image: mtc_desire.JPG]

Anyone an idea how to fix this because I would expect this to be rather easy Smile Thanks in advance!
Find all posts by this user
Add Thank You Quote this message in a reply
03-26-2011, 08:57 AM
Post: #2
RE: MediatankController 1.2 with Android
There really is no one with a good clue? Undecided
Find all posts by this user
Add Thank You Quote this message in a reply
03-29-2011, 02:28 AM
Post: #3
RE: MediatankController 1.2 with Android
Your phone isn't displaying the bar with those controls for some reason. It is below the colored buttons on my aPad.
Find all posts by this user
Add Thank You Quote this message in a reply
04-28-2011, 04:50 PM
Post: #4
RE: MediatankController 1.2 with Android
I have the same problem than #1, the bar with the basic controls: PLAY, STOP, NEXT, PREVIOUS, PAUSE, don´t appear.
My phone is Samsung galaxy s, whith froyo 2.2.1
Find all posts by this user
Add Thank You Quote this message in a reply
05-14-2011, 01:45 AM (This post was last modified: 05-14-2011 01:46 AM by PtD.)
Post: #5
Information RE: MediatankController 1.2 with Android
It's possible to do with CSS tweaking (/share/Apps/MediatankController/webui/themes/iphone/c/main.css). Here's a quickly hacked version, that is only set up for portrait layout. It also has the playback controls on the top, since I think they're the most important. Works on my Nexus One, Froyo 2.2.1.
Quote:/********************************************************************************​****************/

* {
-webkit-touch-callout: none;
-webkit-user-select: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-text-size-adjust: none;

margin: 0;
padding: 0;
}

body {
height: 100%;
overflow-x: hidden;

font-family: Helvetica;
color: #000;
background: #fff;
}







/********************************************************************************​****************/

.toolbar {
position: absolute;
top: 0;
left: 0;
z-index: 2;

box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
width: 100%;
height: 44px;
padding: 10px;

background: url(../i/t/toolbar.png) #6d84a2 repeat-x;
}

body.offline > .toolbar {
background: #6d84a2 url(../i/t/offline.png) repeat-x !important;
}

/**********************************/

.toolbar > h1 {
position: absolute;
left: 50%;
z-index: 5;

height: 45px;
width: 150px;
margin: 1px 0 0 -75px;
overflow: hidden;

font-size: 20px;
font-weight: bold;
text-shadow: rgba(0, 0, 0, 0.4) 0px -1px 0;
text-align: center;
text-overflow: ellipsis;
white-space: nowrap;
color: #fff;
opacity: 1;

-webkit-transition-property: -webkit-transform, opacity;
-webkit-transition-duration: 300ms;
-webkit-transform: translate3d(0, 0, 0);
}

/*
body.landscape .toolbar > h1 {
margin-left: -125px;
width: 250px;
}
*/
/**********************************/

.toolbarButton,
.toolbar > .button {
position: absolute;
top: 7px;
right: 6px;
z-index: 5;

width: auto;
min-width: 18px;
height: 30px;
margin: 0;
padding: 0 3px;
overflow: hidden;

line-height: 30px;
font-family: inherit;
font-size: 12px;
font-weight: bold;
text-shadow: rgba(0, 0, 0, 0.6) 0px -1px 0;
text-overflow: ellipsis;
text-decoration: none;
text-align: center;
white-space: nowrap;

color: #fff;
background: none;
border-width: 0 5px;
-webkit-border-image: url(../i/t/toolButton.png) 0 5 0 5;
}
.toolbarButton.blue,
.toolbar > .button.blue {
-webkit-border-image: url(../i/t/blue.png) 0 5 0 5;
}
.toolbarButton.focus,
.toolbarButton.blue.focus,
.toolbar > .button.focus,
.toolbar > .button.blue.focus {
-webkit-border-image: url(../i/t/button-focus.png) 0 5 0 5;
}
.toolbarButton.left,
.toolbar > .button.left {
left: 6px;
right: auto;
}
body > .toolbar > #backButton {
display: none;

left: 6px;
right: auto;

max-width: 55px;
padding: 0;

opacity: 1;
border-width: 0 8px 0 14px;
-webkit-border-image: url(../i/t/backButton.png) 0 8 0 14;

-webkit-transition-property: -webkit-transform, opacity;
-webkit-transition-duration: 300ms;
-webkit-transform: translate3d(0, 0, 0);
}
body > .toolbar > #backButton.focus {
-webkit-border-image: url(../i/t/back-focus.png) 0 8 0 14;
}







/********************************************************************************​****************/

body > #pages {
position: relative;
width: 100%;
}
/*
body.landscape > #pages {
}
*/

body > #pages > div {
width: 100%;
}

body > #pages > div div.content {
display: none;

margin: 44px 0 0;
width: 100%;
height: 100%;
overflow: hidden;
position: relative;
z-index: 10;
}
body > #pages > div[selected="true"] div.content {
display: block;
}




/*
body.landscape > #pages > * {
min-height: 224px;
}
*/







/********************************************************************************​****************/

body > .footer {
position: relative;
width: 100%;

display: block;
height: 49px;
overflow: hidden;

background: url(../i/f/bg.png) top left repeat-x;
text-align: center;

margin: 0;
padding: 0;
white-space: nowrap;
z-index: 200;
}


.footer li {
display: inline-block;
margin: 3px 0 0 0;
padding: 0;
width: 62px;
}
.footer li a {
text-decoration: none;
color: #888;
text-shadow: rgba(0, 0, 0, 0.6) 0px -1px 0;

font-weight: bold;
font-size: 9px;

display: block;
position: relative;
padding: 33px 0 1px 0;

background-color: transparent !important;
background-image: url(../i/f/icons.png) !important;
}
.footer li a.selected {
color: #fff;
background-color: rgba(255, 255, 255, 0.15) !important;
-webkit-border-radius: 2px;
}
.footer li a div {
position: absolute;
display: block;
float: right;

top: 0px;
right: 2px;
z-index: 1000;
color: #fff;
border-width: 0 12px;
-webkit-border-image: url(../i/f/status.png) 0 12 0 12;

height: 23px;
line-height: 19px;

text-align: center;
font-size: 14px;
font-weight: bold;
font-style: normal;
}
.footer li a div:before {
margin: 0 -6px;
content: attr(title);
}
.footer li a[rel=favorites] {
background-position: 0px 0;
}
.footer li a[rel=favorites].selected {
background-position: 0px -50px;
}
.footer li a[rel=watchfolder] {
background-position: -60px 0;
}
.footer li a[rel=watchfolder].selected {
background-position: -60px -50px;
}
.footer li a[rel=remote] {
background-position: -120px 0;
}
.footer li a[rel=remote].selected {
background-position: -120px -50px;
}
.footer li a[rel=contents] {
background-position: -180px 0;
}
.footer li a[rel=contents].selected {
background-position: -180px -50px;
}
.footer li a[rel=playlists] {
background-position: -240px 0;
}
.footer li a[rel=playlists].selected {
background-position: -240px -50px;
}





/********************************************************************************​****************/

div.container {
min-height: 100%;
background: #fff;
}




/********************************************************************************​****************/

ul.list {
background: #fff;
min-height: 100%;
}
ul.list > li {
position: relative;
margin: 0;
padding: 8px 0 8px 10px;
border-bottom: 1px solid #E0E0E0;
background-color: #fff;
list-style: none;

font-size: 16px;
font-weight: bold;
}
ul.list > li a {
display: block;
margin: -8px 0 -8px -10px;
padding: 8px 32px 8px 10px;
text-decoration: none;
color: inherit;
background: url(../i/l/listArrow.png) no-repeat right center;
}

/**********************************/

ul.list > li {
-webkit-transition-property: -webkit-translate;
-webkit-transition-duration: 300ms;
}
ul.list > li.dragging {
opacity: 0.9;
-webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.4);
-webkit-transition-duration: 0ms;
}
ul.list > li div.handle {
position: absolute;
top: 0px;
right: 0px;
width: 38px;
height: 34px;

background: #fff url(../i/l/handle.png) no-repeat center center;
/* border-left: 1px solid #E0E0E0; */

opacity: 0;
-webkit-transform: translateX(38px);

-webkit-transition-property: opacity, -webkit-transform;
-webkit-transition-duration: 300ms, 300ms;
}
.editing ul.list > li div.handle {
opacity: 1;
-webkit-transform: translateX(0);
}

/**********************************/

ul.list > li a.file,
ul.list > li a.service {
background-image: none;
}
ul.list > li a.selection {
background-color: #ccdded;
background-image: url(../i/l/listArrow.png), url(../i/l/selection.png);
background-repeat: no-repeat, repeat-x;
background-position: right center, left top;
}
ul.list > li a.selection.file,
ul.list > li a.selection.service {
background-color: #ccdded;
background-image: url(../i/l/selection.png);
background-repeat: repeat-x;
background-position: left top;
}
ul.list > li a.focus,
ul.list > li a[selected] {
color: #fff;
background-color: #194fdb;
background-image: url(../i/l/listArrowSel.png), url(../i/l/focus.png);
background-repeat: no-repeat, repeat-x;
background-position: right center, left top;
}
ul.list > li a.focus.file,
ul.list > li a.focus.service,
ul.list > li a[selected].file,
ul.list > li a[selected].service {
background-image: url(../i/l/focus.png);
background-repeat: repeat-x;
background-position: left top;
}
ul.list > li a[selected="progress"] {
background-image: url(../i/l/loading.gif), url(../i/l/focus.png) !important;
background-repeat: no-repeat, repeat-x !important;
background-position: right center, left top !important;
}

/**********************************/

ul.list > li.hasMark .path,
ul.list > li.hasIcon .path,
ul.list > li.hasMark .title,
ul.list > li.hasIcon .title {
padding-left: 24px;
display: block;
text-overflow: ellipsis;
overflow: hidden;
}
ul.list > li.hasIcon.hasMark .path,
ul.list > li.hasIcon.hasMark .title {
padding-left: 56px;
}
ul.list > li.hasIcon .icon {
position: absolute;
top: 8px;
left: 8px;
}
ul.list > li.hasIcon.hasMark .icon {
left: 40px;
}
ul.list > li.hasMark .mark {
position: absolute;
display: block;
top: 10px;
left: 16px;
width: 12px;
height: 12px;

background: transparent url(../i/l/new.png) top left no-repeat;
}
ul.list > li.hasMark.marked .mark {
background: none;
}

/**********************************/

ul.list > li a .path {
font-size: 12px;
color: #aaa;
}
ul.list > li a[selected] .path,
ul.list > li a.focus .path {
color: #fff !important;
}

/**********************************/

ul.list > li a .title.alternate {
color: #888;
font-style: italic;
font-weight: normal;
}
ul.list > li a[selected] .title.alternate,
ul.list > li a.focus .title.alternate {
color: #fff !important;
}

/**********************************/

ul.buttons {
overflow: hidden;
text-align: center;
margin: 0;
padding: 0;
border: none;
}
ul.buttons > li {
display: inline;
}
ul.buttons > li a {
display: inline-block;
width: 120px;
height: 32px;
line-height: 32px;

padding: 0;
margin: 10px 6px 14px;

background: #fff;
border-width: 0 9px 0 9px;
-webkit-border-image: url(../i/l/button.png) 0 9 0 9;

text-align: center;
font-size: 14px;
font-weight: bold;
color: #566994;

white-space: nowrap;
}
ul.buttons > li a.focus {
-webkit-border-image: url(../i/l/button-focus.png) 0 9 0 9;
color: #fff;
}
ul.buttons > li a:active,
ul.buttons > li a[selected],
ul.buttons > li a[selected="progress"] {
background: none !important;
}
ul.buttons > li.disabled a,
body.offline ul.buttons > li a {
opacity: 0.5;
}
ul.buttons > li.disabled a.focus,
body.offline ul.buttons > li a.focus {
-webkit-border-image: url(../i/l/button.png) 0 9 0 9;
color: #566994 !important;
}

/**********************************/

div.information {
text-align: center;
padding: 20px 30px;

font-weight: normal;
font-size: 14px;
line-height: 140%;
color: #666;
}

/**********************************/

ul.list > li span.status {
position: absolute;
top: 7px;
right: 42px;

color: #fff;
border-width: 0 10px;
-webkit-border-image: url(../i/l/status.png) 0 10 0 10;

height: 20px;
line-height: 19px;

text-align: center;
font-size: 17px;
font-weight: bold;
font-style: normal;
}
ul.list > li span.status:before {
content: attr(title);
}
ul.list > li a.focus span.status,
ul.list > li a[selected] span.status,
ul.list > li a.selection span.status {
color: #194fdb;
-webkit-border-image: url(../i/l/status-selected.png) 0 10 0 10;
}





/********************************************************************************​****************/

body > #pages > #remote .content {
position: relative;
margin: 0 0 0 0;
overflow: hidden;
z-index: 100;
background: #000;
}

/**********************************/

#remote .toolbar {
z-index: 11 !important;
background: #222 url(../i/c/toolbar.png) repeat-x !important;
opacity: 0.85;
}
body.offline #remote .toolbar {
background: #222 url(../i/c/offline.png) repeat-x !important;
}
#remote .toolbar .button {
-webkit-border-image: url(../i/c/button.png) 0 5 0 5;
}
#remote .toolbar .button.enabled {
-webkit-border-image: url(../i/c/button-focus.png) 0 5 0 5;
}
#remote .toolbar h1 {
text-shadow: rgba(0, 0, 0, 0.4) 0px -1px 0;
color: #fff;
}

/**********************************/

#remote #playback {
display: block;
overflow: hidden;

bottom: 0;
left: 0;
width: 100%;
z-index: 12 !important;

margin: 0;
padding: 49px 0 5px;

background: #202020 url(../i/c/bg-large.png) top left repeat-x;
text-align: center;
-webkit-box-shadow: none;
opacity: 0.95;
}

/*
body.landscape #remote #playback {
height: 37px !important;
min-height: 37px !important;
padding: 45px 0 0;
background: #202020 url(../i/c/bg.png) top left repeat-x;
}
*/

#remote #playback li {
list-style-type: none;
display: inline;
margin: 0 4px;
padding: 0;
background: none;
width: auto;
border: none;
}
/*
body.landscape #remote #playback li {
margin: 0 18px;
}
*/
#remote #playback li a {
display: inline;
margin: 0;
padding: 12px 14px 10px;
}

/**********************************/

#remote .contents {
background: #555;
border: none;
margin: 0;
padding: 0;
z-index:1;
overflow: hidden;
}

/**********************************/

#remote #buttons {
padding: 10px 0 10px 34px;
background: #333;
-webkit-box-shadow: 0 0 20px #333;
overflow: hidden;
}
/*
body.landscape #remote #buttons {
padding-left: 48px;
}
*/
/**********************************/

#remote #buttons .group {
display: inline;
min-width: 100px;
}
#remote #buttons .group.large {
max-width: 264px;
float: left;
display: inline-block;
margin: 12px 0;
}
/*
body.landscape #remote #buttons .group.large {
margin: 0;
}
*/
/**********************************/

#remote #buttons a {
display: block;
float: left;

border-width: 0 6px 0 6px;
-webkit-border-image: url(../i/c/button-light.png) 0 6 0 6;

width: 42px;
height: 36px;

margin: 0 12px 12px 0;

font-weight: bold;
color: #fff;
text-align: center;
line-height: 40px;
text-decoration: none;
}
#remote #buttons .group.large a {
width: 64px;
}
#remote #buttons a.blue {
-webkit-border-image: url(../i/c/button-blue.png) 0 6 0 6;
}
#remote #buttons a.red {
-webkit-border-image: url(../i/c/button-red.png) 0 6 0 6;
}
#remote #buttons a.green {
-webkit-border-image: url(../i/c/button-green.png) 0 6 0 6;
}
#remote #buttons a.yellow {
-webkit-border-image: url(../i/c/button-yellow.png) 0 6 0 6;
}
#remote #buttons a.dark {
-webkit-border-image: url(../i/c/button-dark.png) 0 6 0 6;
}
#remote #buttons a.focus {
-webkit-border-image: url(../i/c/focus-light.png) 0 6 0 6;
}
#remote #buttons a.focus.blue {
-webkit-border-image: url(../i/c/focus-blue.png) 0 6 0 6;
}
#remote #buttons a.focus.red {
-webkit-border-image: url(../i/c/focus-red.png) 0 6 0 6;
}
#remote #buttons a.focus.green {
-webkit-border-image: url(../i/c/focus-green.png) 0 6 0 6;
}
#remote #buttons a.focus.yellow {
-webkit-border-image: url(../i/c/focus-yellow.png) 0 6 0 6;
}
#remote #buttons a.focus.dark {
-webkit-border-image: url(../i/c/focus-dark.png) 0 6 0 6;
}
#remote #buttons a em {
font-style: normal;
width: 40px;
line-height: 26px;
height: 36px;
display: inline-block;
margin: -2px 0 0;
background-image: url(../i/c/icons.png);
background-position: top left;
background-repeat: no-repeat;
}
#remote #buttons a.focus em {
opacity: 0.5;
}







/********************************************************************************​****************/

.balloon {
position: absolute;
float: left;

display: block !important;
z-index: 1000 !important;
background: transparent !important;
width: auto !important;
height: auto !important;
min-height: 0 !important;
overflow: visible !important;
}
.balloon div {
position: relative;
text-align: center;
margin: 0 auto;
width: 36px;
height: 12px;

background: url(../i/b/tip.png) top left;
}
.balloon div:last-child {
top: -1px;
height: 16px;
background-position: bottom left;
}

.balloon.down div:first-child {
display: none;
}
.balloon.up div:last-child {
display: none;
}

.balloon ul {
border-width: 0 7px;
-webkit-border-image: url(../i/b/bg.png) 0 7 0 7;
-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
-webkit-border-radius: 9px;
color: #fff;

padding: 1px 0;
margin: 0;
font-weight: bold;
font-size: 14px;
height: 37px;
white-space: nowrap;
}
.balloon li {
display: inline-block;
list-style-type: none;
padding: 0;
margin: 0;

border-right: 1px solid rgba(0, 0, 0, 0.2);
border-left: 1px solid rgba(255, 255, 255, 0.2);

line-height: 37px;
}
.balloon li:first-child {
border-left: none;
}
.balloon li:last-child {
border-right: none;
}
.balloon li a {
text-decoration: none;
color: #fff;
text-shadow: rgba(0, 0, 0, 0.6) 0px -1px 0;

display: block;
padding: 0 12px;
}
.balloon li:first-child a {
margin-left: -6px;
-webkit-border-top-left-radius: 8px;
-webkit-border-bottom-left-radius: 8px;
}
.balloon li:last-child a {
margin-right: -6px;
-webkit-border-top-right-radius: 8px;
-webkit-border-bottom-right-radius: 8px;
}
.balloon li a.focus {
border-color: transparent;
background: url(../i/b/selected.png) top left repeat-x;
}







/********************************************************************************​****************/

div.logo {
width: 100%;
text-align: center;
margin: 40px 0;
}






/********************************************************************************​****************/

.loading {
width: 320px;
height: 60px;
margin: 150px auto 60px;
background: url(../i/a/loader.gif) center center no-repeat;
}
/*
body.landscape .loading {
width: 320px;
height: 60px;
margin: 75px auto 60px;
background: url(../i/a/loader.gif) center center no-repeat;
}
*/






/********************************************************************************​****************/

#loading .logo {
margin-bottom: 0;
}
#loading a.aboutButton {
display: inline-block;
width: 120px;
height: 32px;
line-height: 32px;

padding: 0;
margin: 20px 6px 14px;

background: #fff;
border-width: 0 9px 0 9px;
-webkit-border-image: url(../i/l/button.png) 0 9 0 9;

font-size: 14px;
font-weight: bold;
text-decoration: none;
text-align: center;
color: #566994;
}
#loading .loading {
width: 320px;
height: 60px;
margin: 0 auto 60px;
background: url(../i/a/loader.gif) center center no-repeat;
}







/********************************************************************************​****************/

#about p {
margin: 0px 46px 20px;
font-size: 12px;
}
#about .logoContainer {
position: relative;
width: 320px;
height: 150px;
-webkit-perspective: 600;

margin: 0 auto 40px;
}
#about .card {
position: absolute;
top: 40px;
left: 45px;

width: 230px;
height: 124px;

-webkit-transform-style: preserve-3d;
-webkit-transition-property: -webkit-transform;
-webkit-transition-duration: 1s;
}
#about .card.flipped {
-webkit-transform: rotateY(180deg);
}
#about .face {
position: absolute;
width: 230px;
height: 124px;

-webkit-backface-visibility: hidden;
}
#about .back {
-webkit-transform: rotateY(180deg);
}




/********************************************************************************​****************/

.dialog {
position: absolute;
top: 0;
min-height: 460px;
height: 100%;
width: 100%;
z-index: 1000;

background: #fff;
}
.dialog .toolbar {
height: 75px;
background: url(../i/t/large.png) #6d84a2 repeat-x;
}
.dialog .toolbar > .button {
top: 37px;
}
.dialog .toolbar > h1 {
top: 40px;
}
.dialog .toolbar > em {
position: absolute;
left: 50%;

height: 38px;
width: 300px;
margin: 1px 0 0 -150px;
overflow: hidden;

font-style: normal;
font-size: 14px;
text-shadow: rgba(255, 255, 255, 0.4) 0px 1px 0;
text-align: center;
text-overflow: ellipsis;
white-space: nowrap;
color: #30425e;
opacity: 1;
}

.dialog .contents {
position: absolute;
top: 75px;
width: 100%;
min-height: 385px;
}
/*
body.landscape > .dialog .contents {
min-height: 225px;
}
*/
.dialog ul.list {
width: 100%;
min-height: 385px;
}
/*
body.landscape > .dialog ul.list {
min-height: 225px;
}
*/
.dialog ul.list > li a {
background-image: none;
}
.dialog ul.list > li a.selection {
background-color: #ccdded;
background-image: url(../i/l/selection.png);
background-repeat: repeat-x;
background-position: left top;
}
.dialog ul.list > li a.focus,
.dialog ul.list > li a[selected] {
background-image: url(../i/l/focus.png);
background-repeat: repeat-x;
background-position: left top;
}
.dialog ul.list > li span.status {
right: 6px;
}



/********************************************************************************​****************/

#preloader {
display: none;
background-image: url(../i/l/loading.gif), url(../i/l/focus.png),
url(../i/l/listArrowSel.png);
}






div.buttons {
position: absolute;
top: 0;
width: 100%;
z-index: 22;

height: 0px;
}


a[rel=startEditing] {
width: 40px;
}
a[rel=stopEditing] {
width: 40px;
}
Find all posts by this user
Add Thank You Quote this message in a reply
[+] 1 user says Thank You to PtD for this post
06-08-2011, 05:08 AM
Post: #6
RE: MediatankController 1.2 with Android
Does your direction key will crash some popcorn apps from app market?
Find all posts by this user
Add Thank You Quote this message in a reply
06-27-2011, 10:38 PM
Post: #7
RE: MediatankController 1.2 with Android
(06-08-2011 05:08 AM)stanly007 Wrote:  Does your direction key will crash some popcorn apps from app market?

I don't use other popcorn apps, so I can't answer that.
Find all posts by this user
Add Thank You Quote this message in a reply
05-14-2012, 12:20 PM
Post: #8
RE: MediatankController 1.2 with Android
Having the same issue on ICS.

Will try if this works, thanks!
Find all posts by this user
Add Thank You Quote this message in a reply
05-16-2012, 11:00 AM
Post: #9
RE: MediatankController 1.2 with Android
(05-14-2012 12:20 PM)MacLeod Wrote:  Having the same issue on ICS.

Will try if this works, thanks!

Tried this yesterday, copied contents to new text file, and copied this file over the original css, but still the buttons don't appear. Anyone has any idea?
Find all posts by this user
Add Thank You Quote this message in a reply
05-16-2012, 10:26 PM
Post: #10
RE: MediatankController 1.2 with Android
Still no luck. Have been looking at the files index.html and main.css The icons that are displayed are declared as img in the html file, but if I understand it correctly the empty buttons should come from icons.png, and should be created by using the CSS file. Is that what you fixed with this CSS file? I have no idea how I can fix this as my CSS knowledge is somewhat limited to say the least.

I know it's not Android related as the same issue occurs on my laptop connecting with chrome and firefox.

Almost off to bed, the quest for an answer will continue tomorrow...
Find all posts by this user
Add Thank You Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  MediatankController 1.2 for iPhone - browse and control your NMT from your phone Niels Leenheer 424 274,240 11-27-2012 03:28 PM
Last Post: jedebe
  MediatankController 1.0 for Adobe AIR - browse and control your NMT from your PC Niels Leenheer 232 166,081 05-13-2012 10:48 PM
Last Post: robertazimmerman
  is there an android remote control for the A110? jadeddog 2 2,748 06-04-2011 11:27 PM
Last Post: dw_bobby
  Can I browse MediaBox by Bonjour via my Android/Iphone App? stanly007 0 1,441 05-23-2011 11:02 AM
Last Post: stanly007
  Android app to access internal hdd crisarn 3 2,480 10-02-2010 12:03 PM
Last Post: dc11ab
  Android app for remote NZB? Posible 4 3,919 08-23-2010 09:58 AM
Last Post: cloink
  New Free MPD Client for Android TheMory 18 12,138 08-06-2010 12:00 AM
Last Post: mhut
Biggrin PLoNK , Android remote controll of Popcorn Hour and llink - Update PoPEye 12 18,327 03-30-2009 10:21 PM
Last Post: PoPEye
  MediatankController not working - please help FatAlbert 9 4,073 03-25-2009 10:24 AM
Last Post: Ecksharisis

Forum Jump: