Can someone please help me create an interactive feature.

I am creating a website for a small business using Adobe Dreamweaver CS6 and am trying to create an interactive feature where the text appears once a button is clicked. The interactive feature I am trying to create is on the website: http://www.specialistengineeringplastics.com/products/ where the product name is given and then more details are shown below it once this name has been clicked. I have access to a wide range of Adobe Products including Fireworks, Flash, Illustrator etc. Please help me!

I am creating a website for a small business using Adobe Dreamweaver CS6 and am trying to create an interactive feature where the text appears once a button is clicked. The interactive feature I am trying to create is on the website: http://www.specialistengineeringplastics.com/products/ where the product name is given and then more details are shown below it once this name has been clicked. I have access to a wide range of Adobe Products including Fireworks, Flash, Illustrator etc. Please help me!

Similar Messages

  • Can Someone Please Help Me Create a Blog Reader App For My Blog?

    Hi ! I am trying to create a blog reader app by using RSS feed for my blog. I found this tutorial on MSDN here Create a Blog Reader using C# and XAML
    But the problem is, it says some parts will not work with VS 2013. I even tried to follow each step of the tutorial but get stuck with some "navigation parameter" type-casted to a class. I couldn't understand what do I replace that with as it was
    never declared earlier somewhere. Can someone help me with the code? Please, I will be very thankful.
    I am using VS 2013 Community update 4 and Windows 8.1

    Here is the code and the error i am facing. I tried my best to do other changes like styles for buttons, textblocks etc that are new in 8.1
    protected override string DetermineVisualState(ApplicationViewState viewState)
    // Update the back button's enabled state when the view state changes
    var logicalPageBack = this.UsingLogicalPageNavigation(viewState) && this.itemListView.SelectedItem != null;
    var physicalPageBack = this.Frame != null && this.Frame.CanGoBack;
    this.DefaultViewModel["CanGoBack"] = logicalPageBack || physicalPageBack;
    // Determine visual states for landscape layouts based not on the view state, but
    // on the width of the window. This page has one layout that is appropriate for
    // 1366 virtual pixels or wider, and another for narrower displays or when a snapped
    // application reduces the horizontal space available to less than 1366.
    if (viewState == ApplicationViewState.Filled ||
    viewState == ApplicationViewState.FullScreenLandscape)
    var windowWidth = Window.Current.Bounds.Width;
    if (windowWidth >= 1366) return "FullScreenLandscapeOrWide";
    return "FilledOrNarrow";
    // When in portrait or snapped start with the default visual state name, then add a
    // suffix when viewing details instead of the list
    var defaultStateName = DetermineVisualState(viewState);
    return logicalPageBack ? defaultStateName + "_Detail" : defaultStateName;
    errors:
    Error 1
    An object of the type "System.Object" cannot be applied to a property that expects the type "Windows.UI.Xaml.Data.IValueConverter".
    I am using it here
    <TextBlock Text="{Binding PubDate, Converter={StaticResource dateConverter}}"
    //DateConverter.csusing System;
    using Windows.Globalization.DateTimeFormatting;
    using Windows.UI.Xaml.Data;
    namespace WindowsBlogReader
    public class DateConverter : Windows.UI.Xaml.Data.IValueConverter
    public object Convert(object value, Type targetType, object parameter, string culture)
    if (value == null)
    throw new ArgumentNullException("value", "Value cannot be null.");
    if (!typeof(DateTime).Equals(value.GetType()))
    throw new ArgumentException("Value must be of type DateTime.", "value");
    DateTime dt = (DateTime)value;
    if (parameter == null)
    // Date "7/27/2011 9:30:59 AM" returns "7/27/2011"
    return DateTimeFormatter.ShortDate.Format(dt);
    else if ((string)parameter == "day")
    // Date "7/27/2011 9:30:59 AM" returns "27"
    DateTimeFormatter dateFormatter = new DateTimeFormatter("{day.integer(2)}");
    return dateFormatter.Format(dt);
    else if ((string)parameter == "month")
    // Date "7/27/2011 9:30:59 AM" returns "JUL"
    DateTimeFormatter dateFormatter = new DateTimeFormatter("{month.abbreviated(3)}");
    return dateFormatter.Format(dt).ToUpper();
    else if ((string)parameter == "year")
    // Date "7/27/2011 9:30:59 AM" returns "2011"
    DateTimeFormatter dateFormatter = new DateTimeFormatter("{year.full}");
    return dateFormatter.Format(dt);
    else
    // Requested format is unknown. Return in the original format.
    return dt.ToString();
    public object ConvertBack(object value, Type targetType, object parameter, string culture)
    string strValue = value as string;
    DateTime resultDateTime;
    if (DateTime.TryParse(strValue, out resultDateTime))
    return resultDateTime;
    return Windows.UI.Xaml.DependencyProperty.UnsetValue;
    Error 2
    The name "DateConverter" does not exist in the namespace "using:WindowsBlogReader".
    (DateConverter.cs is a class, I really don't understand why this error comes, i have decalared a local resource in app.xaml for it)
    <Application.Resources>
    <ResourceDictionary>
    <local:DateConverter x:Key="dateConverter"></local:DateConverter>
    Error 3
    'WindowsBlogReader.SplitPage.DetermineVisualState(Windows.UI.ViewManagement.ApplicationViewState)' is a new virtual member in sealed class 'WindowsBlogReader.SplitPage'
    Error 4
    'WindowsBlogReader.SplitPage.DetermineVisualState(Windows.UI.ViewManagement.ApplicationViewState)': no suitable method found to override
    Here is the visual state code for my 1st Page : ItemsPage.xaml
    <VisualStateManager.VisualStateGroups>
    <!-- Visual states reflect the application's view state -->
    <VisualStateGroup x:Name="ApplicationViewStates">
    <VisualState x:Name="FullScreenLandscape"/>
    <VisualState x:Name="Filled"/>
    <!-- The entire page respects the narrower 100-pixel margin convention for portrait -->
    <VisualState x:Name="FullScreenPortrait">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemGridView"
    Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="96,136,86,56"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!--
    The back button and title have different styles when snapped,
    and the list representation is substituted
    for the grid displayed in all other view states
    -->
    <VisualState x:Name="Snapped">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="pageTitle"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource HeaderTextBlockStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView"
    Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Visible"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemGridView"
    Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    </VisualStateManager.VisualStateGroups>
    Visual State code for SplitPage.xaml (2nd Page)
    <VisualStateManager.VisualStateGroups>
    <!-- Visual states reflect the application's view state -->
    <VisualStateGroup x:Name="ApplicationViewStates">
    <VisualState x:Name="FullScreenLandscapeOrWide"/>
    <!-- Filled uses a simpler list format in a narrower column -->
    <VisualState x:Name="FilledOrNarrow">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="primaryColumn" Storyboard.TargetProperty="Width">
    <DiscreteObjectKeyFrame KeyTime="0" Value="420"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="ItemTemplate">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NarrowListItemTemplate}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="60,0,66,0"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!--
    The page respects the narrower 100-pixel margin convention for portrait, and the page
    initially hides details to show only the list of items
    -->
    <VisualState x:Name="FullScreenPortrait">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NavigationBackButtonNormalStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="100,0,90,60"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!--
    When an item is selected in portrait the details display requires more extensive changes:
    * Hide the master list and the column is was in
    * Move item details down a row to make room for the title
    * Move the title directly above the details
    * Adjust margins and padding for details
    -->
    <VisualState x:Name="FullScreenPortrait_Detail">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NavigationBackButtonNormalStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="primaryColumn" Storyboard.TargetProperty="Width">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="(Grid.Row)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="(Grid.RowSpan)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="titlePanel" Storyboard.TargetProperty="(Grid.Column)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetailGrid" Storyboard.TargetProperty="Margin">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0,0,0,60"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="100,0,90,0"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!--
    The back button and title have different styles when snapped, and the page
    initially hides details to show only the list of items
    -->
    <VisualState x:Name="Snapped">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="pageTitle" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource HeaderTextBlockStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="primaryColumn" Storyboard.TargetProperty="Width">
    <DiscreteObjectKeyFrame KeyTime="0" Value="320"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="ItemTemplate">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NarrowListItemTemplate}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="20,0,0,0"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!--
    When snapped and an item is selected the details display requires more extensive changes:
    * Hide the master list and the column is was in
    * Move item details down a row to make room for the title
    * Move the title directly above the details
    * Adjust margins and padding for details
    * Use a different font for title and subtitle
    * Adjust margins below subtitle
    -->
    <VisualState x:Name="Snapped_Detail">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="pageTitle" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource HeaderTextBlockStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="primaryColumn" Storyboard.TargetProperty="Width">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemListView" Storyboard.TargetProperty="Visibility">
    <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="(Grid.Row)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="(Grid.RowSpan)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="titlePanel" Storyboard.TargetProperty="(Grid.Column)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="1"/>
    </ObjectAnimationUsingKeyFrames>
    <!--<ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetailTitlePanel" Storyboard.TargetProperty="(Grid.Row)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0"/>
    </ObjectAnimationUsingKeyFrames>-->
    <!--<ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetailTitlePanel" Storyboard.TargetProperty="(Grid.Column)">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0"/>
    </ObjectAnimationUsingKeyFrames>-->
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetail" Storyboard.TargetProperty="Padding">
    <DiscreteObjectKeyFrame KeyTime="0" Value="20,0,20,0"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemDetailGrid" Storyboard.TargetProperty="Margin">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0,0,0,60"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemTitle" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource TitleTextBlockStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemTitle" Storyboard.TargetProperty="Margin">
    <DiscreteObjectKeyFrame KeyTime="0" Value="0"/>
    </ObjectAnimationUsingKeyFrames>
    <!--<ObjectAnimationUsingKeyFrames Storyboard.TargetName="itemSubtitle" Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0" Value="{StaticResource CaptionTextStyle}"/>
    </ObjectAnimationUsingKeyFrames>-->
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    </VisualStateManager.VisualStateGroups>
    and finally , a Basic Page(DetailPage.xaml)
    <VisualStateManager.VisualStateGroups>
    <!-- Visual states reflect the application's view state -->
    <VisualStateGroup x:Name="ApplicationViewStates">
    <VisualState x:Name="FullScreenLandscape"/>
    <VisualState x:Name="Filled"/>
    <!-- The entire page respects the narrower 100-pixel margin convention for portrait -->
    <VisualState x:Name="FullScreenPortrait">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource NavigationBackButtonNormalStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    <!-- The back button and title have different styles when snapped -->
    <VisualState x:Name="Snapped">
    <Storyboard>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="backButton"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="pageTitle"
    Storyboard.TargetProperty="Style">
    <DiscreteObjectKeyFrame KeyTime="0"
    Value="{StaticResource NavigationBackButtonSmallStyle}"/>
    </ObjectAnimationUsingKeyFrames>
    <ObjectAnimationUsingKeyFrames Storyboard.TargetName="contentViewBorder"
    Storyboard.TargetProperty="Margin">
    <DiscreteObjectKeyFrame KeyTime="0" Value="20,5,20,20"/>
    </ObjectAnimationUsingKeyFrames>
    </Storyboard>
    </VisualState>
    </VisualStateGroup>
    </VisualStateManager.VisualStateGroups>

  • Can you create and print a hard cover photo album on iPhoto when you only have a iPad,  can someone please help.  Did not see the option to print.

    I am trying to create and print a hard cover photobook using iPhoto on my iPad, can this be done?  Did not see the option.  Can someone please help?

    It can't be done on the iPad using iPhoto for iOS.  You need to use iPhoto for the Mac.

  • Please help me! I imported my pics to iphoto but I can't open them now. I can't see them on full Screen/edit them like before. All I get is a exclamation mark when I double click on them. I don't have copies, can someone please help me?

    I imported all my pics to Iphoto and I can't open/edit them now. When I double click on them, I only get an exclamation mark. Please help me I don't have copies. I tried burning them to a cd but it didn't work. Can someone please help me?

    The ! turns up when iPhoto loses the connection between the thumbnail in the iPhoto Window and the file it represents.
    What version of iPhoto? Assuming 09 or later...
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • Why isn't my email verify even if I did it so many  times then it says your email is verify for another account can  someone please help me

    I created an apple ID with iTunes gift card
    Then i signed in
    I tried to download a game and it said that
    My email is not verifyed then I to verify it but
    It said that my email is already verifyed for another email
    Can someone please help me with this problem

    Make sure there is no other account using that email. (Try going to https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/ hitting Reset your password, and then enter the email address.

  • Attempting to install iTunes Version 10.5 and getting Invalid Signature. Can someone please help???

    I am attempting to install iTunes Version 10.5. I am getting the following messages...
    "Files shared by these updates" has an invalid signature. It will not be installed.
    "iTunes" has an invalid signature. It will not be installed.
    "Safari 5" has an invalid signature. It will not be installed.
    I somehow got around this annoying "invalid signature" problem before by installing the iTunes update through the Apple site.
    http://www.apple.com/itunes/download/
    When I tried that, now I get...
    "The installer encountered errors before iTunes could be configured. Errors occurred during installation. Your system has not been modified. Please run the installer again, or click Finish to Exit"
    All this to get the latest iPhone software. And every blessed time I go to Sync my iPhone, I run into iTunes issue on my Dell PC here. I guess PC and Mac just cannot play well together.
    Can someone PLEASE help me out here???
    Thanks in advance for your help.
    PSULionRP

    Hi. I also had this problem when trying to connect a new iPhone 4S & it needed iTunes 10.5. Went to the Apple website as update section of iTunes was not getting any luck - went to downloads section of Apple website & downloaded the whole iTunes 10.5 program as though I did not have it in the first place (& also downloaded the programs for Quicktime 7.7.1 & Safari 4.0.3) ie not just the upgrades. I created a restore point in my Windows XP in case it all went pear shaped & then went ahead & installed all 3 programs. Opened iTunes at the end & all my music, apps, movies were all still there & now the new iPhone 4S works perfectly with the iTunes. Hope this helps.

  • Can someone please help i cant connect to itunes from my iphone 4 ,,i had an iphone 3 and when i got my iphone 4 i changed my email address for new itunes account and my old phone which hubby uses

    Can someone please help i cant connect to itunes from my iphone 4 ,,i had an iphone 3 and when i got my iphone 4 i changed my email address for new itunes account and my old phone which hubby uses is changed aswell ..for some reason i cant update my apps off m iphone & in itunes via pc it will say apps are all up to date but i have 25 apps that need updating please can someone help ,, i can download a new app but i cant update existing ones ,,,
    very frustrated iphone user !!

    Changing devices is no reason to create a new Apple ID.
    All content purchased from iTunes is permanently linked to the Apple ID it was purchased with.
    To update apps purchased with the old ID, you MUST sign in with that Apple ID.

  • Whenever i try to install or update my mac to OS X Yosemite it asks for my apple ID and then takes me on to a page to fill in a credit card information form. However i don't like to share information like that online can someone please help me ?

    Whenever i try to install or update my mac to OS X Yosemite it asks for my apple ID and then takes me on to a page to fill in a credit card information form. However i don't like to share information like that online can someone please help me ?

    Not really, but you did need that when you got your Apple ID.
    Creating an iTunes Store, App Store, iBooks Store, and Mac App Store account without a credit card

  • Airport problems! can someone please help?

    i've had an ibook G4 for several months now. it has been working perfectly with my belkin router up until the last month. it seems like i can rarely ever connect to the internet at home with airport like i normally would. and when i do mange to connect, it seems to go away after i open it from sleep. i've been using it at school more recently and i'm wondering if this has anything to do with it. i've tried messing around with the network settings but nothing seems to work. i have it set to connect automatically right now. i also installed adobe cs2 recently, but i can't imagine this would affect how airport works. i'm going crazy because i hate not being able to use it to get on the internet when i'm at home. can someone please help me?! thanks!
    iBook G4   Mac OS X (10.4.5)  

    Hi Aliciarules,
    Welcome to Apple Discussions
    You may want to look at this previous post. Have you created different locations (Changing the priority of your network connections?
    You may want to look at...
    Knowledge Base Document #106858, which is The Airport Troubleshooting Guide
    Knowledge Base Document #58543 on Potential sources of interference
    Jon
    Mac Mini 1.42Ghz, iPod (All), Airport (Graphite & Express), G4 1.33Ghz iBook, G4 iMac 1Ghz, G3 500Mhz, iBook iMac 233Mhz, eMate, Power Mac 5400 LC, PowerBook 540c, Macintosh 128K, Apple //e, Apple //, and some more...  Mac OS X (10.4.5) Moto Razr, iLife '06, SmartDisk 160Gb, Apple BT Mouse, Sight..

  • I miss and erased all my music off my ipad and now its freaking out. I can't get it to re-sync. Can someone please help me. I want my music back.

    Hello. I am in need of some help please. I miss and remove all music off mt ipad mini. now it won't sync or re-sync. Can someone please help me. I was also sent a message saying there was a error. Help Please

    Okay, doing my best to ignore the EXTREMELY annoying font you chose to use.
    Is there a reason why you did not create a backup of your media and other important files before switching from Vista?
    It is the users responsibility to back up their media, it is NOT Apple's responsibility.
    When you purchase CD's or DVD's, if you lose them, you repurchase them.  Same deal with digital media.
    If you have a backup of your media, simply copy the files from the backup to your computer.
    If you still have access to your old computer, simply copy the files from it to your new computer.

  • Iweb will not open, can someone please help me?

    I opened iweb once and started my website, then the program quit unexpectedly and now it will not open anymore. can someone please help me because i really need to use the program.
    Thanks
    Courtney

    Were you able to launcn iWeb as part of the second fix, that of creating a new domain file?  Did iWeb open then?  If not boot into  Safe Mode and see if iWeb will launch. If it does reboot normally and try again.
    If still a no go log into another user account on your Mac and see if iWeb will launch and open a domain file?  If so than there's something in your account that is the culprit.
    If you can't launch iWeb in the other user account then a reinstallation of iWeb seems warranted. To do so you'll have to delete the current application and all files with "iPhoto" in the file name with either a .PKG or .BOM extension that reside in the HD/Library/Receipts folder and from the /var/db/receipts/  folder,
    Click to view full size
    Then install iPhoto from the disk it came on originally and apple the requried updaters.

  • I tried updating my iPod 5th gen to iOS 8 but it only shows me a picture of the iTunes logo and a charger at the bottom, I'm not sure what this means or what I need to do. Can someone please help me?

    I tried updating my iPod 5th gen to iOS 8 but it only shows me a picture of the iTunes logo and a charger at the bottom, I'm not sure what this means or what I need to do. Can someone please help me?

    After restoring to factory settings/new iPod you will then have to restore from backup
    To restore from backup see:
    iOS: Back up and restore your iOS device with iCloud or iTunes       
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:                         
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        

  • My iPhone 4 will not sync my new voice memos from the "Voice Memos" app to my computer. This is frustrating, should not be so hard, can someone please help. I use PC with windows 7 with iPhone version 6.1.3 and iTunes most recent. Thanks.

    My iPhone 4 will not sync my new voice memos from the "Voice Memos" app to my computer. This is frustrating, should not be so hard, can someone please help. I use PC with windows 7 with iPhone version 6.1.3 and iTunes most recent. Thanks.

    In the Music tab of iTunes, do you have 'Include Voice Memos' checked?

  • My MacBook Pro iTunes movie purchase is not showing in iTunes store movie purchases nor does it show on my iPad or Apple TV.  Can someone please help me with a solution?  Thanks.

      First of all, I live in Ho Chi Minh City, Vietnam. Sometimes, I use a VPN to search on the web here. I purchased Toy Story 3 on my MacBook Pro 2011 OS/X - Lion through iTunes.  I initially had trouble downloading it which may be due to being on and off the VPN but after a while it finally downloaded and shows up in my iTunes library on my MacBook. 
      Under my Apple ID account (which is the only Apple ID account I have), I look under purchase history and it shows that I paid for Toy Story which is where I got my Order # from.  But if you go to the iTunes Store then to the Quick Links then click on Purchased, under all my Movies, it does NOT show Toy Story 3 as one of my movies.
      Now when I go to my iPad (3rd gen.), Toy Story 3 does not show up under purchased movies (all or not on my iPad).  It does not show up on my Apple TV as well.  If I want to have Toy Story 3 on my iPad or Apple TV, then it says I have to purchase it again.
      I have searched for help via Apple support communities but so far none of their solutions have worked for me.  I have tried logging off iTunes & App Store on iPad and also shutting down the iPad.  I also made sure that under iTunes Preferences>Store that iTunes in the Clouds purchases is checked. Can someone please help me with this?  Your consideration is greatly appreciated.  Thanks.

    Thanks King_Penguin for taking time to read and reply. 
    I just purchased this movie on Thursday, May 15, so just a few days ago.  I have never had any trouble whatsoever since I have been in Vietnam.  I have downloaded several movies and even music and they have all synced to my respected Apple products except for this purchase. 
    Sorry, I don't quite understand what you mean by studios and different versions.  Could you please explain? 
    I checked my purchased list in my purchase history under my account and there are no hidden items. 

  • HT4623 hi... can someone please help me.. i want to download the latest ios, but do not have the software update option in the general settings....

    hi... can someone please help me.. i want to download the latest ios, but do not have the software update option in the general settings....

    Connect it to iTunes on a computer and update it from there.
    (73609)

Maybe you are looking for

  • Ipod Touch No Longer Syncs, Wants To Force A Restore

    I have a 64 GB ipod touch I purchased last year, and updated it to iOS 4 when it came out and have had no issues with it until this morning. When I plugged it in to my computer to sync, it simply brought up a screen allowing me to either restore as a

  • Itunes 7.5 not syncing music folder but podcasts sync fine

    Hello, I'm hoping someone can offer some advice. Since upgrading to iTunes 7.5 and Vista, I've noticed that my iPod classic and iTunes are no longer syncing the Music folder in my library. I've been able to repeat the following behavior: - music file

  • How to trigger a TTL output with an analog input

    Hello, I have an apparatus for measuring the flame speed of various hydrocarbon/air mixtures.  The chamber uses central ignition as the means for igniting the mixture.  My goal is to film the ignition process with a high speed Phantom video camera. 

  • Matching Lightroom Develop Settings to In-Camera Picture Styles

    For certain shoots it would suit me to have my pictures import and look like the embedded jpegs which are created using Canon's standard picture styes. Is there an easy way to create LR develop settings to match the popular Canon styles such as Stand

  • Premiere Pro CC keeps on CRASHING.

    I'm having trouble with Premiere Pro CC. (NOTE: The rest of the adobe programs on my laptop including photoshop, indesign, and illustrator are all working smoothly.) Every time I open my media browser panel and try to select video clips to import it