Eric Batlle

Results 12 comments of Eric Batlle

@monire91 that's right, normally plugins for android involves ADB for debuging, so yes, you need to plug your phone.

Well, after a while, for the people that wants this feature, I can offer my own plugin-repository: https://github.com/EricBatlle/UnityAndroidSpeechRecognizer (give it some love!)

I've tried the following: ``` public void MoveTo(float position) { _scroll.verticalNormalizedPosition = position/ _count; } ``` being position the target index in the list, but it won't work, it scrolls...

And what about using the default "thumb" of seekbar? Thumb allows drawable customization, isn't it? Or it will break your code into pieces? :S Cause the problem is not only...

I've not debugged carefully enough, the list is removed after line 196: ``` lRatedCsvShows.RemoveAll(s => lCurrentUserShowRatings.Any(c => (c.Show.Ids.ImdbId == s.Ids.ImdbId) || (c.Show.Title.ToLowerInvariant() == s.Title.ToLowerInvariant() && c.Show.Year == s.Year))); ``` This...

:O now I see, and how can I MARK as watched them? is this a feature that your app has? Or maybe I can help you implementing it

> Note: the app won't mark a whole series as watched if rated, however it does that for episodes and movies. hmmm I see, is this some API limitation? or...

> > :O now I see, and how can I MARK as watched them? is this a feature that your app has? Or maybe I can help you implementing it...

Also @damienhaynes you have the "Mark as Watched" inside IMDbWeb.cs, is this not related? This concretly (line 354): `var response = TraktAPI.AddMoviesToWatchedHistory(Helper.GetSyncWatchedMoviesData(movies.Skip(i * pageSize).Take(pageSize).ToList())); ` looks like the desired behaviour...

If someone like me, has a list of shows that are pretty confident are fully finished, or prefer to mark them all as finished and then manually "fix" the seasons...