Content visible .bar

Developers who previously developed for meego or symbian know that the content of qml is visible by the decompression of the deb files or sis using certain tools. The two files are the installation for symbian and meego files. To protect the content, most of the developers will put in qrc qml so the qml is compiled in the binary instead of just packed along in Setup only files. Is this issue also affected blackberry Installer. bar.

Yes, he does. BAR can be easily unpacked. QRC packaging is recommended. Also, keep in mind some of us, decompile the CDR files is not a big problem.

Most important here is that BlackBerry is not really allow the download of BARs without control. If you distribute them, your problem.

Tags: BlackBerry Developers

Similar Questions

  • Would that the Accordion with any contents scroll bar

    Ive been messing around with signs in Accordion for a while now and I can't seen so he could look with a scroll bar and be full height.  So I want the content to always be 100% the size if the content with no scroll bar. Here is the SpryAccordianCSS;

    . Accordion {}
    overflow: visible;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-right-color: #9FEE00;
    border-bottom-color: #9FEE00;
    border-left-color: #9FEE00;

    . {AccordionPanel}
    margin: 0px;
    padding: 0px;
    }

    . {AccordionPanelTab}
    background-color: #FF4900;
    border-top: 1px solid black;
    border-bottom: 1px solid gray;
    margin: 0px;
    padding: 2px;
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    }

    . {AccordionPanelContent}
    overflow: visible;
    margin: 0px;
    padding: 0px;
    height: 100%;
    }

    Here is the link to the document showing you how to proceed:

    http://labs.Adobe.com/technologies/Spry/articles/accordion_overview/index.html

    Unfortunately there are no links in the document, then just search for this text in your browser:

    Define heights variables Panel

    It's almost the end of the document.  This should give you the answer you need.

  • Content Pack: Bar color graphic Tags & enable & E-mail JSON for alerts

    Hello

    I am writing a content pack. I am facing following issues. Can someone help me how to solve or provide the link to the documentation to write the contents of the pack.

    #1 I want to make different colors for the different gravity events such as errors in the red bar in the graph. How to provide this JSON file.

    #2 by default alerts are in disable mode, I would like to know the "JSON" parameter to activate the alert.

    #3 How to deliver mail to report id in the JSON file?

    Murali

    #1 I want to make different colors for the different gravity events such as errors in the red bar in the graph. How to provide this JSON file.

    It is not possible today. That you is impossible to graphics in the web user interface. We are considering this for a future version.

    #2 by default alerts are in disable mode, I would like to know the "JSON" parameter to activate the alert.

    It is not possible today. Content packs are supposed to be generic, so they can be applied to any instance of Log Insight. Alerts can be configured with either an address of electronic mail or via vCenter operations. Two of these types of alerts will be specific to a particular environment. To activate an alert, you must specify an email address or vCenter information Operations (once again not possible the content pack)

    #3 How to deliver mail to report id in the JSON file?

    Same as #2 - is not possible.

  • How maintain "created content" visibility of the data despite my sorting preferences?

    I go to my account and choose "created content" to display in my details. However, when I sort the items by, say 'year' I lose all data "created content" until I got close the file and reopen it via 'my computer '. How can I solve this problem of sorting?

    Hey SweetNess0,

    Happen you to all folder locations

    This should not happen under normal circumstances.

    Please see if the problem persists in the two scenarios below.

    Scenario 1: Check in safe mode

    Just to cover all bases, test the behavior in safe mode. Safe mode starts Windows with a limited set of files and drivers. So if the problem is not reappear when you start in safe mode, you can eliminate the default settings and basic as possible cause device drivers.

    Reference: start your computer in safe mode

    Scenario 2: New user account

    If you have another user account, or better still, if you create a new user account, you can test this behavior in the other account. This will help determine if the problem is related to the corrupted profile.

    For a full tutorial on the same, see: create a user account

    Previous post the results so that we can analyse this issue.

    Kind regards

    Shinmila H - Microsoft Support

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Content visibility problem JavaFX TableView.

    Hello!
    I wrote a simple code to display the table with "data". There are also some TextFields and add the touch that takes the text of TextFields and adds it to the Table in a new line.
    I have this problem that the table is correctly adding new lines, but it does not show its contents (the boxes are empty) and I have no idea where the problem is. Can anyone help?
    Thanks in advance,
    Filip
    package javafxtable;
    
    import javafx.application.Application;
    import javafx.beans.property.SimpleDoubleProperty;
    import javafx.beans.property.SimpleIntegerProperty;
    import javafx.beans.property.SimpleStringProperty;
    import javafx.collections.FXCollections;
    import javafx.collections.ObservableList;
    import javafx.event.Event;
    import javafx.event.EventHandler;
    import javafx.geometry.Insets;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.control.*;
    import javafx.scene.control.cell.PropertyValueFactory;
    import javafx.scene.layout.GridPane;
    import javafx.scene.layout.HBox;
    import javafx.scene.paint.Color;
    import javafx.stage.Stage;
    /**
     *
     * @author Filip Kania
     * [email protected]
     */
    
    public class JavaFXTable extends Application {
     
            public class Product{
    // creating fields for the Product class
            //ID integer
            private SimpleIntegerProperty id;
            //name String
            private SimpleStringProperty name;
            //quantity Integer
            private SimpleIntegerProperty quantity;
            //price per unit Double
            private SimpleDoubleProperty unitPrice;
            //summary price double
            private SimpleDoubleProperty sumPrice;
            
            public Product(int id2, String name2, int quantity2, double unitPrice2){
                this.id = new SimpleIntegerProperty(id2);
                this.name = new SimpleStringProperty(name2);
                this.quantity = new SimpleIntegerProperty(quantity2);
                this.unitPrice = new SimpleDoubleProperty(unitPrice2);
                this.sumPrice = new SimpleDoubleProperty(quantity2*unitPrice2);
            }
            //Getters and setters for the Product
            private String getName(){
                return name.get();
            }
            private int getID(){
                return id.get();
            }
            private int getQuantity(){
                return quantity.get();
            }
            private double getSumPrice(){
                return sumPrice.get();
            }
            private double getUnitPrice(){
                return unitPrice.get();
            }
            private void setName(String name){
                this.name.set(name);
            }
            private void setQuantity(int quantity){
                this.quantity.set(quantity);
            }
        }
     
     //fields for the JavaFXTable class
        private TableView<Product> table  = new TableView<Product>();
        private final ObservableList<Product> data = FXCollections.observableArrayList(
                new Product((int)1,"Sample1",(int)5,(double)19.99),
                new Product((int)2,"Sample2",(int)3,(double)75.99),
                new Product((int)3,"Sample3",(int)12,(double)3.49)
            );
        private TextField idT, nameT, quantityT, priceT;
              
            
        @Override
        public void start(Stage stage) {
            //title of main frame
            stage.setTitle("JavaFX TableView");
            //size of main frame
            stage.setWidth(750);
            stage.setHeight(430);
            
            //main group for the stage
            Group root = new Group();
            
            //main scene for the main group
            Scene scene = new Scene(root,Color.SILVER);
            
            //creating ID column and setting preffered width
            TableColumn id = new TableColumn("ID: ");
            id.setPrefWidth(50);
            id.setCellValueFactory(new PropertyValueFactory<Product,String>("id"));
            
            //creating name column and setting preffered width
            TableColumn name = new TableColumn("Name: ");
            name.setPrefWidth(150);
            name.setCellValueFactory(new PropertyValueFactory<Product,String>("name"));
            
            //creating all other columns with default width
            TableColumn quantity = new TableColumn("Quantity: ");
            quantity.setCellValueFactory(new PropertyValueFactory<Product,String>("quantity"));
            //mother column for prices
            TableColumn price = new TableColumn("Price");
            //unit price cooooolumn
            TableColumn unitPrice = new TableColumn("Per unit: ");
            unitPrice.setCellValueFactory(new PropertyValueFactory<Product,String>("unitPrice"));
            //summary price column
            TableColumn sumPrice = new TableColumn("Summary: ");
            sumPrice.setCellValueFactory(new PropertyValueFactory<Product,String>("sumPrice"));
            
            //adding unit and sum columns to price column
            price.getColumns().addAll(unitPrice, sumPrice);
            
            //setting preffered table size to the stage size
            table.setPrefSize(stage.getWidth()-250, stage.getHeight()-80);
             
            //TextFields for input data to table
            nameT = new TextField();
            nameT.setPrefWidth(80);
            quantityT = new TextField();
            quantityT.setPrefWidth(80);
            priceT = new TextField();
            priceT.setPrefWidth(80);
            idT = new TextField();
            idT.setPrefWidth(80);
            
            //GridPane for the TextFields to keep them nicely
            GridPane inputPane = new GridPane();
            inputPane.setHgap(10);
            inputPane.setVgap(10);
            inputPane.setPadding(new Insets(0,0,0,10));
            
            //putting TextFields and labels into GridPane
            inputPane.add((new Label("Name: ")),1,1);
            inputPane.add(nameT, 3,1);
            inputPane.add((new Label("ID: ")),1,2);
            inputPane.add(idT,3,2);
            inputPane.add((new Label("Price: ")),1, 3);
            inputPane.add(priceT,3,3);
            inputPane.add((new Label("Quantity: ")),1,4);
            inputPane.add(quantityT,3,4);
            
            //Creating button for adding data from textFields into table
            Button addBut = new Button("  Add  ");
            //EventHandler for button, while mouse clicked on it
            addBut.setOnMouseClicked(new EventHandler(){
                @Override
                public void handle(Event e){
                    try{
                    data.add(new Product(Integer.parseInt(idT.getText()),nameT.getText(),
                           Integer.parseInt(quantityT.getText()), Double.parseDouble(priceT.getText())));
                    }
                    catch(Exception ex){
                        System.out.println("Empty fields or illegal arguments passed.");
                    }
                }
            });
            
            //adding button to GridPane
            inputPane.add(addBut, 1,6);
     
           //adding items to table
           table.setItems(data);
           
           //adding all columns to the tableView
            table.getColumns().addAll(id, name, quantity, price);       
            //crating VBox for whole thing
            HBox hBox = new HBox();
            hBox.setPadding(new Insets(10,10,10,10));
            hBox.getChildren().addAll(table, inputPane);
            
            //adding table to the main group
            root.getChildren().add(hBox);
                   
            //setting scene as a stage Scene
            stage.setScene(scene);
            //showing the stage
            stage.show();
        }
        //launching
        public static void main(String[] args) {
            launch(args);
        }
    }

    Hello. The code below works. Check your property of product class definition.

    import javafx.application.Application;
    import javafx.beans.property.SimpleDoubleProperty;
    import javafx.beans.property.SimpleIntegerProperty;
    import javafx.beans.property.SimpleStringProperty;
    import javafx.collections.FXCollections;
    import javafx.collections.ObservableList;
    import javafx.event.ActionEvent;
    import javafx.event.Event;
    import javafx.event.EventHandler;
    import javafx.geometry.Insets;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.control.*;
    import javafx.scene.control.cell.PropertyValueFactory;
    import javafx.scene.layout.GridPane;
    import javafx.scene.layout.HBox;
    import javafx.scene.paint.Color;
    import javafx.stage.Stage;
    /**
     *
     * @author Filip Kania
     * [email protected]
     */
    
    public class JavaFXTable extends Application {
    
         public    class Product{
    // creating fields for the Product class
            //ID integer
            private SimpleIntegerProperty id = new SimpleIntegerProperty() ;
            public SimpleIntegerProperty idProperty() {return id;}
            public void setId(Integer value){id.set(value);}
            public int getID(){return id.get();}
    
            private SimpleStringProperty name = new SimpleStringProperty() ;
            public SimpleStringProperty nameProperty() {return name;}
            public void setName(String value){name.set(value);}
            public String getName(){ return name.get();}
    
            private SimpleIntegerProperty quantity = new SimpleIntegerProperty();
            public SimpleIntegerProperty quantityProperty() {return quantity;}
            public void setQuantity(Integer value){quantity.set(value);}
            public int getQuantity(){return quantity.get();}
    
            //price per unit Double
            private SimpleDoubleProperty unitPrice = new SimpleDoubleProperty();
            public SimpleDoubleProperty unitPriceProperty() {return unitPrice;}
            public void setUnitPrice(Double value){unitPrice.set(value);}
            public Double getUnitPrice(){return unitPrice.get();}
    
            private SimpleDoubleProperty sumPrice = new SimpleDoubleProperty();
            public SimpleDoubleProperty sumPriceProperty() {return sumPrice;}
            public void setSumPrice(Double value){sumPrice.set(value);}
            public Double getSumPrice(){return sumPrice.get();}
    
             public Product(int id2, String name2, int quantity2, double unitPrice2){
                this.id = new SimpleIntegerProperty(id2);
                this.name = new SimpleStringProperty(name2);
                this.quantity = new SimpleIntegerProperty(quantity2);
                this.unitPrice = new SimpleDoubleProperty(unitPrice2);
                this.sumPrice = new SimpleDoubleProperty(quantity2*unitPrice2);
            }
    
        }
    
     //fields for the JavaFXTable class
        private TableView table  = new TableView();
        private final ObservableList data = FXCollections.observableArrayList(
                new Product((int)1,"Sample1",(int)5,(double)19.99),
                new Product((int)2,"Sample2",(int)3,(double)75.99),
                new Product((int)3,"Sample3",(int)12,(double)3.49)
            );
        private TextField idT, nameT, quantityT, priceT;
    
        @Override
        public void start(Stage stage) {
            //title of main frame
            stage.setTitle("JavaFX TableView");
            //size of main frame
            stage.setWidth(750);
            stage.setHeight(430);
    
            //main group for the stage
            Group root = new Group();
    
            //main scene for the main group
            Scene scene = new Scene(root,Color.SILVER);
    
            //creating ID column and setting preffered width
            TableColumn id = new TableColumn("ID: ");
            id.setPrefWidth(50);
            id.setCellValueFactory(new PropertyValueFactory("id"));
    
            //creating name column and setting preffered width
            TableColumn name = new TableColumn("Name: ");
            name.setPrefWidth(150);
            name.setCellValueFactory(new PropertyValueFactory("name"));
    
            //creating all other columns with default width
            TableColumn quantity = new TableColumn("Quantity: ");
            quantity.setCellValueFactory(new PropertyValueFactory("quantity"));
            //mother column for prices
            TableColumn price = new TableColumn("Price");
            //unit price cooooolumn
            TableColumn unitPrice = new TableColumn("Per unit: ");
            unitPrice.setCellValueFactory(new PropertyValueFactory("unitPrice"));
            //summary price column
            TableColumn sumPrice = new TableColumn("Summary: ");
            sumPrice.setCellValueFactory(new PropertyValueFactory("sumPrice"));
    
            //adding unit and sum columns to price column
            price.getColumns().addAll(unitPrice, sumPrice);
    
            //setting preffered table size to the stage size
            table.setPrefSize(stage.getWidth()-250, stage.getHeight()-80);
    
            //TextFields for input data to table
            nameT = new TextField();
            nameT.setPrefWidth(80);
            quantityT = new TextField();
            quantityT.setPrefWidth(80);
            priceT = new TextField();
            priceT.setPrefWidth(80);
            idT = new TextField();
            idT.setPrefWidth(80);
    
            //GridPane for the TextFields to keep them nicely
            GridPane inputPane = new GridPane();
            inputPane.setHgap(10);
            inputPane.setVgap(10);
            inputPane.setPadding(new Insets(0,0,0,10));
    
            //putting TextFields and labels into GridPane
            inputPane.add((new Label("Name: ")),1,1);
            inputPane.add(nameT, 3,1);
            inputPane.add((new Label("ID: ")),1,2);
            inputPane.add(idT,3,2);
            inputPane.add((new Label("Price: ")),1, 3);
            inputPane.add(priceT,3,3);
            inputPane.add((new Label("Quantity: ")),1,4);
            inputPane.add(quantityT,3,4);
    
            //Creating button for adding data from textFields into table
            Button addBut = new Button("  Add  ");
            //EventHandler for button, while mouse clicked on it
            addBut.setOnMouseClicked(new EventHandler(){
                @Override
                public void handle(Event e){
                    try{
                    data.add(new Product(Integer.parseInt(idT.getText()),nameT.getText(),
                           Integer.parseInt(quantityT.getText()), Double.parseDouble(priceT.getText())));
                    }
                    catch(Exception ex){
                        System.out.println("Empty fields or illegal arguments passed.");
                    }
                }
            });
    
            //adding button to GridPane
            inputPane.add(addBut, 1,6);
    
           //adding items to table
           table.setItems(data);
    
           //adding all columns to the tableView
            table.getColumns().addAll(id, name, quantity, price);
            //crating VBox for whole thing
            HBox hBox = new HBox();
            hBox.setPadding(new Insets(10,10,10,10));
            hBox.getChildren().addAll(table, inputPane);
    
            //adding table to the main group
            root.getChildren().add(hBox);
    
            //setting scene as a stage Scene
            stage.setScene(scene);
            //showing the stage
            stage.show();
        }
        //launching
        public static void main(String[] args) {
            launch(args);
        }
    }
    
  • "Prioritize the visible content" in Google PageSpeed Insights

    Hi all

    I know that some measures are not controllable in Muse.

    Should this question do more with the HTML vs literally 'prioritize' content? I just want to be sure, there is nothing I can do to achieve this.

    Thank you!

    PageSpeed comment:

    Your page requires back and forth to render the above content at the time of the network. For best performance, reduce the amount of HTML code necessary to render the content above both.

    The entire HTML response was not sufficient to make the content above both. This indicates generally, additional resources after parsing HTML, were required to display content above both. Prioritize content visible which is necessary for rendering above both by registering directly in the HTML response.

    • None of the final content above at the same time could be made even with the complete HTML response.

    Google makes more important or even essential, to create web pages, how they think they should be created. They prefer even a style inline on the separation of semantically structured content with cascading style. Well, just read their proposals on things like Google AMP, and you will get a notion of where are all these "tips". He sends just a thrill in the back of the web...

  • The "Show bookmarks" icon disappears when the display of the menu bar. How can I see both?

    Accidentally, I dragged my mouse over the link to bookmarks on the right part of the bookmarks toolbar, and he disappeared. I restarted the browser in safe mode and bookmark link was back, but the menu bar was not visible. When I do the menus visible bar, the bookmarks link disappears again, even if the rest of the bookmarks are visible. How can I get the favorite link so the bar menus visible at the same time?

    Right-click on an empty space on a toolbar, and you will get the Customize option. You will get a pane with icons that can be dragged the toolbar. The tabs list icon is the one I think you have dragged. You can also use the reset option [restore default set]

  • The Menu bar and status bar disappeared, but the worst of all the tabs is at the top of my computer. It's very annoying! How can I uninstall Firefox 4 and return to the old?

    Please tell me how I can go back to the old format

    If you don't like the new look of Firefox 4, then you can change some settings to restore the appearance of Firefox 3.

    You can right click on the orange Firefox button to open the menu of the toolbar or use (F10) view > toolbars.

    • Click on the entry in the Menu bar to make the menus visible bar.
    • Click "Tabs at the top" to remove the check mark and place the tab to its original position bar just above the browser window.

    You can use this extension to retrieve the status bar:

  • FN bar does not appear after you have reinstalled Windows on Satellite A200

    Hello.
    First of all, sorry if my English is not very good, but I am French.
    After a format, I installed some of the drivers of Toshiba. But, I'm not the bar at the top of the screen when I press the "fn". So I would like to know how the driver I need to install to have this bar.
    PS: I have a Satellite A200.
    Thank you for your help and I hope that you will understand me.

    Hello

    Do not install some drivers but all only if you want to use all the features of Toshiba laptops ;)

    The visible bar that controls the FN keys is Toshiba Vista Flashcards.
    You can find this utility in the Toshiba value added package.

    But note; the common Modules located in the package of Toshiba value added too must be installed first!

    Good bye

  • Linked file moves around on the change of layer visibility

    Guys I'm confused, could not understand how 'fix' file (pin down) an embedded AI in ID.

    Draw vector maps in artificial intelligence, now compose in ID, I have encountered any problems [CS6]:

    1. the card is a great vector map with layers, info, areas and roads

    2. in the ID, the same card is used in different zooms in their widows, where, the selective layers are hidden, using "Object Layer Options."... »

    OOPS!

    3. hide a layer and move the content!

    Question: y at - it no way to PIN down related content!

    BUG?

    This is so the logic I tried to imagine and invented a solution, but the fix not working, it seems a bad logic or at least there should be an option to simply pin-the-content


    The fix:

    1. ensure that all layers also spread them (or at least the ones you intend to hide) in all directions (x and y)

    2. hide a layer should not affect the "limits" of content (visible). If so it will effect a change in the content of ID

    This problem solved has worked and so I extended the object (Fortunately it was a large background rectangle) of complete line of content for. Phew!

    (answer key embedded related) edited by: Nikhil Varma

    Looks like that maybe you selected "Art" or "Bounding Box" for the harvest option when you've placed the graphic. Change the visibility of the layer would change the dimensions of those boxes of cultures.

  • Need to change the text in the "Basic Transaction button bar" button

    Hi all

    I have an obligation to change the text of the "Preview settings" custom text button in ' * Basic Transaction button Bar * "model. Is there a way we can achieve this? If so, please let me know how I can open it this model.

    Thank you
    Vijay

    Vijay-

    You cannot change a seeded content model. You must instead make a copy of it, modify it and use the copy in your user interface.

    In the Configurator developer repository, access the User Templates interface-> content-> button bar models models and make a copy of the Basic Transaction button bar model. (You can leave your copy in the folder models bar button if you like, or create in any other folder of your choice.) Open the new template for editing and change the button Configuration Overview, change its Source of the legend (and perhaps his flipping text Source as well), the new text that you want to appear on the button.

    Once you have changed your new template to your liking, change the node root of the user interface you want to use and utility models of the user interface definition section, choose your new template for the Basic Transaction model.

    I hope this helps!

    Mathgamain

  • Marked "Show TOC", but does not appear in the project.

    Cp6: In the play bar, there is a TOC button, and when you click it, a table of contents appears, however, it is floating on the project. Is there a way to remove the button table of contents in the PlayBar? I think if it is removed, the TOC 'regualr' will appear. Thank you!

    It's a little more complicated than that, but...

    Go to project > Table of contents > settings.  The distinct Style value.

    The button contents will be gone and you will now have a table of contents visible permanently.

  • Ive tried all the solutions that you recommend and Firefox still does not load the Web site.

    I deleted the cache and cookies, scanned for malware (none found) tried to disable my anti-virus, block ad and other programs. That is, works very well with this site, but firefox will not load. I do not receive the error messages, just a white screen empty after about 30 seconds of loading time. Here is a screenshot: thttp: / /prntscr.com/dd1501 I looked through all the options for firefox and nothing that I don't seem to make any difference. I can view the information page and I do not get a glimpse of what I would see when I choose the different elements in the window. It is also a site that I had been going every day without any problem until the last 2 weeks.

    Sorry, I just realized that I can visit the page and this experience for me.

    The page contains a style rule display: no for the body that completely hides it. It is supposed to clear at one point, but obviously does not work.

    To make the content visible, you can run a small script in the console, or save it as a bookmarklet for easy access, but also you should post this on the site in case they have not noticed.

    The console method

    Open the web console of Firefox under the page using

    • CTRL + SHIFT + k
    • button '3-bar' menu > developer > Web Console
    • (menu bar) Tools > Web Developer > Web Console

    Then paste this script and press ENTER to run it. Then, you can close the console:

    document.body.style.display = "";
    

    Bookmarklet

    If this affects the pages you visit often (as a person without an account, I don't know much on this site), you can save a script as a bookmark in an ideal location for use with a single click.

    To implement that:

    • Select and copy the following script:

      javascript:void(document.body.style.display = "");

    • Right click a place on the bookmarks Menu or Bookmarks Toolbar where you want to save the script and choose new bookmark
    • In the location box, paste the script, and then in the name box, type something you remember as TradeKing and click the Add button

    To use the bookmarklet:

    Once the page is loaded, click on the bookmarklet to run the script on the page.

  • Shorten the length of the blade according to the State of an inserted SWF file

    My question may be advanced.  I am using Captivate 4 for this project.

    I am trying to create a manual online that describes a technical system.

    I created multiple SWF files for the various components and inserted them into a master project of Captivate.  I use the table of contents in the main project to provide navigation components.

    My problem is that the SWF file to show the various components have a visible bar of 'control'.  Since it is an event (without audio) we slowed down (some say too slow) for slow readers.  But given the control bar allows readers 'faster' the ability to speed upward and etc.

    My question, so if a user it accelerates and reaches the end of the file SWF slide continues until the 'period' is over.  For example, I have an embedded SWF which is 66 seconds long, the blade must be 66 seconds long to allow it to play fully.  I tried to adjust various settings and the settings of the imported video, but no matter what the video should be 66 seconds before I can do anything with the slide that hosts it.

    Any ideas?  I do not control the imported SWF file (which is actually a published Captivate project) and I do not master the file SWF Captivate "accommodation".

    Main reason for which is "broken apart", is can I outsource the various resources so I individual file charges "on-demand" and does not have a massive SWF file.

    Before asking, I thought using the Aggregater, but it does not work in Internet Explorer (HTM file) and will not cross the Preloader and my audience does not flash drives as I do.

    Hi Ziqiel, hope I will find the solution.

    I use the same technique as you Captivate 3. I insert the SWF on a main project. So, I insert a clickable area with options to "Stop the project until user click ' and 'no action '. You place this box anywhere on your slide where the swf file. It shut down the main project, but your swf will continue to play until the user clicks a button to continue.

    It is clear to you? And is it useful?

  • To get the message that I am offline. Don't want to reset and lose the extensions. How can I go back online?

    Using the version 27.0.1and since a few days I get messages that I am working in offline mode. I think I clicked on the 'work offline' instead of the 'exit' in the file menu in the menu dropdown. Windows 7 Pro 64 bit. How to bring back 'online '?

    "Firefox > Web Developer > work offline" has a check mark?

    You need to make the menus visible bar if you want to check in the file menu.

    • Press the F10 key or press the Alt key to bring up the hidden menu bar.

Maybe you are looking for