load the content (jpg, swf, etc.) but not on stage

I'm familiar with the syntax of typical to load a piece of external content in a video... but is it possible to load an external video for somewhere off the stage, so you can use it later? For example - to load a JPG file it becomes an asset with a login link?

Thank you!

DZ,
Load in a clip just like you would with any content. But,
its visibility set to false. Then, set its visibility to the true you need
it.

placeHolder._visible = false.
placeHolder.load (myJPG.jpg)

--

Dan mode
--> Adobe Community Expert
* Flash help * http://www.smithmediafusion.com/blog/?cat=11
* THE Radio * Online http://www.tornadostream.com<--check>

* Must read * http://www.smithmediafusion.com/blog

"DZ-015" wrote in message
News:eu13st$Jio$1@forums. Macromedia.com...
> I am familiar with the typical syntax to load a piece of external content
> in a
> movie clip... but is it possible to load an external clip somewhere off the coast
> step so that you can use it later? For example - to load a JPG file, then it becomes a
> asset with a login link?
>
> Thank you!
>

Tags: Adobe Animate

Similar Questions

  • Just starting to use flash CC pro using a PC. The mouse does not work on all popup windows. It works very well on the selection of everything etc, but not on the pop-up windows? Any advice? Thanks, Jim

    Just starting to use flash CC pro using a PC. The mouse works on everything except the popup windows. Any advice? Thanks, Jim

    kglad and Mohan, thanks for the help. I found what was wrong. I had the text of the rule too high DPI screen. I lowered and the mouse works on everything except that it's harder for me to see.HA apparently it was causing a conflict with the mouse. Maybe this will be useful to help someone else down the line. Thanks again, Jim

  • Why Safary does not load the content of pages?

    Why Safary does not load the content of pages? I mean, when I hover over the places where should be the content, he is always showing the "redirect to: [email protected]/" lower left. My Safari is 9.5 and worked fine until Safe Fimder Virus get inside my computer. Mozilla Firefox is a bit slower. If someone could give me an idea on how to deal with it, I would be happy.

    Sorry if my English is not good, I am a Brazilian who is still learning English

    Your English is very good!

    Redirects are usually due to adware or malware.

    Download the run MalwareBytes.

    It of free and takes only a minute or two. Which should remove all adware and malicious software on your Mac.

  • On facebook I can't watch my friends with the name of Tracey I can using my phone app I can with Chrome etc but not on my PC Tower firfox

    On facebook I can't watch my friends with Tracey name I can use my phone app I can with Chrome etc but not using Firefox on my PC Tower

    Hello

    To better help you with your question, please provide us with a screenshot. If you need help to create a screenshot, please see How to make a screenshot of my problem?

    Once you have done so, attach the file to screen shot saved to your post on the forum by clicking on the button Browse... under the box to post your reply . This will help us to visualize the problem.

    Thank you!

  • Loading an image works on Z10, but not on the Q5

    I use FilePicker to load an image from the library by using the following code

    Container {
            ...
    
            ImageView {
                id: imgView
                verticalAlignment: VerticalAlignment.Center
                horizontalAlignment: HorizontalAlignment.Center
                scalingMethod: ScalingMethod.AspectFit
                maxHeight: 250
                minHeight: 100
                bottomMargin: 30.0
    
            }
    
        }
        Container {
            verticalAlignment: VerticalAlignment.Bottom
            horizontalAlignment: HorizontalAlignment.Fill
            bottomPadding: 30.0
            leftPadding: 30
            rightPadding: 30
    
            Button {
                id: btnSelectImg
                topPadding: 25
                horizontalAlignment: HorizontalAlignment.Fill
                text: qsTr("Select Image") + Retranslate.onLocaleOrLanguageChanged
                onClicked: {
                    console.log("FilePicker")
                    picker.open()
                }
    
                attachedObjects: [
                    FilePicker { //image picker
                        id: picker
                        property string selectedFile
                        type: FileType.Picture
                        title: qsTr("Select Image") + Retranslate.onLocaleOrLanguageChanged
                        onFileSelected: {
                            imgView.imageSource = "file://" + selectedFiles[0];
                        }
    
                    }
                ]
            }
        }
    }
    

    Copy the following code to display the image correctly on Z10, but not on Q5 however both running the same version.

    No idea what could be the problem?

    It turns out that the problem is exactly as described by dbigham, ImageView can handle images up to a certain size depedning on the device.

    I added a C++ code to resize the image before feeding it to QML

    QML code:

    ImageView {
                id: imgView
                attachedObjects: [
                    ImageTracker {
                        id: imgViewTracker
    
                        onStateChanged: {
                            if (state == ResourceState.Loaded)
                            {
                                imgView.image = imgViewTracker.image
                                console.log("Shared image loaded correctly!")
                            }
                            else if (state == ResourceState.ErrorMemory)
                            {
                                console.log("Shared image load: Error Memory!")
                            }
                            else if (state == ResourceState.ErrorInvalidFormat || state == ResourceState.ErrorNotFound) {
                                console.log("Shared image load: " + state + "!")
                            }
                        }
                    },
                    FilePicker { //image picker
                        id: picker
                        property string selectedFile
                        type: FileType.Picture
                        title: qsTr("Select Image") + Retranslate.onLocaleOrLanguageChanged
                        onFileSelected: {
                            _app.loadImage(selectedFiles[0],300,200)
                            imgViewTracker.image = _app.image;
                        }
    
                    }
                ]
    
            }
    

    C++ code:

    void ApplicationUI::loadImage(QString strImageFileName, int width, int height)
     {
         QImage image;
    
         image.load(strImageFileName);
    
         image = image.scaled(width, height, Qt::KeepAspectRatioByExpanding);
    
         QImage swappedImage = image.rgbSwapped();
         if(swappedImage.format() != QImage::Format_RGB32) {
             swappedImage = swappedImage.convertToFormat(QImage::Format_RGB32);
         }
         const bb::ImageData imageData = bb::ImageData::fromPixels(swappedImage.bits(), bb::PixelFormat::RGBX, swappedImage.width(), swappedImage.height(), swappedImage.bytesPerLine());
    
         m_image = bb::cascades::Image(imageData);
         emit imageChanged();
     }
    
    QVariant ApplicationUI::image() const
     {
         return QVariant::fromValue(m_image);
     }
    

    C++ header:

    class ApplicationUI : public QObject
    {
    ...
    
    Q_PROPERTY(QVariant image READ image NOTIFY imageChanged)
    
    public:
    ...
    
    Q_INVOKABLE void loadImage(QString strImageFileName, int width, int height);
    
    signals:
    ...
    
    void imageChanged();
    
    private:
    ...
        QVariant image() const;
        bb::cascades::Image m_image;
    
  • If sendAndLoad() returns correctly in the swf file, but not when they are incorporated...

    If sendAndLoad() returns correctly in the swf file, but not when they are incorporated, does this mean that I am missing something in my html code?

    I use generic Flash embed code generated from Dreamweaver.  I can post more information if necessary.

    Thank you

    Peter

    peterbrinson wrote:

    Very useful.

    Is it because my swf/html and the database are in very different places?

    Yes, they are in different domains and adobe imposes restrictions on what a swf file can do with the data from one server to another (from the swf) area.

    Are you talking about a PHP or ASP file that integrates the swf?

    lol you create an executable file on the same server that hosts your swf.  This executable can query your database and not trigger cross-domain issues.

    your swf file can send and receive data from and to this executable without triggering cross-domain issues.

  • The content of my emails are not displayed when I open in my usual Firefox. However, if I open in Explorer of all contents are displayed. I prefer Firefox and don't want to go back to explore. Can you please help me with this situation?

    I've always been able to open my emails and access their content using Firefox. Now, this morning, I can no longer access the content of my emails, but can still open.
    I called "virginmedia" that me told to try to use Solution Explorer, who has worked, and I was told that the problem was with Firefox.

    It is not ADP, is ABP = d lockB has Pread

    AdBlock Plus itself does not actually block anything it's the filters that are blocking. Changing to a subscription different could fix this, or just find out what filter blocks that you want to see or load.

    Each filter can be disabled in itself to eliminate the problems like this. In the preferences of the ABP, look at the column "Last shot" after loading reloading the page to see which filters have been used to block items listed on this page - date & time. Selectively disable the filters that were used at the end, to understand that we block you want to see. Uncheck Enabled to disable this filter.

    Then, contact the Manager of subscription lists and report filter that is causing your problem, which can be fixed for everyone using this subscription. Contact information is probably at the beginning of the filter list in the preferences.

    ! Please report any unblocked adverts or problems
    ! in the forums ( http://forums.lanik.us/ )
    ! or via e-mail ( [email protected] ).
    

    Here again, if anyone else has reported this problem will be fixed automatically the next time that your subscription is updated, the update frequency is 5 days for the most popular filter lists. You can do a manual update in the menu Filters > update all subscriptions in the preferences of the ABP.

  • Load the content problem (address)

    Hey

    I hope you can help me...

    I created a site in Flex 4 that load the content of a database. Site but fine...

    the address is: http://coldhawaiispotguide.com

    But if I type the address with "www".

    Example: http://www.coldhawaiispotguide.com

    The site failed to load content?

    Are there some who have an explanation for this problem?

    Thank you

    Troels

    Flash security both URLS are not equivalent and therefore a security boundary

    will be in effect.  You can use a crossdomain.xml file to manage different

    ways to express the URL if you do not find a way to make them all use the

    exact same domain name.

  • Loading the content of the old iPhone to new iPhone

    I was very disappointed when I tried to load the content from my old iPhone in my iPhone via iTunes. I received an error message saying something to the effect that my iPhone backup file was too old or obsolete. I had everything backed up my old iPhone an hour before. It would have saved me a lot of time if I could use this backup for my new iPhone. Very disappointing to have it loaded as a new iPhone (containing only the Apple iPhone applications.)

    Are you sure that you don't have a message indicating that the new phone could not use the old backup because the old backup contained a new version of the iOS the new phone has on it? You cannot restore a backup from a device running a newer iOS on a device with an older version of iOS on it. In this scenario, you must update the new phone to the latest version before you can use this backup.

  • Im trying to change the content of my internet but it askes me the supervisor password and I never set one what do I do?

    Im trying to change the content of my internet but it askes me the supervisor password and I never set one what do I do?

    * original title - I do not know my supervisor password by trying to change the content of my internet, how can I know? *

    Hello

    1. what operating system is installed on your computer?

    2. what version of Internet explore is installed on your computer?

    3. you are the administrator of the computer?

    4. what internet content are you trying to change?

    5. where are you trying to change the content?

    Refer to this article on the lost or forgotten password: http://support.microsoft.com/kb/189126 of Microsoft's strategy concerning lost or forgotten passwords

  • I want to have a form of lead pop up when a user clicks on an ad on Facebook, Google, etc, but not when a user organically finds my site. I have to create a whole new separate landing page?

    I want to have a form of lead pop up when a user clicks on an ad on Facebook, Google, etc, but not when a user organically finds my site. I have to create a whole new separate landing page?

    "Great sites" with additional technologies can easily intercept incoming requests to a certain page, with all sorts of additional information in the URL (from the related announcement, like this: http://typekit.com/fonts?locale=nl-NL&ref=globalnav&promoid=KRUVR ) and whisk a popup, refer to a different page or activate another script or process of deciding what must happen. But Muse creates a 'static' website with the URL of the page simple, without special scripts or ruffles or processes to decode an additional URL to a query.

    Creating a page of special destination somewhere elsewhere in the Web site to refer to, may be the simplest solution.

  • I can't understand why the latter splits the live preview... but not in the browser?

    I finally got my site to the top and everything runs great... except that I can't understand why this page behaves as if it was too broad.

    http://www.johnnez.com/mainbooks.html

    He is defeated in the live preview... but not in the browser preview.

    Thanks for the tips...

    Jn

    Well, I was looking at your code for a longer period that is now in good health and the only thing I can think is to ask if you want to have two container div with a class of content?

    I don't know if it's the anser but you can try to delete one of these and then find an of the

    Tags to balance that up.

    Try just to comment on the following:

    Then put in the comment end tag and see if that helps.

    Just a thought

    Martin

  • How to load the contents of a layer as a selection in photoshop CS4

    Hello

    In photoshop cs4 when I ctrl-click on a layer thumbnail in the layers panel, photoshop select any layer not its content.  How to load the contents of a layer as a selection in photoshop cs4?

    Thank you

    to load the contents of the layer as a selection, you go to the Panel layers and Ctrl + click on the RGB.

  • Can I turn off the sound for a website but not computer?

    I like to play POGO games all of which come with a certain type of sound effects, but at the same time, I like to listen to my radio station streaming favor. How can I disable the sound for Web sites but not my music streaming?

    If it is an individual, video or audio on a web page, you can try to turn off or disable the audio using the audio and video controls on the web page, or you can install an extension that adds this functionality. It is called mute, and you can install it from https://addons.mozilla.org/en-US/firefox/addon/muter/

  • In Mac Mail the contents of my email does not appear on the right side in mac maila

    In Mac Mail the contents of my email does not appear on the right side as it should. I checked all the settings, anyone ever had this problem before and going to knowwhat?

    Please, back up all data. Rebuild the mailbox.

Maybe you are looking for