Can Someone Open the Black Box

01. I think I understand RSL usage for the Flex framework and
I think I like the fact that its implementation, for all practical
purposes, remains a Black Box. I can't see inside, but don't need
to since it just works as described in the many Googleable postings
available.
02. Now, however, we migrate to AIR and I challenge you to
find a solid description of the expected behavior in the AIR
environment. [Yes, there is one jira entry, in which some
developer, acknowledging an error in the air-config file adds the
cryptic comment -- "We don't expect most AIR apps to use these
RSLs.".
03. Now someone needs to open that black box so we can
determine how to properly take advantage of the client-side cache
for AIR applications. For that matter, it would be nice to see
concise information concerning the use of Modules in AIR
applications, but I will be so happy if I can just get the
framework modules to work properly.
04. Here is observed behavior from outside the Black Box.
A. Write/test/deploy a Flex Application compiled for use of
dynamic framework RSLs. Put the framework.swz file where the
webserver needs it to be -- and add the framework.swc version just
for the heck of it.
B. It works beautifully, and you can go look in the
client-side cache to see that the files were downloaded when
required -- just as advertized.
C. Write/test/deploy an AIR Application that uses SWFLoader
to launch on-demand exactly the same Application.swf file that was
run above.
D. It is much harder to trace, but the fact that the Module
runs correctly inside AIR is proof that AIR knew how to check the
client-side cache to resolve the links to the framework code, just
perfectly. But, if you are a doubting Tomas, rerun this AIR test
after you delete the framework.swz file from the the client-side
cache and wait for your #2032 error -- it will pop up pretty
quickly.
So, other than by asking the client to run a Flex application
in order to force-download the required framework, what is the
design pattern, best-practice or other direction concerning the
correct way for a pure AIR application to take advantage of
client-side caching of the ever-expanding framework
codebase?

Hello Maureen1842,
It sounds like you are able to see the Slide to Unlock screen but there is an outline around Slide to Unlock and it will not slide. From what you describe I'm thinking that Voice Over is enabled on the phone. Try doubletapping Slide to Unlock, that should get you to your home screen. Then go to your settings and disable Voice Over.
Turn VoiceOver on or off. Go to Settings > General > Accessibility > VoiceOver
From: iPhone User Guide    
          http://help.apple.com/iphone/7/#/iph3e2e33be
Thank you for using Apple Support Communities.
Take care,
Sterling

Similar Messages

  • How can I stop the black box appearing round a movie?

    So I've created a PDF with quicktime movies embedded in it on indesign, and I've taken the black outline off and have the movie automatically playing when you open the page. The problem is when it plays another black box appears round the movie and you have to click off it to make it disappear - it looks unprofessional and if you're in full screen mode this makes it turn to the next page, and we don't want that, do we.
    Does anyone know how to get rid of this black box so that it stays without a border when it's playing? I guess it happens because the movie is selected, but I can't seem to find anywhere in the edit movie dialogue box that says anything about it.
    Thanks.

    Thanks Steve, we'll look into buying Acrobat X because it would look so much better.
    One question though - If I was to sort out the settings on Acrobat X, would the black box still appear when viewed on Acrobat 8?

  • Mail inbox has mail but i can't open the mail box

    My mail stopped working on my iMac, works fine on my iPhone iPad and in the iCloud. Now i have the inbox showing i have mail but it won't open,I've tried to use the Rebuild function but its greyed out. The only way i can see my emails is to log into the connection doctor and change a setting , then save and suddenly they appear until i click out to the other mail inbox.
    I have noticed my signatures etc are missing so if i try to use one i get the following message
    someone help please!

    Writing your preferences to disk has failed. Your preferences may not have been saved. The permissions on ~/Library/Preferences may be wrong or your disk may be full.
    this is the error message I'm on Lion 10.7.5

  • How can I install Adobe flash player on my Mac using Safari OR Chrome? I have gone through every step on all of the help pages. The installation process always stops with the black box that briefly says, "Retrieving Install . . . ", then nothing.

    I have followed every step in the various help pages I was directed to when troubleshooting the inability to install Adobe Flash Player on my Mac using either Safari or Chrome. Everything has failed. I always get the black box that says briefly, "Retrieving instal. . . " and then goes blank. When I close that window, I get the message, "Adobe Flash Player could not be installed." Then it gives some links to follow for troubleshooting. I have followed ALL of the links there and on other help pages, to no avail. I've run into problems installing Adobe before, but it's never been this bad. Would someone please develop another format besides Adobe? Trying to get help from Adobe feels a little like trying to find a building in New York City with no map or GPS. The time required is voluminous, the emotional energy a/k/a frustration is overwhelming, and long before I get anything resolved, I wish the earth would open up and swallow all things Adobe@. Absence that miraculous intervention, I have to figure out what to do next. Does anyone know? Anyone?

    Same question, same answer: use the offline installer http://fpdownload.macromedia.com/pub/flashplayer/latest/help/install_flash_player_osx.dmg

  • HT1338 I am trying to setup my external drive, but when I do, I get a box that pops up that says You can't open the application "LaCie Setup Assistant" because PowerPC applications are no longer supported".

    When trying to setup my external hard drive, I get this box that pops up and says this:
    You can’t open the application “LaCie Setup Assistant” because PowerPC applications are no longer supported.

    PowerPC was a type of processor used in Mac systems before Apple switched to Intel-based processors. These older chips required applications to be coded differently, to the extent that they will not run on the Intel processors in newer Macs. Apple used to include a translator that allowed these programs to at least run, but this translator is no longer available so if you run into an older PowerPC-based program then OS X will give you this error.

  • How can I make the combo box turn to the value of black.

    When the show button is pressed (and not before), a filled black square should be
    displayed in the display area. The combo box (or drop down list) that enables the user to choose the colour of
    the displayed shape and the altering should take effect immediately.When the show button is pressed,
    the image should immediately revert to the black square, the combo box should show the value that
    correspond to the black.
    Now ,the problem is: after I pressed show button, the image is reverted to the black square,but I don't know
    how can I make the combo box turn to the value of black.
    Any help or hint?Thanks a lot!
    coding 1.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class test extends JFrame {
         private JPanel buttonPanel;
         private DrawPanel myPanel;
         private JButton showButton;
         private JComboBox colorComboBox;
    private boolean isShow;
         private int shape;
         private boolean isFill=true;
    private String colorNames[] = {"black", "blue", "cyan", "darkGray", "gray",
    "green", "lightgray", "magenta", "orange",
    "pink", "red", "white", "yellow"}; // color names list in ComboBox
    private Color colors[] = {Color.black, Color.blue, Color.cyan, Color.darkGray,
                              Color.gray, Color.green, Color.lightGray, Color.magenta,
                              Color.orange, Color.pink, Color.red, Color.white, Color.yellow};
         public test() {
         super("Draw Shapes");
         // creat custom drawing panel
    myPanel = new DrawPanel(); // instantiate a DrawPanel object
    myPanel.setBackground(Color.white);
         // set up showButton
    // register an event handler for showButton's ActionEvent
    showButton = new JButton ("show");
         showButton.addActionListener(
              // anonymous inner class to handle showButton events
         new ActionListener() {
                   // draw a black filled square shape after clicking showButton
         public void actionPerformed (ActionEvent event) {
                             // call DrawPanel method setShowStatus and pass an parameter
              // to decide if show the shape
         myPanel.setShowStatus(true);
                   isShow = myPanel.getShowStatus();
                                            shape = DrawPanel.SQUARE;
                        // call DrawPanel method setShape to indicate shape to draw
                                            myPanel.setShape(shape);
                        // call DrawPanel method setFill to indicate to draw a filled shape
                                            myPanel.setFill(true);
                        // call DrawPanel method draw
                                            myPanel.draw();
                             myPanel.setFill(true);
                             myPanel.setForeground(Color.black);
                   }// end anonymous inner class
         );// end call to addActionListener
    // set up colorComboBox
    // register event handlers for colorComboBox's ItemEvent
    colorComboBox = new JComboBox(colorNames);
    colorComboBox.setMaximumRowCount(5);
    colorComboBox.addItemListener(
         // anonymous inner class to handle colorComboBox events
         new ItemListener() {
         // select shape's color
         public void itemStateChanged(ItemEvent event) {
         if(event.getStateChange() == ItemEvent.SELECTED)
         // call DrawPanel method setForeground
         // and pass an element value of colors array
         myPanel.setForeground(colors[colorComboBox.getSelectedIndex()]);
    myPanel.draw();
    }// end anonymous inner class
    ); // end call to addItemListener
    // set up panel containing buttons
         buttonPanel = new JPanel();
    buttonPanel.setLayout(new GridLayout(4, 1, 0, 50));
         buttonPanel.add(showButton);
    buttonPanel.add(colorComboBox);
    JPanel radioButtonPanel = new JPanel();
    radioButtonPanel.setLayout(new GridLayout(2, 1, 0, 20));
    Container container = getContentPane();
    container.setLayout(new BorderLayout(10,10));
    container.add(myPanel, BorderLayout.CENTER);
         container.add(buttonPanel, BorderLayout.EAST);
    setSize(500, 400);
         setVisible(true);
         public static void main(String args[]) {
         test application = new test();
         application.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    coding 2
    import java.awt.*;
    import javax.swing.*;
    public class DrawPanel extends JPanel {
         public final static int CIRCLE = 1, SQUARE = 2;
         private int shape;
         private boolean fill;
         private boolean showStatus;
    private int shapeSize = 100;
    private Color foreground;
         // draw a specified shape
    public void paintComponent (Graphics g){
              super.paintComponent(g);
              // find center
    int x=(getSize().width-shapeSize)/2;
              int y=(getSize().height-shapeSize)/2;
              if (shape == CIRCLE) {
         if (fill == true){
         g.setColor(foreground);
              g.fillOval(x, y, shapeSize, shapeSize);
    else{
                   g.setColor(foreground);
    g.drawOval(x, y, shapeSize, shapeSize);
              else if (shape == SQUARE){
         if (fill == true){
         g.setColor(foreground);
                        g.fillRect(x, y, shapeSize, shapeSize);
    else{
                        g.setColor(foreground);
    g.drawRect(x, y, shapeSize, shapeSize);
    // set showStatus value
    public void setShowStatus (boolean s) {
              showStatus = s;
         // return showstatus value
    public boolean getShowStatus () {
              return showStatus;
         // set fill value
    public void setFill(boolean isFill) {
              fill = isFill;
         // set shape value
    public void setShape(int shapeToDraw) {
              shape = shapeToDraw;
    // set shapeSize value
    public void setShapeSize(int newShapeSize) {
              shapeSize = newShapeSize;
    // set foreground value
    public void setForeground(Color newColor) {
              foreground = newColor;
         // repaint DrawPanel
    public void draw (){
              if(showStatus == true)
              repaint();

    Hello,
    does setSelectedIndex(int anIndex)
    do what you need?
    See Java Doc for JComboBox.

  • I can not open the phone it stays in black sceen.what can i do

    i can not open the phone it stays in black sceen.what can i do

    Hold both power on and home button together and ignore the red slider until you see the apple logo.  Then let go of both buttons and wait for the phone to reset itself.

  • When I try to open iPhoto a box comes up that says "You can't open the application because it may be damaged or incomplete."  I just scanned some pictures in, and then this happened.

    Does anyone know what to do if you try to open iPhoto and the box comes up and says "You can't open the application iPhoto because it may be damaged or incomplete."  Previous to this I added some pictures and documents that were scanned from my Lexmark all-in-one.  Now I can't open iPhoto.

    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    2c: on 10.7 they're at
    /private/var/db/receipts
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    If you purchased it on the App Store you can find it in your Purchases List.

  • In PowerPivot, can I configure a slicer/timeline to automatically select the recent N days when someone opens the workbook?

    For example, is it possible to let a slicer/timeline automatically select last 7 days whenever someone opens the workbook, so that one can always see the latest data without having to manually click/drag to select the most recent time range. Can I achieve
    this?
    Thanks.

    yes
    Add an extra custom column to the calendar which is called RefreshDate for which the formula is =today().
    Now the rest is up to you as to how you want to do this. You could add a column TodayMinus1  defined as =IF([Date]=[Refresh Date]-1,TRUE,FALSE)
    Personally I would rather have the Refresh date supplied from the database when you connect to refresh.
    Hope That Helps
    Mark

  • 'You can't open the application "Logic Pro X" because someone else is using it.'

    Hello.
    I have two user accounts on my MacBook and if I attempt to open Logic Pro X in ‘user 2’ while it is already open in ‘user 1’, I get ‘You can’t open the application “Logic Pro X” because someone else is using it.’
    Now I know I can simply quit Logic in ‘user 2’ but this shouldn’t be happening should it? Any ideas anyone? Thanks.

    Really? I wouldn't have expected that. Well, I may be wrong then and basing my assertion on a much older Mac OS (10.5?), since I haven't used multiple open user accounts for years.
    However, seeing the wording of the message it is quite obvious that this is by design.
    I think it is better to have as few programs as possible open anyway, just so Logic can use all available CPU and RAM resources optimally. Maybe if you have 16 GB or more that is not so important anymore.

  • You can't open the application "MFI_Simulator.exe" because Microsoft Windows applications are not supported on OS X. Can someone assist. I have Office for Mac 2011 on MacBook Pro 13''.

    You can’t open the application “MFI_Simulator.exe” because Microsoft Windows applications are not supported on OS X. Can someone assist. I have Office 2011 on my MacBook Pro, OS X, 10.9.1.

    Your Office 2011, though a Microsoft product, is designed to work with OSX the Mac operating system.  Any program/application ending .exe is an executable program for Windows.  It will only work in Windows and is not part of or openable with Microsoft Office.
    the application you want to open needs Windows - you have a couple of alternatives:
    Open it on a Windows PC
    Install a valid version of Windows via Bootcamp (or Parallels or VM Fusion) which will allow you to boot your Mac into Windows where it will function like a Windows PC and you can use it to run the application.
    See if the manufacturers of MFI_Simulator have a Mac version available.
    Please note that if you follow the second option, then you will need to purchase a copy of Windows (if you do not have one already). BootCamp is free (part of OSX) but Parallels and VM Fusion cost too.  I see quite a few posts from people who buy Parallels and try to run the program under Parallels - this doesn't work - you need to install Windows as well.
    Hope this helps.

  • I can't open the apple store on the iPhone  ios4.2.1 can someone tell how?

    I can't open the apple store in my iPhone ios4.2.1 can someone tell me what to do to fix this problem??

    Are you trying to open the App Store or www.apple.com/store? Either one you need Internet connectivity.
    It might be that you have restrictions enabled as well.

  • When I try to download Adobe Reader, the Adobe Installer opens a black box. The installer doesn't actually work. Any ideas how to fix? Thanks!

    When I try to download Adobe Reader, the Adobe Installer opens a black box. The installer doesn't actually work. Any ideas how to fix? I am using Windows 8 installing the English version. Thanks!

    Try the installer from http://get.adobe.com/reader/enterprise/

  • I accidentally closed the dialogue box when Firefox asked if it was okay for a program to modify my computer. Now I can't open the program.

    I have a game (Neverwinter Nights) that periodically updates itself. Yesterday, I got a dialogue box asking if it was okay for the game to modify my computer (happens every now and then). I meant to click "yes", but instead accidentally closed the box (which I believe defaulted to "no"). Now, I can't open the game. How can I fix this?

    hello stmanley1970, those dialog boxes are not originating from firefox, but from your operating system windows 7. therefore please contact the support channels of the publisher of this game in order to receive help for this issue...

  • When pressing Ctrl+f to find something in a page the Find box remains open until I close it, in ALL tabs I have in the firefox window. How can I make firefox open the Find box ONLY in the tab I am in?

    When pressing Ctrl+f to find something in a page the Find box remains open until I close it, in ALL tabs I have in the firefox window. How can I make firefox open the Find box ONLY in the tab I am in?

    Firefox 4 and later versions save the previous session automatically, so there is no longer need for the dialog asking if you want to save the current session.<br />
    Use "File > Exit" or "Firefox > Exit" (Mac: "Firefox > Quit Firefox") if you want to restore multiple windows.<br />
    You can use "History > Restore Previous Session" to get the previous session at any time.<br />
    You may need to click the orange/gray Firefox button to see History.<br />
    There is also a "Restore Previous Session" button on the default <b>about:home</b> Home page.
    Another possibility is to use:
    * [http://kb.mozillazine.org/Menu_differences Firefox/Tools > Options] > General > Startup: "When Firefox Starts": "Show my windows and tabs from last time"

Maybe you are looking for

  • Travel Adapter for HP Envy Spectre XT 13-2050nr

    I'd like to know what travel adapter (cigarette lighter + airplane) will work with the HP Envy Spectre XT 13-2050nr. Thank you

  • IPod wont show songs under artists

    Referring to this website: http://docs.info.apple.com/article.html?artnum=302773 i have a question: I am experiencing the same problem as described on that page. Only thing is, it is much more severe for me. I'm guessing that over 100 of my 900 songs

  • Table for credit limit for  risk category for all CCA

    Hi All, I want to know in which table I can see default credit limit which is associated to particular  risk category for all  credit control area. Regards Nidhi

  • Why not at least let us go back to 8.1? The .1 that worked?

    My ipod is my life and I need to sync daily. And the genius bar couldnt even help me today. Thats an hour drive for nothing.

  • Duplicate Mail

    Hello, I have an annoying problem that I thought I fixed, but it keeps cropping up for various users. I'll use me as an example, but this happens to at least 3 other people. First thing in the morning I check my POP mail account, my email client will