Cannot see the artist title & song title in Music...

I'm wondering if there is a way to change the display in Music. When I'm playing a song, the song title and artist appear in very small font at the top. The artwork takes up the entire screen though (which doesn't always help). Is it possible to make the font larger so that I can see the artist & song title with a quick glance (instead of getting out a maginifying glass?)
Thanks in advance

I've tried iTunes, but when I'm on the road I don't have wifi access. Maybe there is an app that will playback music and allow me to see the artist & song title in bigger lettering?

Similar Messages

  • Why Can't I See The Artist's Name In The Media Centre Play Mo

    I'm listening to my Zen Touch on my computer at work. I'm playing my music through Media Centre and cannot see the Artists' Name in the player. I only get a number (the number of the file within the player, I presume).
    Anyway to correct this problem? I'm sorry if this is covered in any new update. I didn't see it in the list of descriptions.

    I assume that you are refering to the Creative MediaSource Player/Organizer. In this case, you can view the Artist name of the track in the Now Playing window. You need to make your Now Playing window wider so that you can see the Artist column.

  • Vicious MPD widget not displaying the artist and song title

    EDIT: This thread can be closed now. It turns out Clementine doesn't support mpd and I'm now running ncmpcpp and the widget shows the artist and song title.
    I have trouble getting the mpd widget running in awesome wm, it will only display "N/A - N/A". I've read the wiki and done a lot of googling but I can't figure out what I'm missing.
    Here's my rc.lua
    -- Standard awesome library
    local gears = require("gears")
    local awful = require("awful")
    awful.rules = require("awful.rules")
    require("awful.autofocus")
    -- Widget and layout library
    local wibox = require("wibox")
    local vicious = require("vicious")
    -- Theme handling library
    local beautiful = require("beautiful")
    -- Notification library
    local naughty = require("naughty")
    local menubar = require("menubar")
    -- {{{ Error handling
    -- Check if awesome encountered an error during startup and fell back to
    -- another config (This code will only ever execute for the fallback config)
    if awesome.startup_errors then
    naughty.notify({ preset = naughty.config.presets.critical,
    title = "Oops, there were errors during startup!",
    text = awesome.startup_errors })
    end
    -- Handle runtime errors after startup
    do
    local in_error = false
    awesome.connect_signal("debug::error", function (err)
    -- Make sure we don't go into an endless error loop
    if in_error then return end
    in_error = true
    naughty.notify({ preset = naughty.config.presets.critical,
    title = "Oops, an error happened!",
    text = err })
    in_error = false
    end)
    end
    -- {{{ Variable definitions
    -- Themes define colours, icons, and wallpapers
    beautiful.init("/usr/share/awesome/themes/zenburn/theme.lua")
    -- This is used later as the default terminal and editor to run.
    terminal = "tilda"
    editor = "gedit"
    -- os.getenv("EDITOR") or
    editor_cmd = terminal .. " -e " .. editor
    -- Default modkey.
    -- Usually, Mod4 is the key with a logo between Control and Alt.
    -- If you do not like this or do not have such a key,
    -- I suggest you to remap Mod4 to another key using xmodmap or other tools.
    -- However, you can use another modifier like Mod1, but it may interact with others.
    modkey = "Mod4"
    -- Table of layouts to cover with awful.layout.inc, order matters.
    local layouts =
    awful.layout.suit.floating,
    awful.layout.suit.tile,
    awful.layout.suit.tile.left,
    awful.layout.suit.tile.bottom,
    awful.layout.suit.tile.top,
    awful.layout.suit.fair,
    awful.layout.suit.fair.horizontal,
    awful.layout.suit.spiral,
    awful.layout.suit.spiral.dwindle,
    awful.layout.suit.max,
    awful.layout.suit.max.fullscreen,
    awful.layout.suit.magnifier
    -- {{{ Wallpaper
    if beautiful.wallpaper then
    for s = 1, screen.count() do
    gears.wallpaper.maximized(beautiful.wallpaper, s, true)
    end
    end
    -- {{{ Tags
    -- Define a tag table which will hold all screen tags.
    tags = {}
    for s = 1, screen.count() do
    -- Each screen has its own tag table.
    tags[s] = awful.tag({"term", "www", "mp3", "skype", "office", "dev", "misc" }, s)
    end
    -- {{{ Menu
    -- Create a laucher widget and a main menu
    myawesomemenu = {
    { "manual", terminal .. " -e man awesome" },
    { "edit config", editor_cmd .. " " .. awesome.conffile },
    { "reboot", "gksudo reboot" },
    { "restart", awesome.restart },
    { "quit", awesome.quit }
    mymainmenu = awful.menu({ items = { { "awesome", myawesomemenu, beautiful.awesome_icon },
    { "open terminal", terminal }
    mylauncher = awful.widget.launcher({ image = beautiful.awesome_icon,
    menu = mymainmenu })
    -- Menubar configuration
    menubar.utils.terminal = terminal -- Set the terminal for applications that require it
    -- Initialize widget
    mpdwidget = wibox.widget.textbox()
    -- Register widget
    vicious.register(mpdwidget, vicious.widgets.mpd,
    function (mpdwidget, args)
    if args["{state}"] == "Stop" then
    return " - "
    else
    return args["{Artist}"]..' - '.. args["{Title}"]
    end
    end, 10)
    -- {{{ Wibox
    -- Create a textclock widget
    mytextclock = awful.widget.textclock()
    -- Create a wibox for each screen and add it
    mywibox = {}
    mypromptbox = {}
    mylayoutbox = {}
    mytaglist = {}
    mytaglist.buttons = awful.util.table.join(
    awful.button({ }, 1, awful.tag.viewonly),
    awful.button({ modkey }, 1, awful.client.movetotag),
    awful.button({ }, 3, awful.tag.viewtoggle),
    awful.button({ modkey }, 3, awful.client.toggletag),
    awful.button({ }, 4, function(t) awful.tag.viewnext(awful.tag.getscreen(t)) end),
    awful.button({ }, 5, function(t) awful.tag.viewprev(awful.tag.getscreen(t)) end)
    mytasklist = {}
    mytasklist.buttons = awful.util.table.join(
    awful.button({ }, 1, function (c)
    if c == client.focus then
    c.minimized = true
    else
    -- Without this, the following
    -- :isvisible() makes no sense
    c.minimized = false
    if not c:isvisible() then
    awful.tag.viewonly(c:tags()[1])
    end
    -- This will also un-minimize
    -- the client, if needed
    client.focus = c
    c:raise()
    end
    end),
    awful.button({ }, 3, function ()
    if instance then
    instance:hide()
    instance = nil
    else
    instance = awful.menu.clients({ width=250 })
    end
    end),
    awful.button({ }, 4, function ()
    awful.client.focus.byidx(1)
    if client.focus then client.focus:raise() end
    end),
    awful.button({ }, 5, function ()
    awful.client.focus.byidx(-1)
    if client.focus then client.focus:raise() end
    end))
    for s = 1, screen.count() do
    -- Create a promptbox for each screen
    mypromptbox[s] = awful.widget.prompt()
    -- Create an imagebox widget which will contains an icon indicating which layout we're using.
    -- We need one layoutbox per screen.
    mylayoutbox[s] = awful.widget.layoutbox(s)
    mylayoutbox[s]:buttons(awful.util.table.join(
    awful.button({ }, 1, function () awful.layout.inc(layouts, 1) end),
    awful.button({ }, 3, function () awful.layout.inc(layouts, -1) end),
    awful.button({ }, 4, function () awful.layout.inc(layouts, 1) end),
    awful.button({ }, 5, function () awful.layout.inc(layouts, -1) end)))
    -- Create a taglist widget
    mytaglist[s] = awful.widget.taglist(s, awful.widget.taglist.filter.all, mytaglist.buttons)
    -- Create a tasklist widget
    mytasklist[s] = awful.widget.tasklist(s, awful.widget.tasklist.filter.currenttags, mytasklist.buttons)
    -- Create the wibox
    mywibox[s] = awful.wibox({ position = "top", screen = s })
    -- Widgets that are aligned to the left
    local left_layout = wibox.layout.fixed.horizontal()
    left_layout:add(mylauncher)
    left_layout:add(mytaglist[s])
    left_layout:add(mypromptbox[s])
    -- Widgets that are aligned to the right
    local right_layout = wibox.layout.fixed.horizontal()
    right_layout:add(mpdwidget)
    if s == 1 then right_layout:add(wibox.widget.systray()) end
    right_layout:add(mytextclock)
    right_layout:add(mylayoutbox[s])
    -- Now bring it all together (with the tasklist in the middle)
    local layout = wibox.layout.align.horizontal()
    layout:set_left(left_layout)
    layout:set_middle(mytasklist[s])
    layout:set_right(right_layout)
    mywibox[s]:set_widget(layout)
    end
    -- {{{ Mouse bindings
    root.buttons(awful.util.table.join(
    awful.button({ }, 3, function () mymainmenu:toggle() end),
    awful.button({ }, 4, awful.tag.viewnext),
    awful.button({ }, 5, awful.tag.viewprev)
    -- {{{ Key bindings
    globalkeys = awful.util.table.join(
    awful.key({ modkey, }, "Left", awful.tag.viewprev ),
    awful.key({ modkey, }, "Right", awful.tag.viewnext ),
    awful.key({ modkey, }, "Escape", awful.tag.history.restore),
    awful.key({ modkey, }, "j",
    function ()
    awful.client.focus.byidx( 1)
    if client.focus then client.focus:raise() end
    end),
    awful.key({ modkey, }, "k",
    function ()
    awful.client.focus.byidx(-1)
    if client.focus then client.focus:raise() end
    end),
    awful.key({ modkey, }, "w", function () mymainmenu:show() end),
    -- Layout manipulation
    awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end),
    awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end),
    awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end),
    awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end),
    awful.key({ modkey, }, "u", awful.client.urgent.jumpto),
    awful.key({ modkey, }, "Tab",
    function ()
    awful.client.focus.history.previous()
    if client.focus then
    client.focus:raise()
    end
    end),
    -- Standard program
    awful.key({ modkey, }, "Return", function () awful.util.spawn(terminal) end),
    awful.key({ modkey, "Control" }, "r", awesome.restart),
    awful.key({ modkey, "Shift" }, "q", awesome.quit),
    awful.key({ modkey, }, "l", function () awful.tag.incmwfact( 0.05) end),
    awful.key({ modkey, }, "h", function () awful.tag.incmwfact(-0.05) end),
    awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1) end),
    awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1) end),
    awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1) end),
    awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1) end),
    awful.key({ modkey, }, "space", function () awful.layout.inc(layouts, 1) end),
    awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(layouts, -1) end),
    awful.key({ modkey, "Control" }, "n", awful.client.restore),
    -- Prompt
    awful.key({ modkey }, "r", function () mypromptbox[mouse.screen]:run() end),
    awful.key({ modkey }, "x",
    function ()
    awful.prompt.run({ prompt = "Run Lua code: " },
    mypromptbox[mouse.screen].widget,
    awful.util.eval, nil,
    awful.util.getdir("cache") .. "/history_eval")
    end),
    -- Menubar
    awful.key({ modkey }, "p", function() menubar.show() end)
    clientkeys = awful.util.table.join(
    awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.fullscreen end),
    awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end),
    awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ),
    awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end),
    awful.key({ modkey, }, "o", awful.client.movetoscreen ),
    awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end),
    awful.key({ modkey, }, "n",
    function (c)
    -- The client currently has the input focus, so it cannot be
    -- minimized, since minimized clients can't have the focus.
    c.minimized = true
    end),
    awful.key({ modkey, }, "m",
    function (c)
    c.maximized_horizontal = not c.maximized_horizontal
    c.maximized_vertical = not c.maximized_vertical
    end)
    -- Bind all key numbers to tags.
    -- Be careful: we use keycodes to make it works on any keyboard layout.
    -- This should map on the top row of your keyboard, usually 1 to 9.
    for i = 1, 9 do
    globalkeys = awful.util.table.join(globalkeys,
    awful.key({ modkey }, "#" .. i + 9,
    function ()
    local screen = mouse.screen
    local tag = awful.tag.gettags(screen)[i]
    if tag then
    awful.tag.viewonly(tag)
    end
    end),
    awful.key({ modkey, "Control" }, "#" .. i + 9,
    function ()
    local screen = mouse.screen
    local tag = awful.tag.gettags(screen)[i]
    if tag then
    awful.tag.viewtoggle(tag)
    end
    end),
    awful.key({ modkey, "Shift" }, "#" .. i + 9,
    function ()
    if client.focus then
    local tag = awful.tag.gettags(client.focus.screen)[i]
    if tag then
    awful.client.movetotag(tag)
    end
    end
    end),
    awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9,
    function ()
    if client.focus then
    local tag = awful.tag.gettags(client.focus.screen)[i]
    if tag then
    awful.client.toggletag(tag)
    end
    end
    end))
    end
    clientbuttons = awful.util.table.join(
    awful.button({ }, 1, function (c) client.focus = c; c:raise() end),
    awful.button({ modkey }, 1, awful.mouse.client.move),
    awful.button({ modkey }, 3, awful.mouse.client.resize))
    -- Set keys
    root.keys(globalkeys)
    -- {{{ Rules
    awful.rules.rules = {
    -- All clients will match this rule.
    { rule = { },
    properties = { border_width = beautiful.border_width,
    border_color = beautiful.border_normal,
    focus = awful.client.focus.filter,
    keys = clientkeys,
    buttons = clientbuttons } },
    { rule = { class = "MPlayer" },
    properties = { floating = true } },
    { rule = { class = "pinentry" },
    properties = { floating = true } },
    { rule = { class = "gimp" },
    properties = { floating = true } },
    -- Set Firefox to always map on tags number 2 of screen 1.
    { rule = { class = "Firefox" },
    properties = { tag = tags[2] } },
    -- {{{ Signals
    -- Signal function to execute when a new client appears.
    client.connect_signal("manage", function (c, startup)
    -- Enable sloppy focus
    c:connect_signal("mouse::enter", function(c)
    if awful.layout.get(c.screen) ~= awful.layout.suit.magnifier
    and awful.client.focus.filter(c) then
    client.focus = c
    end
    end)
    if not startup then
    -- Set the windows at the slave,
    -- i.e. put it at the end of others instead of setting it master.
    -- awful.client.setslave(c)
    -- Put windows in a smart way, only if they does not set an initial position.
    if not c.size_hints.user_position and not c.size_hints.program_position then
    awful.placement.no_overlap(c)
    awful.placement.no_offscreen(c)
    end
    end
    local titlebars_enabled = false
    if titlebars_enabled and (c.type == "normal" or c.type == "dialog") then
    -- buttons for the titlebar
    local buttons = awful.util.table.join(
    awful.button({ }, 1, function()
    client.focus = c
    c:raise()
    awful.mouse.client.move(c)
    end),
    awful.button({ }, 3, function()
    client.focus = c
    c:raise()
    awful.mouse.client.resize(c)
    end)
    -- Widgets that are aligned to the left
    local left_layout = wibox.layout.fixed.horizontal()
    left_layout:add(awful.titlebar.widget.iconwidget(c))
    left_layout:buttons(buttons)
    -- Widgets that are aligned to the right
    local right_layout = wibox.layout.fixed.horizontal()
    right_layout:add(awful.titlebar.widget.floatingbutton(c))
    right_layout:add(awful.titlebar.widget.maximizedbutton(c))
    right_layout:add(awful.titlebar.widget.stickybutton(c))
    right_layout:add(awful.titlebar.widget.ontopbutton(c))
    right_layout:add(awful.titlebar.widget.closebutton(c))
    -- The title goes in the middle
    local middle_layout = wibox.layout.flex.horizontal()
    local title = awful.titlebar.widget.titlewidget(c)
    title:set_align("center")
    middle_layout:add(title)
    middle_layout:buttons(buttons)
    -- Now bring it all together
    local layout = wibox.layout.align.horizontal()
    layout:set_left(left_layout)
    layout:set_right(right_layout)
    layout:set_middle(middle_layout)
    awful.titlebar(c):set_widget(layout)
    end
    end)
    client.connect_signal("focus", function(c) c.border_color = beautiful.border_focus end)
    client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)
    function run_once(prg,arg_string,pname,screen)
    if not prg then
    do return nil end
    end
    if not pname then
    pname = prg
    end
    if not arg_string then
    awful.util.spawn_with_shell("pgrep -f -u $USER -x '" .. pname .. "' || (" .. prg .. ")",screen)
    else
    awful.util.spawn_with_shell("pgrep -f -u $USER -x '" .. pname .. " ".. arg_string .."' || (" .. prg .. " " .. arg_string .. ")",screen)
    end
    end
    awful.util.spawn_with_shell("setxkbmap -layout se")
    run_once("tilda",nil,nil,"term")
    run_once("firefox &",nil,nil,"www")
    run_once("clementine ",nil,nil,"mp3")
    run_once("skype ",nil,nil,"skype")
    run_once("dropboxd &",nil,nil,nil)
    run_once("keepassx ",nil,nil,"www")
    run_once("volumeicon &",nil,nil,nil)
    awesome.font = "DejaVuSansCondensed 12"
    Here's my mpd.lua:
    -- Licensed under the GNU General Public License v2
    -- * (c) 2010, Adrian C. <[email protected]>
    -- {{{ Grab environment
    local tonumber = tonumber
    local io = { popen = io.popen }
    local setmetatable = setmetatable
    local string = { gmatch = string.gmatch }
    local helpers = require("vicious.helpers")
    -- Mpd: provides Music Player Daemon information
    -- vicious.widgets.mpd
    local mpd = {}
    -- {{{ MPD widget type
    local function worker(format, warg)
    local mpd_state = {
    ["{volume}"] = 0,
    ["{state}"] = "N/A",
    ["{Artist}"] = "N/A",
    ["{Title}"] = "N/A",
    ["{Album}"] = "N/A",
    ["{Genre}"] = "N/A",
    --["{Name}"] = "N/A",
    --["{file}"] = "N/A",
    -- Fallback to MPD defaults
    local pass = warg and (warg.password or warg[1]) or "\"\""
    local host = warg and (warg.host or warg[2]) or "127.0.0.1"
    local port = warg and (warg.port or warg[3]) or "6600"
    -- Construct MPD client options
    local mpdh = "telnet://"..host..":"..port
    local echo = "echo 'password "..pass.."\nstatus\ncurrentsong\nclose'"
    -- Get data from MPD server
    local f = io.popen(echo.." | curl --connect-timeout 1 -fsm 3 "..mpdh)
    for line in f:lines() do
    for k, v in string.gmatch(line, "([%w]+):[%s](.*)$") do
    if k == "volume" then mpd_state["{"..k.."}"] = v and tonumber(v)
    elseif k == "state" then mpd_state["{"..k.."}"] = helpers.capitalize(v)
    elseif k == "Artist" then mpd_state["{"..k.."}"] = helpers.escape(v)
    elseif k == "Title" then mpd_state["{"..k.."}"] = helpers.escape(v)
    elseif k == "Album" then mpd_state["{"..k.."}"] = helpers.escape(v)
    elseif k == "Genre" then mpd_state["{"..k.."}"] = helpers.escape(v)
    --elseif k == "Name" then mpd_state["{"..k.."}"] = helpers.escape(v)
    --elseif k == "file" then mpd_state["{"..k.."}"] = helpers.escape(v)
    end
    end
    end
    f:close()
    return mpd_state
    end
    return setmetatable(mpd, { __call = function(_, ...) return worker(...) end })
    I'm using Clementine to play the music if that makes a difference.
    Last edited by DisposableHero (2013-11-25 01:12:01)

    Hi,
    If the songs were purchased from itunes, I suggest that you delete the tracks from your itunes library and move to trash (providing you live in a country that permits redownloading). See http://support.apple.com/kb/PH12283.
    Jim

  • Updated to 10.4.1 and can't see the menu titles or the song names, even though they are there and can be played. the other categories (tv, apps, etc) seem to be OK.

    i just upgraded my pc to windows 7 and itunes to 10.4.1, but i can't see the menu items at the top left of itunes.  they are there, because if i move my mouse over the area where they should be, i see and can select from the drop down menus.  this problem also affects my music library; i cannot see the individual song names/artists/etc, but if i double click on the blank line it does play the song.  the app library and video library seem OK, only the music library is a problem.  also, when i connect my iphone, it recognizes it, but the main screen for my device has no words on it, just a picture of the phone.

    Hi, Sanjiv - My son fixed this problem for me by showing me that in addition to the visible volume slider at the top left of the iTunes window you also need to pull down the blue airplay menu right alongside that volume slider (the little blue box with the triangle). When you pull down that menu you will see volume settings for "computer" which controls the built-in speakers, plus a list of the other external speakers you may have set up using Airport. When I did that I saw that the volume on "computer" was right down at zero levl even though the main iTunes slider was at full level. When I selected the "computer" under "single" or "multiple" options and adjusted the volume it came back up. It worked for me, I hope it solves your issue too. Best, John.

  • Cannot see the video behind the title even though I select the option to do so, what am I missing?

    Cannot see the video behind the title even though I select the option to do so, what am I missing?

    hauntnh,
    I assume you're referring to the fifth video, "Add a title to your video." Did you drag the title to the V2 track, as explained at 2:33 in the video? Also, if your main video in the V1 track is not sitting below your title clip in V2, you won't see the video behind the title because there won't be anything behind your title.
    HTH,
    Stefan

  • I cannot see the details of the playing song on iTunes Radio.

    I cannot see the details of the playing song on iTunes Radio on my iOS Devices. On pc and mac it's fine but on all my iOS devices, the album artwork, title and artist info is missing; however, the song plays. I can see the songs i played on my iPad when i open up iTunes on my pc. I restarted the device, logged out and in several times with my apple id, nothing changes.

    Hi, I have this problem too. I've uploaded photos of my granddaughter to iCloud Drive on my 5 year old PC and can see the content on my PC at iCloud .com - though the system does not allow me to see minimised photos, just lots of numbered, blue rectangle icons. I spent over 2.5 hours with Apple Support yesterday and they could NOT resolve the issue in any straightforward manner, though did suggest I go through the same time consuming uploading process placing the same photos in the Beta version of 'Photos' available at iCloud.com. What a cumbersome system. Why hasn't Apple offered an iCloud Drive app (free of charge) so that once content has been placed in iCloud Drive it can Bev retrieved on any iOS device, as Apple suggest. Here is what they say at Apple.com (see also the illustrations they offer for iCloud Drive on an iPad - I was informed yesterday, by two advisors, that they couldn't find way to locate the suggested pages either?)
    Storing files in iCloud is simple. Just as it should be.
    To upload your files to iCloud, simply drag them into the iCloud Drive on your Mac running OS X Yosemite or PC running Windows 7 or later. Or start a new document using an iCloud-enabled app on your iOS device. Then you’ll be able to access those documents from all your devices.

  • How can I see the entire "title" of a page (now truncated)?

    I see that Firefox is now truncating the "title" of web pages. I cannot see any good reason for this because the space to the right of the title is blank. I think it was done in the "do anything to make changes to Firefox" department but in this case it is not an improvement and provides the user with less information.
    How can I fix the browser so I can again see the entire "title" as provided by the web page designer? I don't want to take extra steps (if any) to see it. I want it to display automatically each time.

    That is on the tab. A tab has a maximum width because otherwise a long title would cover the full tab width.
    You can make the Windows title bar visible again in the open the customize window via the 3-bar Firefox menu button (Customize is at the bottom left).<br />
    There you will find the choice to have the title bar visible.

  • Safari is occupying the whole page so I cannot see the dock below. How  do I put this right?

    Safari is occupying the whole page so I cannot see the dock below. How  do I put this right?

    Ok.. go to the very top of the Safari window then double click the gray title bar that runs horizontally across the top of the window then click:  View > Exit Full Screen

  • While back i purchased some music videos , i see them on my purchases but i cannot see the full videos why??? only like 30seconds

    Hello, while back I purchased some music videos , I see them on my purchases but I cannot see the full videos why??? only like 30seconds.

    You have just experienced what Apple and ITunes is
    designed to do. Prevent you from sharing purchased
    music from ITunes. That's the way it is suppose to
    work. Now, do your purchased songs play using ITunes.
    Play them, see if you get any warning. Next reload
    the songs again on your IPOD. Before disconnecting,
    locate the songs on your IPOD using ITunes and
    attempt to play them. Do they play. If they do you
    can properly disconnect your IPOD.
    Yes, they do play in iTunes. (And just in case you don't know, I am on my home computer where I originally set up my iPod.) When I hook up my iPod to my computer the songs are there on my ipod, while veiwing it on iTunes, and they play, they just won't play on my iPod. And no, I don;t get an authorization window that pops up when I play the song/video, they play automatically

  • Does the App titled Free Music Download tie into your iTunes account info?

    My daughter has the App titled Free Music Download -
    I want to know if anyone else knows if the app ties into the iTune account info?
    we noticed that there are numerous iTunes charges that appear to correlate to her downloads from this App?
    anyone have similiar experience or know anything about entering your iTunes account when setting up this App?
    thanks,
    concerned parent with $$$ payments pending

    I don't see anything in the app that indicated that it has in-app purchasing, so I can only guess that the charges are coincidental, perhaps in-app purchases from another app. Sign into your daughter's iTunes Store account and look at her purchase history. That should tell you what the charges are for:
    http://support.apple.com/kb/HT2727
    Regards.

  • My  2012 Mini OS 10.7.5 cannot see the Ethernet connection to my Actiontec GT701 WG.  The Network Preferences says "cable unplugged".  The WiFi connection is working fine.  Please Thank You

    My  2012 Mini OS 10.7.5 cannot see the Ethernet connection to my Actiontec GT701 WG.  The Network Preferences says "cable unplugged".  The WiFi connection is working fine.  Please Thank You

    Never mind, problem solved.  When I retunred to the Network tab the message had changed to "connected, no IP address" so I got that from the WiFi tab and configured the Ethernet manually.  Have a nice day @:-)#

  • Paste from Illustrator to Photoshop, I cannot see the pasted object

    Sorry for this dumb question but I have tried everything I can think of before asking this question.  I have a single grouped object in Illustrator and I select the object and "Copy".  Then I open up a new photoshop project and choose "Paste".  Then I get four questions:
    Smart Object, Pixles, Path and Shape Layer to choose from.  No matter which one I choose I get a large box with an X.  I cannot see the object just the box that is x'd out.  This must mean something but I cannot figure it out.  When I place it dissapears.
    Please what is the secret to pasting objects into Windows Photoshop CS4?
    Thanks, Brent

    Magically, pasting started working.  Maybe, my computer was running out of memory or something.
    Thanks for your helpful answer.
    -Brent

  • I upgraded to iOS8 on my iphone and now cannot see the thumbnails of my pictures when I try to download onto my computer.

    I have an iphone 4 and an HP Pavillion with windows 7.  I always have been able to connect my iphone to my laptop and open
    the DCIM folder and see the picture icons so I can pick the ones I want to download.  After upgrading to iOS8 I cannot see the icons after a
    few seconds of connecting the phone to the computer.  They all turn into the windows icon.
    I do not want to try the icloud for windows control panel unless I can pick the pictures that will be transferred.  I don't want all the pictures I take on my computer.

    http://support.apple.com/kb/HT1808

  • User cannot see the "-" signs on amounts in ALV report

    Hi all,
    We have a problem with a user, who cannot see the signs on the amounts in an ALV report:
    <a href="http://img66.imageshack.us/img66/1424/nataliabr9.jpg">Report without signs</a>
    The user has tested this report with his user, and another test user, on his computer and on another computer. It does not change anything, he cannot see the signs "-" on the amounts.
    But when I launch the same report on the same client, I cann see the signs:
    <a href="http://img398.imageshack.us/img398/1203/moigl3.jpg">Report with signs</a>
    So, I think it does not come from his user (he has tested with two different users), or from his computer (he has tested on two different computers).
    Do you have any ideas?
    Thanks for your help.

    Having seen and "played" with an NB100-12a the other day I must agree that the grey letters on black keys
    aren't a clever idea - its bad enough that the keys are so small also.
    I currently own a satellite Pro with which I am very happy ( apart from the inclusion of Windows Vista which I
    don't particularily like ) and found this machine easy to "drive" BUT due to the keyboard size and lettering
    I won't be buying one ( unless they do a redesign - an acer aspire one keyboard and touchpad or NC10 style
    design ) and I think that the price of these machines has recently dropped from approx £300 to approx £270
    due to poor take up by the public mainly for the above reasons.
    Sorry Toshiba looks like i'll be buying an NC10 - unless I hear of a possible redesign.#
    Mike

  • I cannot see the print button on the bottom tab in order to print a document even when I hide to tool bar.

    I recently changed my computer software from Vista to Window & Ultimate. Since changing, I cannot see the print button which should be at the bottom. I have tried to hide the bottom toolbar but it still does not allow me to see the print button. Please give me directions in easy to read English.

    If the menu bar is hidden then press the F10 key or hold down the Alt key to make the menu bar appear.
    Make sure that toolbars like the "Navigation Toolbar" and the "Bookmarks Toolbar" are visible:
    *"View > Toolbars"
    Open the Customize window to set which toolbar items to display:
    *View > Toolbars > Customize
    *Firefox > Options > Toolbar Layout
    *Check that the "Bookmarks Toolbar items" is on the Bookmarks Toolbar
    *If the "Bookmarks Toolbar items" is not on the Bookmarks Toolbar then drag it back from the toolbar palette in the customize window to the Bookmarks Toolbar
    *If missing items are in the toolbar palette then drag them back from the Customize window on the toolbar
    *If you do not see an item on a toolbar and in the toolbar palette then click the "Restore Default Set" button to restore the default toolbar set up
    *https://support.mozilla.org/kb/Back+and+forward+or+other+toolbar+items+are+missing

Maybe you are looking for