In a makefile, targets are associated with a series of commands to execute when an action is requested.

learn more… | top users | synonyms

1
vote
1answer
214 views

MVC 4 Ajax ActionLink overwriting target div

I have created an ajax.ActionLink in my MVC view and it is overwriting the target div with the response, instead of filling it with the response, which makes no sense. This article says that it is not ...
0
votes
0answers
20 views

Xcode run script refer to variable from different target

In Xcode, I have 2 targets A, B. I want to refer to target A's product name in target B's run script. Can any one tell me how to do that? Thanks.
2
votes
3answers
118 views

How to use different resource files for different build targets in MFC

I have a few resources that are target specific. Like a different dialog for target client and a different dialog for target admin. And also a few strings that are specific to each of the targets. I ...
0
votes
0answers
11 views

link an entire iframe

So I am linking external content to my site, which is dynamic... It's a charity donation progress bar... I need a way to link this entire iframe to a donation page (I know this isn't going to be ...
0
votes
0answers
39 views

Define two targets with command window

I'd like to open a command window and initialize two targets: "C:\Program Files (x86)\Intel\Compiler\11.0\061\fortran\Bin\ifortvars.bat" ia32 "c:\Program Files (x86)\Microsoft Visual Studio ...
0
votes
2answers
130 views

jQuery how to select children first level div's

I have a little bit problem with targeting some div's without class, situated in table structure: <table class="blog" cellspacing="0" cellpadding="0"> <tbody> <tr> ...
-2
votes
2answers
106 views

How to open links in new window which is in PDF created by TCPDF

I have tried target="_blank" but nothing happens. Is anybody help for this issue? I need to open links in new tab/window which is in PDF file. I'm using TCPDF 5.9.176
0
votes
1answer
197 views

Opening links in a frame target IE10 Start app for Windows 8

I have a page being showed in two frames <frameset cols="140,*"> <frame src="resources/nav-bar.html" id="nav-bar" frameborder=0 scrolling="no" noresize="noresize" /> <frame ...
0
votes
0answers
9 views

How to target as link to act in a given Panel or Custom Control

I need to create a navigator similar to lotus discussion with a Navigator that opens a XPage in a specified Panel similar to this forum. Problem is that there are so many other things going on in this ...
-4
votes
1answer
548 views

Pop up in New Window with Javascript

I have the following line of code that I'm having trouble popping up in a new window because the target wants to only focus on the URL which isn't the valid content: <html><head> <meta ...
0
votes
0answers
278 views

How to have Android webview open links that are target “_blank” within an iframe

I've tried to use the iframes are not hosted by me, and cannot be changed, so I need to either have this open in the same webview or in the external browser, something about target "_blank" confuses ...
-3
votes
3answers
57 views

css :target on children

Suppose we have this html <div class="a"> <div>...</div> ... <div id="b">xyz</div> </div> <div class="a"> <div>...</div> ... ...
0
votes
3answers
361 views

Javac version 1.7 not able to build for target 1.7

I am trying to compile Java code, with Sun Java JDK 1.7.0_17, on a Linux Mint system, but I'm getting this problem. $ javac -version -target 1.7 javac 1.7.0_17 javac: invalid target release: 1.7 ...
0
votes
1answer
85 views

make: No rule to make target 'external/intel-boot-tools/boot.mk'

I'm trying to make an Android ROM for my Razr I phone (x86-atom). Everything works, but when I run make it shows this error: make: *** No rule to make target 'external/intel-boot-tools/boot.mk'. ...
0
votes
0answers
32 views

Cocos2d deployment target causes weird layout

I started an iphone Cocos2d project using the Xcode 4.5.1 ,Base SDK 6.0 and iOS Deployment Target 6.0.I am creating tiles like the gems app,everything was fine,but when i changed the ios Deployment ...
0
votes
0answers
73 views

$(element).has(e.target).length returning 0, even though the element is actually the current target

This is my code $(document).mouseup(function(e){ fc_menu = $("div.fc_menu"); fcBtn = $("img.fcBtn"); if(fc_menu.has(e.target).length === 0 && fc_menu.is(":visible") && ...
1
vote
1answer
111 views

Difference between MSBuild's Targets attribute and Target tag

I am confused between MSBuild's Targets attribute and general Target tag. Does below code compile into msbuild myapp.sln /t:Rebuild and Is "Rebuild" pre-defined target in .NET. <Target ...
0
votes
0answers
84 views

Targeting and opening a link inside a Vimeo iframe

I have a video from Vimeo on my website (a Wordpress blog). The embed code is written into the index.php file, not a blog post — the embed code also uses an iframe. I have a menu underneath this ...
0
votes
1answer
54 views

Why might links open in new window instead of a targeted iframe?

We have a menu opens that links in an iframe, as follows: <a target='content' ...> <iframe name='content' ...> This worked correctly for most pages, but after opening one particular ...
1
vote
1answer
95 views

Control one iFrame from another iFrame

This works … <a href="page.html" target="frameName">Link text</a> but this doesn't … <script type="text/javascript"> window.onload = function() { var a = ...
0
votes
3answers
102 views

Checking the target window before allowing drop

Is there a way to check the target (which .exe it belongs to) before allowing the drop ? What i intend to achieve is allowing a control to be drag & dropped on Word or Excel and depending on ...
0
votes
1answer
52 views

can't set google api as target in android

I have installed google API but when I try to change the target of the emulator to google API, I don't have the option to change the target. Is there another way to set the target to google API?
0
votes
0answers
168 views

opencv find small 2 by 2 black and white chessboard pattern in an image of other black and white squares

being new to openCV and image processing I'm looking for some help and guidance. I have an image which will always contain a small, 2 by 2 black and white chess board pattern as my target. This black ...
-2
votes
1answer
67 views

jQuery plugin (or similar) to colour the text Google in the same colour as Google logo [closed]

I am looking for a jQuery plugin or something similar that will change the colour of each letter of the word "Google" to match the colour of the Google logo. So, for example if I have the following ...
1
vote
2answers
39 views

Linker error, but only on test files

Here's a screen capture of my app. I'm using UIKit to create a PDF from some of the app data. I get no errors on the app itself but in the test section I get a bunch of them that look like the app ...
0
votes
0answers
30 views

How do I target a link to open in specific a iframe on another page

I need to have this link <a href=\"http://ww7.aitsafe.com/cf/review.cfm userid=43645236&return=www.domain.com/page.html\"_target_>Link Text</a> open in a specific iframe which is on ...
-1
votes
1answer
60 views

Post to a different page but stay on the current page

I have a requirement, 2 php pages, one for entry purposes and another for display purposes. Page 1- badgeentry.php allows an admin to enter badges numbers 123 and clicks submit. Page 2 - ...
1
vote
1answer
33 views

Finding ClearCase deliver target view using cleartool

I'm using ClearCase on Windows with snapshot views. Is there a way to determine using cleartool which view will be used for deliver? If there's a way that involves digging in the registry it's also ...
1
vote
1answer
38 views

waf - custom command tooltip

I create a custom command via def spawn_pot(ctx): ctx.recurse ('po') class spawnpot(BuildContext): cmd = 'spawnpot' fun = 'spawn_pot' and I would like to set a tooltip, but I could ...
0
votes
1answer
34 views

anchor opening element on separate page not working?

I am trying to get my anchors of thumbnails to open to a different page but at the specific element. I don't think it is working as there is a jquery plugin on the page that the elements exist on and ...
0
votes
1answer
66 views

Allow space in target of GCC makefile

Is there a way to get spaces inside target names working when using make.exe? It seems to be impossible if this really ancient bug report is correct: http://savannah.gnu.org/bugs/?712 For reference, ...
2
votes
1answer
47 views

Why does this code affect the cells in column C?

This code puts a check mark or an X in column C and changes the font to Marlett: Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) If Not Intersect(Target, ...
0
votes
2answers
157 views

How to detect overlapping objects in Corona?

What would be the best way to detect that a crosshair is aimed at a round target? I`ve tried adding a small circle in the middle of the crosshair, and detect when that circle and the target collide. ...
0
votes
1answer
52 views

Target showing 0 for length using mouseup function

Im trying to create an overlay on click of a button and then removing it when the user clicks outside the overlay. In my example the target returns a length of "0" when the overlay is clicked and I ...
0
votes
1answer
57 views

How to add UIViewController as target for a programmatically added subview like in IB

When adding UIViews in Xcode's interface builder you can use Ctrl+drag to create a target-action to the UIViewController that holds that view. You can also do that to any subviews you add using IB. ...
0
votes
0answers
26 views

For statement?and how can I add MC on screen during time I want?

I have been doing a game scene where MC(target) will fall from the top to the bottom of the screen. I want to make these targets to be shot, each one will fall down as a loop until in a time I want ...
0
votes
1answer
201 views

How do I specify multiple targets in my podfile for my Xcode project?

I'm using CocoaPods with my Xcode 4 project and I have three targets for my project (the default, one for building a lite version and one for building a demo version). All the targets use the same ...
1
vote
3answers
184 views

Html: open the page in a new window. target=“_blanck” - is that a typo?

I have found (with a letter c) target="_blanck" instead of expected target="_blank" in a project written by someone else. It works and opens a link in a new window. Is that a typo or am I ...
1
vote
2answers
149 views

javascript: Open an URL from an window.open page back in the original page

I'm opening a smaller web browser window from the "main" web page. The "child" window contains links like the following... <a ...
0
votes
0answers
56 views

MVC changed target framework from 4 to 4.5 but not seeing 4.5 namespace

I have an MVC project targetting the 4.0 framework but I would like to use the ZipArchive available in 4.5. When I changed the target from 4 to 4.5 on the specific project in question it "appeared to ...
0
votes
0answers
83 views

Will a link to FB always open up in a “new” window (even when TARGET information is specified)?

I created an HTML file with the following code snippet here: <a href='http://www.facebook.com/RushUniversity' target='_MyTARGET'>Facebook</a> <P> <a href='http://www.google.com' ...
0
votes
2answers
27 views

Is there a way to reference a target specific variable in a Makefile's Rule?

1 target foo : src = foo.c 2 target foo : obj = foo.o 3 target bar : src = bar.c 4 target bar : obj = bar.o 5 foo bar: obj # problem - not recognizing obj! 6 @echo link ${bin} 7 @gcc ...
0
votes
1answer
107 views

AS3 - target variable using another variable string value

okay. so i have a function and i've passed a parameter through it called objectName. no i have no idea how to do this or explain it. so here goes. public function moveObject(ObjectName):void{ ...
0
votes
1answer
29 views

Global postbuildevent in solution

about a dozen projects in my VS solution have the same line: <PostBuildEvent> <Command>signtool sign /f ..\Certificates\MyCert.pfx /fd sha256 "$(TargetPath)"</Command> ...
0
votes
1answer
36 views

how to add target=“_blank” to markItUp plugin

What I am trying to do: It appears that by default when you use the link option in markitup to add a link, then clicking on the link opens it in the same page. What I have tried: I looked at the ...
1
vote
1answer
1k views

jsf2 primefaces <p:commandLink> open page in new window/tab

I'm trying to create a link to open a new page in a different window/tab and display some msg from backing bean but fail to do it, wonder know why? here is my xhtml file: <html:composition ...
1
vote
3answers
115 views

Use jQuery to get text of target

Trying to get the text of an event's target element from an unordered list <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul> with code ...
1
vote
0answers
41 views

Running an exe from an ant build script problems

I'm trying to run an executable from an ant build script and having no joy. The executable runs but hangs. Basically this program takes a file in and converts it to another format and splits it into ...
0
votes
0answers
64 views

Change vid playlist id in Iframe via clickable link w/ php script

I need to dynamically change the playlist id and not the Iframe player, I need a functional and easy script for this. Probably php, any ideas or examples of what works? This is my link script ...
0
votes
1answer
41 views

What lines of code would I enter in the .htaccess perform the redirect only if the target is the homepage?

What lines of code would I enter in the .htaccess perform the redirect only if the target is the homepage? That is the main question here. I'll elaborate: I used the method described at: Mobile ...

1 2 3 4 5 15