Title window moving

Hello,
in my application , when client open a title window i.e popup window. i am allowing him to move the title window.till now is ok.
but problem is that he can move popup with in only application.
i want he can move or drag a popup over a browser.
any help....
thanks..

In an AIR app, you can use the Window component to create a new top-level window.

Similar Messages

  • Problems with titler window losing focus

    I'm using PP2.0, running on windows XP x64. It's been running since it was last re-installed in December 2007 (after a problem with codecs that broke PP2), and I've made no changes to it or to any of the support processes it uses, nor any changes to the OS (apart from service packs). There have been NO driver changes, window layout changes, workspace changes, or any other changes (apart from entropy). The mouse I'm using is a [oxymoron]Kensington Expert Mouse Pro[/oxymoron], with their latest (i.e. 2007) drivers, and XMouse ver 1.37.0.0 (i.e. their latest x64 driver), but this happens regardless of the mouse or keyboard I use.
    To set the scene... I use a "standard" title template for all my video work, with predefined text fields and colours and so on. There's nothing bizarre or extraordinary about these templates, they're actually super simplistic in terms of what most users here use their titlers for! The entire title is completely static - there are no scrolling or moving anythings, the title is overlaid on black video, there are just a dozen simple text boxes and one standard logo (bmp format), that's it. I use only Arial fonts, with no special settings or kerning or spacing or anything more complex than colour. I haven't touched or modified the original titler template since I set it up in December 2008. The problem I'm seeing happens to any titles, not just the known working template, so it's definitely a PP2 problem, not a titler problem.
    The problem is that recently (in the past 3-4 months, over maybe 5 projects in that time) the titler window loses focus while I'm using it, and the PP2 main application becomes active.
    When I bring the titler window up (using any method) and start editing, that window loses focus (window frame reverts to the background windowframe colour) and I can't type or do anything else in the titler window.The PP2 app window suddenly become the active window, and remains active until I shut down the titler.
    My workaround is to click and hold in the titler window, on or around the text I want to edit. So by pressing and holding the left mouse button, I can insert text just fine in any existing text frame. And by selecting text with the left button and then holding it (like I'm starting a drag operation), I can _replace_ the selected text - but as soon as I release the mouse button, the focus leaves the titler and I can't do anything again.
    I've reset the workspace, changed mouse and keyboards, but the problem isn't a hardware or driver issue. PP2 is the only application that behaves like this, and it's the only Adobe application that behaves like this - Photoshop (5.5 and CS8) and Audition (1.5 and 3.0) all work perfectly normally.
    This behaviour occurs with titles I've used and saved in previous working projects, it happens with new blank titles, and so on.
    What I've noticed most recently while trying to fix the problem, is that sometimes I can actually type a couple of letters or hit an editing key or two in the titler window normally, but then the titler loses focus and keeps it lost permanently after that. That doesn't always happen, and it doesn't appear to be related to process flow. So restarting PP2, or closing and reloading a project, don't affect the arbitrary nature of the "sometimes starts to work" behaviour. I can sometimes re-edit a title in the same project after editing the title with the focus lost, and suddenly the first few keystrokes are normal, but then the focus reverts to the main app.
    If anyone has any ideas or suggestions to try (apart from reinstalling the application again or upgrading), I'd be most grateful.
    -PCPete

    I think you're right, it's starting to look like another problem within the "new" PP2 installation. It's such a complex app, it's not surprising it gets lost.
    Since this is the only app that has this problem (and because of the nature of the problem), I know it's not a graphics card or driver issue.
    This appears to be a high-level windows function problem, to do with the way the PP2 app is handling the modal form. It's probably not the mouse driver, since I don't move the mouse outside of the child window, but that doesn't leave much else. I don't have popups or any other asynchronous applications (like email warning windows or balloon-type reminders or notifications) either.
    I really don't want to go through the horror of yet another reinstall of an Adobe product if I can possibly avoid it, but pending no other useful ideas, that is an absolute last resort.

  • When i open finder the windown is a completely blank grey box with the title "Window" as a header, and all my folders will not open when clicked

    when i open finder the windown is a completely blank grey box with the title "Window" as a header, and all my folders will not open when c
    the problem started when my computer screen broke from something falling on it, the screen was replaced but the people that fixed it for me told me there may be some hard disk issues when a problem like this happens, they ran their own checks and found nothing and i was given my laptop back, then when i tried to use it, i found this problem. everything else works fine.
    i have shutdown and re-started my computer multiple times and i have also re-started finder multiple times, both having no effect
    i have also done a few other things to find that my apple.com.finder.plist and apple.com.sidebar.plist are both missing, and are not re-creating themselves, i have found no way to bring them back either.
    any help would be greatly appreciated, thanks

    there is an app called daisydisk on mac app store which will help you see exactly where the memory is focused and consumed try using that app and see which folders are using more memory

  • Using a repeater to pass content to a title window

    Hi I have a repeater that has a button and the button open a title window component from flex
    So far I use the name property of the button to pass the title from the repeater to the title of the titlewindow
    here it is:
    Vimeo is the name of the repeater
    <mx:button name="{vimeo.currentItem.title}"
    on the as3:
    myWindow.title=event.currentTarget.name;
    so far I can open it with the names from the list.
    Also I have an html inside of the title window and I want to set its location from the parameters of the repeater
    so here is when it start to be hard to imagine a way to retrieve that information from the repeater and pass it to
    the location.
    here is my code.
    import mx.managers.PopUpManager;
                        import mx.containers.*;
                                  import mx.controls.Alert;
                                  import mx.rpc.events.FaultEvent;
                                  import mx.rpc.events.ResultEvent;
                                  import flsWindow;
                                  private function openWindowVimeo(event:MouseEvent):void{
                                            var myVimeoWindow:TitleWindow= TitleWindow(PopUpManager.createPopUp(this, flsWindow, true));
                                            myVimeoWindow.width=800;
                                            myVimeoWindow.height=600;
                                            myVimeoWindow.title = event.currentTarget.name;
                                            var myHtml:HTML= new HTML;
                                            myHtml.location={myText.text};//tried to make this happens though is always with error;
                                            myHtml.width=800;
                                            myHtml.height=600;
                                            myHtml.x=0;
                                            myHtml.y=0;
                                            myVimeoWindow.addChild(myHtml);
    <mx:HTTPService id="vimeoService" url="http://vimeo.com/api/v2/iglesiafls/videos.xml" resultFormat="e4x" fault="onFault(event)"/>
    <mx:XMLListCollection id="myVimeoList" source="{vimeoService.lastResult.video}"/>
              <mx:VBox width="340" height="334" x="699" y="422">
                        <mx:Repeater id="vimeo" dataProvider="{myVimeoList}">
                        <mx:Image source="{vimeo.currentItem.thumbnail_medium}" width="200" height="150"/>
                        <mx:Text id="titleText" text="{vimeo.currentItem.title}" color="#F5FBFC" fontSize="14" width="300"/>
                        <mx:Text text="{vimeo.currentItem.description}" color="#F5FAFB" width="300"/>
                        <mx:Text text="{vimeo.currentItem.url}" id="myText"/>
                        <mx:Button  name="{vimeo.currentItem.title}" label="ver video" click="openWindowVimeo(event)" enabled="true"/>
      </mx:Repeater>
      </mx:VBox>

    I have this resolved already

  • Calling a method in Parent component from Title Window

    Hi all,
    I have a parent component that opens up a Title window when I
    click a button. Now I want to call a method in that parent
    component from the Title window. How do I do this in Flex? Could
    anyone give me a hint please.
    Thank you in advance for the help

    "happybrowndog" <[email protected]> wrote in
    message
    news:gctmql$4t5$[email protected]..
    > That's goddamned ridiculous. What were Flex developers
    thinking that you
    > have
    > to write a custom event to call back to a parent
    component?? Other GUI
    > libraries such as WxWidgets, Fox, Qt, Delphi, MFC,
    WinForms, etc., all
    > allow
    > you to either call via a reference to the parent object
    or submit a
    > callback
    > function into the child object. That's just basic OO
    programming. Flex
    > is
    > looking more and more ridiculous and more like Swing -
    tons of unnecessary
    > coding to do simple things.
    You absolutely _do_ have the capability to pass in a
    reference to the parent
    component, or to create a "hard" reference to
    Application.application. But
    these are not recommended practices, because anything you
    create this way is
    then tied to an environment that implements those properties
    and methods.
    Q (3): I want to run a function in my main application from
    inside my
    custom component. But when I try to refer to myFunction() in
    that
    component, I get a compile time error Call to a possibly
    undefined function
    myFunction. How can I fix this?
    A: Your component has its own scope, so it doesn't know
    anything
    about the functions in the main file. You can get around this
    by directly
    referencing the main application scope like this:
    Application.application.myFunction(). However, this makes
    your component
    tightly coupled, which is a quick way of saying that your
    component is only
    usable in an application that has a myFunction() function in
    it. You're
    better off dispatching an event from your component and
    letting the
    application decide how to handle it. For more information,
    check out the
    following resources:
    http://www.adobe.com/devnet/flex/articles/loose_coupling.html
    http://www.adobe.com/devnet/flex/articles/graduating_pt1.html
    From
    http://www.magnoliamultimedia.com/flex_examples/Amys_Flex_FAQ.pdf

  • How to set custom size of Close Button e.g. 32x32  of Title Window in Flex 4

    How to set custom size of Close Button e.g. 32x32 of Title Window in Flex 4?

    Hi
    Here is the code of the Button in the skin class of spark title window.
    <s:Button id="closeButton" skinClass="spark.skins.spark.TitleWindowCloseButtonSkin"
                              width="15" height="15" right="7" top="7" />
    So first change the default height and width from 15 to 32. Then in the Button Skin class i.e. spark.skins.spark.TitleWindowCloseButtonSkin change paths to modify the cross symbol.
    Hope this helps
    Rush-me

  • Problem with the Titler WIndow

    Hello,
    I don't know how it happened but the titler window is saparate in 2 windows : one with the title by it self and the other one with tools and buttons.
    How is it possible to have only one window again ?
    Thank you for your help and regards,
    Daniel

    Daniel,
    Though I would expect it to be in Eddie's link, you only need to go to Window (in the Toolbar at the top of the GUI), choose Workspaces, and then choose one of the default Workspaces listed, or any Custom Workspaces that you might have created. Hint: once you get a Workspace set up the way you like it, do save it as a Custom Workspace. Can save a lot of time later. I have about a dozen, plus the ones that ship/install with PrPro and use them for different tasks.
    Good luck,
    Hunt

  • How to put the background image in Title Window?

    Hi,
    I'm newbie in flex. I 'm using Flex 4.
    Can anyone give me some guidelines on how to put the background image in Title Window?
    Is it possible to do this?
    Thanks.

    Hi,
    Check the below sample code
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Style>
            @namespace s "library://ns.adobe.com/flex/spark";
            @namespace mx "library://ns.adobe.com/flex/mx";
            s|BorderContainer {
                background-image:Embed(source="image/wheres_the_green_rez.jpg");
                background-image-fill-mode:clip;
        </fx:Style>
        <s:TitleWindow width="100%" height="100%">
            <s:BorderContainer width="100%" height="100%"/>
        </s:TitleWindow>
    </s:Application>
    Regards,
    Anitha

  • IFrame(child container) still visible after closing the title window(parent container)

    Hi All ,
    I have created a sample project using a link button which when clicked opens up an TitleWindow which has an iframe and a text area in a hbox
    When you execute the application ,
              Click the link button
              The Popup window opens up showing the title window with the close button
              Click the close button of the title window
              The Title window is removed and the iframe and the text area are not visible
    Do this a couple of times
    You can notice that the iframe is still visible even when the title window is closed
    Can someone explain me how this issue can be resolved and also explain me why the iframe(child container) is still visible when the title window(parent container) is not visible. 
    Main Application file
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application
        width="100%" height="100%" creationPolicy="all"
        xmlns:mx="http://www.adobe.com/2006/mxml"
        layout="vertical" creationComplete="init()"
        xmlns:containers="containers.*">
       <mx:Script>
       <![CDATA[
           import mx.managers.PopUpManager;
           import containers.PopUpBrowser;
           public function doRequest():void
                    var requestPopup:PopUpBrowser = PopUpManager.createPopUp(this, PopUpBrowser) as PopUpBrowser;
                    PopUpManager.addPopUp(requestPopup,this);
                    requestPopup.x = 220;
                    requestPopup.y = 50;
       ]]>
       </mx:Script>
       <mx:Text fontSize="14" fontWeight="bold" text="Click the link button below to open the Title Window" />
       <mx:Spacer height="100"/>
       <mx:LinkButton label="Click me" fontSize="16" fontWeight="bold" click="doRequest()"/>
    </mx:Application>
    PopUpBrowser.mxml Component
    <?xml version="1.0" encoding="utf-8"?>
    <mx:TitleWindow
        xmlns:mx="http://www.adobe.com/2006/mxml"
        close="removeMe()"
        showCloseButton="true"
        styleName="myTitleWindowStyle"
        width="850" height="500"
        title="Klout User Profile"
        paddingTop="1" paddingBottom="1"
        paddingLeft="1" paddingRight="1"
        xmlns:generic="com.serendio.voom.components.generic.*"
        xmlns:flexiframe="http://code.google.com/p/flex-iframe/"
        horizontalScrollPolicy="off"
        verticalScrollPolicy="off" >
        <mx:Script>
            <![CDATA[
                import mx.managers.PopUpManager;
                public function removeMe():void
                    PopUpManager.removePopUp(this);
            ]]>
        </mx:Script>
        <mx:HBox width="100%" height="100%">
        <flexiframe:IFrame source="http://www.google.com" id="iFrame" width="50%" height="100%"/>
        <mx:TextArea text="Open and close the title window few times and watch the iframe remain visible even when the title window is closed"
             fontSize="14" width="50%" height="80%"/>
        </mx:HBox>
    </mx:TitleWindow>
    Thanks,
    Ajantha

    Hey,
    This is working fine for me with the current 4.5 Flex, Firefox 3.6.12, IE8. On what browser you are getting this error.
    Thanks,
    Jayagopal.

  • Panel, title window buttons

    Hi everybody
    I wonder, i know its possible to add buttons, to the titlebar
    of a title window, but i don't know how its done, can someone
    explain me please? or send me a link with a tutorial. Also i'd like
    to know if its possible to add another type of controls such as
    input text or combobox.
    Thanks

    Here's a sample I've created, it just so happens I'm
    currently working on something similiar.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="
    http://www.adobe.com/2006/mxml"
    width="400" height="300">
    <mx:XML id="cmbXML">
    <root>
    <item label="item one" />
    <item label="item two" />
    </root>
    </mx:XML>
    <mx:TitleWindow width="100%" height="100%"
    layout="absolute" title="Title Window Test">
    <mx:Button label="Button" right="10" bottom="10"/>
    <mx:Button label="Button" right="83" bottom="10"/>
    <mx:TextArea left="10" right="10" top="10"
    bottom="40"/>
    </mx:TitleWindow>
    <mx:Image source="images/common/cross.png" right="10"
    top="6"/>
    <mx:ComboBox right="40" y="4"
    dataProvider="{cmbXML.item}" labelField="@label" />
    </mx:Canvas>
    The only challenge is, as a popup window I can't drag it
    around, i have to let the mouse drag event fall through to the
    canvas somehow.

  • Video titling behind moving objects

    i recently saw a titling effect in a video, in which a motorcycle drove across the screen and as it passed a title appeared behind it. how does one create video titling behind moving objects? i have no experience in animation, so i'm guessing that the video layer is duplicated and the top layer masked, frame by frame? would an 8-point garbage matte work?

    You won't have an easy time doing this in FCP, but Motion, After Effects, or ultimately Shake, can do this a lot easier. You have to rotoscope the motorcycle, accounting for the rims, and space between the engine parts, or anywhere else where you would logically see through to the background, then duplicate that layer on top of the original, with the text in between the two layers. Depending on how long the clip is, you're in for a long haul. But if the footage is anything but DV25, clip analysis and automated keyframing might serve you well as a starting point after the initial mask is made.

  • How do you change image size in the title window?

    I just changed operating systems to Windows 7, which meant that I had to re install Premiere Pro CS4. I am now working on a 64 bit system. Might not make any difference, but thought I would give you the specifics just in case.  When I pull up the title window to add a title to my clip, the image is about the size of a postage stamp. How do I increase the size of the image in that window?

    Thank you again for responding Hunt. I did find out what what was happening.
    I had to reinstall the program on my computer. I just upgraded to Windows 7, and I now have a 64 bit system. When I booted up PPCS4, I assumed that my settings would be the same as they were before when I had Vista installed and didn't bother to check them when I started a new project. Well, they were not. I also added a TV tuner card to my computer. I now can watch HD TV on my computer. I suppose that it is possible that somehow PPCS4 noticed that, and set my default settings to HD, rather than NTSC DV. I just merrily went along clicking the OK button and started editing. When I start a new project now, I select NTSC DV and the Title window works just fine, and exactly the way I expect it to.
    I just received Jeff Bellune's book Adobe Encore DVD 2.0 in the mail and will be totally immersed in Encore studies today. With all of his children, I don't see how he had time to write it, but I'm glad that he did. I also ordered a book entitled Designing Menus with Encore DVD. I know that it was written for an earlier version than CS4, but I will trust what you said about that. Many things are the same with some minor variations due to upgrades in the program. The basic ideas don't change, but how you accomplish them can, and usually do over time.
    Terry Lee Martin
    Date: Mon, 17 Aug 2009 16:04:16 -0600
    From: [email protected]
    To: [email protected]
    Subject: how do you change image size in the title window?
    Welcome to the forum.
    That is an odd one. The Title should be the same Frame Size as your Project/Sequence. What is it's Frame Size? Also, are you perhaps doing a Title based on an older Template, that was done for a different Frame Size?
    What happens if you choose Title>New Title>Default Still?
    Good luck,
    Hunt
    >

  • Title Window is minimized and I can't edit it??

    Hi there guys,
    System: MacIntosh (Intel)
    Adobe Premiere Pro CS4
    This is a newb question, however it's a problem I can't seem to fix and it's buggin me. As you can see in the picture i've added, the window for editing the title is extremely small, and therefore I can't edit it. How can I make the window viewable again. And while I'm at it, (if you look at the picture again) my "Properties" bar is not nested or "docked" within the Title maker, is there a way to reverse this?
    Thanks in advance.
    [email protected]

    Hi John,
    Thanks for the reply, I tried using Cmd+alt+shift and Ctrl+alt+shift and both did not work, the title window is still barely viewable. Do you know of any other way of doing this?
    However I found this
    http://kb2.adobe.com/cps/331/331083.html
    To reset preferences
    Windows
    CS3  Hold Control down
    CS2 hold down Ctrl+Alt+Shift
    MacIntosh
    CS3 Hold Option
    CS2 Hold Cmd+Option+Shift
    However as i've mentionned before im using CS4...
    This link http://kb2.adobe.com/cps/311/311231.html
    says to delete the Preference cache, yet I can't find it in the System files or through a Finder search (basically a search for all the Windows people)

  • Dispatching an event while closing a title window

    my app requires some data to be refreshed whenever a new data is submitted
    the new data is submitted in a form that opens in a seperate title windiw and i want to dispatch some sort of an event or indication which can be listened to in my main program so that data can be refreshed as soon as the window is closed .....
    the close event doesnt work because i close my title window manually at the submission of data , without clicking on the close button , ... I tried making a custom event and dispatching but doesnt seem to work out .... I am quite a beginner so please help me out with this ....
    thanks a lot

    go through these links once:
    http://livedocs.adobe.com/flex/3/html/help.html?content=createevents_3.html
    http://livedocs.adobe.com/flex/3/html/help.html?content=events_07.html

  • What Event is Triggered When a Title Window is Shown?

    I am creating the Title Window Component once, and then
    showing it with PopUpManager.addPopUp, and hiding it with
    PopUpManager.removePopUp. I need to run some logic each time the
    PopUp is shown. However, I can't figure out what Event is triggered
    when the TitleWindow is "opened". The window is there, it's just
    not being displayed. This make me think that "show" would be
    triggered, but it is not. I also tried "add", but this threw a RTE.
    Any thoughts?
    Thanks.

    Since I couldn't find an Event to trigger, I am instead using
    an override of protected function commitProperties() to run my
    logic.

Maybe you are looking for

  • Photoshop CS2 crashes after Colormunki (X-Rite) update 1.1.1

    I have resolved this issue through the x-rite tech support (who called me back within 4 hours) but since I posted it on a different thread I wanted to share my experience. I am using cs2 with snow leopard (10.6.1) on a mac book pro 2,2 and immeditate

  • How to use 89c51 in Multisim

    Hi, we are using a 89c51 in LCD Interfacing Program, but can't find the 89c51 in equipment list, can anyone help please here ? We have multisim 13 edition

  • Ot: TV Tuner not working

    This is a bit Off Topic, only read it when you have the time I finally came round to draw some TV cable to my computer, so I can hook the TV tuner on my Radeon AIW up. I am very sure the cable 'has' signal, becuase I hooked a tv on the cable and that

  • Bad intel chip

    My laptop is only a few months old been having problems for about 5 weeks installing adobe flash player known fact that adobe is having trouble installing only on intel computers not only that my computer freezes when trying to download anything beco

  • Finder doesn't show new folders/files

    I've just created some new folders and files using the "save as" dialog from within Photoshop CS 8.0. Irritatingly, they don't show up in Finder. I can find them using the File>Open dialog in PS, or using, for example, Transmit. This seems like a ver