Use of Touch Drag Enter/Exit

I want to delete an item when click a button and drag it into a trash button. Can I and how can I do this by using Touch Drag Enter and Exit in Builder?

Hi Big Will,
I'm afraid I misunderstand your issue.  Let's get straight on some terminology so I can help you better.
1-"2 steps at the same time" to me means that you have two different steps in your sequence but you want them to execute simultaneously and asynchronously of each other.   OR 
2- it could mean that you have one step and the batch model is set up to run two different testsockets which would create two different threads for the same step.  Then you want those two different threads to run at the same time.  OR
3-it could mean that you have 2 steps in a sequence that execute in order and for those two steps you want a synchronized section in which the steps get executed at the same time within each thread your batch process model spawns.  Which one do you mean?
First of all that is the incorrect usage of the Batch Synchronization step.  That step is for different threads of the same sequence.  So like your batch model will spawn 3 testsockets (threads) of the same sequence.  The synch sections are for synchronization among the threads.  Not for steps within a single thread. 
I'm attaching a small example of what I think you want.
jigg
CTA, CLA
teststandhelp.com
~Will work for kudos and/or BBQ~
Attachments:
Asynch2Steps_Old2.seq ‏31 KB

Similar Messages

  • I recently bought a used iPod touch generation 5 and reset it (erased everything from it because the previous owner left a passcode on it) and I had to enter my language,wi-fi stuff, and then it said "Activate iPod" I don't know the owners info! Help?

    I recently bought a used iPod touch generation 5 and reset it (erased everything from it because the previous owner left a passcode on it) and I had to enter my language,wi-fi stuff, and then it said "Activate iPod" This iPod is currently linked to an Apple ID (c*****@k*****.net). Sign in with the Apple ID that was used to set up this iPod. The man who sold it to me said he bought it from another guy and sold it to me..So, I don't know what to do! I searched it up and it said you could go to iCloud and iTunes, but It's not working for me. Please help!!

    A little more information:
    You are running against the Activation Lock
    iCloud: Find My iPhone Activation Lock in iOS 7
    If you can't get this done
    Find My iPhone Activation Lock: Removing a device from a previous owner’s account
    you have a thin brick. I suspect your iPod was stolen or lost. I would turn it into the police since it is worthless to you if you can't get the previous owner to remove from their account

  • My iPod touch is lock and my brother was trying too use it and he  entered the wrong code  too many times

    IPod touchMy iPod touch is lock and my brother was trying too use it and he  entered the wrong code  too many times

    Ok
    I may be able to help you .
    If you backed up your iPod prior to it being locked you may be in luck.
    1. Hook it up to your Mac or PC
    2.Open iTunes
    3.Click on your iPod (on the left hand side somewhere)
    4.Click on restore (in the centre somewhere)
    5.follow the onscreen instructions
    Once you have restored the device there should be an option that says restore from back up.
    Click on that.
    Hopefully this works. If it doesn't please let me no.

  • How do I use assistive touch to recover my ipod touch

    So I want to recover my ipod because I forgot the password and I need to put it in recovery mode, but my home button broke. And it's a 5th gen, if that matters.

    Place the iPod in recovery mode using one of these programs and then restore via iTunes:
    For PC
    RecBoot: Easy Way to Put iPhone into Recovery Mode
    or
    http://joshuabailey1997.wordpress.com/2010/09/02/recboot-v1-3/
    If necessary:
    Download QTMLClient.dll & iTunesMobileDevice.dll for RecBoot
    and                                           
    RecBoot tip
    RecBoot may have problems on 64X windows, then try:       
    Tenorshare ReiBoot – Enter & Exit iPhone, iPad, iPod Recovery Mode with a Single Click
    For MAC or PC       
    The Firmware Umbrella - TinyUmbrella
    Installs blootware on PC too

  • My ipod touch has entered restore mode, but when I attempt to restore it I get the error code 1604.

    My daughters ipod touch has entered restore mode, but when I attempt to carry out a restore I get an error code 1604.
    Any easy solution to this problem?

    Error 1604: This error is often related to USB timing. Try changing USB ports, uninstalling and reinstalling USB ports, and other available USB troubleshooting steps (troubleshooting USB connections, device not recognized properly, computer won't recognize a FireWire or USB device). If you are using a dock, bypass it and connect directly to the white Apple USB dock connector cable. If the issue persists on a known-good computer, the device may need service.
    If the issue is not resolved by USB isolation troubleshooting, and another computer is not available, try these steps to resolve the issue:
    Connect the device to iTunes, confirm that the device is in Recovery Mode. If it's not in Recovery Mode, put it into Recovery Mode.
    Restore and wait for error 1604.
    When prompted, click OK.
    Close and reopen iTunes while iPhone remains connected.
    iPhone should now be recognized in Recovery Mode again.
    Try to restore again.
    If the steps above do not resolve the issue, try restoring using a known-good USB cable, computer, and network connection.
    Above from:
    http://support.apple.com/kb/TS3694

  • DataGroup Drag Enter Issue/Question (FB4)

    I'm working with Flash Builder 4, Flex 4 and I'm having difficulty in getting the drag events to fire, in particular the Drag Enter event. I have 2 dataGroups with a custom layout and itemRenderer. I'm attempting to drag an element from one DataGroup and drop it into the other DataGroup. In Flex 3, when I dragged something over a container, the event.CurrentTarget was the container, and I could then tell the container to accept the dragged item. In Flex 4, the dragEnter event isn't firing when I drag something over the DataGroup. It ONLY fires when I drag something over one of the rendered items in the DataGroup. Below is the code for the application, DataGroup, CustomLayout, and itemRenderer. If you debug the application and drag an item in the first DataGroup over the second DataGroup, note that you don't get the trace statements. If you drag the item so that the mouse passes over one of the elements in the second DataGroup, THEN the DragEnter events fires.
    Application:
    <?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" xmlns:ns1="*" >
    <fx:Script>
    <![CDATA[
    import mx.events.DragEvent; 
    private function dragEnterHandler(event:DragEvent):void { 
    trace ("Drag Enter"); 
    trace (" Target: "+event.target.id); 
    trace (" Current Target: "+event.currentTarget.id);}
    private function dragDropHandler(event:DragEvent):void { 
    trace (event.currentTarget.id);}
    ]]>
    </fx:Script>
    <s:SkinnableContainer top="0" left="0" right="0" bottom="0" id="dgContainer" >
    <ns1:myDataGroup left="5" id="dgOne" top="5" bottom="5" width="200" depth="1" dragEnter="dragEnterHandler(event)" dragDrop="dragDropHandler(event)"/>
    <ns1:myDataGroup left="226" id="dgTwo" top="5" bottom="5" width="200" depth="1" dragEnter="dragEnterHandler(event)" dragDrop="dragDropHandler(event)"/>  
    <mx:VRule left="213" top="0" bottom="0"/>
    </s:SkinnableContainer></s:Application>
    DataGroup:
    <?xml version="1.0" encoding="utf-8"?><s:DataGroup xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="
    library://ns.adobe.com/flex/spark" xmlns:mx="
    library://ns.adobe.com/flex/mx" dataProvider="{myAC}" width="
    100%" height="100%" xmlns:myLayout="myLayout.*" itemRenderer="iRenderer"creationComplete="addEventListener(RESIZE_CLICK, resizeHandler,
    false, 0, true);" initialize="cLayout.setLayout();" name="
    myDGroup" >
     <fx:Declarations>
     <!-- Place non-visual elements (e.g., services, value objects) here -->
     </fx:Declarations>
     <fx:Script>
    <![CDATA[
     import mx.collections.ArrayCollection; 
    import mx.events.DragEvent; 
    Bindable] 
    public var myAC:ArrayCollection = new ArrayCollection([{Height: 100, Label:
    "Test # 1", xPos: 0},{Height: 200, Label:
    "Test # 2", xPos: 0}]);
    public static const RESIZE_CLICK:String = "resizeClick"; 
    protected var resizingElement:iRenderer; 
    protected var initX:Number; 
    protected var initY:Number; 
    public var itemID:Number; 
    public function resizeHandler(event:MouseEvent):void { 
    if (event.target.name == 'iRenderer') {resizingElement = iRenderer(event.target);
    initX = event.localX;
    initY = event.localY;
    itemID = Number(resizingElement.uid);
    systemManager.addEventListener(MouseEvent.MOUSE_MOVE, mouseMoveHandler,
    true);systemManager.addEventListener(MouseEvent.MOUSE_UP, mouseUpHandler,
    true);}
    protected function mouseMoveHandler(event:MouseEvent):void {event.stopImmediatePropagation();
    if (resizingElement.height + event.stageY - initY > 49) {myAC[itemID].Height = myAC[itemID].Height + event.stageY - initY;
    resizingElement.height = resizingElement.height + event.stageY - initY;
    initY = event.stageY;
    protected function mouseUpHandler(event:MouseEvent):void {cLayout.setLayout();
    this.invalidateDisplayList();systemManager.removeEventListener(MouseEvent.MOUSE_MOVE, mouseMoveHandler,
    true);systemManager.removeEventListener(MouseEvent.MOUSE_UP, mouseUpHandler,
    true);}
    ]]>
    </fx:Script>
     <s:layout>
     <myLayout:customLayout id="cLayout" />
     </s:layout>
     </s:DataGroup>
    CustomLayout:
    package 
    myLayout {
     import mx.collections.ArrayCollection; 
    import mx.core.ILayoutElement; 
    import spark.components.DataGroup; 
    import spark.components.supportClasses.GroupBase; 
    import spark.components.supportClasses.ItemRenderer; 
    import spark.layouts.supportClasses.LayoutBase; 
    public class customLayout extends LayoutBase { 
    public var layoutTarget:GroupBase; 
    public var count:int; 
    public var dataProvider:ArrayCollection; 
    public var maxHeight:Number = 0; 
    public var maxWidth:Number; 
    public var x:Number; 
    public var y:Number; 
    public function setLayout():void {layoutTarget =
    this.target;dataProvider = ArrayCollection(DataGroup(target).dataProvider);
    count = layoutTarget.numElements;
    dataProvider.source.sortOn([
    "Height"], [Array.NUMERIC | Array.DESCENDING]); 
    if (dataProvider[0].Height > dataProvider[1].Height) {dataProvider[0].xPos = 0;
    dataProvider[1].xPos = 60;
    else if (dataProvider[1].Height > dataProvider[0].Height) {dataProvider[1].xPos = 0;
    dataProvider[0].xPos = 60;
    override public function updateDisplayList(containerWidth:Number, containerHeight:Number):void {  
    for (var ii:int = 0; ii < count; ii++) { 
    // get the current element, we're going to work with the 
    // ILayoutElement interface 
    var element:ILayoutElement = layoutTarget.getElementAt(ii); 
    var item:ItemRenderer = target.getElementAt(ii) as ItemRenderer; 
    // Resize the element to its preferred size by passing 
    // NaN for the width and height constraintselement.setLayoutBoundsSize(NaN, NaN);
    // Find out the element's dimensions sizes. 
    // We do this after the element has been already resized 
    // to its preferred size. 
    var elementWidth:Number = element.getLayoutBoundsWidth(); 
    var elementHeight:Number = element.getLayoutBoundsHeight();item.uid = String(ii);
    y = 0;
    x = dataProvider[ii].xPos;
    // Find maximum element extents. This is needed for 
    // the scrolling support.maxWidth = 50;
    maxHeight = dataProvider[ii].Height;
    // Position the elementelement.setLayoutBoundsPosition(x, y);
    element.setLayoutBoundsSize(maxWidth, maxHeight);
    // Scrolling support - update the content sizelayoutTarget.setContentSize(maxWidth, maxHeight);
    ItemRenderer:
    <?xml version="1.0" encoding="utf-8"?><s:ItemRenderer focusEnabled="false" xmlns:fx="
    http://ns.adobe.com/mxml/2009" xmlns:s="
    library://ns.adobe.com/flex/spark"height="
    100%" width="100%" alpha="1.0" buttonMode="true" useHandCursor="
    true" xmlns:mx="library://ns.adobe.com/flex/halo"mouseOut="mouseOutHandler(event)"
    mouseMove="mouseMoveHandler(event);"
    mouseDown="mouseDownHandler(event);"
    name="
    iRenderer" depth="1" xmlns:ns="library://ns.adobe.com/flex/mx">
     <s:states>
     <s:State name="State1"/>
     <s:State name="modify"/>
     </s:states> 
    <fx:Script>
    <![CDATA[
     import mx.core.DragSource; 
    import mx.managers.CursorManager; 
    import mx.managers.DragManager; 
    Embed(source="images/reSize.gif")]  
    public var reSize:Class; 
    public static const RESIZE_CLICK:String = "resizeClick"; 
    private function mouseDownHandler(event:MouseEvent):void { 
    if (event.localY >= (this.height - 10) && event.localY <= this.height && event.currentTarget.name == 'iRenderer') {CursorManager.setCursor(reSize, 0, 0, -8);
    var rbEvent:MouseEvent = new MouseEvent(RESIZE_CLICK, true);rbEvent.localX = event.stageX;
    rbEvent.localY = event.stageY;
    dispatchEvent(rbEvent);
    private function mouseOutHandler(event:MouseEvent):void { 
    if (event.buttonDown == false) {CursorManager.removeAllCursors();
    private function mouseMoveHandler(event:MouseEvent):void { 
    var target:String = event.currentTarget.toString(); 
    var target2:String = event.target.toString(); 
    if (event.buttonDown == true && event.currentTarget.name == 'iRenderer' && event.localY < (this.height - 10)) { 
    var dragInitiator:ItemRenderer = ItemRenderer(event.currentTarget); 
    var ds:DragSource = new DragSource();DragManager.doDrag(dragInitiator, ds, event);
    else if (event.localY >= (this.height - 10) && event.localY <= this.height && event.currentTarget.name == 'iRenderer') {CursorManager.setCursor(reSize, 0, 0, -8);
    else {CursorManager.removeAllCursors();
    ]]>
    </fx:Script>
     <s:SkinnableContainer id="apPanel" top="0" bottom="0" left="0" right="0" >
     <!-- layer 1: border -->
     <s:Rect left="0" right="0" top="0" bottom="0">
     <s:stroke>
     <s:SolidColorStroke color="#5E7788" alpha="1.0" weight="2" />
     </s:stroke>
     </s:Rect>
     <!-- layer 2: background fill -->
     <s:Rect id="background" left="1" top="1" right="1" bottom="1">
     <s:fill>
     <s:SolidColor color="0x5E7788" id="bgFill" alpha="1.0" />
     </s:fill>
     </s:Rect>
     <!-- layer 3: title bar fill -->
     <s:Rect left="2" right="2" top="2" height.State1="15" height.modify="30">
     <s:fill>
     <s:SolidColor color="white" alpha="1.0"/>
     </s:fill>
     </s:Rect>
     <s:Label id="titleDisplay" text="{data.Label}" top="3" left="2" right="2" height="15" verticalAlign="middle" fontWeight="bold" includeIn="State1" fontSize="10"/>
     </s:SkinnableContainer>
     </s:ItemRenderer> 

    DataGroup and SkinnableDataContainer do have all the necessary drag events, so I should be able to use them for manual drag & drop. I actually do think this could be a bug. However, I found an odd workaround. If I add a mouseOver event that does absolutely nothing, then it appears that I can drag and drop without issue. See following 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"height="100%" width="100%" xmlns:ns1="*">
    <fx:Script><![CDATA[
    import mx.events.DragEvent;import mx.managers.DragManager; 
    import spark.components.DataGroup; 
    private function dragEnterHandler(event:Event):void {trace ("Drag Enter");trace (event.currentTarget.id);DragManager.acceptDragDrop(DataGroup(event.currentTarget));
    private function mouseOverHandler(event:MouseEvent):void {//Without this function added, drag & drop stops working.
    private function dragDropHandler(event:DragEvent):void {trace ("Drag Drop");trace (" Target: "+event.currentTarget.id);trace (" y: "+event.localY);}
    ]]>
    </fx:Script>
    <ns1:myDataGroup id="dgOne" left="5" top="5" width="200" bottom="5" dragEnter="dragEnterHandler(event);" mouseOver="mouseOverHandler(event)" dragDrop="dragDropHandler(event)" /><ns1:myDataGroup id="dgTwo" left="220" top="5" width="200" bottom="5" dragEnter="dragEnterHandler(event);" mouseOver="mouseOverHandler(event)" dragDrop="dragDropHandler(event)" /><mx:VRule left="210" top="0" bottom="0" /></s:Application>

  • I have a balance of $17 on my itunes but it's not allowing me to use it without re-entering the code on the back.can this be avoided?

    I have a balance of $17 on my itunes but it's not allowing me to use it without re-entering the code on the back.can this be avoided?

    Hi Arzgard,
    Thanks for visiting Apple Support Communities.
    If there is an interruption to Apple services, you can find out on this page:
    http://www.apple.com/support/systemstatus/
    If you're not able to connect to the iTunes Store, I'd recommend starting with the troubleshooting steps in this article:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    Troubleshoot issues on an iPhone, iPad, or iPod touch
    If you haven't been able to connect to the iTunes Store:
    Make sure your date, time, and time zone are correct in Settings > General > Date & Time.
    Note: Time Zone may list another city in your time zone.
    Make sure that your iOS software is up to date by tapping Settings > General > Software Update (iOS 5 or later) or connecting your iOS device to iTunes and clicking Check for Update on your device's Summary page.
    Check and verify that you're in range of a Wi-Fi router or base station. If you're on a device with cellular service, make sure that cellular data is turned on from Settings > General > Cellular.
    Note: If connected to cellular data, larger items may not download. You may need to connect to Wi-Fi to download apps, videos, and podcasts.
    Make sure that you have an active Internet connection. You can check the user guide for your device for help with connecting to the Internet.
    Make sure that other devices (portable computers, for example) are able to connect to the Wi-Fi network and access the Internet.
    Try resetting (turning off and then on again) your Wi-Fi router.
    If the issue persists, try troubleshooting your Wi-Fi networks and connections.
    Regards,
    Jeremy

  • IPS not detecting packets Entering & Exiting Same Interface

    Hi,
    Consider scenario :-
    Host A--->Router B--->Router C
    All are in the same subnet
    Router C also has an active interface on another subnet.
    When I telnet from A to C (interface with ip address in another subnet),
    I force traffic from A to C to pass through B, by setting static routes AND ** DISABLING IP REDIRECTS ***
    Trafic flows from A to B IN through Fa0/0, and OUT again through Fa0/0 from B to C
    I have ACL's (permit/log) that show this flow !!!!
    I also have IPS enabled in/out on Fa0/0 on router B.
    However, traffic flowing through Router B, which enters / exits the same interface, does not get picked up by IPS. (I trigger signatures)
    Is this normal ?? Or am I missing something ?

    I don't use the router IPS, but I'll give it a shot;-) I don't understand the network config. I'll try to redraw the network to see if I understand what you're saying:
    Host A
    (NET1/IP1)
    |
    -------- (NET1/IP3) Router C (NET2/IP4)---
    |
    (NET1/IP2)
    Router B
    Host A uses Router B as its gateway to NET2 and since redirects are disabled on router B, all traffic from Host A to IP4 flows through router B. If the diagram above is correct though, return traffic from router C will not be routed through Router B because the destination is on the same network as router C. How are you getting return traffic to flow through router B?
    Based on the following doc:
    http://www.cisco.com/application/pdf/en/us/guest/products/ps6634/c1244/cdccont_0900aecd80327257.pdf
    If you're attempting to fire atomic signatures (single packet) then signatures should still fire anyway when inspected inbound. If you're attempting to trigger a stateful signature then this would be a plausible explanation.

  • Can not access home network via ipod touch, password entered  not accepted

    Can not access home network via ipod touch, password entered not accepted
    Trying to help my son set up his ipod touch to connect to the network and the password I entered is not accepted.
    1. Which password is required? I entered the password I use for logging into my router
    2. The home network is recognized, when selected it requires a password to be entered, but I am just not sure what password it is looking for to connect.
    I have not been able to find any information on this subject

    jersey0904, Welcome to the discussion area!
    You need to enter the wireless encryption password... not the administrative password for the router.

  • Mouse Enter/Exit Events

    Hi,
    I've got a question regarding mouse enter/exit events. Specifically, I would like to know why so many mouse enter/exit events are generated. Suppose you stack multiple Panes like this:
    @Override
    public void start(Stage frame) throws Exception {
         Pane root = new Pane();
         frame.setScene(new Scene(root));
         addEnterExitHandlers(root, "root");
         Pane fst = new Pane();
         root.getChildren().add(fst);
         addEnterExitHandlers(fst, "first");
         Pane snd = new Pane();
         fst.getChildren().add(snd);
         addEnterExitHandlers(snd, "second");
         Rectangle rect = new Rectangle(0, 0, 100, 100);
         snd.getChildren().add(rect);
         addEnterExitHandlers(rect, "rect");
         frame.show();
    The addEnterExitHandlers() method simply registers event handlers for MouseEvent.MOUSE_ENTERED_TARGET and MouseEvent.MOUSE_EXITED_TARGET which print the event type's name together with the specified string.
    The resulting output looks like this:
    root MOUSE_ENTERED
    first MOUSE_ENTERED
    root MOUSE_ENTERED_TARGET
    second MOUSE_ENTERED
    first MOUSE_ENTERED_TARGET
    root MOUSE_ENTERED_TARGET
    rect MOUSE_ENTERED
    second MOUSE_ENTERED_TARGET
    first MOUSE_ENTERED_TARGET
    root MOUSE_ENTERED_TARGET
    root MOUSE_EXITED
    first MOUSE_EXITED
    root MOUSE_EXITED_TARGET
    second MOUSE_EXITED
    first MOUSE_EXITED_TARGET
    root MOUSE_EXITED_TARGET
    rect MOUSE_EXITED
    second MOUSE_EXITED_TARGET
    first MOUSE_EXITED_TARGET
    root MOUSE_EXITED_TARGET
    This output is not accurate, because I inserted empty lines to visually group related elements.
    As you can see, a MOUSE_ENTERED event is fired for every node and all parent nodes receive MOUSE_ENTER_TARGET events. I just thought that it would be sufficient to only fire the last group of enter/exit events, respectively, i.e.:
    rect MOUSE_ENTERED
    second MOUSE_ENTERED_TARGET
    first MOUSE_ENTERED_TARGET
    root MOUSE_ENTERED_TARGET
    rect MOUSE_EXITED
    second MOUSE_EXITED_TARGET
    first MOUSE_EXITED_TARGET
    root MOUSE_EXITED_TARGET
    Is there a specific reason for the behavior?
    Best regards,
    Matthias

    Hi Matthias,
    yes, there is a reason for this. In vast majority of use-cases, the entered/exited handlers are added on a node to handle the case when mouse enters/exits the node. The _TARGET variants tell you "this node or some of its children was entered/exited", which is not quite it. So right now, if you want to check that fst was entered, you just do:
    fst.setOnMouseEntered(new EventHandler<MouseEvent>() {
      @Override public void handle(MouseEvent e) {
        // your code
    If we generated only the last group of events as you suggest, you would have to do:
    fst.addEventHandler(MouseEvent.MOUSE_ENTERED_TARGET, new EventHandler<MouseEvent>() {
      @Override public void handle(MouseEvent e) {
        if (e.getTarget() == fst) {
          // your code
    Even if we added the convenience handlers for the _TARGET variants (setOnMouseEnteredTarget), having to always check the target would be pretty annoying.
    Cheers,
    Pavel

  • If my iPhone 3GS turns on but cannot use the touch screen, could the Processor be the problem?

    I recently dropped my iPhone 3GS but cannot use the touch screen. I took to a local repair shop and they tried replacing the digitizer and some other items but still could not get it to work. They advised that the Processor could be the problem. Is this true? If so, can the processor be replaced without losing data? Additionally, my phone has a lock code and when I try to connect it to my desktop to back up, it states that I need to enter my 4 digit pin first, which of course I cannot. Any workarounds here or am I SOL?

    Hook the phone to a computer running iTunes and backup to the computer. Copy pictures off the phone manually to the computer.

  • How Do I Use iPod Touch In My Car?

    Do I need an adapter, similar to the old iTrip adapter, to use my Touch in my car, or does the RF set up with my in-car radio system?

    Hello and Welcome to Apple Discussions. 
    The only RF system in the +iPod touch+ is Wifi you'll need a 3rd party adaptor to work witn your FM car radio. Depending on the type the old iTrip may work.
    iPod touch FM Txers.
    Merry Christmas
    mrtotes

  • How can i remove pictures from my droid turbo without having to use the touch screen on the phone at all?

    how can i remove pictures from my droid turbo without having to use the touch screen on the phone at all?  my screen is cracked and i am waiting on a replacement phone.  as far as i can tell in order to access the phone storage through my computer, i have to use the touchscreen to enable it so that the computer will see it as a camera.  I can't do that as the top half of the touschscreen is unresponsive.  any suggestions?  teaches me to use the backup services offered in the future, but i still need a short term solution for this time.

        I'm sorry to hear your screen is cracked spence425. I know its difficult to use the phone while its damaged. I'm happy you are receiving a replacement device. Have you saved any of your pictures and other data to the cloud? Here is a link about the cloud http://vz.to/1mF0GIx . Unfortunately, you will be unable to remove any data from the phone if the screen is unresponsive but if you are looking to transfer data to your new phone, it would have needed to be saved via the cloud first. Keep us posted.
    Kinquana_VZW
    Follow us on Twitter @vzwsupport

  • I bought a used ipod touch 4th gen. how do I add it to my account?

    Hi I bought a used Ipod Touch (4th). It was wiped clean when I got it except it had the prev. owners apple Id still on it when we went to download an app.so I went in sign it out. then created a new acct with it under my apple Id. I have an Iphone 4 (the ipod is for my Daughter).I can download apps, Music etc. But when I do, I get an email from apple saying a device has downloaded a song etc. that is not recognized with my acct.I also when I plug it in to my laptop it does nothing, does not show up on my device list, no pop up to add it,no DING nothing.I take and plug in my Iphone(using the same cord) and Ding there it is..Anyone know how to add this new one to my act so I can use itunes on my pc. and not get the emails?  Also it has been updated to the IOS 4.3.4..Thnxs

    take it to apple store and schedule genius bar appointment.  your iPod is still under warrenty because that version is not even a year old.  They should replace it.  Good Luck!

  • How can I use table control to enter data

    Hi all,
    I want to use table control to enter data, instead of using textboxes.
    So that the user can enter many data at once and just click the save button at the end of the work, only one click.
    How can I use the table control at this context?
    Thanks.
    Deniz.

    Hi deniz,
    go through it:
    /people/ravishankar.rajan/blog/2007/02/23/an-easier-way-of-displaying-and-editing-data-using-table-control
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/code%2bto%2bhandle%2bmultiple%2brecords%2bin%2bbdc%2btable%2bcontrol
    Regards,

Maybe you are looking for

  • Converting RGB to grayscale

    I am acquiring an image and the output appears to be a grayscale image, but the text states that it is in fact an RGB image. I'd like to save some space and convert it into a GrayScale image. I have labview 8.2 and I don't have vision. Is there any w

  • How to disable individual field of a search view

    Hi All, Is there a way to disable individual search field of an advance search view ? The reason for this is that for a particular search field I am defaulting the value and do not want the user to be able to change this default value, in effect filt

  • Upload / email form

    hello everyone. i made an upload files page with a browse button and text fields for the client to put their information in. how can i make the "submit" button upload the file to my server AND send me the email at the same time?? the uploading part w

  • Problems for Infopackage setting for Hierarchy Load

    Hello Masters, I have a problem, in editing the setting for Hierarchy Infopackage, I was asked to reset the Processing mode of infopackage directly into Infoobject, instead of PSA and then into Subsequent Data targets. But here, i am unable to edit t

  • NIO SocketChannel non-blocking read

    Hello. I'm not sure a resembling message has already been posted in a forum. In such a case, thanks for redirecting to it. Goals : A selector is used by a main server thread to make accept and read operations non-blocking. When a connection is accept