Page 7 of 41 FirstFirst 1234567891011121314151617 ... LastLast
Results 61 to 70 of 408

Thread: Movie Listings... Coming to an RR near you!

  1. #61
    The Last Good Gremlin GizmoQ's Avatar
    Join Date
    Nov 2004
    Location
    St Louis
    Posts
    2,277
    Quote Originally Posted by Sonicxtacy02 View Post
    ugh i'm still having problems with the unicode text at the end of the movie description. anyone with vb knowledge wanna tell me why using mid() on a string containing "..." (without quotes) shows funky unicode text? i tried both binary compare and text compare and it happens with both options
    Try using mid$() instead.
    HARDWARE: Fujitsu Stylistic ST5111w/WiFi and dock, internal Hitachi 500G HD, external 1TB HD, Sierra Wireless Aircard 550, DVD-RW, BoomzBox HD radio, XM Commander, Delorme GPS, Saitek X-52 Pro joystick, BluSoleil Bluetooth, TPMS, FB, Elm327

  2. #62
    Mo' Programming Mo' Problems
    Auto Apps:loading...
    Sonicxtacy02's Avatar
    Join Date
    Sep 2004
    Location
    Woodbridge, VA
    Posts
    7,783
    Blog Entries
    32
    Quote Originally Posted by GizmoQ View Post
    Try using mid$() instead.
    nopers didnt work
    NOVA, MD, DC Monthly Meets Here
    Ride Runner and Centrafuse 3 plugin creator
    mp3Car.com Senior Tech Blogger (Want a product reviewed? Contact me.)
    Find my plugins on the MP3Car App Store!
    Follow Me on Twitter or Facebook
    Live mp3Car Facebook Chat

  3. #63
    Mo' Programming Mo' Problems
    Auto Apps:loading...
    Sonicxtacy02's Avatar
    Join Date
    Sep 2004
    Location
    Woodbridge, VA
    Posts
    7,783
    Blog Entries
    32
    after a few hours of scrolling thru windows character map i've found a way to erase the odd characters. Still dont have a method determined for pulling the extended description though.
    NOVA, MD, DC Monthly Meets Here
    Ride Runner and Centrafuse 3 plugin creator
    mp3Car.com Senior Tech Blogger (Want a product reviewed? Contact me.)
    Find my plugins on the MP3Car App Store!
    Follow Me on Twitter or Facebook
    Live mp3Car Facebook Chat

  4. #64
    Super Moderator
    Auto Apps:loading...
    JohnWPB's Avatar
    Join Date
    Sep 2005
    Location
    West Palm Beach, Florida
    Posts
    4,659
    Blog Entries
    1
    In the VBScript, you have to parse the description out obviousally. Why not use the search for the end of the description as "…</div>" Depending on how you do it, you will not get that part into your variable, as it will only go up to where it is found. Or, again depending on how you are parsing, if it does get that part, just do a left$(yourVar,len(description)-9).

    To remove the &amp use:

    Description = Replace (Description, "&amp", "&",1,-1,1)

    Just an FYI, I have done lots and LOTS of screen scraping stuff in the past for my home automation software. Everything from stocks, weather, lotto results, jokes, movie showtimes, News headlines ect ect.... All of this was in VBScript.
    Front End of Choice: Ride Runner (Is there anything else??? ) & Powered by the DFX5.1 Skin Available in the Mobile App Mart

    My Fiero Build Thread

  5. #65
    Super Moderator
    Auto Apps:loading...
    JohnWPB's Avatar
    Join Date
    Sep 2005
    Location
    West Palm Beach, Florida
    Posts
    4,659
    Blog Entries
    1
    May have found a way for you to get the whole description. Well not the code, but how to do it at least

    The URL contains the page number of the description:

    &pg=1
    &pg=2

    ect, pull each one when "Get details is pressed, and do a x=x+1 kinda thing to get each one. As you get each one, do a search for

    "More</a>" If the page does not contain this, then that is the last page (As the MORE is not a link, but just a text label) and you can break the loop and put the description all together to display it.

    The basic logic would be:


    for PageCount = 1 to 10
    load Details page URL with PageCount in the URL
    parse description
    Description = Description + Description(PageCount )
    look for the "More</a>" and if exists next PageCount
    else exit
    Front End of Choice: Ride Runner (Is there anything else??? ) & Powered by the DFX5.1 Skin Available in the Mobile App Mart

    My Fiero Build Thread

  6. #66
    Mo' Programming Mo' Problems
    Auto Apps:loading...
    Sonicxtacy02's Avatar
    Join Date
    Sep 2004
    Location
    Woodbridge, VA
    Posts
    7,783
    Blog Entries
    32
    Quote Originally Posted by JohnWPB View Post
    In the VBScript, you have to parse the description out obviousally. Why not use the search for the end of the description as "…</div>" Depending on how you do it, you will not get that part into your variable, as it will only go up to where it is found. Or, again depending on how you are parsing, if it does get that part, just do a left$(yourVar,len(description)-9).

    To remove the &amp use:

    Description = Replace (Description, "&amp", "&",1,-1,1)

    Just an FYI, I have done lots and LOTS of screen scraping stuff in the past for my home automation software. Everything from stocks, weather, lotto results, jokes, movie showtimes, News headlines ect ect.... All of this was in VBScript.

    i've got both of the problems solved, now i'm on to creating a custom list out of the description label. How would you like this done? One line per sentence? I just need a delimiter to split the variable with.
    NOVA, MD, DC Monthly Meets Here
    Ride Runner and Centrafuse 3 plugin creator
    mp3Car.com Senior Tech Blogger (Want a product reviewed? Contact me.)
    Find my plugins on the MP3Car App Store!
    Follow Me on Twitter or Facebook
    Live mp3Car Facebook Chat

  7. #67
    Mo' Programming Mo' Problems
    Auto Apps:loading...
    Sonicxtacy02's Avatar
    Join Date
    Sep 2004
    Location
    Woodbridge, VA
    Posts
    7,783
    Blog Entries
    32
    Quote Originally Posted by JohnWPB View Post
    May have found a way for you to get the whole description. Well not the code, but how to do it at least

    The URL contains the page number of the description:

    &pg=1
    &pg=2

    ect, pull each one when "Get details is pressed, and do a x=x+1 kinda thing to get each one. As you get each one, do a search for

    "More</a>" If the page does not contain this, then that is the last page (As the MORE is not a link, but just a text label) and you can break the loop and put the description all together to display it.

    The basic logic would be:


    for PageCount = 1 to 10
    load Details page URL with PageCount in the URL
    parse description
    Description = Description + Description(PageCount )
    look for the "More</a>" and if exists next PageCount
    else exit
    nearly exactly the way i have it working now and its not really adding much time to the plugin. We're on the same page here now! lol
    NOVA, MD, DC Monthly Meets Here
    Ride Runner and Centrafuse 3 plugin creator
    mp3Car.com Senior Tech Blogger (Want a product reviewed? Contact me.)
    Find my plugins on the MP3Car App Store!
    Follow Me on Twitter or Facebook
    Live mp3Car Facebook Chat

  8. #68
    Mo' Programming Mo' Problems
    Auto Apps:loading...
    Sonicxtacy02's Avatar
    Join Date
    Sep 2004
    Location
    Woodbridge, VA
    Posts
    7,783
    Blog Entries
    32
    i'm feelin pretty good about this plugin now... here's the latest info shot showing the entire description (well entire meaning til the label runs out of space, havent converted to list yet). This also shows the new "official" sample skin created by barry (custommx3).




    hmmm.. where did my rating stars go..somethings up with my indicator code .
    NOVA, MD, DC Monthly Meets Here
    Ride Runner and Centrafuse 3 plugin creator
    mp3Car.com Senior Tech Blogger (Want a product reviewed? Contact me.)
    Find my plugins on the MP3Car App Store!
    Follow Me on Twitter or Facebook
    Live mp3Car Facebook Chat

  9. #69
    FLAC
    Auto Apps:loading...
    moahdib's Avatar
    Join Date
    Jul 2000
    Posts
    1,018
    this is simply awesome great work soni!
    04 Acura TL w/ core2duo 2ghz laptop w/ 1gb RAM on a docking station.

    Fast car, fast PC. ;)

    http://www.arcdesigns.net/carpc/

    My TL CarPC ver2

    FSR Flash Skin w/ moving weather maps

  10. #70
    Mo' Programming Mo' Problems
    Auto Apps:loading...
    Sonicxtacy02's Avatar
    Join Date
    Sep 2004
    Location
    Woodbridge, VA
    Posts
    7,783
    Blog Entries
    32
    hey john, i found a potential bug with my star indicators i'd like you to quick-test for, seems that the indicators conflict with some of the other extension plugins out there (for example my new traffic app made the indicators stop working on movietimes). Can you open up your menu.skin and notate any other "x" lines then try to use movietimes again. i bet you're experiencing the same problem.
    NOVA, MD, DC Monthly Meets Here
    Ride Runner and Centrafuse 3 plugin creator
    mp3Car.com Senior Tech Blogger (Want a product reviewed? Contact me.)
    Find my plugins on the MP3Car App Store!
    Follow Me on Twitter or Facebook
    Live mp3Car Facebook Chat

Similar Threads

  1. XMD RR Hibernation & XMRESET
    By hank_kls65 in forum Road Runner
    Replies: 17
    Last Post: 10-25-2007, 04:14 PM
  2. Replies: 0
    Last Post: 09-23-2006, 09:38 PM
  3. Generalized Perception of RR from a new user
    By replicant in forum Road Runner
    Replies: 2
    Last Post: 11-15-2005, 11:41 PM
  4. RR doesn't start Phoco on initial load..
    By DutchBurner in forum Road Runner
    Replies: 16
    Last Post: 11-04-2005, 02:17 PM
  5. RR 09-09-05 ... Yup, it's my Birthday!
    By guino in forum Road Runner
    Replies: 36
    Last Post: 09-12-2005, 06:05 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •