GetStylesheets().add("css_file") has no effect for Scene in JFXPanel

I'm using Netbeans 7 to build a JavaFx application that has a Swing UI with a JFXPanel. No matter what I try, I can't get the scene to use my stylesheet.
The content of my CSS file is correct. E.g.:
.my-component {
-fx-border-color: black;
-fx-border-width: 2;
-fx-border-radius: 10;
-fx-background-color: #CCFF99;
-fx-background-radius: 10;
The path to the CSS file is correct. (e.g. "/packagename/mystyle.css"), I've also tried:
String css = Main.class.getResource("mystyle.css").toExternalForm();
scene.getStylesheets().add(css);
My node (a BorderPane) is set to use the CSS class :
comp2.getStyleClass().add("my-component");
I've verified the syntax by changing it to one of the built-in classes e.g. "button" and the results are seen in the UI.
But I can't get anything from my CSS file to work. There are no error messages logged or exceptions thrown. I can fill the CSS file with nonsense errors and it has no effect.. it's like the file isn't being used at all.
When I use the SAME CSS file in a pure JavaFX application, that is, NOT using JFXPanel, I see a warning if the path to the CSS file is wrong: "WARNING: com.sun.javafx.css.StyleManager$2 run Resource "null" not found."
When the path is correct in that case, it seems to work fine.
What could be the problem?

Moderator advice: Please read the announcement(s) at the top of the forum listings and the FAQ linked from every page. They are there for a purpose.
Then edit your post and format the code and CSS correctly.
db

Similar Messages

  • DKACB-XERGO Assignment to a profitability segment has no effect for account

    Hi,
    I have a batch input (FB01) in error for this message:
    Assignment to a profitability segment has no effect for account XXXXXXXXXX
    This account is not to opened as cost element...and this is correct.
    If I process batch input in foreground, I notice that field 'Profit. Segment'
    (DKACB-XERGO) is flagged.
    How Can I unflag this field?
    Where 'Profit. Segment' is customized?
    Thanks,
    Marco

    I am wondering what is behind the batch input or what process is used  to do that. For e.g, when I tried entering FB01 transaction with a pure G/L account (it has no cost element) and  clicked on the profitability segment icon, I got the same message what you got.
    So could it be possible that batch input goes through the 'Detail screen for profitability segment' though it may not be required?

  • HT1320 Ipod 4th gen was accidentally disconnected from laptop during update process. Now permanent screen pic is of power cord w/ an arrow pointing up to itunes. Holding the ctr & power buttons together has no effect for reset.

    Ipod touch 4th gen was accidentally disconnected from laptop during update process. Now permanent screen pic is of the power cord w/ an arrow pointing up to itunes symbol. Holding the ctr & power buttons together for 6-10 sec causes apple pic to briefly appear and power cord/itunes pic reappears. Powering off and on has same effect. Attempting to reset.

    It sounds like the iPod touch is in Recovery Mode, Try to restore it from iTunes again.
    If you run into an error when restoring the iPhone again, take a look at this Apple doc -> iOS: Resolving update and restore alert messages

  • JSF1.0. valueChangeListener has no effect for inputHidden

    inputHidden has valueChangeListener, but it looks like it has no effect.
    For example:
    <h:inputHidden valueChangeListener="#{GetNameBean.callMe}" id="userName" />
    if I replace inputHidden with inputText, the listener is been fired. Is it a bug or what? The same code works in the jsf-ri1.0 beta.
    P.S. the same problem in case of using <f:valueChangeListener>

    I have cut the previous text off before posting. This is a full version of the page where only inputText is replaced with inputHidden. Such code does not work.
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <f:loadBundle basename="demo.bundle.Messages" var="Message"/>
    <HTML>
    <HEAD> <title>Input Name Page</title> </HEAD>
    <body bgcolor="white">
    <f:view>
        <h1><h:outputText value="#{Message.inputname_header}"/></h1>
        <h:messages style="color: red"/>
        <h:form id="helloForm" >
        <h:outputText value="#{Message.prompt}"/>
        <h:inputHidden valueChangeListener="#{GetNameBean.callMe}" id="userName" value="#{GetNameBean.userName}" required="true">
           <f:validateLength minimum="2" maximum="20"/>
         </h:inputHidden>
         <h:commandButton id="submit" action="sayhello" value="Say Hello" />
        </h:form>
       </f:view>
    </body>  
    </HTML> demo.GetNameBean:
    package demo;
    import javax.faces.event.ValueChangeEvent;
    import javax.faces.event.AbortProcessingException;
    public class GetNameBean {
         String userName;
         public String getUserName() {
              return userName;
         public void setUserName(String name) {
              userName = name;
         public void callMe(ValueChangeEvent event)
         throws AbortProcessingException {
              userName="Duke";

  • Documentviewer new toolbar button HorizontalAlignment="Right" has no effect?

    Hi all,
    I added a button to the documentviewer toolbar after extracting a copy of the template in Blend. I added a button (closeButton) with an "X" as its content. It works but I want the button to be at the right side of the toolbar. I tried the
    horizontalAlignment property but is has no effect. If I add margin="500,0,0,0" it works. But I don't want to fix it that way. What Am I missing?
    Thanks
    <Style x:Key="myDocumentViewerStyle" BasedOn="{x:Null}" TargetType="{x:Type DocumentViewer}">
    <Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.WindowTextBrushKey}}"/>
    <Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.ControlBrushKey}}"/>
    <Setter Property="FocusVisualStyle" Value="{x:Null}"/>
    <Setter Property="ContextMenu" Value="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerContextMenu, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}"/>
    <Setter Property="Template">
    <Setter.Value>
    <ControlTemplate TargetType="{x:Type DocumentViewer}">
    <Border BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Focusable="False">
    <Grid Background="{TemplateBinding Background}" KeyboardNavigation.TabNavigation="Local">
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="*"/>
    </Grid.ColumnDefinitions>
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto"/>
    <RowDefinition Height="*"/>
    <RowDefinition Height="Auto"/>
    </Grid.RowDefinitions>
    <ContentControl Grid.Column="0" Focusable="{TemplateBinding Focusable}" Grid.Row="0" Style="{DynamicResource myContentControlStyle}" TabIndex="0"/>
    <ScrollViewer x:Name="PART_ContentHost" CanContentScroll="true" Grid.Column="0" Focusable="{TemplateBinding Focusable}" HorizontalScrollBarVisibility="Auto" IsTabStop="true" Grid.Row="1" TabIndex="1"/>
    <DockPanel Grid.Row="1">
    <FrameworkElement DockPanel.Dock="Right" Width="{DynamicResource {x:Static SystemParameters.VerticalScrollBarWidthKey}}"/>
    <Rectangle Height="10" Visibility="Visible" VerticalAlignment="top">
    <Rectangle.Fill>
    <LinearGradientBrush EndPoint="0,1" StartPoint="0,0">
    <LinearGradientBrush.GradientStops>
    <GradientStopCollection>
    <GradientStop Color="#66000000" Offset="0"/>
    <GradientStop Color="Transparent" Offset="1"/>
    </GradientStopCollection>
    </LinearGradientBrush.GradientStops>
    </LinearGradientBrush>
    </Rectangle.Fill>
    </Rectangle>
    </DockPanel>
    <ContentControl x:Name="PART_FindToolBarHost" Grid.Column="0" Focusable="{TemplateBinding Focusable}" Grid.Row="2" TabIndex="2"/>
    </Grid>
    </Border>
    </ControlTemplate>
    </Setter.Value>
    </Setter>
    </Style>
    <Style x:Key="myContentControlStyle" TargetType="{x:Type ContentControl}">
    <Setter Property="Template">
    <Setter.Value>
    <ControlTemplate TargetType="{x:Type ContentControl}">
    <ToolBar Focusable="{TemplateBinding Focusable}" ToolBarTray.IsLocked="True" Language="en-us" KeyboardNavigation.TabNavigation="Continue" Uid="ToolBar_2">
    <Button x:Name="PrintButton" Background="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerPrintButton, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" Command="ApplicationCommands.Print" IsTabStop="True" Margin="2" Padding="2" Style="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerButtonStyle, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" ToolTipService.ShowOnDisabled="True" TabIndex="0" ToolTip="Print (Ctrl+P)" Uid="Button_14" VerticalAlignment="Center" Width="24"/>
    <Button x:Name="CopyButton" Background="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerCopyButton, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" Command="ApplicationCommands.Copy" IsTabStop="True" Margin="2" Padding="2" Style="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerButtonStyle, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" ToolTipService.ShowOnDisabled="True" TabIndex="1" ToolTip="Copy (Ctrl+C)" Uid="Button_15" VerticalAlignment="Center" Width="24"/>
    <Separator Uid="Separator_110"/>
    <Button x:Name="ZoomInButton" Background="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerZoomInButton, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" Command="NavigationCommands.IncreaseZoom" IsTabStop="True" Margin="2" Padding="2" Style="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerButtonStyle, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" ToolTipService.ShowOnDisabled="True" TabIndex="3" ToolTip="Increase the size of the content (Ctrl +)" Uid="Button_16" VerticalAlignment="Center" Width="24"/>
    <Button x:Name="ZoomOutButton" Background="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerZoomOutButton, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" Command="NavigationCommands.DecreaseZoom" IsTabStop="True" Margin="2" Padding="2" Style="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerButtonStyle, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" ToolTipService.ShowOnDisabled="True" TabIndex="4" ToolTip="Decrease the size of the content (Ctrl -)" Uid="Button_17" VerticalAlignment="Center" Width="24"/>
    <Separator Uid="Separator_111"/>
    <Button x:Name="ActualSizeButton" Background="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerActualSizeButton, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" CommandParameter="100.0" Command="NavigationCommands.Zoom" IsTabStop="True" Margin="2" Padding="2" Style="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerButtonStyle, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" ToolTipService.ShowOnDisabled="True" TabIndex="5" ToolTip="100% (Ctrl+1)" Uid="Button_18" VerticalAlignment="Center" Width="24"/>
    <Button x:Name="PageWidthButton" Background="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerPageWidthButton, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" Command="DocumentViewer.FitToWidthCommand" IsTabStop="True" Margin="2" Padding="2" Style="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerButtonStyle, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" ToolTipService.ShowOnDisabled="True" TabIndex="6" ToolTip="Page Width (Ctrl+2)" Uid="Button_19" VerticalAlignment="Center" Width="24"/>
    <Button x:Name="WholePageButton" Background="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerWholePageButton, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" CommandParameter="1" Command="DocumentViewer.FitToMaxPagesAcrossCommand" IsTabStop="True" Margin="2" Padding="2" Style="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerButtonStyle, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" ToolTipService.ShowOnDisabled="True" TabIndex="7" ToolTip="Whole Page (Ctrl+3)" Uid="Button_20" VerticalAlignment="Center" Width="24"/>
    <Button x:Name="TwoPagesButton" Background="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerTwoPagesButton, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" CommandParameter="2" Command="DocumentViewer.FitToMaxPagesAcrossCommand" IsTabStop="True" Margin="2" Padding="2" Style="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerButtonStyle, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" ToolTipService.ShowOnDisabled="True" TabIndex="8" ToolTip="Two Pages (Ctrl+4)" Uid="Button_21" VerticalAlignment="Center" Width="24"/>
    <Separator Uid="Separator_111"/>
    <Button x:Name="closeButton" Width="20" Content="X" ToolTip="Close" HorizontalAlignment="Right" VerticalAlignment="Center" Click="closeButton_Click"/>
    </ToolBar>
    </ControlTemplate>
    </Setter.Value>
    </Setter>
    </Style>

    Hi DSP1024,
    >>I tried the horizontalAlignment property but is has no effect. If I add margin="500,0,0,0" it works
    Yes, the HorizontalAlignment property has no effect for the items inside the ToolBar control, as a workaround, we can move your "closeButton" out of ToolBar content, like this:
    <Style x:Key="myContentControlStyle" TargetType="{x:Type ContentControl}">
    <Setter Property="Template">
    <Setter.Value>
    <ControlTemplate TargetType="{x:Type ContentControl}">
    <Grid>
    <ToolBar Focusable="{TemplateBinding Focusable}" ToolBarTray.IsLocked="True" Language="en-us" KeyboardNavigation.TabNavigation="Continue" Uid="ToolBar_2">
    <Button x:Name="PrintButton" Background="Blue" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" Command="ApplicationCommands.Print" IsTabStop="True" Margin="2" Padding="2" ToolTipService.ShowOnDisabled="True" TabIndex="0" ToolTip="Print (Ctrl+P)" Uid="Button_14" VerticalAlignment="Center" Width="24"/>
    <Button x:Name="CopyButton" Background="Blue" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" Command="ApplicationCommands.Copy" IsTabStop="True" Margin="2" Padding="2" ToolTipService.ShowOnDisabled="True" TabIndex="1" ToolTip="Copy (Ctrl+C)" Uid="Button_15" VerticalAlignment="Center" Width="24"/>
    <Separator Uid="Separator_110"/>
    <Button x:Name="ZoomInButton" Background="Blue" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" Command="NavigationCommands.IncreaseZoom" IsTabStop="True" Margin="2" Padding="2" ToolTipService.ShowOnDisabled="True" TabIndex="3" ToolTip="Increase the size of the content (Ctrl +)" Uid="Button_16" VerticalAlignment="Center" Width="24"/>
    <Button x:Name="ZoomOutButton" Background="Blue" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" Command="NavigationCommands.DecreaseZoom" IsTabStop="True" Margin="2" Padding="2" ToolTipService.ShowOnDisabled="True" TabIndex="4" ToolTip="Decrease the size of the content (Ctrl -)" Uid="Button_17" VerticalAlignment="Center" Width="24"/>
    <Separator Uid="Separator_111"/>
    <Button x:Name="ActualSizeButton" Background="Blue" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" CommandParameter="100.0" Command="NavigationCommands.Zoom" IsTabStop="True" Margin="2" Padding="2" ToolTipService.ShowOnDisabled="True" TabIndex="5" ToolTip="100% (Ctrl+1)" Uid="Button_18" VerticalAlignment="Center" Width="24"/>
    <Button x:Name="PageWidthButton" Background="Blue" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" Command="DocumentViewer.FitToWidthCommand" IsTabStop="True" Margin="2" Padding="2" ToolTipService.ShowOnDisabled="True" TabIndex="6" ToolTip="Page Width (Ctrl+2)" Uid="Button_19" VerticalAlignment="Center" Width="24"/>
    <Button x:Name="WholePageButton" Background="Blue" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" CommandParameter="1" Command="DocumentViewer.FitToMaxPagesAcrossCommand" IsTabStop="True" Margin="2" Padding="2" ToolTipService.ShowOnDisabled="True" TabIndex="7" ToolTip="Whole Page (Ctrl+3)" Uid="Button_20" VerticalAlignment="Center" Width="24"/>
    <Button x:Name="TwoPagesButton" Background="Blue" CommandTarget="{Binding TemplatedParent, RelativeSource={RelativeSource TemplatedParent}}" CommandParameter="2" Command="DocumentViewer.FitToMaxPagesAcrossCommand" IsTabStop="True" Margin="2" Padding="2" ToolTipService.ShowOnDisabled="True" TabIndex="8" ToolTip="Two Pages (Ctrl+4)" Uid="Button_21" VerticalAlignment="Center" Width="24"/>
    <Separator Uid="Separator_111"/>
    </ToolBar>
    <Button x:Name="closeButton" Width="20" Content="X" ToolTip="Close" Margin="0,0,18,0" HorizontalAlignment="Right" VerticalAlignment="Center" />
    </Grid>
    </ControlTemplate>
    </Setter.Value>
    </Setter>
    </Style>
    Screenshot:
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Help! how to remove a movie effect for other scene

    Hi I am working on an e-card. I have 2 scene where "Scene 1"
    has snow fall effect and "Scene 2" has message and greetings but do
    not want the snow fall effect. So far the snow effect run through
    out both scene but I need to stop it on scene 2.
    The script that i got online is put under frame-script at
    Scene 1. How can i make it stop at scene 2 and when the movie loop
    back to scene 1 , the snow effect will run again?
    Please help. thanks a lot.
    Below are the script that i got from a tutorial to create
    snow effect. It is put under scene 1 first frame.

    rap onEnterframe with if statement testing what scene you are
    in if not scene one animation stops. or put snow animation in its
    own movie clip.
    this.onEnterFrame = function() {
    if(scene == 1){
    for(var i=0;i<anzahl;i++) {
    if(this["schnee"+i]._x>breite+10||this["schnee"+i]._y>hoehe+10
    || ersterlauf<anzahl) {
    this["schnee"+i].speed =
    (Math.random()*max_speed)+min_speed;
    this["schnee"+i]._x = Math.random()*breite;
    this["schnee"+i]._y = ersterlauf<anzahl ?
    Math.random()*hoehe : 0;
    this["schnee"+i]._xscale = this["schnee"+i]._yscale =
    this["schnee"+i]._alpha = (Math.random()*max_groesse)+min_groesse;;
    this["schnee"+i].r_xy = random(2) == true;
    ersterlauf<anzahl ? ersterlauf++ : ersterlauf = anzahl+1;
    } else {
    if(this["schnee"+i].r_xy) {
    this["schnee"+i].go += Math.random()*-0.2;
    if(this["schnee"+i].go < -schwing_faktor)
    this["schnee"+i].r_xy = false;
    } else {
    this["schnee"+i].go += Math.random()*0.2;
    if(this["schnee"+i].go > schwing_faktor)
    this["schnee"+i].r_xy = true;
    this["schnee"+i]._x += this["schnee"+i].go;
    this["schnee"+i]._y += this["schnee"+i].speed;
    something like this.

  • Zoom/blur/chaotic effect for a fighting scene

    Hi there! I'm an Italian guy, so I'm SORRY for my really bad english. So, I'm a new user of this amazing forum , and I'm new in the "video making art" too, so I will not too ambicious about making video...BUT I would like to make a promotional video for my airsoft Club...and I thought something like that:
    https://www.youtube.com/watch?featur...&v=fRI-2mp8_TU
    I want to be clear: I know that this video is at a pro level...but I only want to know few things about it:
    1) at 1:05 we can see a this guy face, and a VERY shaking/chaoting shooting with a uninterrupted zoom in/out on the soldier. You can see this effect for the enitre fighting scene, and I think that they are so cool for a shooting/fighting scene! So: those effects have a particoular name or not? Is a  particoular video technique or a  post production effect?
    2) There is any tutorial/video tutorial to make it?

    I could be wrong, but it looks like it was shot using what has be called a "shaky cam" teechnique. I dont beleive it is a post effect we are seeing.
    One way to replicate this  is to use After Effects expressions to create radom motion on several axis'.
    And easier alternative is to use a plug in made by Video Copilot called Twitch. It is used in After Effects not Premiere.

  • Capitvate 8 for 64bit windows downloaded, but "install now" button in akamai downloader has no effect. How to install?

    Capitvate 8 for 64bit windows downloaded, but "install now" button in akamai downloader has no effect. How to install?

    check your computer or, if you don't know how to search for files, redownlload:
    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4, CS4 Web Standard | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 |12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7
    Lightroom:  5.7.1| 5 | 4 | 3 | 2.7(win),2.7(mac)
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.
    window using the Lightroom 3 link to see those 'Important Instructions'.

  • When trying to download Apps ipad keeps asking for password. Correct password given but has no effect.

    When trying to download Apps, ipad keeps asking for password. Correct password given but has no effect and box requesting password input appears again.

    Try downloading something in the iTunes app on the iPad and see if that gets you out of the password loop that you are stuck in.

  • Wrong Channels Being Mapped for 5.1 - Changing Has No Effect.

    I just setup a new edit suite using a Blackmagic Decklink Extreme 3D Card, running on a PC with Windows 7.
    Initially my 5.1 channel mapping required altering in Premier to get the correct output to the correct speakers but once sorted all worked great.... until today! For some reason no matter what I do some of the channels are now mixed up, and changing the mapping preferences has no effect. I am getting the Centre channel coming from the Rear Right and Rear Left is coming out of the Sub! I have my preferences set to output from the BlackMagic Audio Device, but even swapping left and right channels has no effect.
    If I flick over to Audition and map the channels for a 5.1 mix it works fine and has the correct output which I guess rules out a problem with the DeckLink. This is REALLY frustrating me, any suggestions or advice on what could be the issue with premier would be greatly appreciated!

    Moderator advice: Please read the announcement(s) at the top of the forum listings and the FAQ linked from every page. They are there for a purpose.
    Then edit your post and format the code and CSS correctly.
    db

  • I'm in London for a semester and I met someone here. My iMessage has been useful for chatting with friends from home, but I'd like to add this guy to my contacts and iMessage him. I can't iMessage him (he has functional iMessage on his iPhone).

    I'm in London for a semester and I met someone here. My iMessage has been useful for chatting with friends from home, but I'd like to add this guy to my contacts and iMessage him. I can't iMessage him (he has functional iMessage on his iPhone). Why doesn't my phone recognize him to have iMessage? Do I have to turn my data on and my airport off to send a message before it recognizes that he has iMessage?

    Call AppleCare, because, according to Apple, removing the devices from your support profile should have fixed this issue. You can also try changing your Apple ID password, but given what you've done, I doubt this will help.

  • Remote content bar does not appear for some emails with images specifically daily Twitter updates. Changing options to allow all remote content has no effect

    The broken image symbol appears in place of the images but associated web links do work ok.
    Changing options to allow all remote content has no effect. Senders' addresses are in my address book and on the exceptions list.
    Some emails (from other sources) load perfectly. Using Kaspersky Internet Security 2015 on Windows 8.1. Thunderbird 31.4.0
    Any help appreciated.

    You only need to post a URL to your web site. We can see your code in Browser.
    So, your page looks OK to me in Firefox, but when I tried to check it in IE, it choked my browser and closed it.
    You have quite a few code validation errors - no document type declaration, etc... Start by fixing these reported errors.
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fntp.neuroscience.wisc.edu%2F
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • JFX 2.0 -fx-highlight-text-fill style has no effect

    When I try to set the highlight-text-fill style for a TextBox, it has no effect. The highlight-fill style, however, works as expected.
    public void start(Stage primaryStage) {
        final TextBox tb = new TextBox(100);
        tb.setStyle("-fx-font-size: 3em; -fx-text-fill: #0000ff; -fx-highlight-fill: #00ff00; -fx-highlight-text-fill: #ffffff;");
        final BorderPane root = new BorderPane();
        root.setStyle("-fx-padding: 20;");
        root.setCenter(tb);
        final Scene scene = new Scene(root, 600, 200, Color.BLACK);
        primaryStage.setTitle("JavaFX");
        primaryStage.setScene(scene);
        primaryStage.setVisible(true);
    }But this doesn't seem to be a problem of my custom styles because the default doesn't work either.
    The caspian.css in jfxrt.jar defines a white highlight-text-fill but when selecting the contents of a TextBox, the text color is black.
    Is this an error in caspian.css (maybe the style name is just misspelled) or a current limitation of the beta version?
    Regards,
    Kai

    Thanks David.
    In the meantime I noticed that -fx-prompt-text-fill seems to have the same problem. The prompt text is always gray, no matter which color I set in the style.
    Regards,
    Kai

  • Turning off "Ken Burns" effect for SOME photos

    I see that someone has asked a similar question in the past and told that it's not possible to turn off the Ken Burns effect for some photos, but I'm hoping someone has a workaround or there's a hack...
    I've made a slideshow and got the idea to "tell the story" by creating some "title" images in Photoshop elements which I've placed in between a series of photos.
    These are just black backgrounds with the title (e.g. "...and the party begins", "Family reunion" etc.) in big white letters. I'm very happy with that idea
    I like the Ken Burns effect for the slideshow as it adds some semi-video "action" effect, but NOT on the titles. Having the Ken Burns effect there just looks stupid, so I would like to remove it for the titles alone.
    I know I can do it the other way round (go to "Settings" for the Slideshow, deselect "Automatic Ken Burns effect", then manually add the effect for all the photos I want), but with a slideshow album that's going to take ages to do!!
    Is there a better way?

    Perhaps you're checking the KB button on the "main" menu for the slideshow. That actually changes only the setting for the image that is currently selected. Try using the "Settings" button and deselect the "Automatic KB effect."
    John

  • When I try to send e-mail I get an error message stating that the e-mail address was rejected by the server.  When I send to e-mail from another address, I get back an error saying the e-mail address is unknown.  My e-mail has worked fine for years until

    When I try to send e-mail I get an error message stating that the e-mail address was rejected by the server.  When I send to e-mail from another address, I get back an error saying the e-mail address is unknown.  My e-mail has worked fine for years until yesterday.  HELP!

    The specific text of the error message is very important here — I'm not sure exactly you're encountering here.
    If you're able to connect to your email server and are able send email to other email addresses and if the failures are specific to one email recipient address, then please contact the intended recipient of the failing email, and confirm their address is valid.  (This is the way I'm reading your question.)
    If you are unable to send any email to any other email addresses and this is specific to your email address, then try the web mail client interface (if one is available) to verify your login user and password, and check with your email ISP for assistance.  If your email password works via web mail, follow this Apple troubleshooting guide, then — if everything else fails — I'd probably then entirely remove the email account from Mail.app and re-add it per your email ISP's particular setup requirements.  (Some issue with the setup or maybe a corrupt setting in OS X or a problem at the mail ISP servers is a common problem, but this effects attempts to send to all email addresses via that account.)
    An email account setup is specific to an email provider, unfortunately.   If you're using one of the more common email ISPs, then there are usually setup guides and frequently-asked questions posted online.

Maybe you are looking for

  • Script not working in SharePoint content editor webpart

    Hi All, <html> <head> <script type="text/javascript" src="https://www.google.com/jsapi"></script> <script language="javascript" type="text/javascript"> $(document).ready(function () { //Call your function here like //retrieveListItems(); ExecuteOrDel

  • Thunderbolt iMac - mini-dvi to HDMI - Image not sharp on TV

    I am trying to use my TV as a second monitor for my newish iMac.  I used to do the same thing with my macbook (2006) with a mini-dvi to HDMI adapter.  The signal then was crisp and typical of 1080p.  I recently tried two different mini-displayport to

  • I need some help with MIDI and accessing samples

    I recently purchased Logic Express 9. I'm really happy with it--it's certainly a step up from Garageband--but I'm having trouble connecting my MIDI keyboard. In Garageband, I was able to just plug the keyboard in using a MIDI/USB cable and play softw

  • Error while calculating SPS for NW 7.3 Enterprise Portal

    Hello, I have a Solution Manager 7.01 SPS 28 (ST     400     0028     SAPKITL438     SAP Solution Manager Tool) I want to download via MOPZ the newest SPS for NW 7.3 with Enterprise Portal. I configured the SLD on the NW 7.3 side successfully. The NW

  • Packing JSP into WAR file.

    hello.... How can I pack my JSP files into one single WAR file? Any steps? And...how can I make my TOMCAT recognize this WAR file and then execute the correct JSP file? Please help. Any tutorial URL will be appriciated. Thank you.